2009-04-15 17:03:31 +03:00
|
|
|
/*
|
2017-07-13 10:26:03 +02:00
|
|
|
* CCursorHandler.h, part of VCMI engine
|
2009-04-15 17:03:31 +03:00
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
2009-04-16 14:14:13 +03:00
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
2018-07-25 00:36:48 +02:00
|
|
|
class CIntObject;
|
2017-07-13 10:26:03 +02:00
|
|
|
class CAnimImage;
|
|
|
|
struct SDL_Surface;
|
2018-07-25 00:36:48 +02:00
|
|
|
struct SDL_Texture;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2012-03-31 00:36:07 +03:00
|
|
|
namespace ECursor
|
|
|
|
{
|
|
|
|
enum ECursorTypes { ADVENTURE, COMBAT, DEFAULT, SPELLBOOK };
|
|
|
|
|
|
|
|
enum EBattleCursors { COMBAT_BLOCKED, COMBAT_MOVE, COMBAT_FLY, COMBAT_SHOOT,
|
2016-10-28 12:39:16 +02:00
|
|
|
COMBAT_HERO, COMBAT_QUERY, COMBAT_POINTER,
|
2012-03-31 00:36:07 +03:00
|
|
|
//various attack frames
|
|
|
|
COMBAT_SHOOT_PENALTY = 15, COMBAT_SHOOT_CATAPULT, COMBAT_HEAL,
|
|
|
|
COMBAT_SACRIFICE, COMBAT_TELEPORT};
|
|
|
|
}
|
|
|
|
|
2011-02-22 13:52:36 +02:00
|
|
|
/// handles mouse cursor
|
2016-10-28 13:03:26 +02:00
|
|
|
class CCursorHandler final
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2018-07-25 00:36:48 +02:00
|
|
|
bool needUpdate;
|
|
|
|
SDL_Texture * cursorLayer;
|
|
|
|
|
|
|
|
SDL_Surface * buffer;
|
2012-12-14 18:32:53 +03:00
|
|
|
CAnimImage * currentCursor;
|
2016-10-28 12:39:16 +02:00
|
|
|
|
|
|
|
std::unique_ptr<CAnimImage> dndObject; //if set, overrides currentCursor
|
2016-10-28 13:03:26 +02:00
|
|
|
|
|
|
|
std::array<std::unique_ptr<CAnimImage>, 4> cursors;
|
|
|
|
|
2012-12-14 18:32:53 +03:00
|
|
|
bool showing;
|
|
|
|
|
2018-07-25 00:36:48 +02:00
|
|
|
void clearBuffer();
|
|
|
|
void updateBuffer(CIntObject * payload);
|
|
|
|
void replaceBuffer(CIntObject * payload);
|
|
|
|
void shiftPos( int &x, int &y );
|
|
|
|
|
|
|
|
void updateTexture();
|
2012-12-14 18:32:53 +03:00
|
|
|
public:
|
|
|
|
/// position of cursor
|
|
|
|
int xpos, ypos;
|
|
|
|
|
|
|
|
/// Current cursor
|
|
|
|
ECursor::ECursorTypes type;
|
|
|
|
size_t frame;
|
|
|
|
|
|
|
|
/// inits cursorHandler - run only once, it's not memleak-proof (rev 1333)
|
|
|
|
void initCursor();
|
|
|
|
|
|
|
|
/// changes cursor graphic for type type (0 - adventure, 1 - combat, 2 - default, 3 - spellbook) and frame index (not used for type 3)
|
|
|
|
void changeGraphic(ECursor::ECursorTypes type, int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces the cursor with a custom image.
|
|
|
|
*
|
2013-06-26 14:18:27 +03:00
|
|
|
* @param image Image to replace cursor with or nullptr to use the normal
|
2012-12-14 18:32:53 +03:00
|
|
|
* cursor. CursorHandler takes ownership of object
|
|
|
|
*/
|
2016-10-28 12:39:16 +02:00
|
|
|
void dragAndDropCursor (std::unique_ptr<CAnimImage> image);
|
|
|
|
|
2014-07-03 14:10:01 +03:00
|
|
|
void render();
|
2009-08-30 15:47:40 +03:00
|
|
|
|
2018-07-25 00:36:48 +02:00
|
|
|
void hide() { showing=false; };
|
|
|
|
void show() { showing=true; };
|
2012-12-14 18:32:53 +03:00
|
|
|
|
|
|
|
/// change cursor's positions to (x, y)
|
|
|
|
void cursorMove(const int & x, const int & y);
|
|
|
|
/// Move cursor to screen center
|
2011-04-05 20:38:24 +03:00
|
|
|
void centerCursor();
|
2012-12-14 18:32:53 +03:00
|
|
|
|
2016-10-28 13:03:26 +02:00
|
|
|
CCursorHandler();
|
2009-10-25 16:36:11 +02:00
|
|
|
~CCursorHandler();
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|