/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #ifndef HOPKINS_EVENTS_H #define HOPKINS_EVENTS_H #include "common/scummsys.h" #include "common/events.h" #include "common/str.h" namespace Hopkins { #define GAME_FRAME_RATE 50 #define GAME_FRAME_TIME (1000 / GAME_FRAME_RATE) class HopkinsEngine; enum DIALOG_KEY { KEY_NONE = 0, KEY_INVENTORY = 1, KEY_OPTIONS = 2, KEY_SAVE = 3, KEY_LOAD = 4 }; class EventsManager { private: HopkinsEngine *_vm; void pollEvents(); void handleKey(Common::Event &event); void checkForNextFrameCounter(); void updateCursor(); public: bool _mouseFl; bool _mouseLinuxFl; int _mouseSizeX, _mouseSizeY; Common::Point _mouseOffset; Common::Point _startPos; Common::Point _mousePos; bool _breakoutFl; int _oldIconId; int _mouseSpriteId; int _curMouseButton; int _mouseButton; byte *_mouseCursor; uint32 _gameCounter; uint32 _rateCounter; uint32 _priorCounterTime; uint32 _priorFrameTime; bool _escKeyFl; bool _disableEscKeyFl; DIALOG_KEY _gameKey; int _mouseCursorId; byte *_objectBuf; bool _keyState[256]; public: EventsManager(); ~EventsManager(); void setParent(HopkinsEngine *vm); void setMouseOn(); void setMouseXY(Common::Point pos); void setMouseXY(int xp, int yp); int getMouseX(); int getMouseY(); int getMouseButton(); void mouseOn(); void mouseOff(); void changeMouseCursor(int id); void refreshEvents(); void delay(int totalMilli); int waitKeyPress(); void VBL(); }; } // End of namespace Hopkins #endif /* HOPKINS_EVENTS_H */