Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
353 lines (312 loc) · 8.8 KB

SDL.c

File metadata and controls

353 lines (312 loc) · 8.8 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* Initialization code for SDL */
#include "SDL.h"
#include "SDL_fatal.h"
Feb 16, 2006
Feb 16, 2006
28
29
30
31
32
33
#if !SDL_VIDEO_DISABLED
#include "video/SDL_leaks.h"
#endif
#if SDL_THREAD_PTH
#include <pth.h>
Apr 26, 2001
Apr 26, 2001
34
35
36
#endif
/* Initialization/Cleanup routines */
Feb 16, 2006
Feb 16, 2006
37
#if !SDL_JOYSTICK_DISABLED
Jul 10, 2006
Jul 10, 2006
38
extern int SDL_JoystickInit(void);
Apr 26, 2001
Apr 26, 2001
39
40
extern void SDL_JoystickQuit(void);
#endif
Feb 16, 2006
Feb 16, 2006
41
#if !SDL_CDROM_DISABLED
Jul 10, 2006
Jul 10, 2006
42
extern int SDL_CDROMInit(void);
Apr 26, 2001
Apr 26, 2001
43
44
extern void SDL_CDROMQuit(void);
#endif
Feb 16, 2006
Feb 16, 2006
45
#if !SDL_TIMERS_DISABLED
Apr 26, 2001
Apr 26, 2001
46
extern void SDL_StartTicks(void);
Jul 10, 2006
Jul 10, 2006
47
extern int SDL_TimerInit(void);
Apr 26, 2001
Apr 26, 2001
48
49
50
51
52
53
54
55
56
57
58
extern void SDL_TimerQuit(void);
#endif
/* The initialized subsystems */
static Uint32 SDL_initialized = 0;
static Uint32 ticks_started = 0;
#ifdef CHECK_LEAKS
int surfaces_allocated = 0;
#endif
Jul 10, 2006
Jul 10, 2006
59
60
int
SDL_InitSubSystem(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
61
{
Feb 16, 2006
Feb 16, 2006
62
#if !SDL_VIDEO_DISABLED
Jul 10, 2006
Jul 10, 2006
63
64
65
66
67
68
69
70
/* Initialize the video/event subsystem */
if ((flags & SDL_INIT_VIDEO) && !(SDL_initialized & SDL_INIT_VIDEO)) {
if (SDL_VideoInit(SDL_getenv("SDL_VIDEODRIVER"),
(flags & SDL_INIT_EVENTTHREAD)) < 0) {
return (-1);
}
SDL_initialized |= SDL_INIT_VIDEO;
}
Apr 26, 2001
Apr 26, 2001
71
#else
Jul 10, 2006
Jul 10, 2006
72
73
74
75
if (flags & SDL_INIT_VIDEO) {
SDL_SetError("SDL not built with video support");
return (-1);
}
Apr 26, 2001
Apr 26, 2001
76
77
#endif
Feb 16, 2006
Feb 16, 2006
78
#if !SDL_AUDIO_DISABLED
Jul 10, 2006
Jul 10, 2006
79
80
81
82
83
84
85
/* Initialize the audio subsystem */
if ((flags & SDL_INIT_AUDIO) && !(SDL_initialized & SDL_INIT_AUDIO)) {
if (SDL_AudioInit(SDL_getenv("SDL_AUDIODRIVER")) < 0) {
return (-1);
}
SDL_initialized |= SDL_INIT_AUDIO;
}
Apr 26, 2001
Apr 26, 2001
86
#else
Jul 10, 2006
Jul 10, 2006
87
88
89
90
if (flags & SDL_INIT_AUDIO) {
SDL_SetError("SDL not built with audio support");
return (-1);
}
Apr 26, 2001
Apr 26, 2001
91
92
#endif
Feb 16, 2006
Feb 16, 2006
93
#if !SDL_TIMERS_DISABLED
Jul 10, 2006
Jul 10, 2006
94
95
96
97
98
99
100
101
102
103
104
/* Initialize the timer subsystem */
if (!ticks_started) {
SDL_StartTicks();
ticks_started = 1;
}
if ((flags & SDL_INIT_TIMER) && !(SDL_initialized & SDL_INIT_TIMER)) {
if (SDL_TimerInit() < 0) {
return (-1);
}
SDL_initialized |= SDL_INIT_TIMER;
}
Apr 26, 2001
Apr 26, 2001
105
#else
Jul 10, 2006
Jul 10, 2006
106
107
108
109
if (flags & SDL_INIT_TIMER) {
SDL_SetError("SDL not built with timer support");
return (-1);
}
Apr 26, 2001
Apr 26, 2001
110
111
#endif
Feb 16, 2006
Feb 16, 2006
112
#if !SDL_JOYSTICK_DISABLED
Jul 10, 2006
Jul 10, 2006
113
114
115
116
117
118
119
/* Initialize the joystick subsystem */
if ((flags & SDL_INIT_JOYSTICK) && !(SDL_initialized & SDL_INIT_JOYSTICK)) {
if (SDL_JoystickInit() < 0) {
return (-1);
}
SDL_initialized |= SDL_INIT_JOYSTICK;
}
Apr 26, 2001
Apr 26, 2001
120
#else
Jul 10, 2006
Jul 10, 2006
121
122
123
124
if (flags & SDL_INIT_JOYSTICK) {
SDL_SetError("SDL not built with joystick support");
return (-1);
}
Apr 26, 2001
Apr 26, 2001
125
126
#endif
Feb 16, 2006
Feb 16, 2006
127
#if !SDL_CDROM_DISABLED
Jul 10, 2006
Jul 10, 2006
128
129
130
131
132
133
134
/* Initialize the CD-ROM subsystem */
if ((flags & SDL_INIT_CDROM) && !(SDL_initialized & SDL_INIT_CDROM)) {
if (SDL_CDROMInit() < 0) {
return (-1);
}
SDL_initialized |= SDL_INIT_CDROM;
}
Apr 26, 2001
Apr 26, 2001
135
#else
Jul 10, 2006
Jul 10, 2006
136
137
138
139
if (flags & SDL_INIT_CDROM) {
SDL_SetError("SDL not built with cdrom support");
return (-1);
}
Apr 26, 2001
Apr 26, 2001
140
#endif
Jul 10, 2006
Jul 10, 2006
141
return (0);
Apr 26, 2001
Apr 26, 2001
142
143
}
Jul 10, 2006
Jul 10, 2006
144
145
int
SDL_Init(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
146
{
Feb 16, 2006
Feb 16, 2006
147
#if !SDL_THREADS_DISABLED && SDL_THREAD_PTH
Jul 10, 2006
Jul 10, 2006
148
149
150
if (!pth_init()) {
return -1;
}
Jun 10, 2002
Jun 10, 2002
151
152
#endif
Jul 10, 2006
Jul 10, 2006
153
154
/* Clear the error message */
SDL_ClearError();
Apr 26, 2001
Apr 26, 2001
155
Jul 10, 2006
Jul 10, 2006
156
157
158
159
/* Initialize the desired subsystems */
if (SDL_InitSubSystem(flags) < 0) {
return (-1);
}
Apr 26, 2001
Apr 26, 2001
160
Jul 10, 2006
Jul 10, 2006
161
162
163
164
165
/* Everything is initialized */
if (!(flags & SDL_INIT_NOPARACHUTE)) {
SDL_InstallParachute();
}
return (0);
Apr 26, 2001
Apr 26, 2001
166
167
}
Jul 10, 2006
Jul 10, 2006
168
169
void
SDL_QuitSubSystem(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
170
{
Jul 10, 2006
Jul 10, 2006
171
/* Shut down requested initialized subsystems */
Feb 16, 2006
Feb 16, 2006
172
#if !SDL_CDROM_DISABLED
Jul 10, 2006
Jul 10, 2006
173
174
175
176
if ((flags & SDL_initialized & SDL_INIT_CDROM)) {
SDL_CDROMQuit();
SDL_initialized &= ~SDL_INIT_CDROM;
}
Apr 26, 2001
Apr 26, 2001
177
#endif
Feb 16, 2006
Feb 16, 2006
178
#if !SDL_JOYSTICK_DISABLED
Jul 10, 2006
Jul 10, 2006
179
180
181
182
if ((flags & SDL_initialized & SDL_INIT_JOYSTICK)) {
SDL_JoystickQuit();
SDL_initialized &= ~SDL_INIT_JOYSTICK;
}
Apr 26, 2001
Apr 26, 2001
183
#endif
Feb 16, 2006
Feb 16, 2006
184
#if !SDL_TIMERS_DISABLED
Jul 10, 2006
Jul 10, 2006
185
186
187
188
if ((flags & SDL_initialized & SDL_INIT_TIMER)) {
SDL_TimerQuit();
SDL_initialized &= ~SDL_INIT_TIMER;
}
Apr 26, 2001
Apr 26, 2001
189
#endif
Feb 16, 2006
Feb 16, 2006
190
#if !SDL_AUDIO_DISABLED
Jul 10, 2006
Jul 10, 2006
191
192
193
194
if ((flags & SDL_initialized & SDL_INIT_AUDIO)) {
SDL_AudioQuit();
SDL_initialized &= ~SDL_INIT_AUDIO;
}
Apr 26, 2001
Apr 26, 2001
195
#endif
Feb 16, 2006
Feb 16, 2006
196
#if !SDL_VIDEO_DISABLED
Jul 10, 2006
Jul 10, 2006
197
198
199
200
if ((flags & SDL_initialized & SDL_INIT_VIDEO)) {
SDL_VideoQuit();
SDL_initialized &= ~SDL_INIT_VIDEO;
}
Apr 26, 2001
Apr 26, 2001
201
202
203
#endif
}
Jul 10, 2006
Jul 10, 2006
204
205
Uint32
SDL_WasInit(Uint32 flags)
Apr 26, 2001
Apr 26, 2001
206
{
Jul 10, 2006
Jul 10, 2006
207
208
209
210
if (!flags) {
flags = SDL_INIT_EVERYTHING;
}
return (SDL_initialized & flags);
Apr 26, 2001
Apr 26, 2001
211
212
}
Jul 10, 2006
Jul 10, 2006
213
214
void
SDL_Quit(void)
Apr 26, 2001
Apr 26, 2001
215
{
Jul 10, 2006
Jul 10, 2006
216
/* Quit all subsystems */
Nov 23, 2005
Nov 23, 2005
217
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
218
219
printf("[SDL_Quit] : Enter! Calling QuitSubSystem()\n");
fflush(stdout);
Nov 23, 2005
Nov 23, 2005
220
#endif
Jul 10, 2006
Jul 10, 2006
221
SDL_QuitSubSystem(SDL_INIT_EVERYTHING);
Apr 26, 2001
Apr 26, 2001
222
223
#ifdef CHECK_LEAKS
Nov 23, 2005
Nov 23, 2005
224
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
225
226
printf("[SDL_Quit] : CHECK_LEAKS\n");
fflush(stdout);
Nov 23, 2005
Nov 23, 2005
227
228
#endif
Jul 10, 2006
Jul 10, 2006
229
230
231
232
233
/* Print the number of surfaces not freed */
if (surfaces_allocated != 0) {
fprintf(stderr, "SDL Warning: %d SDL surfaces extant\n",
surfaces_allocated);
}
Apr 26, 2001
Apr 26, 2001
234
#endif
Nov 23, 2005
Nov 23, 2005
235
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
236
237
printf("[SDL_Quit] : SDL_UninstallParachute()\n");
fflush(stdout);
Nov 23, 2005
Nov 23, 2005
238
#endif
Apr 26, 2001
Apr 26, 2001
239
Jul 10, 2006
Jul 10, 2006
240
241
/* Uninstall any parachute signal handlers */
SDL_UninstallParachute();
Jun 10, 2002
Jun 10, 2002
242
Feb 16, 2006
Feb 16, 2006
243
#if !SDL_THREADS_DISABLED && SDL_THREAD_PTH
Jul 10, 2006
Jul 10, 2006
244
pth_kill();
Jun 10, 2002
Jun 10, 2002
245
#endif
Nov 23, 2005
Nov 23, 2005
246
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
247
248
printf("[SDL_Quit] : Returning!\n");
fflush(stdout);
Nov 23, 2005
Nov 23, 2005
249
250
#endif
Apr 26, 2001
Apr 26, 2001
251
252
}
Jul 10, 2006
Jul 10, 2006
253
254
255
/* Get the library version number */
void
SDL_GetVersion(SDL_version * ver)
Apr 26, 2001
Apr 26, 2001
256
{
Jul 10, 2006
Jul 10, 2006
257
SDL_VERSION(ver);
Apr 26, 2001
Apr 26, 2001
258
259
}
Feb 6, 2006
Feb 6, 2006
260
#if defined(__OS2__)
Mar 9, 2006
Mar 9, 2006
261
/* Building for OS/2 */
Nov 23, 2005
Nov 23, 2005
262
263
264
265
266
267
#ifdef __WATCOMC__
#define INCL_DOSERRORS
#define INCL_DOSEXCEPTIONS
#include <os2.h>
Mar 9, 2006
Mar 9, 2006
268
/* Exception handler to prevent the Audio thread hanging, making a zombie process! */
Jul 10, 2006
Jul 10, 2006
269
270
271
272
ULONG _System
SDL_Main_ExceptionHandler(PEXCEPTIONREPORTRECORD pERepRec,
PEXCEPTIONREGISTRATIONRECORD pERegRec,
PCONTEXTRECORD pCtxRec, PVOID p)
Nov 23, 2005
Nov 23, 2005
273
{
Jul 10, 2006
Jul 10, 2006
274
275
276
277
278
279
280
281
282
283
284
285
286
if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND)
return XCPT_CONTINUE_SEARCH;
if (pERepRec->fHandlerFlags & EH_UNWINDING)
return XCPT_CONTINUE_SEARCH;
if (pERepRec->fHandlerFlags & EH_NESTED_CALL)
return XCPT_CONTINUE_SEARCH;
/* Do cleanup at every fatal exception! */
if (((pERepRec->ExceptionNum & XCPT_SEVERITY_CODE) ==
XCPT_FATAL_EXCEPTION) && (pERepRec->ExceptionNum != XCPT_BREAKPOINT)
&& (pERepRec->ExceptionNum != XCPT_SINGLE_STEP)) {
if (SDL_initialized & SDL_INIT_AUDIO) {
/* This removes the zombie audio thread in case of emergency. */
Nov 23, 2005
Nov 23, 2005
287
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
288
289
printf
("[SDL_Main_ExceptionHandler] : Calling SDL_CloseAudio()!\n");
Nov 23, 2005
Nov 23, 2005
290
#endif
Jul 10, 2006
Jul 10, 2006
291
292
SDL_CloseAudio();
}
Nov 23, 2005
Nov 23, 2005
293
}
Jul 10, 2006
Jul 10, 2006
294
return (XCPT_CONTINUE_SEARCH);
Nov 23, 2005
Nov 23, 2005
295
296
297
}
Jul 10, 2006
Jul 10, 2006
298
299
EXCEPTIONREGISTRATIONRECORD SDL_Main_xcpthand =
{ 0, SDL_Main_ExceptionHandler };
Nov 23, 2005
Nov 23, 2005
300
Mar 9, 2006
Mar 9, 2006
301
/* The main DLL entry for DLL Initialization and Uninitialization: */
Jul 10, 2006
Jul 10, 2006
302
303
unsigned _System
LibMain(unsigned hmod, unsigned termination)
Nov 23, 2005
Nov 23, 2005
304
{
Jul 10, 2006
Jul 10, 2006
305
if (termination) {
Nov 23, 2005
Nov 23, 2005
306
#ifdef DEBUG_BUILD
Mar 9, 2006
Mar 9, 2006
307
/* printf("[SDL DLL Unintialization] : Removing exception handler\n"); */
Nov 23, 2005
Nov 23, 2005
308
#endif
Jul 10, 2006
Jul 10, 2006
309
310
311
DosUnsetExceptionHandler(&SDL_Main_xcpthand);
return 1;
} else {
Nov 23, 2005
Nov 23, 2005
312
#ifdef DEBUG_BUILD
Jul 10, 2006
Jul 10, 2006
313
314
315
/* Make stdout and stderr unbuffered! */
setbuf(stdout, NULL);
setbuf(stderr, NULL);
Nov 23, 2005
Nov 23, 2005
316
#endif
Jul 10, 2006
Jul 10, 2006
317
/* Fire up exception handler */
Nov 23, 2005
Nov 23, 2005
318
#ifdef DEBUG_BUILD
Mar 9, 2006
Mar 9, 2006
319
/* printf("[SDL DLL Initialization] : Setting exception handler\n"); */
Nov 23, 2005
Nov 23, 2005
320
#endif
Jul 10, 2006
Jul 10, 2006
321
322
/* Set exception handler */
DosSetExceptionHandler(&SDL_Main_xcpthand);
Nov 23, 2005
Nov 23, 2005
323
Jul 10, 2006
Jul 10, 2006
324
325
return 1;
}
Nov 23, 2005
Nov 23, 2005
326
}
Feb 6, 2006
Feb 6, 2006
327
#endif /* __WATCOMC__ */
Nov 23, 2005
Nov 23, 2005
328
Feb 21, 2006
Feb 21, 2006
329
#elif defined(__WIN32__)
Feb 6, 2006
Feb 6, 2006
330
Mar 4, 2006
Mar 4, 2006
331
332
#if !defined(HAVE_LIBC) || (defined(__WATCOMC__) && defined(BUILD_DLL))
/* Need to include DllMain() on Watcom C for some reason.. */
Feb 25, 2006
Feb 25, 2006
333
334
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Feb 6, 2006
Feb 6, 2006
335
Jul 10, 2006
Jul 10, 2006
336
337
338
BOOL APIENTRY
_DllMainCRTStartup(HANDLE hModule,
DWORD ul_reason_for_call, LPVOID lpReserved)
Feb 6, 2006
Feb 6, 2006
339
{
Jul 10, 2006
Jul 10, 2006
340
341
342
343
344
345
346
347
switch (ul_reason_for_call) {
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
Feb 6, 2006
Feb 6, 2006
348
}
Mar 4, 2006
Mar 4, 2006
349
#endif /* building DLL with Watcom C */
Feb 6, 2006
Feb 6, 2006
350
Feb 21, 2006
Feb 21, 2006
351
#endif /* OS/2 elif __WIN32__ */
Jul 10, 2006
Jul 10, 2006
352
353
/* vi: set ts=4 sw=4 expandtab: */