TITANIC: Added main game event loop

This commit is contained in:
Paul Gilbert 2016-03-13 15:39:35 -04:00
parent 819b773491
commit b57805bd4b
2 changed files with 18 additions and 0 deletions

View File

@ -87,7 +87,20 @@ void TitanicEngine::deinitialize() {
Common::Error TitanicEngine::run() {
initialize();
// Main event loop
while (!shouldQuit()) {
processEvents();
g_system->delayMillis(5);
}
deinitialize();
return Common::kNoError;
}
void TitanicEngine::processEvents() {
Common::Event evt;
g_system->getEventManager()->pollEvent(evt);
}
} // End of namespace Titanic

View File

@ -80,6 +80,11 @@ private:
* Handles game deinitialization
*/
void deinitialize();
/**
* Processes pending events
*/
void processEvents();
protected:
const TitanicGameDescription *_gameDescription;
int _loadSaveSlot;