X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=blobdiff_plain;f=src%2Fgame.cpp;h=3b7a34b8c785f8c2c5f0a1f04257e96d694b7d43;hp=95cd04daaf97d25f537540a901154c8277fc9698;hb=033c553524d4a0407f6fabd0bcebf1d460519cf5;hpb=8381f5953e33c5f60f39bf4090e7ee354d5cd047 diff --git a/src/game.cpp b/src/game.cpp index 95cd04d..3b7a34b 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -41,6 +41,11 @@ Running* running; Paused* paused; CreatingPolygon* creating_Polygon; +// true if the top state requested itself to be poped +bool pop_State; +// pointer to a state wishing to be added +GameState* push_State; + /// ***** Public Methods ***** @@ -50,6 +55,9 @@ void game::init() paused = new Paused(); creating_Polygon = new CreatingPolygon(); + pop_State = false; + push_State = NULL; + // create starting entities creator::init(); @@ -75,13 +83,28 @@ void game::clean() void game::input() { + if(running->pushMe()) + push_State = running; + + if(paused->pushMe()) + push_State = paused; + + if(creating_Polygon->pushMe()) + push_State = creating_Polygon; + + int last = active_States.size() -1; for( int i = 0; i <= last; i++ ) { if( i == last ) - active_States[i]->handleInput(true); + { + if(active_States[i]->popMe()) + pop_State = true; + else + active_States[i]->handleInput(true); + } else active_States[i]->handleInput(false); } @@ -89,6 +112,21 @@ void game::input() void game::update(float time_step) { + if(push_State != NULL) + { + // don't want to pop and push same state, pop wins arbitrary + if(!pop_State) + active_States.push_back(push_State); + + push_State = NULL; + } + + if(pop_State) + { + active_States.pop_back(); + pop_State = false; + } + int last = active_States.size() -1; for( int i = 0; i <= last;