X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsdl.h;h=543e90ab89965ab304b6a94796810bffbf7d42c2;hb=fe158e864d3fa4b0221e9c88d8dfff0157051396;hp=9c48d515b8ce2ec9cd3b1707c82db6d0197f4b9e;hpb=ff56a43aa3799aa3357f4deca4d6482fc25a6a41;p=rocksndiamonds.git diff --git a/src/libgame/sdl.h b/src/libgame/sdl.h index 9c48d515..543e90ab 100644 --- a/src/libgame/sdl.h +++ b/src/libgame/sdl.h @@ -1,7 +1,7 @@ /*********************************************************** * Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1994-2000 Artsoft Entertainment * +* (c) 1994-2001 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -34,9 +34,10 @@ /* SDL type definitions */ -typedef struct SDLSurfaceInfo *Bitmap; -typedef struct SDLSurfaceInfo *DrawBuffer; -typedef struct SDLSurfaceInfo *DrawWindow; +typedef struct SDLSurfaceInfo Bitmap; +typedef struct SDLSurfaceInfo DrawBuffer; +typedef struct SDLSurfaceInfo DrawWindow; +typedef Uint32 Pixel; typedef SDLKey Key; @@ -59,12 +60,18 @@ typedef int Colormap; struct SDLSurfaceInfo { + char *source_filename; SDL_Surface *surface; SDL_Surface *surface_masked; GC gc; GC stored_clip_gc; }; +struct XY +{ + short x, y; +}; + /* SDL symbol definitions */ @@ -309,13 +316,23 @@ struct SDLSurfaceInfo /* SDL function definitions */ inline void SDLInitVideoDisplay(void); -inline void SDLInitVideoBuffer(DrawBuffer *, DrawWindow *, boolean); -inline boolean SDLSetVideoMode(DrawBuffer *, boolean); -inline void SDLCopyArea(Bitmap, Bitmap, int, int, int, int, int, int, int); -inline void SDLFillRectangle(Bitmap, int, int, int, int, unsigned int); -inline void SDLDrawSimpleLine(SDL_Surface *, int, int, int, int, unsigned int); +inline void SDLInitVideoBuffer(DrawBuffer **, DrawWindow **, boolean); +inline boolean SDLSetVideoMode(DrawBuffer **, boolean); +inline void SDLCopyArea(Bitmap *, Bitmap *, int, int, int, int, int, int, int); +inline void SDLFillRectangle(Bitmap *, int, int, int, int, unsigned int); +inline void SDLDrawSimpleLine(Bitmap *, int, int, int, int, unsigned int); +inline void SDLDrawLine(Bitmap *, int, int, int, int, Uint32); +inline Pixel SDLGetPixel(Bitmap *, int, int); -inline boolean SDLOpenAudio(void); +Bitmap *SDLLoadImage(char *); + +inline void SDLOpenAudio(void); inline void SDLCloseAudio(void); +inline void SDLNextEvent(Event *); + +void HandleJoystickEvent(Event *); +void SDLInitJoysticks(void); +boolean SDLReadJoystick(int, int *, int *, boolean *, boolean *); + #endif /* SDL_H */