2007-05-30 21:56:52 +00:00
|
|
|
/* 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.
|
2003-12-16 02:10:15 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-01-05 12:45:14 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-12-16 02:10:15 +00:00
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-12-16 02:10:15 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-20 18:04:13 +00:00
|
|
|
#ifndef SWORD1_MOUSE_H
|
|
|
|
#define SWORD1_MOUSE_H
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/scummsys.h"
|
2011-04-24 08:34:27 +00:00
|
|
|
#include "common/rect.h"
|
2004-10-21 12:43:49 +00:00
|
|
|
#include "sword1/sworddefs.h"
|
|
|
|
#include "sword1/object.h"
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
class OSystem;
|
|
|
|
|
|
|
|
namespace Sword1 {
|
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
#define MAX_MOUSE 30
|
|
|
|
|
2011-09-07 21:54:34 +00:00
|
|
|
#define BS1L_BUTTON_DOWN 2
|
|
|
|
#define BS1L_BUTTON_UP 4
|
|
|
|
#define BS1R_BUTTON_DOWN 8
|
|
|
|
#define BS1R_BUTTON_UP 16
|
|
|
|
#define BS1_WHEEL_UP 32
|
|
|
|
#define BS1_WHEEL_DOWN 64
|
|
|
|
#define MOUSE_BOTH_BUTTONS (BS1L_BUTTON_DOWN | BS1R_BUTTON_DOWN)
|
|
|
|
#define MOUSE_DOWN_MASK (BS1L_BUTTON_DOWN | BS1R_BUTTON_DOWN)
|
|
|
|
#define MOUSE_UP_MASK (BS1L_BUTTON_UP | BS1R_BUTTON_UP)
|
2003-12-16 02:10:15 +00:00
|
|
|
|
|
|
|
struct MouseObj {
|
|
|
|
int id;
|
2004-01-11 15:47:41 +00:00
|
|
|
Object *compact;
|
2003-12-16 02:10:15 +00:00
|
|
|
};
|
|
|
|
|
2011-09-07 21:54:34 +00:00
|
|
|
#include "common/pack-start.h" // START STRUCT PACKING
|
2003-12-16 02:10:15 +00:00
|
|
|
|
|
|
|
struct MousePtr {
|
|
|
|
uint16 numFrames;
|
|
|
|
uint16 sizeX;
|
|
|
|
uint16 sizeY;
|
|
|
|
uint16 hotSpotX;
|
|
|
|
uint16 hotSpotY;
|
2003-12-30 21:32:50 +00:00
|
|
|
uint8 dummyData[0x30];
|
2007-07-01 18:18:43 +00:00
|
|
|
} PACKED_STRUCT;
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2011-09-07 21:54:34 +00:00
|
|
|
#include "common/pack-end.h" // END STRUCT PACKING
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
class Logic;
|
|
|
|
class Menu;
|
2003-12-16 02:10:15 +00:00
|
|
|
class ResMan;
|
|
|
|
class ObjectMan;
|
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
class Mouse {
|
2003-12-16 02:10:15 +00:00
|
|
|
public:
|
2004-01-11 15:47:41 +00:00
|
|
|
Mouse(OSystem *system, ResMan *pResMan, ObjectMan *pObjMan);
|
2009-11-02 21:54:57 +00:00
|
|
|
~Mouse();
|
|
|
|
void initialize();
|
2004-01-11 15:47:41 +00:00
|
|
|
void addToList(int id, Object *compact);
|
|
|
|
void useLogicAndMenu(Logic *pLogic, Menu *pMenu);
|
2003-12-16 02:10:15 +00:00
|
|
|
void setLuggage(uint32 resID, uint32 rate);
|
|
|
|
void setPointer(uint32 resID, uint32 rate);
|
2009-11-02 21:54:57 +00:00
|
|
|
void animate();
|
2003-12-16 02:10:15 +00:00
|
|
|
void engine(uint16 x, uint16 y, uint16 eventFlags);
|
2009-11-02 21:54:57 +00:00
|
|
|
uint16 testEvent();
|
2003-12-16 02:10:15 +00:00
|
|
|
void giveCoords(uint16 *x, uint16 *y);
|
2009-11-02 21:54:57 +00:00
|
|
|
void fnNoHuman();
|
|
|
|
void fnAddHuman();
|
|
|
|
void fnBlankMouse();
|
|
|
|
void fnNormalMouse();
|
|
|
|
void fnLockMouse();
|
|
|
|
void fnUnlockMouse();
|
2003-12-20 09:12:54 +00:00
|
|
|
void controlPanel(bool on);
|
2003-12-16 02:10:15 +00:00
|
|
|
private:
|
2003-12-30 21:32:50 +00:00
|
|
|
void createPointer(uint32 ptrId, uint32 luggageId);
|
2003-12-16 02:10:15 +00:00
|
|
|
OSystem *_system;
|
2004-01-11 15:47:41 +00:00
|
|
|
Logic *_logic;
|
|
|
|
Menu *_menu;
|
2003-12-16 02:10:15 +00:00
|
|
|
MouseObj _objList[MAX_MOUSE];
|
|
|
|
ResMan *_resMan;
|
|
|
|
ObjectMan *_objMan;
|
2007-11-28 15:00:41 +00:00
|
|
|
Common::Point _mouse;
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2011-03-12 11:24:14 +00:00
|
|
|
uint32 _currentPtrId, _currentLuggageId;
|
2003-12-30 21:32:50 +00:00
|
|
|
MousePtr *_currentPtr;
|
2011-03-12 11:24:14 +00:00
|
|
|
int _frame, _activeFrame;
|
2003-12-16 02:10:15 +00:00
|
|
|
uint16 _numObjs;
|
|
|
|
uint16 _lastState, _state;
|
|
|
|
uint32 _getOff;
|
2003-12-20 17:55:09 +00:00
|
|
|
bool _inTopMenu, _mouseOverride;
|
2003-12-16 02:10:15 +00:00
|
|
|
};
|
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
} // End of namespace Sword1
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
#endif //BSMOUSE_H
|