Skip to content

Latest commit

 

History

History
2316 lines (1971 loc) · 61.8 KB

SDL12_compat.c

File metadata and controls

2316 lines (1971 loc) · 61.8 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
// !!! 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
53
// !!! IMPLEMENT_ME SDL_ConvertSurface
Feb 10, 2019
Feb 10, 2019
54
55
56
57
58
59
60
61
62
63
64
65
66
// !!! IMPLEMENT_ME SDL_CreateYUVOverlay
// !!! IMPLEMENT_ME SDL_DisplayFormat
// !!! 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
67
68
69
70
// !!! IMPLEMENT_ME SDL_GetKeyName
// !!! IMPLEMENT_ME SDL_GetKeyState
// !!! IMPLEMENT_ME SDL_GetModState
// !!! IMPLEMENT_ME SDL_GetRelativeMouseState
Feb 10, 2019
Feb 10, 2019
71
72
73
74
// !!! IMPLEMENT_ME SDL_GetVideoSurface
// !!! IMPLEMENT_ME SDL_GetWMInfo
75
// !!! IMPLEMENT_ME SDL_LockSurface
Feb 10, 2019
Feb 10, 2019
76
// !!! IMPLEMENT_ME SDL_LockYUVOverlay
77
// !!! IMPLEMENT_ME SDL_LowerBlit
Feb 10, 2019
Feb 10, 2019
78
79
// !!! IMPLEMENT_ME SDL_SetAlpha
80
// !!! IMPLEMENT_ME SDL_SetColorKey
Feb 10, 2019
Feb 10, 2019
81
82
// !!! IMPLEMENT_ME SDL_SetColors
83
// !!! IMPLEMENT_ME SDL_SetModState
Feb 10, 2019
Feb 10, 2019
84
85
// !!! IMPLEMENT_ME SDL_SetPalette
// !!! IMPLEMENT_ME SDL_SetVideoMode
86
87
// !!! IMPLEMENT_ME SDL_SoftStretch
// !!! IMPLEMENT_ME SDL_UnlockSurface
Feb 10, 2019
Feb 10, 2019
88
89
// !!! IMPLEMENT_ME SDL_UnlockYUVOverlay
// !!! IMPLEMENT_ME SDL_UpdateRects
90
// !!! IMPLEMENT_ME SDL_UpperBlit
Mar 4, 2013
Mar 4, 2013
91
Feb 10, 2019
Feb 10, 2019
92
93
94
95
96
97
98
// !!! 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
99
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
Mar 8, 2013
Mar 8, 2013
145
typedef struct SDL12_Palette
Mar 6, 2013
Mar 6, 2013
146
{
Mar 8, 2013
Mar 8, 2013
147
148
int ncolors;
SDL_Color *colors;
Mar 6, 2013
Mar 6, 2013
149
150
} SDL12_Palette;
Mar 8, 2013
Mar 8, 2013
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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
170
171
} SDL12_PixelFormat;
Apr 1, 2013
Apr 1, 2013
172
173
174
175
176
177
178
179
180
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
181
SDL_Surface *surface20; /* the real SDL 1.2 has an opaque pointer to a platform-specific thing here named "hwdata". */
Apr 1, 2013
Apr 1, 2013
182
183
184
185
186
187
188
189
SDL_Rect clip_rect;
Uint32 unused1;
Uint32 locked;
void *blitmap;
unsigned int format_version;
int refcount;
} SDL12_Surface;
Feb 14, 2019
Feb 14, 2019
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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
204
205
206
207
208
209
210
211
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
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
Apr 1, 2013
Apr 1, 2013
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
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
266
267
268
269
270
#define SDL12_APPMOUSEFOCUS (1<<0)
#define SDL12_APPINPUTFOCUS (1<<1)
#define SDL12_APPACTIVE (1<<2)
Apr 1, 2013
Apr 1, 2013
271
272
273
274
275
276
277
278
279
280
281
282
typedef struct
{
Uint8 type;
Uint8 gain;
Uint8 state;
} SDL12_ActiveEvent;
typedef struct
{
Uint8 type;
Uint8 which;
Uint8 state;
Apr 14, 2013
Apr 14, 2013
283
//FIXME: SDL12_keysym keysym;
Apr 1, 2013
Apr 1, 2013
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
} 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
386
Apr 14, 2013
Apr 14, 2013
387
388
389
390
391
392
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
393
typedef struct
Apr 14, 2013
Apr 14, 2013
394
{
Apr 11, 2013
Apr 11, 2013
395
396
397
398
399
400
401
402
403
SDL_Rect area;
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
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
425
Jul 26, 2014
Jul 26, 2014
426
427
428
429
430
431
432
433
typedef struct
{
Uint32 format;
SDL_Rect *modeslist;
SDL_Rect **modes; /* ptrs to each item in modeslist, for SDL_ListModes() */
} VideoModeList;
Feb 13, 2019
Feb 13, 2019
434
// !!! FIXME: go through all of these.
Jul 26, 2014
Jul 26, 2014
435
436
static VideoModeList *VideoModes = NULL;
static int VideoModesCount = 0;
Feb 14, 2019
Feb 14, 2019
437
static SDL12_VideoInfo VideoInfo12;
Apr 1, 2013
Apr 1, 2013
438
static SDL_Window *VideoWindow20 = NULL;
Feb 14, 2019
Feb 14, 2019
439
440
441
442
443
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
444
445
static char *WindowTitle = NULL;
static char *WindowIconTitle = NULL;
Feb 14, 2019
Feb 14, 2019
446
static SDL12_Surface *VideoIcon12;
Mar 8, 2013
Mar 8, 2013
447
448
449
static int EnabledUnicode = 0;
static int VideoDisplayIndex = 0;
static int CDRomInit = 0;
Apr 1, 2013
Apr 1, 2013
450
static SDL12_EventFilter EventFilter12 = NULL;
Feb 14, 2019
Feb 14, 2019
451
static SDL12_Cursor *CurrentCursor12 = NULL;
Apr 13, 2013
Apr 13, 2013
452
static Uint8 EventStates[SDL12_NUMEVENTS];
Apr 13, 2013
Apr 13, 2013
453
static int SwapInterval = 0;
Apr 1, 2013
Apr 1, 2013
454
455
456
// !!! FIXME: need a mutex for the event queue.
#define SDL12_MAXEVENTS 128
Apr 10, 2013
Apr 10, 2013
457
458
459
460
461
462
463
464
465
466
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
467
Apr 14, 2013
Apr 14, 2013
468
Mar 6, 2013
Mar 6, 2013
469
470
/* Obviously we can't use SDL_LoadObject() to load SDL2. :) */
#if defined(_WINDOWS)
Apr 1, 2013
Apr 1, 2013
471
472
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
Mar 6, 2013
Mar 6, 2013
473
474
475
476
477
#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
478
479
#elif defined(unix) || defined(__APPLE__)
#include <dlfcn.h>
Mar 6, 2013
Mar 6, 2013
480
481
482
483
484
485
486
487
488
489
490
491
#ifdef __APPLE__
#define SDL20_LIBNAME "libSDL2.dylib"
#else
#define SDL20_LIBNAME "libSDL2-2.0.so.0"
#endif
static void *Loaded_SDL20 = NULL;
#define LoadSDL20Library() ((Loaded_SDL20 = dlopen(SDL20_LIBNAME, RTLD_LOCAL)) != NULL)
#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
492
Mar 6, 2013
Mar 6, 2013
493
494
static void *
LoadSDL20Symbol(const char *fn, int *okay)
Mar 4, 2013
Mar 4, 2013
495
{
Mar 6, 2013
Mar 6, 2013
496
497
498
499
void *retval = NULL;
if (*okay) /* only bother trying if we haven't previously failed. */
{
retval = LookupSDL20Sym(fn);
Feb 13, 2019
Feb 13, 2019
500
501
502
if (!retval) { fprintf(stderr, "WARNING: LOAD FAILED: %s\n", fn); }
// if (retval == NULL)
// *okay = 0;
Mar 6, 2013
Mar 6, 2013
503
504
}
return retval;
Mar 4, 2013
Mar 4, 2013
505
506
}
Mar 6, 2013
Mar 6, 2013
507
508
static void
UnloadSDL20(void)
Mar 4, 2013
Mar 4, 2013
509
{
Mar 6, 2013
Mar 6, 2013
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#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
526
}
Mar 6, 2013
Mar 6, 2013
527
return okay;
Mar 4, 2013
Mar 4, 2013
528
529
}
Apr 14, 2013
Apr 14, 2013
530
531
532
533
534
535
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
536
Mar 4, 2013
Mar 4, 2013
537
538
539
static int
GetVideoDisplay()
{
Mar 6, 2013
Mar 6, 2013
540
// !!! FIXME: cache this value during SDL_Init() so it doesn't change.
Mar 4, 2013
Mar 4, 2013
541
542
543
544
545
const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_DISPLAY");
if ( !variable ) {
variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
}
if ( variable ) {
Apr 14, 2013
Apr 14, 2013
546
return SDL20_atoi(variable);
Mar 4, 2013
Mar 4, 2013
547
548
549
550
551
} else {
return 0;
}
}
Jul 26, 2014
Jul 26, 2014
552
553
554
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
657
658
659
660
/* 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;
SDL_assert(VideoModes == NULL);
SDL_assert(VideoModesCount == 0);
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.
if (VideoModesCount > 0) {
VideoModes[VideoModesCount-1].modes[num_modes] = NULL;
}
ptr = (VideoModeList *) SDL20_realloc(VideoModes, sizeof (VideoModeList) * (VideoModesCount+1));
if (!ptr) {
return SDL20_OutOfMemory();
}
VideoModes = (VideoModeList *) ptr;
vmode = &VideoModes[VideoModesCount];
vmode->format = mode.format;
vmode->modeslist = NULL;
vmode->modes = NULL;
VideoModesCount++;
num_modes = 0;
}
/* make sure we don't have this one already (with a different refresh rate, etc). */
for (j = 0; j < num_modes; j++) {
if ((vmode->modeslist[j].w == mode.w) && (vmode->modeslist[j].h == mode.h)) {
break;
}
}
if (j < num_modes) {
continue; /* already have this one. */
}
ptr = SDL20_realloc(vmode->modes, sizeof (SDL_Rect *) * (num_modes + 2));
if (ptr == NULL) {
return SDL20_OutOfMemory();
}
vmode->modes = (SDL_Rect **) ptr;
ptr = SDL20_realloc(vmode->modeslist, sizeof (SDL_Rect) * (num_modes + 1));
if (ptr == NULL) {
return SDL20_OutOfMemory();
}
vmode->modeslist = (SDL_Rect *) ptr;
vmode->modeslist[num_modes].x = 0;
vmode->modeslist[num_modes].y = 0;
vmode->modeslist[num_modes].w = mode.w;
vmode->modeslist[num_modes].h = mode.h;
vmode->modes[num_modes] = &vmode->modeslist[num_modes];
num_modes++;
}
if (VideoModesCount > 0) {
VideoModes[VideoModesCount-1].modes[num_modes] = NULL;
}
return 0;
}
static int
Init12Video(void)
{
int i;
for (i = 0; i < SDL12_MAXEVENTS-1; i++)
EventQueuePool[i].next = &EventQueuePool[i+1];
EventQueuePool[SDL12_MAXEVENTS-1].next = NULL;
EventQueueHead = EventQueueTail = NULL;
EventQueueAvailable = EventQueuePool;
SDL_memset(EventStates, SDL_ENABLE, sizeof (EventStates)); /* on by default */
EventStates[SDL12_SYSWMEVENT] = SDL_IGNORE; /* off by default. */
SDL20_SetEventFilter(EventFilter20to12, NULL);
VideoDisplayIndex = GetVideoDisplay();
SwapInterval = 0;
if (Init12VidModes() == -1) {
return -1;
}
return 0;
}
Jul 18, 2014
Jul 18, 2014
661
662
DECLSPEC int SDLCALL
SDL_InitSubSystem(Uint32 sdl12flags)
Mar 6, 2013
Mar 6, 2013
663
{
Feb 13, 2019
Feb 13, 2019
664
665
666
FIXME("there is never a parachute in SDL2, should we catch segfaults ourselves?");
FIXME("support event thread where it makes sense to do so?");
Jul 26, 2014
Jul 26, 2014
667
668
669
670
671
if ( (sdl12flags & SDL12_INIT_EVENTTHREAD) == SDL12_INIT_EVENTTHREAD ) {
return SDL20_SetError("OS doesn't support threaded events");
}
Mar 6, 2013
Mar 6, 2013
672
673
674
675
676
677
Uint32 sdl20flags = 0;
int rc;
if (!LoadSDL20())
return -1;
Apr 1, 2013
Apr 1, 2013
678
#define SETFLAG(flag) if (sdl12flags & SDL12_INIT_##flag) sdl20flags |= SDL_INIT_##flag
Mar 6, 2013
Mar 6, 2013
679
680
681
682
683
684
685
SETFLAG(TIMER);
SETFLAG(AUDIO);
SETFLAG(VIDEO);
SETFLAG(JOYSTICK);
SETFLAG(NOPARACHUTE);
#undef SETFLAG
Mar 7, 2013
Mar 7, 2013
686
687
// There's no CDROM in 2.0, but we'll just pretend it succeeded.
if (sdl12flags & SDL12_INIT_CDROM)
Mar 8, 2013
Mar 8, 2013
688
CDRomInit = 1;
Mar 7, 2013
Mar 7, 2013
689
Feb 13, 2019
Feb 13, 2019
690
FIXME("do something about SDL12_INIT_EVENTTHREAD");
Mar 6, 2013
Mar 6, 2013
691
Jul 18, 2014
Jul 18, 2014
692
rc = SDL20_Init(sdl20flags);
Jul 26, 2014
Jul 26, 2014
693
694
if ((rc == 0) && (sdl20flags & SDL_INIT_VIDEO)) {
if (Init12Video() == -1) {
Feb 13, 2019
Feb 13, 2019
695
696
FIXME("should we deinit other subsystems?");
return -1;
Jul 26, 2014
Jul 26, 2014
697
}
Apr 1, 2013
Apr 1, 2013
698
699
}
Mar 6, 2013
Mar 6, 2013
700
701
702
return rc;
}
Apr 14, 2013
Apr 14, 2013
703
DECLSPEC int SDLCALL
Mar 7, 2013
Mar 7, 2013
704
705
SDL_Init(Uint32 sdl12flags)
{
Feb 13, 2019
Feb 13, 2019
706
FIXME("what was different in 1.2?");
Jul 26, 2014
Jul 26, 2014
707
return SDL_InitSubSystem(sdl12flags); /* there's no difference betwee Init and InitSubSystem in SDL2. */
Mar 7, 2013
Mar 7, 2013
708
709
}
Jul 21, 2014
Jul 21, 2014
710
711
712
static void
InitFlags12To20(const Uint32 flags12, Uint32 *_flags20, Uint32 *_extraflags)
Mar 7, 2013
Mar 7, 2013
713
{
Jul 21, 2014
Jul 21, 2014
714
Uint32 flags20 = 0;
Mar 7, 2013
Mar 7, 2013
715
716
Uint32 extraflags = 0;
Jul 21, 2014
Jul 21, 2014
717
#define SETFLAG(flag) if (flags12 & SDL12_INIT_##flag) flags20 |= SDL_INIT_##flag
Mar 7, 2013
Mar 7, 2013
718
719
720
721
722
723
724
SETFLAG(TIMER);
SETFLAG(AUDIO);
SETFLAG(VIDEO);
SETFLAG(JOYSTICK);
SETFLAG(NOPARACHUTE);
#undef SETFLAG
Jul 21, 2014
Jul 21, 2014
725
if ((flags12 & SDL12_INIT_CDROM) && (CDRomInit)) {
Mar 7, 2013
Mar 7, 2013
726
extraflags |= SDL12_INIT_CDROM;
Jul 21, 2014
Jul 21, 2014
727
}
Mar 7, 2013
Mar 7, 2013
728
Feb 13, 2019
Feb 13, 2019
729
FIXME("do something about SDL12_INIT_EVENTTHREAD");
Mar 7, 2013
Mar 7, 2013
730
Jul 21, 2014
Jul 21, 2014
731
732
*_flags20 = flags20;
*_extraflags = extraflags;
Mar 7, 2013
Mar 7, 2013
733
734
}
Jul 21, 2014
Jul 21, 2014
735
736
static Uint32
InitFlags20to12(const Uint32 flags20)
Mar 7, 2013
Mar 7, 2013
737
{
Jul 21, 2014
Jul 21, 2014
738
Uint32 flags12 = 0;
Mar 7, 2013
Mar 7, 2013
739
Jul 21, 2014
Jul 21, 2014
740
#define SETFLAG(flag) if (flags20 & SDL_INIT_##flag) flags12 |= SDL12_INIT_##flag
Mar 7, 2013
Mar 7, 2013
741
742
743
744
745
746
747
SETFLAG(TIMER);
SETFLAG(AUDIO);
SETFLAG(VIDEO);
SETFLAG(JOYSTICK);
SETFLAG(NOPARACHUTE);
#undef SETFLAG
Jul 21, 2014
Jul 21, 2014
748
749
750
751
752
753
754
755
756
757
758
759
760
return flags12;
}
DECLSPEC Uint32 SDLCALL
SDL_WasInit(Uint32 sdl12flags)
{
Uint32 sdl20flags, extraflags;
InitFlags12To20(sdl12flags, &sdl20flags, &extraflags);
return InitFlags20to12(SDL20_WasInit(sdl20flags)) | extraflags;
}
Jul 26, 2014
Jul 26, 2014
761
762
763
764
765
766
767
768
769
770
771
static void
Quit12Video(void)
{
int i;
for (i = 0; i < VideoModesCount; i++) {
SDL20_free(VideoModes[i].modeslist);
SDL20_free(VideoModes[i].modes);
}
SDL20_free(VideoModes);
Feb 14, 2019
Feb 14, 2019
772
773
SDL20_FreeFormat(VideoInfo12.vfmt);
SDL20_zero(VideoInfo12);
Jul 26, 2014
Jul 26, 2014
774
775
776
EventFilter12 = NULL;
EventQueueAvailable = EventQueueHead = EventQueueTail = NULL;
Feb 14, 2019
Feb 14, 2019
777
CurrentCursor12 = NULL;
Jul 26, 2014
Jul 26, 2014
778
779
780
781
VideoModes = NULL;
VideoModesCount = 0;
}
Jul 21, 2014
Jul 21, 2014
782
783
784
785
786
787
788
DECLSPEC void SDLCALL
SDL_QuitSubSystem(Uint32 sdl12flags)
{
Uint32 sdl20flags, extraflags;
InitFlags12To20(sdl12flags, &sdl20flags, &extraflags);
if (extraflags & SDL12_INIT_CDROM) {
Mar 8, 2013
Mar 8, 2013
789
CDRomInit = 0;
Jul 21, 2014
Jul 21, 2014
790
}
Mar 8, 2013
Mar 8, 2013
791
Feb 13, 2019
Feb 13, 2019
792
FIXME("reset a bunch of other global variables too.");
Mar 8, 2013
Mar 8, 2013
793
if (sdl12flags & SDL12_INIT_VIDEO) {
Jul 26, 2014
Jul 26, 2014
794
Quit12Video();
Mar 8, 2013
Mar 8, 2013
795
796
}
Feb 13, 2019
Feb 13, 2019
797
FIXME("do something about SDL12_INIT_EVENTTHREAD");
Mar 7, 2013
Mar 7, 2013
798
799
SDL20_QuitSubSystem(sdl20flags);
Jul 26, 2014
Jul 26, 2014
800
801
802
803
if ((SDL20_WasInit(0) == 0) && (!CDRomInit)) {
SDL20_Quit();
UnloadSDL20();
}
Mar 7, 2013
Mar 7, 2013
804
805
}
Apr 14, 2013
Apr 14, 2013
806
DECLSPEC void SDLCALL
Mar 6, 2013
Mar 6, 2013
807
808
SDL_Quit(void)
{
Jul 26, 2014
Jul 26, 2014
809
SDL_QuitSubSystem(SDL_WasInit(0) | SDL12_INIT_CDROM);
Mar 6, 2013
Mar 6, 2013
810
811
}
Apr 14, 2013
Apr 14, 2013
812
DECLSPEC void SDLCALL
Mar 7, 2013
Mar 7, 2013
813
814
SDL_SetError(const char *fmt, ...)
{
Apr 14, 2013
Apr 14, 2013
815
char ch;
Mar 7, 2013
Mar 7, 2013
816
char *str = NULL;
Apr 14, 2013
Apr 14, 2013
817
size_t len = 0;
Mar 7, 2013
Mar 7, 2013
818
819
va_list ap;
va_start(ap, fmt);
Apr 14, 2013
Apr 14, 2013
820
len = SDL20_vsnprintf(&ch, 1, fmt, ap);
Mar 7, 2013
Mar 7, 2013
821
va_end(ap);
Apr 14, 2013
Apr 14, 2013
822
823
str = (char *) SDL20_malloc(len + 1);
Mar 7, 2013
Mar 7, 2013
824
825
826
827
if (!str)
SDL20_OutOfMemory();
else
{
Apr 14, 2013
Apr 14, 2013
828
829
830
va_start(ap, fmt);
SDL20_vsnprintf(str, len + 1, fmt, ap);
va_end(ap);
Mar 7, 2013
Mar 7, 2013
831
SDL20_SetError("%s", str);
Apr 14, 2013
Apr 14, 2013
832
SDL20_free(str);
Mar 7, 2013
Mar 7, 2013
833
}
Mar 7, 2013
Mar 7, 2013
834
}
Mar 6, 2013
Mar 6, 2013
835
Apr 14, 2013
Apr 14, 2013
836
DECLSPEC const char * SDLCALL
Mar 6, 2013
Mar 6, 2013
837
838
839
840
SDL_GetError(void)
{
if (!Loaded_SDL20)
{
Apr 1, 2013
Apr 1, 2013
841
static const char noload_errstr[] = "Failed to load SDL 2.0 shared library";
Mar 6, 2013
Mar 6, 2013
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
return noload_errstr;
}
return SDL20_GetError();
}
static const char *
GetDriverName(const char *name, char *namebuf, int maxlen)
{
if (name) {
if (namebuf) {
SDL20_strlcpy(namebuf, name, maxlen);
return namebuf;
} else {
return name;
}
}
return NULL;
}
Apr 14, 2013
Apr 14, 2013
862
DECLSPEC const char * SDLCALL
Mar 6, 2013
Mar 6, 2013
863
864
865
866
867
SDL_AudioDriverName(char *namebuf, int maxlen)
{
return GetDriverName(SDL20_GetCurrentAudioDriver(), namebuf, maxlen);
}
Apr 14, 2013
Apr 14, 2013
868
DECLSPEC const char * SDLCALL
Mar 6, 2013
Mar 6, 2013
869
870
871
872
873
SDL_VideoDriverName(char *namebuf, int maxlen)
{
return GetDriverName(SDL20_GetCurrentVideoDriver(), namebuf, maxlen);
}
Apr 14, 2013
Apr 14, 2013
874
DECLSPEC int SDLCALL
Apr 14, 2013
Apr 14, 2013
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
SDL_PollEvent(SDL12_Event *event12)
{
EventQueueType *next;
SDL20_PumpEvents(); /* this will run our filter and build our 1.2 queue. */
if (EventQueueHead == NULL)
return 0; /* no events at the moment. */
SDL_memcpy(event12, &EventQueueHead->event12, sizeof (SDL12_Event));
next = EventQueueHead->next;
EventQueueHead->next = EventQueueAvailable;
EventQueueAvailable = EventQueueHead;
EventQueueHead = next;
return 1;
}
Apr 14, 2013
Apr 14, 2013
892
DECLSPEC int SDLCALL
Apr 14, 2013
Apr 14, 2013
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
SDL_PushEvent(SDL12_Event *event12)
{
EventQueueType *item = EventQueueAvailable;
if (item == NULL)
return -1; /* no space available at the moment. */
EventQueueAvailable = item->next;
if (EventQueueTail)
EventQueueTail->next = item;
else
EventQueueHead = EventQueueTail = item;
item->next = NULL;
SDL_memcpy(&item->event12, event12, sizeof (SDL12_Event));
return 0;
}
Apr 14, 2013
Apr 14, 2013
910
DECLSPEC int SDLCALL
Apr 14, 2013
Apr 14, 2013
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
SDL_PeepEvents(SDL12_Event *events12, int numevents, SDL_eventaction action, Uint32 mask)
{
if (action == SDL_ADDEVENT)
{
int i;
for (i = 0; i < numevents; i++)
{
if (SDL_PushEvent(&events12[i]) == -1)
break; /* out of space for more events. */
}
return i;
}
else if ((action == SDL_PEEKEVENT) || (action == SDL_GETEVENT))
{
const SDL_bool isGet = (action == SDL_GETEVENT);
EventQueueType *prev = NULL;
EventQueueType *item = EventQueueHead;
EventQueueType *next = NULL;
int chosen = 0;
while (chosen < numevents)
{
EventQueueType *nextPrev = item;
if (!item)
break; /* no more events at the moment. */
next = item->next; /* copy, since we might overwrite item->next */
if (mask & (1<<item->event12.type))
{
SDL_memcpy(&events12[chosen++], &item->event12, sizeof (SDL12_Event));
if (isGet) /* remove from list? */
{
if (prev != NULL)
prev->next = next;
if (item == EventQueueHead)
EventQueueHead = next;
if (item == EventQueueTail)
EventQueueTail = prev;
/* put it back in the free pool. */
item->next = EventQueueAvailable;
EventQueueAvailable = item;
nextPrev = prev; /* previous item doesn't change. */
}
}
item = next;
prev = nextPrev;
}
return chosen;
}
return 0;
}
Apr 14, 2013
Apr 14, 2013
966
DECLSPEC int SDLCALL
Apr 14, 2013
Apr 14, 2013
967
968
SDL_WaitEvent(SDL12_Event *event12)
{
Feb 13, 2019
Feb 13, 2019
969
FIXME("In 1.2, this only fails (-1) if you haven't SDL_Init()'d.");
Apr 14, 2013
Apr 14, 2013
970
while (!SDL_PollEvent(event12))
Feb 10, 2019
Feb 10, 2019
971
SDL20_Delay(10);
Apr 14, 2013
Apr 14, 2013
972
973
974
return 1;
}
Apr 14, 2013
Apr 14, 2013
975
976
977
978
979
980
981
982
983
984
985
986
987
988
static SDL_bool
PushEventIfNotFiltered(SDL12_Event *event12)
{
if (event12->type != SDL12_NOEVENT)
{
if (EventStates[event12->type] != SDL_IGNORE)
{
if ((!EventFilter12) || (EventFilter12(event12)))
return (SDL_PushEvent(event12) == 0);
}
}
return SDL_FALSE;
}
Apr 14, 2013
Apr 14, 2013
989
DECLSPEC Uint8 SDLCALL
Apr 14, 2013
Apr 14, 2013
990
991
992
993
994
995
996
997
998
999
1000
SDL_EventState(Uint8 type, int state)
{
/* the values of "state" match between 1.2 and 2.0 */
const Uint8 retval = EventStates[type];
SDL12_Event e;
if (state != SDL_QUERY)
EventStates[type] = state;
if (state == SDL_IGNORE) /* drop existing events of this type. */
while (SDL_PeepEvents(&e, 1, SDL_GETEVENT, (1<<type))) {}