From c3d915fe9be73d180fe860e00d6337abb67b18fa Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Mon, 22 Mar 2021 18:29:45 +0600 Subject: [PATCH] Wrapping up the Game State Manager --- .../ourGame/.gitignore | 15 ++++++ .../ourGame/2 | 52 ++++++++++++++++++ .../ourGame/dub.json | 15 ++++++ .../ourGame/dub.selections.json | 10 ++++ .../ourGame/source/app.d | 52 ++++++++++++++++++ .../ourGame/source/data.d | 23 ++++++++ .../ourGame/source/gstatemanager.d | 53 +++++++++++++++++++ .../ourGame/source/menu.d | 34 ++++++++++++ .../ourGame/source/play.d | 34 ++++++++++++ 9 files changed, 288 insertions(+) create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/.gitignore create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/2 create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/source/data.d create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/source/gstatemanager.d create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/source/menu.d create mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/source/play.d diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/.gitignore b/lesson#25 - Wrapping up the Game State Manager/ourGame/.gitignore new file mode 100644 index 0000000..b2c8b49 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/ourgame +ourgame.so +ourgame.dylib +ourgame.dll +ourgame.a +ourgame.lib +ourgame-test-* +*.exe +*.o +*.obj +*.lst diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/2 b/lesson#25 - Wrapping up the Game State Manager/ourGame/2 new file mode 100644 index 0000000..d1ead8d --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/2 @@ -0,0 +1,52 @@ +import data; + +class GStateManager { + // private class instance + private static GStateManager instance; + + // IState interface + private IState[GameState] state; + + private GameState currGameState; + + // private constructor + private this() { } + + // return the instance; create the instance, if it wasn't created yet + static GStateManager getInstance() { + if(instance is null) { + instance = new GStateManager(); + } + + return instance; + } + + // add game state + void add(IState state, GameState gs) { + this.state[gs] = state; + } + + // remove game state + void remove(GameState gs) { + this.state.remove(gs); + } + + // set game state + void setState(GameState gs) { + currGameState = gs; + } + + // return the current game state + GameState getState() { + return currGameState; + } + + // execute the current game state code + void execute() { + if(state is null) { + return; + } + + state[currGameState].run(); + } +} diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json new file mode 100644 index 0000000..6058c41 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json @@ -0,0 +1,15 @@ +{ + "authors": [ + "rillki" + ], + "copyright": "no copyright", + "dependencies": { + "raylib-d2": "~>3.1.0" + }, + "description": "2D game", + "libs": [ + "raylib" + ], + "license": "no license", + "name": "ourgame" +} \ No newline at end of file diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json new file mode 100644 index 0000000..94114d2 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json @@ -0,0 +1,10 @@ +{ + "fileVersion": 1, + "versions": { + "ddmp": "0.0.1-0.dev.3", + "fluent-asserts": "0.13.3", + "libdparse": "0.14.0", + "raylib-d2": "3.1.0", + "stdx-allocator": "2.77.5" + } +} diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d new file mode 100644 index 0000000..e01d546 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/app.d @@ -0,0 +1,52 @@ +import data; +import gstatemanager; + +import menu; +import play; + +void main() { + // init + InitWindow(windowWidth, windowHeight, "Mission X"); + scope(exit) { CloseWindow(); } + + // set frames per second + SetTargetFPS(60); + + // declaring and initializing menu and play states + Menu menu = new Menu(); + Play play = new Play(); + + GStateManager.getInstance.setState(GameState.MainMenu); + + GStateManager.getInstance.add(menu, GameState.MainMenu); + GStateManager.getInstance.add(play, GameState.Play); + GStateManager.getInstance.add(null, GameState.Exit); + + // outputs "*** menu state ***" + //GStateManager.getInstance.execute(); + + // change current state to play + //GStateManager.getInstance.setState(GameState.Play); + + while(!WindowShouldClose() && GStateManager.getInstance.getState != GameState.Exit) { + GStateManager.getInstance.execute(); + } + + // outputs "*** play state ***" + //GStateManager.getInstance.execute(); +} + + + + + + + + + + + + + + + diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/data.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/data.d new file mode 100644 index 0000000..78cf366 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/data.d @@ -0,0 +1,23 @@ +module data; + +// mostly used libraries +public import raylib; +public import std.stdio: writeln, write; + +// window dimensions +immutable windowWidth = 720; +immutable windowHeight = 640; + +// Game states +enum GameState { + MainMenu, + Play, + Exit +} + +// state interface +interface IState { + void run(); +} + + diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/gstatemanager.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/gstatemanager.d new file mode 100644 index 0000000..574cf80 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/gstatemanager.d @@ -0,0 +1,53 @@ +import data; + +class GStateManager { + // private class instance + private static GStateManager instance; + + // IState interface + private IState[GameState] state; + + // current game state + private GameState currGameState; + + // private constructor + private this() { } + + // return the instance; create the instance, if it wasn't created yet + static GStateManager getInstance() { + if(instance is null) { + instance = new GStateManager(); + } + + return instance; + } + + // add game state + void add(IState state, GameState gs) { + this.state[gs] = state; + } + + // remove game state + void remove(GameState gs) { + this.state.remove(gs); + } + + // set game state + void setState(GameState gs) { + currGameState = gs; + } + + // return the current game state + GameState getState() { + return currGameState; + } + + // execute the current game state code + void execute() { + if(state is null) { + return; + } + + state[currGameState].run(); + } +} diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/menu.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/menu.d new file mode 100644 index 0000000..91ca1d9 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/menu.d @@ -0,0 +1,34 @@ +module menu; + +import data; +import gstatemanager; + +class Menu: IState { + this() {} + + // inherited from IState interface + void run() { + update(); + processEvents(); + render(); + } + + void update() {} + + void processEvents() { + if(IsKeyPressed(KeyboardKey.KEY_P)) { + GStateManager.getInstance.setState(GameState.Play); + } + } + + void render() { + // enable drawing + BeginDrawing(); scope(exit) { EndDrawing(); } + + // clear background + ClearBackground(Colors.GREEN); + + // draw + // ... + } +} diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/source/play.d b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/play.d new file mode 100644 index 0000000..caaca77 --- /dev/null +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/source/play.d @@ -0,0 +1,34 @@ +module play; + +import data; +import gstatemanager; + +class Play: IState { + this() {} + + // inherited from IState interface + void run() { + update(); + processEvents(); + render(); + } + + void update() {} + + void processEvents() { + if(IsKeyPressed(KeyboardKey.KEY_M)) { + GStateManager.getInstance.setState(GameState.MainMenu); + } + } + + void render() { + // enable drawing + BeginDrawing(); scope(exit) { EndDrawing(); } + + // clear background + ClearBackground(Colors.YELLOW); + + // draw + // ... + } +}