Game
Introduction
Base class for class used in default XNA Template and FlatRedBall XNA Template.
Accessing Game
The Game class holds many useful methods and properties which are often needed deep inside game logic code where the Game reference is not available. The FlatRedBallServices class provides a reference to the game class:
For example, to view the mouse cursor (as shown below) outside of the game class, you would use the following code:
Since FlatRedBallServices is static this can be used anywhere in code.
Setting Resolution
The resolution of FlatRedBall is controlled through the GraphicsOptions object. For more informatin, see the GraphicsOptions page.
Resizing
FlatRedBall will attempt to react to the window changing as a result of the user grabbing and dragging the corners or edges. The following code can be called in the Game class to enable resizing:
Setting Fullscreen
FlatRedBall applications can run in full screen mode. The following code (which must be called after FlatRedBall is initialized) will set the FlatRedBall application to run at full screen.
Fullscreen vs. Maximized
When FlatRedBall is in fullscreen mode, it "owns" the graphics device. This means that nothing else will be drawing underneath the Window. This can improve performance, but also makes alt-tabbing slower, and now other Windows can be drawn on top of the Window. For this code to work, you must include a reference to the System.Windows.Forms library in your project's References folder. You can sacrifice performance for this convenience by simply maximizing the game as follows: Add the following using statement:
Add the following to Initialize after initializing FlatRedBall:
Exiting
The Exit method ends the application. This can be called to exit the game as follows: If inside the Game class:
If the Game class is not in scope:
This can be called at any point and your game will exit properly.
Disabling Fixed Time Step
For more information, see the IsFixedTimeStep page.
Additional Information
Game Window as a Control - FlatRedBallService's Owner property returns the game window as a Control which provides more functionality.
Game Members
Did this article leave any questions unanswered? Post any question in our forums for a rapid response.
Last updated