1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#ifndef MOUSECURSOR_H
#define MOUSECURSOR_H
#include <string>
#include <vector>
#include "Rendering/GL/myGL.h"
//#include "HwMouseCursor.h"
class CBitmap;
class IHwCursor;
class CMouseCursor {
public:
enum HotSpot {TopLeft, Center};
bool animated;
bool hwValid; //if hardware cursor is valid
static CMouseCursor* New(const std::string &name, HotSpot hs);
~CMouseCursor(void);
void Update();
void Draw(int x, int y, float scale); // software cursor draw
void DrawQuad(int x, int y); // draw command queue icon
void BindTexture(); // software mouse cursor
void BindHwCursor(); // hardware mouse cursor
int GetMaxSizeX() const { return xmaxsize; }
int GetMaxSizeY() const { return ymaxsize; }
protected:
struct ImageData {
GLuint texture;
int xOrigSize;
int yOrigSize;
int xAlignedSize;
int yAlignedSize;
};
struct FrameData {
FrameData(const ImageData& _image, float time)
: image(_image), length(time) {}
ImageData image;
float length;
float startTime;
float endTime;
};
protected:
CMouseCursor(const std::string &name, HotSpot hs);
bool LoadCursorImage(const std::string& name, struct ImageData& image);
bool BuildFromSpecFile(const std::string& name);
bool BuildFromFileNames(const std::string& name, int lastFrame);
CBitmap* getAlignedBitmap(const CBitmap &orig);
void setBitmapTransparency(CBitmap &bm, int r, int g, int b);
protected:
HotSpot hotSpot;
std::vector<ImageData> images;
std::vector<FrameData> frames;
IHwCursor* hwCursor; // hardware cursor
float animTime;
float animPeriod;
int currentFrame;
int xmaxsize;
int ymaxsize;
int xofs; // describes where the center of the cursor is,
int yofs; // based on xmaxsize, ymaxsize, and the hotspot
};
static const float minFrameLength = 0.010f; // seconds
static const float defFrameLength = 0.100f; // seconds
#endif /* MOUSECURSOR_H */
|