From 181cf6949060d88414d21f2407d155801d77e878 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Mon, 22 Mar 2021 19:12:56 +0600 Subject: [PATCH] Wrapping up the Game State Manager --- .../ourGame/2 | 52 ------------------- 1 file changed, 52 deletions(-) delete mode 100644 lesson#25 - Wrapping up the Game State Manager/ourGame/2 diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/2 b/lesson#25 - Wrapping up the Game State Manager/ourGame/2 deleted file mode 100644 index d1ead8d..0000000 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/2 +++ /dev/null @@ -1,52 +0,0 @@ -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(); - } -}