Module game_library::state
source · Expand description
The states used in the game.
These are a collection of states that the game can be in. They are used to control the flow of the game, and to determine what systems are active at any given time.
State Flow
AppState::Startup
- The game is starting up. The splash screen is shown and data is loaded fromgame_data
and assets like fonts, sprites and tilesets are loaded.AppState::MainMenu
- The main menu is shown. a. Click “Start” to begin playing ->AppState::InGame
and [GameState::Loading
] are activated. b. Click “Settings” to open the settings menu -> [AppState::SettingsMenu
] and [MenuState::Main
] c. Click “Quit” to exit the game ->AppState::CleanUp
(which will do any necessary saving and then exit)- more stuff
Enums
- The state of the game (broadly)
- States of the game itself.
- A UI overlay state. This allows settings to be shown, or other overlays.
- The state of the save system.
- The menu states.