2009-06-24 23:58:30 +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.
|
|
|
|
*
|
|
|
|
* 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 DRACI_MOUSE_H
|
|
|
|
#define DRACI_MOUSE_H
|
|
|
|
|
|
|
|
#include "common/events.h"
|
|
|
|
|
|
|
|
namespace Draci {
|
|
|
|
|
2009-09-30 16:04:21 +00:00
|
|
|
enum CursorType {
|
2009-09-30 10:45:14 +00:00
|
|
|
kNormalCursor,
|
2009-09-30 16:04:21 +00:00
|
|
|
kArrowCursor1,
|
2009-09-30 10:45:14 +00:00
|
|
|
kArrowCursor2,
|
2009-09-30 16:04:21 +00:00
|
|
|
kArrowCursor3,
|
2009-09-30 10:45:14 +00:00
|
|
|
kArrowCursor4,
|
|
|
|
kDialogueCursor,
|
|
|
|
kHighlightedCursor,
|
2009-10-27 23:51:32 +00:00
|
|
|
kMainMenuCursor,
|
|
|
|
kUninitializedCursor = 100,
|
|
|
|
kItemCursor // + the index in the BArchive
|
2009-06-24 23:58:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DraciEngine;
|
2009-11-10 05:16:34 +00:00
|
|
|
class GameItem;
|
2009-06-24 23:58:30 +00:00
|
|
|
|
|
|
|
class Mouse {
|
|
|
|
public:
|
|
|
|
Mouse(DraciEngine *vm);
|
2010-03-22 20:28:08 +00:00
|
|
|
~Mouse() {}
|
2009-06-24 23:58:30 +00:00
|
|
|
|
|
|
|
void handleEvent(Common::Event event);
|
|
|
|
void cursorOn();
|
|
|
|
void cursorOff();
|
2009-09-25 08:13:39 +00:00
|
|
|
bool isCursorOn() const;
|
2009-06-24 23:58:30 +00:00
|
|
|
void setPosition(uint16 x, uint16 y);
|
2009-09-25 08:13:39 +00:00
|
|
|
CursorType getCursorType() const { return _cursorType; }
|
2009-08-09 03:58:03 +00:00
|
|
|
void setCursorType(CursorType cur);
|
2009-11-10 05:16:34 +00:00
|
|
|
void loadItemCursor(const GameItem *item, bool highlighted);
|
2009-09-25 08:13:39 +00:00
|
|
|
bool lButtonPressed() const { return _lButton; }
|
|
|
|
bool rButtonPressed() const { return _rButton; }
|
2009-07-27 05:30:58 +00:00
|
|
|
void lButtonSet(bool state) { _lButton = state; }
|
|
|
|
void rButtonSet(bool state) { _rButton = state; }
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
uint16 getPosX() const { return _x; }
|
|
|
|
uint16 getPosY() const { return _y; }
|
2009-06-24 23:58:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint16 _x, _y;
|
|
|
|
bool _lButton, _rButton;
|
2009-06-25 15:08:49 +00:00
|
|
|
CursorType _cursorType;
|
2009-06-24 23:58:30 +00:00
|
|
|
DraciEngine *_vm;
|
|
|
|
};
|
|
|
|
|
2009-12-09 21:03:22 +00:00
|
|
|
} // End of namespace Draci
|
2009-06-24 23:58:30 +00:00
|
|
|
|
|
|
|
#endif // DRACI_MOUSE_H
|