Skip to content

Latest commit

 

History

History
4181 lines (3647 loc) · 122 KB

SDL12_compat.c

File metadata and controls

4181 lines (3647 loc) · 122 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
#if 0
#define FIXME(x) do {} while (0)
#else
#define FIXME(x) \
do { \
static SDL_bool seen = SDL_FALSE; \
if (!seen) { \
Mar 2, 2019
Mar 2, 2019
107
fprintf(stderr, "FIXME: %s (%s, %s:%d)\n", x, __FUNCTION__, __FILE__, __LINE__); \
Feb 13, 2019
Feb 13, 2019
108
109
110
111
112
seen = SDL_TRUE; \
} \
} while (0)
#endif
Mar 6, 2013
Mar 6, 2013
113
#define SDL20_SYM(rc,fn,params,args,ret) \
Apr 14, 2013
Apr 14, 2013
114
typedef rc (SDLCALL *SDL20_##fn##_t) params; \
Mar 6, 2013
Mar 6, 2013
115
116
117
static SDL20_##fn##_t SDL20_##fn = NULL;
#include "SDL20_syms.h"
Apr 14, 2013
Apr 14, 2013
118
119
/* Things that _should_ be binary compatible pass right through... */
#define SDL20_SYM_PASSTHROUGH(rc,fn,params,args,ret) \
Apr 14, 2013
Apr 14, 2013
120
DECLSPEC rc SDLCALL SDL_##fn params { ret SDL20_##fn args; }
Apr 14, 2013
Apr 14, 2013
121
122
#include "SDL20_syms.h"
Mar 6, 2013
Mar 6, 2013
123
Apr 14, 2013
Apr 14, 2013
124
125
126
127
128
129
130
131
132
133
/* 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
134
135
136
137
138
139
140
141
142
143
#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
Mar 3, 2019
Mar 3, 2019
144
145
146
#define SDL12_LOGPAL 1
#define SDL12_PHYSPAL 2
Mar 6, 2019
Mar 6, 2019
147
148
149
150
151
// this will be in SDL 2.0.10, but here it is in case your headers are missing it.
#ifndef SDL_SIMD_ALIGNED
#define SDL_SIMD_ALIGNED 0x00000008
#endif
Feb 19, 2019
Feb 19, 2019
152
153
154
155
156
157
158
159
typedef struct SDL12_Rect
{
Sint16 x;
Sint16 y;
Uint16 w;
Uint16 h;
} SDL12_Rect;
Mar 8, 2013
Mar 8, 2013
160
typedef struct SDL12_Palette
Mar 6, 2013
Mar 6, 2013
161
{
Mar 8, 2013
Mar 8, 2013
162
163
int ncolors;
SDL_Color *colors;
Mar 6, 2013
Mar 6, 2013
164
165
} SDL12_Palette;
Mar 8, 2013
Mar 8, 2013
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
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
185
186
} SDL12_PixelFormat;
Apr 1, 2013
Apr 1, 2013
187
188
189
190
191
192
193
194
195
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
196
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
197
SDL12_Rect clip_rect;
Apr 1, 2013
Apr 1, 2013
198
199
200
201
202
203
204
Uint32 unused1;
Uint32 locked;
void *blitmap;
unsigned int format_version;
int refcount;
} SDL12_Surface;
Feb 14, 2019
Feb 14, 2019
205
206
207
208
209
210
211
212
213
214
215
216
217
218
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
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
250
251
252
253
254
255
256
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
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
513
514
515
516
517
518
519
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
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
544
545
546
547
548
#define SDL12_APPMOUSEFOCUS (1<<0)
#define SDL12_APPINPUTFOCUS (1<<1)
#define SDL12_APPACTIVE (1<<2)
Apr 1, 2013
Apr 1, 2013
549
550
551
552
553
554
555
556
557
558
559
560
typedef struct
{
Uint8 type;
Uint8 gain;
Uint8 state;
} SDL12_ActiveEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 state;
Feb 21, 2019
Feb 21, 2019
561
SDL12_keysym keysym;
Apr 1, 2013
Apr 1, 2013
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
657
658
659
660
661
662
663
} 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
664
Apr 14, 2013
Apr 14, 2013
665
666
667
668
669
670
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
671
typedef struct
Apr 14, 2013
Apr 14, 2013
672
{
Feb 19, 2019
Feb 19, 2019
673
SDL12_Rect area;
Apr 11, 2013
Apr 11, 2013
674
675
676
677
678
679
680
681
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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
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
703
Jul 26, 2014
Jul 26, 2014
704
705
706
707
typedef struct
{
Uint32 format;
Feb 19, 2019
Feb 19, 2019
708
709
SDL12_Rect *modeslist12;
SDL12_Rect **modes12; /* ptrs to each item in modeslist, for SDL_ListModes() */
Jul 26, 2014
Jul 26, 2014
710
711
} VideoModeList;
Feb 21, 2019
Feb 21, 2019
712
713
714
715
716
717
typedef struct
{
int device_index;
SDL_Joystick *joystick;
} JoystickOpenedItem;
Feb 13, 2019
Feb 13, 2019
718
// !!! FIXME: go through all of these.
Jul 26, 2014
Jul 26, 2014
719
720
static VideoModeList *VideoModes = NULL;
static int VideoModesCount = 0;
Feb 14, 2019
Feb 14, 2019
721
static SDL12_VideoInfo VideoInfo12;
Mar 6, 2019
Mar 6, 2019
722
723
static SDL_bool VideoWindowGrabbed = SDL_FALSE;
static SDL_bool VideoCursorHidden = SDL_FALSE;
Apr 1, 2013
Apr 1, 2013
724
static SDL_Window *VideoWindow20 = NULL;
Feb 14, 2019
Feb 14, 2019
725
726
727
static SDL_Renderer *VideoRenderer20 = NULL;
static SDL_Texture *VideoTexture20 = NULL;
static SDL12_Surface *VideoSurface12 = NULL;
Mar 6, 2019
Mar 6, 2019
728
729
static Uint32 VideoSurfacePresentTicks = 0;
static Uint32 VideoSurfaceLastPresentTicks = 0;
Feb 14, 2019
Feb 14, 2019
730
731
static SDL_Surface *VideoConvertSurface20 = NULL;
static SDL_GLContext *VideoGLContext20 = NULL;
Mar 8, 2013
Mar 8, 2013
732
733
static char *WindowTitle = NULL;
static char *WindowIconTitle = NULL;
Mar 6, 2019
Mar 6, 2019
734
static SDL_Surface *VideoIcon20 = NULL;
Mar 8, 2013
Mar 8, 2013
735
736
737
static int EnabledUnicode = 0;
static int VideoDisplayIndex = 0;
static int CDRomInit = 0;
Apr 1, 2013
Apr 1, 2013
738
static SDL12_EventFilter EventFilter12 = NULL;
Feb 14, 2019
Feb 14, 2019
739
static SDL12_Cursor *CurrentCursor12 = NULL;
Apr 13, 2013
Apr 13, 2013
740
static Uint8 EventStates[SDL12_NUMEVENTS];
Apr 13, 2013
Apr 13, 2013
741
static int SwapInterval = 0;
Feb 21, 2019
Feb 21, 2019
742
static JoystickOpenedItem JoystickOpenList[16];
Mar 9, 2019
Mar 9, 2019
743
static Uint8 KeyState[SDLK12_LAST];
Apr 1, 2013
Apr 1, 2013
744
745
746
// !!! FIXME: need a mutex for the event queue.
#define SDL12_MAXEVENTS 128
Apr 10, 2013
Apr 10, 2013
747
748
749
750
751
752
753
754
755
756
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
757
Apr 14, 2013
Apr 14, 2013
758
Mar 6, 2013
Mar 6, 2013
759
760
/* Obviously we can't use SDL_LoadObject() to load SDL2. :) */
#if defined(_WINDOWS)
Apr 1, 2013
Apr 1, 2013
761
762
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
Mar 6, 2013
Mar 6, 2013
763
764
765
766
767
#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
768
769
#elif defined(unix) || defined(__APPLE__)
#include <dlfcn.h>
Mar 6, 2013
Mar 6, 2013
770
#ifdef __APPLE__
Mar 10, 2019
Mar 10, 2019
771
#define SDL20_LIBNAME "libSDL2-2.0.0.dylib"
Mar 6, 2013
Mar 6, 2013
772
773
774
775
#else
#define SDL20_LIBNAME "libSDL2-2.0.so.0"
#endif
static void *Loaded_SDL20 = NULL;
Feb 28, 2019
Feb 28, 2019
776
#define LoadSDL20Library() ((Loaded_SDL20 = dlopen(SDL20_LIBNAME, RTLD_LOCAL|RTLD_NOW)) != NULL)
Mar 6, 2013
Mar 6, 2013
777
778
779
780
781
#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
782
Mar 6, 2013
Mar 6, 2013
783
784
static void *
LoadSDL20Symbol(const char *fn, int *okay)
Mar 4, 2013
Mar 4, 2013
785
{
Mar 6, 2013
Mar 6, 2013
786
void *retval = NULL;
Feb 21, 2019
Feb 21, 2019
787
if (*okay) { /* only bother trying if we haven't previously failed. */
Mar 6, 2013
Mar 6, 2013
788
retval = LookupSDL20Sym(fn);
Feb 21, 2019
Feb 21, 2019
789
790
791
792
793
794
795
796
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
797
798
}
return retval;
Mar 4, 2013
Mar 4, 2013
799
800
}
Mar 6, 2013
Mar 6, 2013
801
802
static void
UnloadSDL20(void)
Mar 4, 2013
Mar 4, 2013
803
{
Mar 6, 2013
Mar 6, 2013
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
#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
820
}
Mar 6, 2013
Mar 6, 2013
821
return okay;
Mar 4, 2013
Mar 4, 2013
822
823
}
Mar 9, 2019
Mar 9, 2019
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
static void dllinit(void) __attribute__((constructor));
static void dllinit(void)
{
if (!LoadSDL20()) {
fprintf(stderr, "ERROR: sdl12-compat failed to load SDL 2.0! Aborting!\n");
fflush(stderr);
abort();
}
}
static void dllquit(void) __attribute__((destructor));
static void dllquit(void)
{
UnloadSDL20();
}
Apr 14, 2013
Apr 14, 2013
840
841
842
843
844
845
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
846
Feb 14, 2019
Feb 14, 2019
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
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
869
870
871
872
873
874
875
876
877
878
879
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
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
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
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
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
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
970
971
DECLSPEC int SDLCALL
SDL_JoystickOpened(int device_index)
Feb 14, 2019
Feb 14, 2019
972
{
Feb 21, 2019
Feb 21, 2019
973
974
975
976
977
978
979
980
981
982
983
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
984
985
}
Mar 4, 2013
Mar 4, 2013
986
987
988
static int
GetVideoDisplay()
{
Feb 14, 2019
Feb 14, 2019
989
990
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
991
if ( !variable ) {
Feb 14, 2019
Feb 14, 2019
992
variable = SDL20_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
Mar 4, 2013
Mar 4, 2013
993
994
}
if ( variable ) {
Apr 14, 2013
Apr 14, 2013
995
return SDL20_atoi(variable);
Mar 4, 2013
Mar 4, 2013
996
997
998
999
1000
} else {
return 0;
}
}