aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra.cpp
diff options
context:
space:
mode:
authorGregory Montoir2007-04-01 17:36:13 +0000
committerGregory Montoir2007-04-01 17:36:13 +0000
commit5aca9dce8c6cce89df3147a6f942620155010c8d (patch)
tree28dbee0d5addb8e49c839e5eba11733b0fe26fa5 /engines/kyra/kyra.cpp
parent852971cfe62b59ff1f2e7451402a34fa6f8db958 (diff)
downloadscummvm-rg350-5aca9dce8c6cce89df3147a6f942620155010c8d.tar.gz
scummvm-rg350-5aca9dce8c6cce89df3147a6f942620155010c8d.tar.bz2
scummvm-rg350-5aca9dce8c6cce89df3147a6f942620155010c8d.zip
added the instance of EventManager returned by OSystem::getEventManager as a member of the Engine base class. This allows to simply the code a bit and should more efficient too (ie. less virtual function chain calls, obj->getA()->getB()). Also updated several engines to make use of it.
svn-id: r26357
Diffstat (limited to 'engines/kyra/kyra.cpp')
-rw-r--r--engines/kyra/kyra.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/engines/kyra/kyra.cpp b/engines/kyra/kyra.cpp
index 6b3a2dc3a1..aba461a231 100644
--- a/engines/kyra/kyra.cpp
+++ b/engines/kyra/kyra.cpp
@@ -608,8 +608,7 @@ void KyraEngine::delay(uint32 amount, bool update, bool isMainLoop) {
uint32 start = _system->getMillis();
do {
- Common::EventManager *eventMan = _system->getEventManager();
- while (eventMan->pollEvent(event)) {
+ while (_eventMan->pollEvent(event)) {
switch (event.type) {
case Common::EVENT_KEYDOWN:
if (event.kbd.keycode >= '1' && event.kbd.keycode <= '9' &&
@@ -690,7 +689,7 @@ void KyraEngine::delay(uint32 amount, bool update, bool isMainLoop) {
}
Common::Point KyraEngine::getMousePos() const {
- Common::Point mouse = g_system->getEventManager()->getMousePos();
+ Common::Point mouse = _eventMan->getMousePos();
if (_flags.useHiResOverlay) {
mouse.x >>= 1;
mouse.y >>= 1;
@@ -702,8 +701,7 @@ void KyraEngine::waitForEvent() {
bool finished = false;
Common::Event event;
while (!finished && !_quitFlag) {
- Common::EventManager *eventMan = _system->getEventManager();
- while (eventMan->pollEvent(event)) {
+ while (_eventMan->pollEvent(event)) {
switch (event.type) {
case Common::EVENT_KEYDOWN:
finished = true;