Skip to content

Latest commit

 

History

History
3628 lines (3170 loc) · 104 KB

SDL12_compat.c

File metadata and controls

3628 lines (3170 loc) · 104 KB
 
Mar 4, 2013
Mar 4, 2013
1
2
/*
Simple DirectMedia Layer
Feb 10, 2019
Feb 10, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
Mar 4, 2013
Mar 4, 2013
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/* This file contains functions for backwards compatibility with SDL 1.2 */
Feb 10, 2019
Feb 10, 2019
24
// !!! FIXME: clean up code conventions
Feb 13, 2019
Feb 13, 2019
25
// !!! FIXME: grep for VideoWindow20 places that might care if it's NULL
Feb 10, 2019
Feb 10, 2019
26
Apr 14, 2013
Apr 14, 2013
27
#include "SDL20_include_wrapper.h"
Mar 4, 2013
Mar 4, 2013
28
29
30
31
32
#if !SDL_VERSION_ATLEAST(2,0,0)
#error You need to compile against SDL 2.0 headers.
#endif
Apr 14, 2013
Apr 14, 2013
33
34
35
36
37
38
39
/*
* We report the library version as 1.2.$(SDL12_COMPAT_VERSION). This number
* should be way ahead of what SDL-1.2 Classic would report, so apps can
* decide if they're running under the compat layer, if they really care.
*/
#define SDL12_COMPAT_VERSION 50
Mar 7, 2013
Mar 7, 2013
40
41
#include <stdarg.h>
Feb 10, 2019
Feb 10, 2019
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// !!! IMPLEMENT_ME SDL_CDClose
// !!! IMPLEMENT_ME SDL_CDEject
// !!! IMPLEMENT_ME SDL_CDName
// !!! IMPLEMENT_ME SDL_CDNumDrives
// !!! IMPLEMENT_ME SDL_CDOpen
// !!! IMPLEMENT_ME SDL_CDPause
// !!! IMPLEMENT_ME SDL_CDPlay
// !!! IMPLEMENT_ME SDL_CDPlayTracks
// !!! IMPLEMENT_ME SDL_CDResume
// !!! IMPLEMENT_ME SDL_CDStatus
// !!! IMPLEMENT_ME SDL_CDStop
// !!! IMPLEMENT_ME SDL_CreateYUVOverlay
// !!! IMPLEMENT_ME SDL_DisplayFormatAlpha
// !!! IMPLEMENT_ME SDL_DisplayYUVOverlay
// !!! IMPLEMENT_ME SDL_EnableKeyRepeat
// !!! IMPLEMENT_ME SDL_EnableUNICODE
// !!! IMPLEMENT_ME SDL_FreeYUVOverlay
// !!! IMPLEMENT_ME SDL_GL_Lock
// !!! IMPLEMENT_ME SDL_GL_Unlock
// !!! IMPLEMENT_ME SDL_GL_UpdateRects
65
66
67
68
// !!! IMPLEMENT_ME SDL_GetKeyName
// !!! IMPLEMENT_ME SDL_GetKeyState
// !!! IMPLEMENT_ME SDL_GetModState
// !!! IMPLEMENT_ME SDL_GetRelativeMouseState
Feb 10, 2019
Feb 10, 2019
69
70
71
72
// !!! IMPLEMENT_ME SDL_GetVideoSurface
// !!! IMPLEMENT_ME SDL_GetWMInfo
73
// !!! IMPLEMENT_ME SDL_LockSurface
Feb 10, 2019
Feb 10, 2019
74
// !!! IMPLEMENT_ME SDL_LockYUVOverlay
75
// !!! IMPLEMENT_ME SDL_LowerBlit
Feb 10, 2019
Feb 10, 2019
76
77
// !!! IMPLEMENT_ME SDL_SetAlpha
78
// !!! IMPLEMENT_ME SDL_SetColorKey
Feb 10, 2019
Feb 10, 2019
79
80
// !!! IMPLEMENT_ME SDL_SetColors
81
// !!! IMPLEMENT_ME SDL_SetModState
Feb 10, 2019
Feb 10, 2019
82
83
// !!! IMPLEMENT_ME SDL_SetPalette
// !!! IMPLEMENT_ME SDL_SetVideoMode
84
85
// !!! IMPLEMENT_ME SDL_SoftStretch
// !!! IMPLEMENT_ME SDL_UnlockSurface
Feb 10, 2019
Feb 10, 2019
86
87
// !!! IMPLEMENT_ME SDL_UnlockYUVOverlay
// !!! IMPLEMENT_ME SDL_UpdateRects
88
// !!! IMPLEMENT_ME SDL_UpperBlit
Mar 4, 2013
Mar 4, 2013
89
Feb 10, 2019
Feb 10, 2019
90
91
92
93
94
95
96
// !!! FIXME: should SDL_VideoInit really be a passthrough?
// !!! FIXME: should SDL_VideoQuit really be a passthrough?
// !!! IMPLEMENT_ME SDL_WM_SetIcon
// !!! IMPLEMENT_ME SDL_WM_ToggleFullScreen
// !!! IMPLEMENT_ME X11_KeyToUnicode
Mar 6, 2013
Mar 6, 2013
97
Feb 15, 2019
Feb 15, 2019
98
99
#define SDL_BlitSurface SDL_UpperBlit
Feb 13, 2019
Feb 13, 2019
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#if 0
#define FIXME(x) do {} while (0)
#else
#define FIXME(x) \
do { \
static SDL_bool seen = SDL_FALSE; \
if (!seen) { \
fprintf(stderr, "FIXME: %s (%s:%d)\n", x, __FILE__, __LINE__); \
seen = SDL_TRUE; \
} \
} while (0)
#endif
Mar 6, 2013
Mar 6, 2013
114
#define SDL20_SYM(rc,fn,params,args,ret) \
Apr 14, 2013
Apr 14, 2013
115
typedef rc (SDLCALL *SDL20_##fn##_t) params; \
Mar 6, 2013
Mar 6, 2013
116
117
118
static SDL20_##fn##_t SDL20_##fn = NULL;
#include "SDL20_syms.h"
Apr 14, 2013
Apr 14, 2013
119
120
/* Things that _should_ be binary compatible pass right through... */
#define SDL20_SYM_PASSTHROUGH(rc,fn,params,args,ret) \
Apr 14, 2013
Apr 14, 2013
121
DECLSPEC rc SDLCALL SDL_##fn params { ret SDL20_##fn args; }
Apr 14, 2013
Apr 14, 2013
122
123
#include "SDL20_syms.h"
Mar 6, 2013
Mar 6, 2013
124
Apr 14, 2013
Apr 14, 2013
125
126
127
128
129
130
131
132
133
134
/* these are macros (etc) in the SDL headers, so make our own. */
#define SDL20_OutOfMemory() SDL20_Error(SDL_ENOMEM)
#define SDL20_Unsupported() SDL20_Error(SDL_UNSUPPORTED)
#define SDL20_InvalidParamError(param) SDL20_SetError("Parameter '%s' is invalid", (param))
#define SDL20_zero(x) SDL20_memset(&(x), 0, sizeof((x)))
#define SDL20_zerop(x) SDL20_memset((x), 0, sizeof(*(x)))
#define SDL_ReportAssertion SDL20_ReportAssertion
#define SDL12_DEFAULT_REPEAT_DELAY 500
#define SDL12_DEFAULT_REPEAT_INTERVAL 30
Mar 6, 2013
Mar 6, 2013
135
136
137
138
139
140
141
142
143
144
#define SDL12_INIT_TIMER 0x00000001
#define SDL12_INIT_AUDIO 0x00000010
#define SDL12_INIT_VIDEO 0x00000020
#define SDL12_INIT_CDROM 0x00000100
#define SDL12_INIT_JOYSTICK 0x00000200
#define SDL12_INIT_NOPARACHUTE 0x00100000
#define SDL12_INIT_EVENTTHREAD 0x01000000
#define SDL12_INIT_EVERYTHING 0x0000FFFF
Feb 19, 2019
Feb 19, 2019
145
146
147
148
149
150
151
152
typedef struct SDL12_Rect
{
Sint16 x;
Sint16 y;
Uint16 w;
Uint16 h;
} SDL12_Rect;
Mar 8, 2013
Mar 8, 2013
153
typedef struct SDL12_Palette
Mar 6, 2013
Mar 6, 2013
154
{
Mar 8, 2013
Mar 8, 2013
155
156
int ncolors;
SDL_Color *colors;
Mar 6, 2013
Mar 6, 2013
157
158
} SDL12_Palette;
Mar 8, 2013
Mar 8, 2013
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
typedef struct SDL12_PixelFormat
{
SDL12_Palette *palette;
Uint8 BitsPerPixel;
Uint8 BytesPerPixel;
Uint8 Rloss;
Uint8 Gloss;
Uint8 Bloss;
Uint8 Aloss;
Uint8 Rshift;
Uint8 Gshift;
Uint8 Bshift;
Uint8 Ashift;
Uint32 Rmask;
Uint32 Gmask;
Uint32 Bmask;
Uint32 Amask;
Uint32 colorkey;
Uint8 alpha;
Mar 6, 2013
Mar 6, 2013
178
179
} SDL12_PixelFormat;
Apr 1, 2013
Apr 1, 2013
180
181
182
183
184
185
186
187
188
typedef struct SDL12_Surface
{
Uint32 flags;
SDL12_PixelFormat *format;
int w;
int h;
Uint16 pitch;
void *pixels;
int offset;
Apr 14, 2013
Apr 14, 2013
189
SDL_Surface *surface20; /* the real SDL 1.2 has an opaque pointer to a platform-specific thing here named "hwdata". */
Feb 19, 2019
Feb 19, 2019
190
SDL12_Rect clip_rect;
Apr 1, 2013
Apr 1, 2013
191
192
193
194
195
196
197
Uint32 unused1;
Uint32 locked;
void *blitmap;
unsigned int format_version;
int refcount;
} SDL12_Surface;
Feb 14, 2019
Feb 14, 2019
198
199
200
201
202
203
204
205
206
207
208
209
210
211
typedef struct SDL12_Overlay
{
Uint32 format;
int w;
int h;
int planes;
Uint16 *pitches;
Uint8 **pixels;
void *hwfuncs;
void *hwdata;
Uint32 hw_overlay :1;
Uint32 UnusedBits :31;
} SDL12_Overlay;
Mar 8, 2013
Mar 8, 2013
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
typedef struct
{
Uint32 hw_available :1;
Uint32 wm_available :1;
Uint32 UnusedBits1 :6;
Uint32 UnusedBits2 :1;
Uint32 blit_hw :1;
Uint32 blit_hw_CC :1;
Uint32 blit_hw_A :1;
Uint32 blit_sw :1;
Uint32 blit_sw_CC :1;
Uint32 blit_sw_A :1;
Uint32 blit_fill :1;
Uint32 UnusedBits3 :16;
Uint32 video_mem;
SDL_PixelFormat *vfmt;
int current_w;
int current_h;
} SDL12_VideoInfo;
#define SDL12_HWSURFACE 0x00000001
#define SDL12_ASYNCBLIT 0x00000004
#define SDL12_ANYFORMAT 0x10000000
#define SDL12_HWPALETTE 0x20000000
#define SDL12_DOUBLEBUF 0x40000000
#define SDL12_FULLSCREEN 0x80000000
#define SDL12_OPENGL 0x00000002
#define SDL12_OPENGLBLIT 0x0000000A
#define SDL12_RESIZABLE 0x00000010
#define SDL12_NOFRAME 0x00000020
#define SDL12_HWACCEL 0x00000100
#define SDL12_SRCCOLORKEY 0x00001000
#define SDL12_RLEACCELOK 0x00002000
#define SDL12_RLEACCEL 0x00004000
#define SDL12_SRCALPHA 0x00010000
#define SDL12_PREALLOC 0x01000000
Feb 21, 2019
Feb 21, 2019
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
typedef enum
{
SDLK12_UNKNOWN = 0,
SDLK12_FIRST = 0,
SDLK12_BACKSPACE = 8,
SDLK12_TAB = 9,
SDLK12_CLEAR = 12,
SDLK12_RETURN = 13,
SDLK12_PAUSE = 19,
SDLK12_ESCAPE = 27,
SDLK12_SPACE = 32,
SDLK12_EXCLAIM = 33,
SDLK12_QUOTEDBL = 34,
SDLK12_HASH = 35,
SDLK12_DOLLAR = 36,
SDLK12_AMPERSAND = 38,
SDLK12_QUOTE = 39,
SDLK12_LEFTPAREN = 40,
SDLK12_RIGHTPAREN = 41,
SDLK12_ASTERISK = 42,
SDLK12_PLUS = 43,
SDLK12_COMMA = 44,
SDLK12_MINUS = 45,
SDLK12_PERIOD = 46,
SDLK12_SLASH = 47,
SDLK12_0 = 48,
SDLK12_1 = 49,
SDLK12_2 = 50,
SDLK12_3 = 51,
SDLK12_4 = 52,
SDLK12_5 = 53,
SDLK12_6 = 54,
SDLK12_7 = 55,
SDLK12_8 = 56,
SDLK12_9 = 57,
SDLK12_COLON = 58,
SDLK12_SEMICOLON = 59,
SDLK12_LESS = 60,
SDLK12_EQUALS = 61,
SDLK12_GREATER = 62,
SDLK12_QUESTION = 63,
SDLK12_AT = 64,
SDLK12_LEFTBRACKET = 91,
SDLK12_BACKSLASH = 92,
SDLK12_RIGHTBRACKET = 93,
SDLK12_CARET = 94,
SDLK12_UNDERSCORE = 95,
SDLK12_BACKQUOTE = 96,
SDLK12_a = 97,
SDLK12_b = 98,
SDLK12_c = 99,
SDLK12_d = 100,
SDLK12_e = 101,
SDLK12_f = 102,
SDLK12_g = 103,
SDLK12_h = 104,
SDLK12_i = 105,
SDLK12_j = 106,
SDLK12_k = 107,
SDLK12_l = 108,
SDLK12_m = 109,
SDLK12_n = 110,
SDLK12_o = 111,
SDLK12_p = 112,
SDLK12_q = 113,
SDLK12_r = 114,
SDLK12_s = 115,
SDLK12_t = 116,
SDLK12_u = 117,
SDLK12_v = 118,
SDLK12_w = 119,
SDLK12_x = 120,
SDLK12_y = 121,
SDLK12_z = 122,
SDLK12_DELETE = 127,
SDLK12_WORLD_0 = 160,
SDLK12_WORLD_1 = 161,
SDLK12_WORLD_2 = 162,
SDLK12_WORLD_3 = 163,
SDLK12_WORLD_4 = 164,
SDLK12_WORLD_5 = 165,
SDLK12_WORLD_6 = 166,
SDLK12_WORLD_7 = 167,
SDLK12_WORLD_8 = 168,
SDLK12_WORLD_9 = 169,
SDLK12_WORLD_10 = 170,
SDLK12_WORLD_11 = 171,
SDLK12_WORLD_12 = 172,
SDLK12_WORLD_13 = 173,
SDLK12_WORLD_14 = 174,
SDLK12_WORLD_15 = 175,
SDLK12_WORLD_16 = 176,
SDLK12_WORLD_17 = 177,
SDLK12_WORLD_18 = 178,
SDLK12_WORLD_19 = 179,
SDLK12_WORLD_20 = 180,
SDLK12_WORLD_21 = 181,
SDLK12_WORLD_22 = 182,
SDLK12_WORLD_23 = 183,
SDLK12_WORLD_24 = 184,
SDLK12_WORLD_25 = 185,
SDLK12_WORLD_26 = 186,
SDLK12_WORLD_27 = 187,
SDLK12_WORLD_28 = 188,
SDLK12_WORLD_29 = 189,
SDLK12_WORLD_30 = 190,
SDLK12_WORLD_31 = 191,
SDLK12_WORLD_32 = 192,
SDLK12_WORLD_33 = 193,
SDLK12_WORLD_34 = 194,
SDLK12_WORLD_35 = 195,
SDLK12_WORLD_36 = 196,
SDLK12_WORLD_37 = 197,
SDLK12_WORLD_38 = 198,
SDLK12_WORLD_39 = 199,
SDLK12_WORLD_40 = 200,
SDLK12_WORLD_41 = 201,
SDLK12_WORLD_42 = 202,
SDLK12_WORLD_43 = 203,
SDLK12_WORLD_44 = 204,
SDLK12_WORLD_45 = 205,
SDLK12_WORLD_46 = 206,
SDLK12_WORLD_47 = 207,
SDLK12_WORLD_48 = 208,
SDLK12_WORLD_49 = 209,
SDLK12_WORLD_50 = 210,
SDLK12_WORLD_51 = 211,
SDLK12_WORLD_52 = 212,
SDLK12_WORLD_53 = 213,
SDLK12_WORLD_54 = 214,
SDLK12_WORLD_55 = 215,
SDLK12_WORLD_56 = 216,
SDLK12_WORLD_57 = 217,
SDLK12_WORLD_58 = 218,
SDLK12_WORLD_59 = 219,
SDLK12_WORLD_60 = 220,
SDLK12_WORLD_61 = 221,
SDLK12_WORLD_62 = 222,
SDLK12_WORLD_63 = 223,
SDLK12_WORLD_64 = 224,
SDLK12_WORLD_65 = 225,
SDLK12_WORLD_66 = 226,
SDLK12_WORLD_67 = 227,
SDLK12_WORLD_68 = 228,
SDLK12_WORLD_69 = 229,
SDLK12_WORLD_70 = 230,
SDLK12_WORLD_71 = 231,
SDLK12_WORLD_72 = 232,
SDLK12_WORLD_73 = 233,
SDLK12_WORLD_74 = 234,
SDLK12_WORLD_75 = 235,
SDLK12_WORLD_76 = 236,
SDLK12_WORLD_77 = 237,
SDLK12_WORLD_78 = 238,
SDLK12_WORLD_79 = 239,
SDLK12_WORLD_80 = 240,
SDLK12_WORLD_81 = 241,
SDLK12_WORLD_82 = 242,
SDLK12_WORLD_83 = 243,
SDLK12_WORLD_84 = 244,
SDLK12_WORLD_85 = 245,
SDLK12_WORLD_86 = 246,
SDLK12_WORLD_87 = 247,
SDLK12_WORLD_88 = 248,
SDLK12_WORLD_89 = 249,
SDLK12_WORLD_90 = 250,
SDLK12_WORLD_91 = 251,
SDLK12_WORLD_92 = 252,
SDLK12_WORLD_93 = 253,
SDLK12_WORLD_94 = 254,
SDLK12_WORLD_95 = 255,
SDLK12_KP0 = 256,
SDLK12_KP1 = 257,
SDLK12_KP2 = 258,
SDLK12_KP3 = 259,
SDLK12_KP4 = 260,
SDLK12_KP5 = 261,
SDLK12_KP6 = 262,
SDLK12_KP7 = 263,
SDLK12_KP8 = 264,
SDLK12_KP9 = 265,
SDLK12_KP_PERIOD = 266,
SDLK12_KP_DIVIDE = 267,
SDLK12_KP_MULTIPLY = 268,
SDLK12_KP_MINUS = 269,
SDLK12_KP_PLUS = 270,
SDLK12_KP_ENTER = 271,
SDLK12_KP_EQUALS = 272,
SDLK12_UP = 273,
SDLK12_DOWN = 274,
SDLK12_RIGHT = 275,
SDLK12_LEFT = 276,
SDLK12_INSERT = 277,
SDLK12_HOME = 278,
SDLK12_END = 279,
SDLK12_PAGEUP = 280,
SDLK12_PAGEDOWN = 281,
SDLK12_F1 = 282,
SDLK12_F2 = 283,
SDLK12_F3 = 284,
SDLK12_F4 = 285,
SDLK12_F5 = 286,
SDLK12_F6 = 287,
SDLK12_F7 = 288,
SDLK12_F8 = 289,
SDLK12_F9 = 290,
SDLK12_F10 = 291,
SDLK12_F11 = 292,
SDLK12_F12 = 293,
SDLK12_F13 = 294,
SDLK12_F14 = 295,
SDLK12_F15 = 296,
SDLK12_NUMLOCK = 300,
SDLK12_CAPSLOCK = 301,
SDLK12_SCROLLOCK = 302,
SDLK12_RSHIFT = 303,
SDLK12_LSHIFT = 304,
SDLK12_RCTRL = 305,
SDLK12_LCTRL = 306,
SDLK12_RALT = 307,
SDLK12_LALT = 308,
SDLK12_RMETA = 309,
SDLK12_LMETA = 310,
SDLK12_LSUPER = 311,
SDLK12_RSUPER = 312,
SDLK12_MODE = 313,
SDLK12_COMPOSE = 314,
SDLK12_HELP = 315,
SDLK12_PRINT = 316,
SDLK12_SYSREQ = 317,
SDLK12_BREAK = 318,
SDLK12_MENU = 319,
SDLK12_POWER = 320,
SDLK12_EURO = 321,
SDLK12_UNDO = 322,
SDLK12_LAST
} SDL12Key;
typedef enum
{
KMOD12_NONE = 0x0000,
KMOD12_LSHIFT = 0x0001,
KMOD12_RSHIFT = 0x0002,
KMOD12_LCTRL = 0x0040,
KMOD12_RCTRL = 0x0080,
KMOD12_LALT = 0x0100,
KMOD12_RALT = 0x0200,
KMOD12_LMETA = 0x0400,
KMOD12_RMETA = 0x0800,
KMOD12_NUM = 0x1000,
KMOD12_CAPS = 0x2000,
KMOD12_MODE = 0x4000,
KMOD12_RESERVED = 0x8000
} SDL12Mod;
typedef struct SDL12_keysym
{
Uint8 scancode;
SDL12Key sym;
SDL12Mod mod;
Uint16 unicode;
} SDL12_keysym;
Apr 1, 2013
Apr 1, 2013
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
typedef enum
{
SDL12_NOEVENT = 0,
SDL12_ACTIVEEVENT,
SDL12_KEYDOWN,
SDL12_KEYUP,
SDL12_MOUSEMOTION,
SDL12_MOUSEBUTTONDOWN,
SDL12_MOUSEBUTTONUP,
SDL12_JOYAXISMOTION,
SDL12_JOYBALLMOTION,
SDL12_JOYHATMOTION,
SDL12_JOYBUTTONDOWN,
SDL12_JOYBUTTONUP,
SDL12_QUIT,
SDL12_SYSWMEVENT,
SDL12_EVENT_RESERVEDA,
SDL12_EVENT_RESERVEDB,
SDL12_VIDEORESIZE,
SDL12_VIDEOEXPOSE,
SDL12_USEREVENT = 24,
SDL12_NUMEVENTS = 32
} SDL12_EventType;
Apr 14, 2013
Apr 14, 2013
537
538
539
540
541
#define SDL12_APPMOUSEFOCUS (1<<0)
#define SDL12_APPINPUTFOCUS (1<<1)
#define SDL12_APPACTIVE (1<<2)
Apr 1, 2013
Apr 1, 2013
542
543
544
545
546
547
548
549
550
551
552
553
typedef struct
{
Uint8 type;
Uint8 gain;
Uint8 state;
} SDL12_ActiveEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 state;
Feb 21, 2019
Feb 21, 2019
554
SDL12_keysym keysym;
Apr 1, 2013
Apr 1, 2013
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
} SDL12_KeyboardEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 state;
Uint16 x, y;
Sint16 xrel;
Sint16 yrel;
} SDL12_MouseMotionEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 button;
Uint8 state;
Uint16 x, y;
} SDL12_MouseButtonEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 axis;
Sint16 value;
} SDL12_JoyAxisEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 ball;
Sint16 xrel;
Sint16 yrel;
} SDL12_JoyBallEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 hat;
Uint8 value;
} SDL12_JoyHatEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 button;
Uint8 state;
} SDL12_JoyButtonEvent;
typedef struct
{
Uint8 type;
int w;
int h;
} SDL12_ResizeEvent;
typedef struct
{
Uint8 type;
} SDL12_ExposeEvent;
typedef struct
{
Uint8 type;
} SDL12_QuitEvent;
typedef struct
{
Uint8 type;
int code;
void *data1;
void *data2;
} SDL12_UserEvent;
typedef struct
{
Uint8 type;
void *msg;
} SDL12_SysWMEvent;
typedef union
{
Uint8 type;
SDL12_ActiveEvent active;
SDL12_KeyboardEvent key;
SDL12_MouseMotionEvent motion;
SDL12_MouseButtonEvent button;
SDL12_JoyAxisEvent jaxis;
SDL12_JoyBallEvent jball;
SDL12_JoyHatEvent jhat;
SDL12_JoyButtonEvent jbutton;
SDL12_ResizeEvent resize;
SDL12_ExposeEvent expose;
SDL12_QuitEvent quit;
SDL12_UserEvent user;
SDL12_SysWMEvent syswm;
} SDL12_Event;
Mar 8, 2013
Mar 8, 2013
657
Apr 14, 2013
Apr 14, 2013
658
659
660
661
662
663
typedef int (SDLCALL *SDL12_EventFilter)(const SDL12_Event *event12);
static int EventFilter20to12(void *data, SDL_Event *event20);
typedef Uint32 (SDLCALL *SDL12_TimerCallback)(Uint32 interval);
typedef SDL_TimerCallback SDL12_NewTimerCallback;
Apr 11, 2013
Apr 11, 2013
664
typedef struct
Apr 14, 2013
Apr 14, 2013
665
{
Feb 19, 2019
Feb 19, 2019
666
SDL12_Rect area;
Apr 11, 2013
Apr 11, 2013
667
668
669
670
671
672
673
674
Sint16 hot_x;
Sint16 hot_y;
Uint8 *data;
Uint8 *mask;
Uint8 *save[2];
SDL_Cursor *wm_cursor; /* the real SDL 1.2 has an opaque pointer to a platform-specific cursor here. */
} SDL12_Cursor;
Apr 13, 2013
Apr 13, 2013
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
typedef enum
{
SDL12_GL_RED_SIZE,
SDL12_GL_GREEN_SIZE,
SDL12_GL_BLUE_SIZE,
SDL12_GL_ALPHA_SIZE,
SDL12_GL_BUFFER_SIZE,
SDL12_GL_DOUBLEBUFFER,
SDL12_GL_DEPTH_SIZE,
SDL12_GL_STENCIL_SIZE,
SDL12_GL_ACCUM_RED_SIZE,
SDL12_GL_ACCUM_GREEN_SIZE,
SDL12_GL_ACCUM_BLUE_SIZE,
SDL12_GL_ACCUM_ALPHA_SIZE,
SDL12_GL_STEREO,
SDL12_GL_MULTISAMPLEBUFFERS,
SDL12_GL_MULTISAMPLESAMPLES,
SDL12_GL_ACCELERATED_VISUAL,
SDL12_GL_SWAP_CONTROL,
SDL12_GL_MAX_ATTRIBUTE
} SDL12_GLattr;
Apr 11, 2013
Apr 11, 2013
696
Jul 26, 2014
Jul 26, 2014
697
698
699
700
typedef struct
{
Uint32 format;
Feb 19, 2019
Feb 19, 2019
701
702
SDL12_Rect *modeslist12;
SDL12_Rect **modes12; /* ptrs to each item in modeslist, for SDL_ListModes() */
Jul 26, 2014
Jul 26, 2014
703
704
} VideoModeList;
Feb 21, 2019
Feb 21, 2019
705
706
707
708
709
710
typedef struct
{
int device_index;
SDL_Joystick *joystick;
} JoystickOpenedItem;
Feb 13, 2019
Feb 13, 2019
711
// !!! FIXME: go through all of these.
Jul 26, 2014
Jul 26, 2014
712
713
static VideoModeList *VideoModes = NULL;
static int VideoModesCount = 0;
Feb 14, 2019
Feb 14, 2019
714
static SDL12_VideoInfo VideoInfo12;
Apr 1, 2013
Apr 1, 2013
715
static SDL_Window *VideoWindow20 = NULL;
Feb 14, 2019
Feb 14, 2019
716
717
718
719
720
static SDL_Renderer *VideoRenderer20 = NULL;
static SDL_Texture *VideoTexture20 = NULL;
static SDL12_Surface *VideoSurface12 = NULL;
static SDL_Surface *VideoConvertSurface20 = NULL;
static SDL_GLContext *VideoGLContext20 = NULL;
Mar 8, 2013
Mar 8, 2013
721
722
static char *WindowTitle = NULL;
static char *WindowIconTitle = NULL;
Feb 14, 2019
Feb 14, 2019
723
static SDL12_Surface *VideoIcon12;
Mar 8, 2013
Mar 8, 2013
724
725
726
static int EnabledUnicode = 0;
static int VideoDisplayIndex = 0;
static int CDRomInit = 0;
Apr 1, 2013
Apr 1, 2013
727
static SDL12_EventFilter EventFilter12 = NULL;
Feb 14, 2019
Feb 14, 2019
728
static SDL12_Cursor *CurrentCursor12 = NULL;
Apr 13, 2013
Apr 13, 2013
729
static Uint8 EventStates[SDL12_NUMEVENTS];
Apr 13, 2013
Apr 13, 2013
730
static int SwapInterval = 0;
Feb 21, 2019
Feb 21, 2019
731
static JoystickOpenedItem JoystickOpenList[16];
Apr 1, 2013
Apr 1, 2013
732
733
734
// !!! FIXME: need a mutex for the event queue.
#define SDL12_MAXEVENTS 128
Apr 10, 2013
Apr 10, 2013
735
736
737
738
739
740
741
742
743
744
typedef struct EventQueueType
{
SDL12_Event event12;
struct EventQueueType *next;
} EventQueueType;
static EventQueueType EventQueuePool[SDL12_MAXEVENTS];
static EventQueueType *EventQueueHead = NULL;
static EventQueueType *EventQueueTail = NULL;
static EventQueueType *EventQueueAvailable = NULL;
Mar 6, 2013
Mar 6, 2013
745
Apr 14, 2013
Apr 14, 2013
746
Mar 6, 2013
Mar 6, 2013
747
748
/* Obviously we can't use SDL_LoadObject() to load SDL2. :) */
#if defined(_WINDOWS)
Apr 1, 2013
Apr 1, 2013
749
750
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
Mar 6, 2013
Mar 6, 2013
751
752
753
754
755
#define SDL20_LIBNAME "SDL2.dll"
static HANDLE Loaded_SDL20 = NULL;
#define LoadSDL20Library() ((Loaded_SDL20 = LoadLibraryA(SDL20_LIBNAME)) != NULL)
#define LookupSDL20Sym(sym) GetProcAddress(Loaded_SDL20, sym)
#define CloseSDL20Library() { { if (Loaded_SDL20) { FreeLibrary(Loaded_SDL20); Loaded_SDL20 = NULL; } }
Apr 1, 2013
Apr 1, 2013
756
757
#elif defined(unix) || defined(__APPLE__)
#include <dlfcn.h>
Mar 6, 2013
Mar 6, 2013
758
759
760
761
762
763
#ifdef __APPLE__
#define SDL20_LIBNAME "libSDL2.dylib"
#else
#define SDL20_LIBNAME "libSDL2-2.0.so.0"
#endif
static void *Loaded_SDL20 = NULL;
Feb 28, 2019
Feb 28, 2019
764
#define LoadSDL20Library() ((Loaded_SDL20 = dlopen(SDL20_LIBNAME, RTLD_LOCAL|RTLD_NOW)) != NULL)
Mar 6, 2013
Mar 6, 2013
765
766
767
768
769
#define LookupSDL20Sym(sym) dlsym(Loaded_SDL20, sym)
#define CloseSDL20Library() { if (Loaded_SDL20) { dlclose(Loaded_SDL20); Loaded_SDL20 = NULL; } }
#else
#error Please define your platform.
#endif
Mar 4, 2013
Mar 4, 2013
770
Mar 6, 2013
Mar 6, 2013
771
772
static void *
LoadSDL20Symbol(const char *fn, int *okay)
Mar 4, 2013
Mar 4, 2013
773
{
Mar 6, 2013
Mar 6, 2013
774
void *retval = NULL;
Feb 21, 2019
Feb 21, 2019
775
if (*okay) { /* only bother trying if we haven't previously failed. */
Mar 6, 2013
Mar 6, 2013
776
retval = LookupSDL20Sym(fn);
Feb 21, 2019
Feb 21, 2019
777
778
779
780
781
782
783
784
if (retval == NULL) {
/* Flip to 1 to warn but maybe work if nothing calls that function, flip to zero to fail out. */
#if 0
fprintf(stderr, "WARNING: LOAD FAILED: %s\n", fn);
#else
*okay = 0;
#endif
}
Mar 6, 2013
Mar 6, 2013
785
786
}
return retval;
Mar 4, 2013
Mar 4, 2013
787
788
}
Mar 6, 2013
Mar 6, 2013
789
790
static void
UnloadSDL20(void)
Mar 4, 2013
Mar 4, 2013
791
{
Mar 6, 2013
Mar 6, 2013
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
#define SDL20_SYM(rc,fn,params,args,ret) SDL20_##fn = NULL;
#include "SDL20_syms.h"
CloseSDL20Library();
}
static int
LoadSDL20(void)
{
int okay = 1;
if (!Loaded_SDL20)
{
okay = LoadSDL20Library();
#define SDL20_SYM(rc,fn,params,args,ret) SDL20_##fn = (SDL20_##fn##_t) LoadSDL20Symbol("SDL_" #fn, &okay);
#include "SDL20_syms.h"
if (!okay)
UnloadSDL20();
Mar 4, 2013
Mar 4, 2013
808
}
Mar 6, 2013
Mar 6, 2013
809
return okay;
Mar 4, 2013
Mar 4, 2013
810
811
}
Apr 14, 2013
Apr 14, 2013
812
813
814
815
816
817
DECLSPEC const SDL_version * SDLCALL
SDL_Linked_Version(void)
{
static const SDL_version version = { 1, 2, SDL12_COMPAT_VERSION };
return &version;
}
Mar 6, 2013
Mar 6, 2013
818
Feb 14, 2019
Feb 14, 2019
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
DECLSPEC int SDLCALL
SDL_sscanf(const char *text, const char *fmt, ...)
{
int retval;
va_list ap;
va_start(ap, fmt);
retval = (int) SDL20_sscanf(text, fmt, ap);
va_end(ap);
return retval;
}
DECLSPEC int SDLCALL
SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...)
{
int retval;
va_list ap;
va_start(ap, fmt);
retval = (int) SDL20_vsnprintf(text, maxlen, fmt, ap);
va_end(ap);
return retval;
}
Feb 21, 2019
Feb 21, 2019
841
842
843
844
845
846
847
848
849
850
851
DECLSPEC void * SDLCALL
SDL_revcpy(void *dst, const void *src, size_t len)
{
/* this doesn't reverse the data...I think this was just a memcpy that
was meant to be CPU-cache friendly if you knew you were working with
data going backwards in memory, instead of jumping over pages to copy
from the start...? Whatever, just do a memcpy here. */
return SDL_memcpy(dst, src, len);
}
Feb 14, 2019
Feb 14, 2019
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
DECLSPEC SDL_bool SDLCALL
SDL_HasMMXExt(void)
{
/* this isn't accurate, but SDL2 doesn't have this for some reason.
MMXExt is available in all SSE1 machines, except early Athlon chips,
so we'll just say it's available if they have SSE1. Oh well. */
return SDL20_HasSSE();
}
DECLSPEC SDL_bool SDLCALL
SDL_Has3DNowExt(void)
{
FIXME("check this");
return SDL20_HasSSE();
}
Feb 21, 2019
Feb 21, 2019
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
DECLSPEC SDL_Joystick * SDLCALL
SDL_JoystickOpen(int device_index)
{
int i;
SDL20_LockJoysticks();
for (i = 0; i < SDL_arraysize(JoystickOpenList); i++) {
if (JoystickOpenList[i].joystick == NULL) {
break;
}
}
if (i == SDL_arraysize(JoystickOpenList)) {
SDL20_UnlockJoysticks();
SDL20_SetError("Too many open joysticks");
return NULL;
}
JoystickOpenList[i].joystick = SDL20_JoystickOpen(device_index);
if (JoystickOpenList[i].joystick) {
JoystickOpenList[i].device_index = device_index;
}
SDL20_UnlockJoysticks();
return JoystickOpenList[i].joystick;
}
DECLSPEC void SDLCALL
SDL_JoystickClose(SDL_Joystick *joystick)
{
int i;
SDL20_LockJoysticks();
for (i = 0; i < SDL_arraysize(JoystickOpenList); i++) {
if (JoystickOpenList[i].joystick == joystick) {
break;
}
}
if (i < SDL_arraysize(JoystickOpenList)) {
JoystickOpenList[i].joystick = NULL;
}
SDL20_UnlockJoysticks();
SDL20_JoystickClose(joystick);
}
DECLSPEC const char * SDLCALL
SDL_JoystickName(int device_index)
{
return SDL20_JoystickNameForIndex(device_index);
}
DECLSPEC int SDLCALL
SDL_JoystickIndex(SDL_Joystick *joystick)
{
int i;
SDL20_LockJoysticks(); {
for (i = 0; i < SDL_arraysize(JoystickOpenList); i++) {
if (JoystickOpenList[i].joystick == joystick) {
break;
}
}
if (i < SDL_arraysize(JoystickOpenList)) {
SDL20_UnlockJoysticks();
return JoystickOpenList[i].device_index;
}
}
SDL20_UnlockJoysticks();
return SDL20_SetError("Can't find joystick");
}
Mar 1, 2019
Mar 1, 2019
942
943
DECLSPEC int SDLCALL
SDL_JoystickOpened(int device_index)
Feb 14, 2019
Feb 14, 2019
944
{
Feb 21, 2019
Feb 21, 2019
945
946
947
948
949
950
951
952
953
954
955
int retval = 0;
int i;
SDL20_LockJoysticks();
for (i = 0; i < SDL_arraysize(JoystickOpenList); i++) {
if ((JoystickOpenList[i].joystick) && (JoystickOpenList[i].device_index == device_index)) {
retval = 1;
break;
}
}
SDL20_UnlockJoysticks();
return retval;
Feb 14, 2019
Feb 14, 2019
956
957
}
Mar 4, 2013
Mar 4, 2013
958
959
960
static int
GetVideoDisplay()
{
Feb 14, 2019
Feb 14, 2019
961
962
FIXME("cache this value during SDL_Init() so it doesn't change.");
const char *variable = SDL20_getenv("SDL_VIDEO_FULLSCREEN_DISPLAY");
Mar 4, 2013
Mar 4, 2013
963
if ( !variable ) {
Feb 14, 2019
Feb 14, 2019
964
variable = SDL20_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
Mar 4, 2013
Mar 4, 2013
965
966
}
if ( variable ) {
Apr 14, 2013
Apr 14, 2013
967
return SDL20_atoi(variable);
Mar 4, 2013
Mar 4, 2013
968
969
970
971
972
} else {
return 0;
}
}
Jul 26, 2014
Jul 26, 2014
973
974
975
976
977
978
979
980
981
982
983
/* This sets up VideoModes and VideoModesCount. You end up with arrays by pixel
format, each with a value that 1.2's SDL_ListModes() can return. */
static int
Init12VidModes(void)
{
const int total = SDL20_GetNumDisplayModes(VideoDisplayIndex);
VideoModeList *vmode = NULL;
int num_modes = 0;
void *ptr = NULL;
int i, j;
Feb 28, 2019
Feb 28, 2019
984
985
986
987
if (VideoModesCount > 0) {
return 0; // already did this.
}
Jul 26, 2014
Jul 26, 2014
988
989
990
991
992
993
994
995
996
997
998
999
1000
SDL_assert(VideoModes == NULL);
for (i = 0; i < total; ++i) {
SDL_DisplayMode mode;
if (SDL20_GetDisplayMode(VideoDisplayIndex, i, &mode) == -1) {
continue;
} else if (!mode.w || !mode.h) {
SDL_assert(0 && "Can this actually happen?");
continue;
}
if (!vmode || (mode.format != vmode->format)) { // SDL20_GetDisplayMode() sorts on bpp first. We know when to change arrays.