X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsdl.h;h=fcf19341a81fd08372a5edd2c67881b012147611;hb=608be3bcd270eb45628a274eddb6dbcc8940accf;hp=e214879b688859989bf917b7958dcc76847c11db;hpb=27a283729bf1e7b956c5ceba87215a6d177b4bc7;p=rocksndiamonds.git diff --git a/src/libgame/sdl.h b/src/libgame/sdl.h index e214879b..fcf19341 100644 --- a/src/libgame/sdl.h +++ b/src/libgame/sdl.h @@ -28,6 +28,9 @@ #define TARGET_STRING "SDL" #define FULLSCREEN_STATUS FULLSCREEN_AVAILABLE +#define CURSOR_MAX_WIDTH 32 +#define CURSOR_MAX_HEIGHT 32 + /* SDL type definitions */ @@ -35,6 +38,7 @@ typedef struct SDLSurfaceInfo Bitmap; typedef struct SDLSurfaceInfo DrawBuffer; typedef struct SDLSurfaceInfo DrawWindow; typedef Uint32 Pixel; +typedef SDL_Cursor *Cursor; typedef SDLKey Key; @@ -66,6 +70,15 @@ struct SDLSurfaceInfo GC stored_clip_gc; }; +struct MouseCursorInfo +{ + int width, height; + int hot_x, hot_y; + + char data[CURSOR_MAX_WIDTH * CURSOR_MAX_HEIGHT / 8]; + char mask[CURSOR_MAX_WIDTH * CURSOR_MAX_HEIGHT / 8]; +}; + struct XY { short x, y; @@ -338,6 +351,8 @@ void SDLZoomBitmap(Bitmap *, Bitmap *); Bitmap *SDLLoadImage(char *); +void SDLSetMouseCursor(struct MouseCursorInfo *); + inline void SDLOpenAudio(void); inline void SDLCloseAudio(void);