1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/pausestate.cpp
2014-09-16 19:22:43 +01:00

45 lines
808 B
C++

#include "pausestate.hpp"
#include "RWGame.hpp"
PauseState::PauseState(RWGame* game)
: State(game)
{
Menu *m = new Menu(game->getFont());
m->offset = glm::vec2(50.f, 100.f);
m->addEntry(Menu::lambda("Continue", [] { StateManager::get().exit(); }));
m->addEntry(Menu::lambda("Options", [] { std::cout << "Options" << std::endl; }));
m->addEntry(Menu::lambda("Exit", [&] { getWindow().close(); }));
this->enterMenu(m);
}
void PauseState::enter()
{
}
void PauseState::exit()
{
}
void PauseState::tick(float dt)
{
}
void PauseState::handleEvent(const sf::Event &e)
{
switch(e.type) {
case sf::Event::KeyPressed:
switch(e.key.code) {
case sf::Keyboard::Escape:
StateManager::get().exit();
break;
default: break;
}
break;
default: break;
}
State::handleEvent(e);
}