changed "http" to "https" in URLs
[rocksndiamonds.git] / src / libgame / sdl.h
1 // ============================================================================
2 // Artsoft Retro-Game Library
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // sdl.h
10 // ============================================================================
11
12 #ifndef SDL_H
13 #define SDL_H
14
15 #include <SDL.h>
16 #include <SDL_image.h>
17 #include <SDL_mixer.h>
18 #include <SDL_net.h>
19 #include <SDL_thread.h>
20 #if defined(PLATFORM_WIN32)
21 #include <SDL_syswm.h>
22 #endif
23
24 // definitions needed for "system.c"
25
26 #define SURFACE_FLAGS           (SDL_WINDOW_RESIZABLE)
27
28 #define SET_TRANSPARENT_PIXEL   (SDL_TRUE)
29 #define UNSET_TRANSPARENT_PIXEL (SDL_FALSE)
30
31 // system dependent definitions
32
33 #define TARGET_STRING           "SDL2"
34
35 #if defined(PLATFORM_ANDROID)
36 #define WINDOW_SCALING_STATUS   WINDOW_SCALING_NOT_AVAILABLE
37 #define FULLSCREEN_STATUS       FULLSCREEN_AVAILABLE
38 #else
39 #define WINDOW_SCALING_STATUS   WINDOW_SCALING_AVAILABLE
40 #define FULLSCREEN_STATUS       FULLSCREEN_AVAILABLE
41 #endif
42
43 #define CURSOR_MAX_WIDTH        32
44 #define CURSOR_MAX_HEIGHT       32
45
46
47 // SDL type definitions
48
49 typedef struct SDLSurfaceInfo   Bitmap;
50 typedef struct SDLSurfaceInfo   DrawBuffer;
51 typedef struct SDLSurfaceInfo   DrawWindow;
52 typedef Uint32                  Pixel;
53 typedef SDL_Cursor             *Cursor;
54
55 typedef SDL_Keycode             Key;
56 typedef SDL_Keymod              KeyMod;
57
58 typedef SDL_Event               Event;
59 typedef SDL_MouseButtonEvent    ButtonEvent;
60 typedef SDL_MouseMotionEvent    MotionEvent;
61 typedef SDL_MouseWheelEvent     WheelEvent;
62 typedef SDL_TouchFingerEvent    FingerEvent;
63 typedef SDL_TextInputEvent      TextEvent;
64 typedef SDL_Event               PauseResumeEvent;
65 typedef SDL_WindowEvent         WindowEvent;
66 typedef SDL_KeyboardEvent       KeyEvent;
67
68 typedef SDL_EventFilter         EventFilter;
69
70
71 // structure definitions
72
73 struct SDLSurfaceInfo
74 {
75   char *source_filename;
76
77   int width, height;
78   SDL_Surface *surface;
79   SDL_Surface *surface_masked;
80   SDL_Texture *texture;
81   SDL_Texture *texture_masked;
82 };
83
84 struct MouseCursorInfo
85 {
86   int width, height;
87   int hot_x, hot_y;
88
89   byte data[CURSOR_MAX_WIDTH * CURSOR_MAX_HEIGHT / 8];
90   byte mask[CURSOR_MAX_WIDTH * CURSOR_MAX_HEIGHT / 8];
91 };
92
93 struct UserEventInfo
94 {
95   // same as in "struct SDL_UserEvent"
96   Uint32 type;
97   Uint32 timestamp;
98   Uint32 windowID;
99   Sint32 code;
100
101   // changed to use integer values instead of void pointers
102   Uint32 value1;
103   Uint32 value2;
104 };
105
106 typedef struct UserEventInfo    UserEvent;
107
108
109 // SDL symbol definitions
110
111 #define None                    0L
112
113 #define BLACK_PIXEL             0x000000
114 #define WHITE_PIXEL             0xffffff
115
116 #define EVENT_BUTTONPRESS       SDL_MOUSEBUTTONDOWN
117 #define EVENT_BUTTONRELEASE     SDL_MOUSEBUTTONUP
118 #define EVENT_MOTIONNOTIFY      SDL_MOUSEMOTION
119 #define EVENT_WHEELMOTION       SDL_MOUSEWHEEL
120 #define EVENT_FINGERPRESS       SDL_FINGERDOWN
121 #define EVENT_FINGERRELEASE     SDL_FINGERUP
122 #define EVENT_FINGERMOTION      SDL_FINGERMOTION
123 #define EVENT_TEXTINPUT         SDL_TEXTINPUT
124 #define EVENT_KEYPRESS          SDL_KEYDOWN
125 #define EVENT_KEYRELEASE        SDL_KEYUP
126 #define EVENT_USER              SDL_USEREVENT
127 #define EVENT_QUIT              SDL_QUIT
128
129 #define KSYM_UNDEFINED          SDLK_UNKNOWN
130
131 #define KSYM_Return             SDLK_RETURN
132 #define KSYM_Escape             SDLK_ESCAPE
133
134 #define KSYM_Left               SDLK_LEFT
135 #define KSYM_Right              SDLK_RIGHT
136 #define KSYM_Up                 SDLK_UP
137 #define KSYM_Down               SDLK_DOWN
138
139 #ifdef SDLK_KP_LEFT
140 #define KSYM_KP_Left            SDLK_KP_LEFT
141 #define KSYM_KP_Right           SDLK_KP_RIGHT
142 #define KSYM_KP_Up              SDLK_KP_UP
143 #define KSYM_KP_Down            SDLK_KP_DOWN
144 #endif
145
146 #define KSYM_KP_Enter           SDLK_KP_ENTER
147 #define KSYM_KP_Add             SDLK_KP_PLUS
148 #define KSYM_KP_Subtract        SDLK_KP_MINUS
149 #define KSYM_KP_Multiply        SDLK_KP_MULTIPLY
150 #define KSYM_KP_Divide          SDLK_KP_DIVIDE
151 #define KSYM_KP_Separator       SDLK_KP_PERIOD
152
153 #define KSYM_Shift_L            SDLK_LSHIFT
154 #define KSYM_Shift_R            SDLK_RSHIFT
155 #define KSYM_Control_L          SDLK_LCTRL
156 #define KSYM_Control_R          SDLK_RCTRL
157
158 #define KSYM_Meta_L             SDLK_LGUI
159 #define KSYM_Meta_R             SDLK_RGUI
160
161 #define KSYM_Alt_L              SDLK_LALT
162 #define KSYM_Alt_R              SDLK_RALT
163 #define KSYM_Mode_switch        SDLK_MODE
164 #define KSYM_Multi_key          SDLK_RCTRL
165
166 #define KSYM_BackSpace          SDLK_BACKSPACE
167 #define KSYM_Delete             SDLK_DELETE
168 #define KSYM_Insert             SDLK_INSERT
169 #define KSYM_Tab                SDLK_TAB
170 #define KSYM_Home               SDLK_HOME
171 #define KSYM_End                SDLK_END
172 #define KSYM_Page_Up            SDLK_PAGEUP
173 #define KSYM_Page_Down          SDLK_PAGEDOWN
174
175 #define KSYM_Select             SDLK_SELECT
176 #define KSYM_Menu               SDLK_MENU
177 #define KSYM_Back               SDLK_AC_BACK
178 #define KSYM_PlayPause          SDLK_AUDIOPLAY
179 #if defined(PLATFORM_ANDROID)
180 #define KSYM_Rewind             SDLK_AUDIOREWIND
181 #define KSYM_FastForward        SDLK_AUDIOFASTFORWARD
182 #endif
183
184 #define KSYM_space              SDLK_SPACE
185 #define KSYM_exclam             SDLK_EXCLAIM
186 #define KSYM_quotedbl           SDLK_QUOTEDBL
187 #define KSYM_numbersign         SDLK_HASH
188 #define KSYM_dollar             SDLK_DOLLAR
189 #define KSYM_percent            SDLK_PERCENT
190 #define KSYM_ampersand          SDLK_AMPERSAND
191 #define KSYM_apostrophe         SDLK_QUOTE
192 #define KSYM_parenleft          SDLK_LEFTPAREN
193 #define KSYM_parenright         SDLK_RIGHTPAREN
194 #define KSYM_asterisk           SDLK_ASTERISK
195 #define KSYM_plus               SDLK_PLUS
196 #define KSYM_comma              SDLK_COMMA
197 #define KSYM_minus              SDLK_MINUS
198 #define KSYM_period             SDLK_PERIOD
199 #define KSYM_slash              SDLK_SLASH
200
201 #define KSYM_colon              SDLK_COLON
202 #define KSYM_semicolon          SDLK_SEMICOLON
203 #define KSYM_less               SDLK_LESS
204 #define KSYM_equal              SDLK_EQUALS
205 #define KSYM_greater            SDLK_GREATER
206 #define KSYM_question           SDLK_QUESTION
207 #define KSYM_at                 SDLK_AT
208
209 #define KSYM_bracketleft        SDLK_LEFTBRACKET
210 #define KSYM_backslash          SDLK_BACKSLASH
211 #define KSYM_bracketright       SDLK_RIGHTBRACKET
212 #define KSYM_asciicircum        SDLK_CARET
213 #define KSYM_underscore         SDLK_UNDERSCORE
214 #define KSYM_grave              SDLK_BACKQUOTE
215
216 #define KSYM_quoteleft          KSYM_UNDEFINED          // undefined
217 #define KSYM_braceleft          KSYM_UNDEFINED          // undefined
218 #define KSYM_bar                KSYM_UNDEFINED          // undefined
219 #define KSYM_braceright         KSYM_UNDEFINED          // undefined
220 #define KSYM_asciitilde         KSYM_UNDEFINED          // undefined
221
222 #define KSYM_degree             176
223 #define KSYM_Adiaeresis         196
224 #define KSYM_Odiaeresis         214
225 #define KSYM_Udiaeresis         220
226 #define KSYM_adiaeresis         228
227 #define KSYM_odiaeresis         246
228 #define KSYM_udiaeresis         252
229 #define KSYM_ssharp             223
230
231 #ifndef SDLK_A
232 #define SDLK_A                  65
233 #define SDLK_B                  66
234 #define SDLK_C                  67
235 #define SDLK_D                  68
236 #define SDLK_E                  69
237 #define SDLK_F                  70
238 #define SDLK_G                  71
239 #define SDLK_H                  72
240 #define SDLK_I                  73
241 #define SDLK_J                  74
242 #define SDLK_K                  75
243 #define SDLK_L                  76
244 #define SDLK_M                  77
245 #define SDLK_N                  78
246 #define SDLK_O                  79
247 #define SDLK_P                  80
248 #define SDLK_Q                  81
249 #define SDLK_R                  82
250 #define SDLK_S                  83
251 #define SDLK_T                  84
252 #define SDLK_U                  85
253 #define SDLK_V                  86
254 #define SDLK_W                  87
255 #define SDLK_X                  88
256 #define SDLK_Y                  89
257 #define SDLK_Z                  90
258 #endif
259
260 #define KSYM_A                  SDLK_A
261 #define KSYM_B                  SDLK_B
262 #define KSYM_C                  SDLK_C
263 #define KSYM_D                  SDLK_D
264 #define KSYM_E                  SDLK_E
265 #define KSYM_F                  SDLK_F
266 #define KSYM_G                  SDLK_G
267 #define KSYM_H                  SDLK_H
268 #define KSYM_I                  SDLK_I
269 #define KSYM_J                  SDLK_J
270 #define KSYM_K                  SDLK_K
271 #define KSYM_L                  SDLK_L
272 #define KSYM_M                  SDLK_M
273 #define KSYM_N                  SDLK_N
274 #define KSYM_O                  SDLK_O
275 #define KSYM_P                  SDLK_P
276 #define KSYM_Q                  SDLK_Q
277 #define KSYM_R                  SDLK_R
278 #define KSYM_S                  SDLK_S
279 #define KSYM_T                  SDLK_T
280 #define KSYM_U                  SDLK_U
281 #define KSYM_V                  SDLK_V
282 #define KSYM_W                  SDLK_W
283 #define KSYM_X                  SDLK_X
284 #define KSYM_Y                  SDLK_Y
285 #define KSYM_Z                  SDLK_Z
286
287 #define KSYM_a                  SDLK_a
288 #define KSYM_b                  SDLK_b
289 #define KSYM_c                  SDLK_c
290 #define KSYM_d                  SDLK_d
291 #define KSYM_e                  SDLK_e
292 #define KSYM_f                  SDLK_f
293 #define KSYM_g                  SDLK_g
294 #define KSYM_h                  SDLK_h
295 #define KSYM_i                  SDLK_i
296 #define KSYM_j                  SDLK_j
297 #define KSYM_k                  SDLK_k
298 #define KSYM_l                  SDLK_l
299 #define KSYM_m                  SDLK_m
300 #define KSYM_n                  SDLK_n
301 #define KSYM_o                  SDLK_o
302 #define KSYM_p                  SDLK_p
303 #define KSYM_q                  SDLK_q
304 #define KSYM_r                  SDLK_r
305 #define KSYM_s                  SDLK_s
306 #define KSYM_t                  SDLK_t
307 #define KSYM_u                  SDLK_u
308 #define KSYM_v                  SDLK_v
309 #define KSYM_w                  SDLK_w
310 #define KSYM_x                  SDLK_x
311 #define KSYM_y                  SDLK_y
312 #define KSYM_z                  SDLK_z
313
314 #define KSYM_0                  SDLK_0
315 #define KSYM_1                  SDLK_1
316 #define KSYM_2                  SDLK_2
317 #define KSYM_3                  SDLK_3
318 #define KSYM_4                  SDLK_4
319 #define KSYM_5                  SDLK_5
320 #define KSYM_6                  SDLK_6
321 #define KSYM_7                  SDLK_7
322 #define KSYM_8                  SDLK_8
323 #define KSYM_9                  SDLK_9
324
325 #define KSYM_KP_0               SDLK_KP_0
326 #define KSYM_KP_1               SDLK_KP_1
327 #define KSYM_KP_2               SDLK_KP_2
328 #define KSYM_KP_3               SDLK_KP_3
329 #define KSYM_KP_4               SDLK_KP_4
330 #define KSYM_KP_5               SDLK_KP_5
331 #define KSYM_KP_6               SDLK_KP_6
332 #define KSYM_KP_7               SDLK_KP_7
333 #define KSYM_KP_8               SDLK_KP_8
334 #define KSYM_KP_9               SDLK_KP_9
335
336 #define KSYM_F1                 SDLK_F1
337 #define KSYM_F2                 SDLK_F2
338 #define KSYM_F3                 SDLK_F3
339 #define KSYM_F4                 SDLK_F4
340 #define KSYM_F5                 SDLK_F5
341 #define KSYM_F6                 SDLK_F6
342 #define KSYM_F7                 SDLK_F7
343 #define KSYM_F8                 SDLK_F8
344 #define KSYM_F9                 SDLK_F9
345 #define KSYM_F10                SDLK_F10
346 #define KSYM_F11                SDLK_F11
347 #define KSYM_F12                SDLK_F12
348
349 #define KSYM_FKEY_FIRST         KSYM_F1
350 #define KSYM_FKEY_LAST          KSYM_F12
351 #define KSYM_NUM_FKEYS          (KSYM_FKEY_LAST - KSYM_FKEY_FIRST + 1)
352
353 #define KSYM_PRINTABLE(k)       (((k) >= KSYM_space &&                  \
354                                   (k) <= KSYM_z)        ||              \
355                                  (k) == KSYM_Adiaeresis ||              \
356                                  (k) == KSYM_Odiaeresis ||              \
357                                  (k) == KSYM_Udiaeresis ||              \
358                                  (k) == KSYM_adiaeresis ||              \
359                                  (k) == KSYM_odiaeresis ||              \
360                                  (k) == KSYM_udiaeresis)
361
362 #define KMOD_None               KMOD_NONE
363 #define KMOD_Shift_L            KMOD_LSHIFT
364 #define KMOD_Shift_R            KMOD_RSHIFT
365 #define KMOD_Control_L          KMOD_LCTRL
366 #define KMOD_Control_R          KMOD_RCTRL
367 #define KMOD_Meta_L             KMOD_LGUI
368 #define KMOD_Meta_R             KMOD_RGUI
369 #define KMOD_Alt_L              KMOD_LALT
370 #define KMOD_Alt_R              KMOD_RALT
371
372 #define KMOD_Shift              (KMOD_Shift_L   | KMOD_Shift_R)
373 #define KMOD_Control            (KMOD_Control_L | KMOD_Control_R)
374 #define KMOD_Meta               (KMOD_Meta_L    | KMOD_Meta_R)
375 #define KMOD_Alt                (KMOD_Alt_L     | KMOD_Alt_R)
376
377 // this only contains "valid" key modifiers (and ignores keys like "NumLock")
378 #define KMOD_Valid              (KMOD_Shift   | \
379                                  KMOD_Control | \
380                                  KMOD_Meta    | \
381                                  KMOD_Alt)
382
383 // SDL function definitions
384
385 const char *SDLGetRendererName(void);
386 boolean SDLSetNativeSurface(SDL_Surface **);
387 SDL_Surface *SDLGetNativeSurface(SDL_Surface *);
388 void SDLCreateBitmapTextures(Bitmap *);
389 void SDLFreeBitmapTextures(Bitmap *);
390
391 SDL_Surface *SDL_DisplayFormat(SDL_Surface *);
392 void SDLSetWindowScaling(int);
393 void SDLSetWindowScalingQuality(char *);
394 void SDLSetWindowFullscreen(boolean);
395 void SDLSetDisplaySize(void);
396 void SDLSetScreenSizeAndOffsets(int, int);
397 void SDLSetScreenSizeForRenderer(int, int);
398 void SDLSetScreenProperties(void);
399
400 void SDLSetScreenRenderingMode(char *);
401 void SDLSetScreenVsyncMode(char *);
402 void SDLRedrawWindow(void);
403 void SDLSetWindowTitle(void);
404
405 void SDLLimitScreenUpdates(boolean);
406 void SDLInitVideoDisplay(void);
407 void SDLInitVideoBuffer(boolean);
408 boolean SDLSetVideoMode(boolean);
409 void SDLCreateBitmapContent(Bitmap *, int, int, int);
410 void SDLFreeBitmapPointers(Bitmap *);
411 void SDLCopyArea(Bitmap *, Bitmap *, int, int, int, int, int, int, int);
412 void SDLBlitTexture(Bitmap *, int, int, int, int, int, int, int);
413 void SDLFillRectangle(Bitmap *, int, int, int, int, Uint32);
414 void SDLFadeRectangle(int, int, int, int, int, int, int,
415                       void (*draw_border_function)(void));
416 void SDLDrawSimpleLine(Bitmap *, int, int, int, int, Uint32);
417 void SDLDrawLine(Bitmap *, int, int, int, int, Uint32);
418 Pixel SDLGetPixel(Bitmap *, int, int);
419 void SDLPutPixel(Bitmap *, int, int, Pixel);
420
421 void SDLInvertArea(Bitmap *, int, int, int, int, Uint32);
422 void SDLCopyInverseMasked(Bitmap *, Bitmap *, int, int, int, int, int, int);
423
424 Bitmap *SDLZoomBitmap(Bitmap *, int, int);
425
426 Bitmap *SDLLoadImage(char *);
427
428 void SDLSetMouseCursor(struct MouseCursorInfo *);
429
430 void SDLOpenAudio(void);
431 void SDLCloseAudio(void);
432
433 void SDLWaitEvent(Event *);
434 void SDLCorrectRawMousePosition(int *, int *);
435
436 void HandleJoystickEvent(Event *);
437 void SDLInitJoysticks(void);
438 boolean SDLReadJoystick(int, int *, int *, boolean *, boolean *);
439 boolean SDLCheckJoystickOpened(int);
440 void SDLClearJoystickState(void);
441 boolean SDLOpenJoystick(int);
442 void SDLCloseJoystick(int);
443
444 void PrepareFadeBitmap(int);
445
446 void Delay_WithScreenUpdates(unsigned int);
447
448 #endif // SDL_H