ACCESS: Added extra mouse handling to pollEvents

This commit is contained in:
Paul Gilbert 2014-08-15 21:32:16 -04:00
parent 3475fda076
commit a347435f26
2 changed files with 12 additions and 2 deletions

View File

@ -38,7 +38,7 @@ EventsManager::EventsManager(AccessEngine *vm): _vm(vm) {
_cursorId = CURSOR_NONE;
_frameCounter = 10;
_priorFrameTime = 0;
_leftButton = false;
_leftButton = _rightButton = false;
_mouseMove = false;
}
@ -126,10 +126,20 @@ void EventsManager::pollEvents() {
return;
case Common::EVENT_KEYUP:
return;
case Common::EVENT_MOUSEMOVE:
_mousePos = event.mouse;
break;
case Common::EVENT_LBUTTONDOWN:
_leftButton = true;
return;
case Common::EVENT_LBUTTONUP:
_leftButton = false;
return;
case Common::EVENT_RBUTTONDOWN:
_rightButton = true;
return;
case Common::EVENT_RBUTTONUP:
_rightButton = false;
return;
default:
break;

View File

@ -51,7 +51,7 @@ private:
void nextFrame();
public:
CursorType _cursorId;
bool _leftButton;
bool _leftButton, _rightButton;
Common::Point _mousePos;
bool _mouseMove;
public: