X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FApplication.cpp;h=19aa06a18543de3e1c7662a490098d794e8e0aca;hb=c8bfdbd3b824fdd71bca1335a145aa19c42df1db;hp=37f3135c48d8f4d3c92d1b323481f343d913157f;hpb=59d528aaa84a2210b0a357887853f534cfbea156;p=l2e.git diff --git a/src/app/Application.cpp b/src/app/Application.cpp index 37f3135..19aa06a 100644 --- a/src/app/Application.cpp +++ b/src/app/Application.cpp @@ -13,67 +13,80 @@ namespace app { -Application::Application(SDL_Surface *screen, State *initialState) +Application::Application(sdl::InitScreen *screen, State *initialState) : screen(screen) , states() -, last(SDL_GetTicks()) { +, last(SDL_GetTicks()) +, toPop(0) { assert(screen && "cannot create application without screen"); assert(initialState && "cannot create application without initial state"); RealPushState(initialState); } -Application::~Application(void) { +Application::~Application() { PopAllStates(); } -State *Application::CurrentState(void) { +State *Application::CurrentState() { return states.top(); } +void Application::UpdateState() { + while (toPop > 0) { + RealPopState(); + --toPop; + } + while (!toPush.empty()) { + State *s(toPush.front()); + toPush.pop(); + RealPushState(s); + } +} + void Application::ChangeState(State *s) { - RealPopState(); - RealPushState(s); + PopState(); + PushState(s); } void Application::PushState(State *s) { - RealPushState(s); + toPush.push(s); } void Application::RealPushState(State *s) { states.push(s); - s->EnterState(*this, screen); + s->EnterState(*this, screen->Screen()); } -void Application::PopState(void) { - RealPopState(); +void Application::PopState() { + ++toPop; } -void Application::RealPopState(void) { +void Application::RealPopState() { if (states.empty()) return; states.top()->ExitState(); delete states.top(); states.pop(); } -void Application::Quit(void) { +void Application::Quit() { PopAllStates(); } -void Application::PopAllStates(void) { +void Application::PopAllStates() { while (!states.empty()) { RealPopState(); } } -void Application::Run(void) { +void Application::Run() { while (CurrentState()) { Loop(); } } -void Application::Loop(void) { +void Application::Loop() { Uint32 now(SDL_GetTicks()); Uint32 deltaT(now - last); if (deltaT > 34) deltaT = 34; @@ -83,22 +96,33 @@ void Application::Loop(void) { Render(); last = now; + UpdateState(); } -void Application::HandleEvents(void) { +void Application::HandleEvents() { if (!CurrentState()) return; + input.ResetInteractiveState(); SDL_Event event; while (SDL_PollEvent(&event)) { switch (event.type) { case SDL_QUIT: PopAllStates(); break; + case SDL_VIDEORESIZE: + screen->Resize(event.resize.w, event.resize.h); + CurrentState()->Resize(event.resize.w, event.resize.h); + break; + case SDL_KEYDOWN: + case SDL_KEYUP: + input.HandleKeyboardEvent(event.key); + break; default: - CurrentState()->HandleEvent(event); + // skip event break; } } + CurrentState()->HandleInput(input); } void Application::UpdateWorld(Uint32 deltaT) { @@ -110,8 +134,8 @@ void Application::UpdateWorld(Uint32 deltaT) { void Application::Render(void) { if (!CurrentState()) return; - CurrentState()->Render(screen); - SDL_Flip(screen); + CurrentState()->Render(screen->Screen()); + screen->Flip(); } }