Class Window
The class also provides methods to interact with the window and the application, such as retrieving the window dimensions, setting the debug mode, managing stages, and exiting the application.
Example usage:
Window window = new Window();
window.setDebug(true);
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int[]
The default color used for debugging purposes.static int
2: Point Sampling. -
Constructor Summary
ConstructorsConstructorDescriptionWindow()
Constructs a new Window with default dimensions.Window
(boolean fullScreen) Constructs a new Window.Window
(boolean fullScreen, int width, int height) Constructs a new Window instance.Window
(int width, int height) Constructs a new Window with the specified width and height.Constructs a new Window with the specified width, height, and assets path.Constructs a new Window with the specified assets. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.since 4.0.0.void
exit()
Exits the application by invoking the `whenExits` method and then calling the `exit` method on the `Applet` instance.double
Gets the seconds passed since the last frame.int
Retrieves the height of the current window.static Window
Returns the singleton instance of the Window class.getStage()
Retrieves the current stage from the Applet instance.int
getWidth()
Retrieves the width of the current window.boolean
isDebug()
Checks if the application is in debug mode.void
removeStage
(String name) Deprecated.since 4.0.0.void
setDebug
(boolean debug) Enables or disables the debug mode for the application.void
Sets the current stage of the application.void
switchStage
(String name) Deprecated.since 4.0.0.void
transitionToStage
(Stage stage, int duration) Transitions to a new stage with a specified duration.void
This method is called when the window exits.
-
Field Details
-
DEBUG_COLOR
public static final int[] DEBUG_COLORThe default color used for debugging purposes. -
TEXTURE_SAMPLING_MODE
public static int TEXTURE_SAMPLING_MODE2: Point Sampling. 3: Linear. 4: Bilinear. 5: Trilinear.Point sampling: both magnification and minification filtering are set to nearest. Linear sampling: magnification filtering is nearest, minification set to linear Bilinear sampling: both magnification filtering is set to linear and minification either to linear-mipmap-nearest (linear interpolation is used within a mipmap, but not between different mipmaps). Trilinear sampling: magnification filtering set to linear, minification to linear-mipmap-linear, which offers the best mipmap quality since linear interpolation to compute the value in each of two maps and then interpolates linearly between these two values.
-
-
Constructor Details
-
Window
public Window()Constructs a new Window with default dimensions. The default width is 480 pixels and the default height is 360 pixels. -
Window
Constructs a new Window with the specified assets. The window will have a default width of 480 pixels and a height of 360 pixels.- Parameters:
assets
- the path to the assets to be used in the window
-
Window
public Window(int width, int height) Constructs a new Window with the specified width and height.- Parameters:
width
- the width of the windowheight
- the height of the window
-
Window
Constructs a new Window with the specified width, height, and assets path. Ensures that only one instance of Window can be created.- Parameters:
width
- the width of the windowheight
- the height of the windowassets
- the path to the assets- Throws:
Error
- if an instance of Window already exists
-
Window
public Window(boolean fullScreen) Constructs a new Window.- Parameters:
fullScreen
- a boolean indicating whether the window should be in full screen mode.
-
Window
Constructs a new Window instance. If an instance of Window already exists, an Error is thrown to ensure only one Window instance is created.- Parameters:
fullScreen
- a boolean indicating whether the window should be in full screen modeassets
- a String specifying the path to the assets- Throws:
Error
- if an instance of Window already exists
-
Window
-
Window
public Window(boolean fullScreen, int width, int height)
-
-
Method Details
-
getInstance
Returns the singleton instance of the Window class.- Returns:
- the singleton instance of Window
-
getDeltaTime
public double getDeltaTime()Gets the seconds passed since the last frame.- Returns:
- seconds since last frame
-
isDebug
public boolean isDebug()Checks if the application is in debug mode.- Returns:
- true if the application is in debug mode, false otherwise.
-
setDebug
public void setDebug(boolean debug) Enables or disables the debug mode for the application.- Parameters:
debug
- a boolean value wheretrue
enables debug mode andfalse
disables it.
-
getWidth
public int getWidth()Retrieves the width of the current window.- Returns:
- the width of the window in pixels
-
getHeight
public int getHeight()Retrieves the height of the current window.- Returns:
- the height of the window in pixels
-
setStage
Sets the current stage of the application.- Parameters:
stage
- the new stage to be set
-
transitionToStage
Transitions to a new stage with a specified duration.- Parameters:
stage
- the new stage to transition toduration
- the duration of the transition in milliseconds
-
addStage
Deprecated.since 4.0.0. Use setStage instead.- Parameters:
name
- Name of the stagestage
- A stage object
-
switchStage
Deprecated.since 4.0.0. Use setStage instead.- Parameters:
name
- Name of the stage
-
removeStage
Deprecated.since 4.0.0. Use setStage instead.- Parameters:
name
- Name of the stage
-
getStage
Retrieves the current stage from the Applet instance.- Returns:
- the current Stage object
-
exit
public void exit()Exits the application by invoking the `whenExits` method and then calling the `exit` method on the `Applet` instance. -
whenExits
public void whenExits()This method is called when the window exits. Override this method to define custom behavior when the window is closed.
-