Skip to content

Latest commit

 

History

History
402 lines (354 loc) · 8.88 KB

SDL_win32_main.c

File metadata and controls

402 lines (354 loc) · 8.88 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
/*
SDL_main.c, placed in the public domain by Sam Lantinga 4/13/98
Jan 21, 2003
Jan 21, 2003
4
The WinMain function -- calls your program's main() function
Apr 26, 2001
Apr 26, 2001
5
6
7
8
9
*/
#include <stdio.h>
#include <stdlib.h>
Feb 25, 2006
Feb 25, 2006
10
11
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Feb 7, 2006
Feb 7, 2006
12
Jan 21, 2003
Jan 21, 2003
13
14
#ifdef _WIN32_WCE
# define DIR_SEPERATOR TEXT("\\")
Jan 4, 2004
Jan 4, 2004
15
16
17
18
# undef _getcwd
# define _getcwd(str,len) wcscpy(str,TEXT(""))
# define setbuf(f,b)
# define setvbuf(w,x,y,z)
Jan 21, 2003
Jan 21, 2003
19
20
21
22
23
24
25
# define fopen _wfopen
# define freopen _wfreopen
# define remove(x) DeleteFile(x)
#else
# define DIR_SEPERATOR TEXT("/")
# include <direct.h>
#endif
Apr 26, 2001
Apr 26, 2001
26
27
28
29
30
/* Include the SDL main definition header */
#include "SDL.h"
#include "SDL_main.h"
Jan 21, 2003
Jan 21, 2003
31
32
33
34
35
#ifdef main
# ifndef _WIN32_WCE_EMULATION
# undef main
# endif /* _WIN32_WCE_EMULATION */
#endif /* main */
May 23, 2001
May 23, 2001
36
Apr 26, 2001
Apr 26, 2001
37
/* The standard output files */
May 23, 2001
May 23, 2001
38
39
40
#define STDOUT_FILE TEXT("stdout.txt")
#define STDERR_FILE TEXT("stderr.txt")
Sep 26, 2009
Sep 26, 2009
41
42
43
44
/* Set a variable to tell if the stdio redirect has been enabled. */
static int stdioRedirectEnabled = 0;
#ifdef _WIN32_WCE
Jan 21, 2003
Jan 21, 2003
45
46
static wchar_t stdoutPath[MAX_PATH];
static wchar_t stderrPath[MAX_PATH];
Sep 26, 2009
Sep 26, 2009
47
#else
Jan 21, 2003
Jan 21, 2003
48
49
static char stdoutPath[MAX_PATH];
static char stderrPath[MAX_PATH];
Nov 17, 2002
Nov 17, 2002
50
51
#endif
Jul 18, 2001
Jul 18, 2001
52
#if defined(_WIN32_WCE) && _WIN32_WCE < 300
May 23, 2001
May 23, 2001
53
54
/* seems to be undefined in Win CE although in online help */
#define isspace(a) (((CHAR)a == ' ') || ((CHAR)a == '\t'))
Jul 18, 2001
Jul 18, 2001
55
#endif /* _WIN32_WCE < 300 */
Apr 26, 2001
Apr 26, 2001
56
Dec 29, 2007
Dec 29, 2007
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
static void UnEscapeQuotes( char *arg )
{
char *last = NULL;
while( *arg ) {
if( *arg == '"' && *last == '\\' ) {
char *c_curr = arg;
char *c_last = last;
while( *c_curr ) {
*c_last = *c_curr;
c_last = c_curr;
c_curr++;
}
*c_last = '\0';
}
last = arg;
arg++;
}
}
Apr 26, 2001
Apr 26, 2001
78
79
80
81
/* Parse a command line buffer into arguments */
static int ParseCommandLine(char *cmdline, char **argv)
{
char *bufp;
Dec 29, 2007
Dec 29, 2007
82
83
char *lastp = NULL;
int argc, last_argc;
Apr 26, 2001
Apr 26, 2001
84
Dec 29, 2007
Dec 29, 2007
85
argc = last_argc = 0;
Apr 26, 2001
Apr 26, 2001
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
for ( bufp = cmdline; *bufp; ) {
/* Skip leading whitespace */
while ( isspace(*bufp) ) {
++bufp;
}
/* Skip over argument */
if ( *bufp == '"' ) {
++bufp;
if ( *bufp ) {
if ( argv ) {
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
Dec 30, 2011
Dec 30, 2011
101
while ( *bufp && ( *bufp != '"' || (lastp && *lastp == '\\') ) ) {
Dec 29, 2007
Dec 29, 2007
102
lastp = bufp;
Apr 26, 2001
Apr 26, 2001
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
++bufp;
}
} else {
if ( *bufp ) {
if ( argv ) {
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
while ( *bufp && ! isspace(*bufp) ) {
++bufp;
}
}
if ( *bufp ) {
if ( argv ) {
*bufp = '\0';
}
++bufp;
}
Dec 29, 2007
Dec 29, 2007
123
124
125
126
127
128
/* Strip out \ from \" sequences */
if( argv && last_argc != argc ) {
UnEscapeQuotes( argv[last_argc] );
}
last_argc = argc;
Apr 26, 2001
Apr 26, 2001
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
}
if ( argv ) {
argv[argc] = NULL;
}
return(argc);
}
/* Show an error message */
static void ShowError(const char *title, const char *message)
{
/* If USE_MESSAGEBOX is defined, you need to link with user32.lib */
#ifdef USE_MESSAGEBOX
MessageBox(NULL, message, title, MB_ICONEXCLAMATION|MB_OK);
#else
fprintf(stderr, "%s: %s\n", title, message);
#endif
}
/* Pop up an out of memory message, returns to Windows */
static BOOL OutOfMemory(void)
{
ShowError("Fatal Error", "Out of memory - aborting");
return FALSE;
}
May 7, 2006
May 7, 2006
154
155
156
157
158
159
160
/* SDL_Quit() shouldn't be used with atexit() directly because
calling conventions may differ... */
static void cleanup(void)
{
SDL_Quit();
}
Apr 26, 2001
Apr 26, 2001
161
/* Remove the output files if there was no output written */
Sep 26, 2009
Sep 26, 2009
162
static void cleanup_output(void) {
Apr 26, 2001
Apr 26, 2001
163
164
165
166
167
168
169
FILE *file;
int empty;
/* Flush the output in case anything is queued */
fclose(stdout);
fclose(stderr);
Sep 26, 2009
Sep 26, 2009
170
171
172
173
174
/* Without redirection we're done */
if (!stdioRedirectEnabled) {
return;
}
Apr 26, 2001
Apr 26, 2001
175
/* See if the files have any output in them */
Dec 2, 2002
Dec 2, 2002
176
if ( stdoutPath[0] ) {
Jan 21, 2003
Jan 21, 2003
177
file = fopen(stdoutPath, TEXT("rb"));
Dec 2, 2002
Dec 2, 2002
178
179
180
181
182
183
if ( file ) {
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty ) {
remove(stdoutPath);
}
Apr 26, 2001
Apr 26, 2001
184
185
}
}
Dec 2, 2002
Dec 2, 2002
186
if ( stderrPath[0] ) {
Jan 21, 2003
Jan 21, 2003
187
file = fopen(stderrPath, TEXT("rb"));
Dec 2, 2002
Dec 2, 2002
188
189
190
191
192
193
if ( file ) {
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty ) {
remove(stderrPath);
}
Apr 26, 2001
Apr 26, 2001
194
195
}
}
Sep 26, 2009
Sep 26, 2009
196
197
198
199
200
201
202
203
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
}
/* Redirect the output (stdout and stderr) to a file */
static void redirect_output(void)
{
DWORD pathlen;
#ifdef _WIN32_WCE
wchar_t path[MAX_PATH];
#else
char path[MAX_PATH];
#endif
FILE *newfp;
pathlen = GetModuleFileName(NULL, path, SDL_arraysize(path));
while ( pathlen > 0 && path[pathlen] != '\\' ) {
--pathlen;
}
path[pathlen] = '\0';
#ifdef _WIN32_WCE
wcsncpy( stdoutPath, path, SDL_arraysize(stdoutPath) );
wcsncat( stdoutPath, DIR_SEPERATOR STDOUT_FILE, SDL_arraysize(stdoutPath) );
#else
SDL_strlcpy( stdoutPath, path, SDL_arraysize(stdoutPath) );
SDL_strlcat( stdoutPath, DIR_SEPERATOR STDOUT_FILE, SDL_arraysize(stdoutPath) );
#endif
/* Redirect standard input and standard output */
newfp = freopen(stdoutPath, TEXT("w"), stdout);
#ifndef _WIN32_WCE
if ( newfp == NULL ) { /* This happens on NT */
#if !defined(stdout)
stdout = fopen(stdoutPath, TEXT("w"));
#else
newfp = fopen(stdoutPath, TEXT("w"));
if ( newfp ) {
*stdout = *newfp;
}
#endif
}
#endif /* _WIN32_WCE */
#ifdef _WIN32_WCE
wcsncpy( stderrPath, path, SDL_arraysize(stdoutPath) );
wcsncat( stderrPath, DIR_SEPERATOR STDOUT_FILE, SDL_arraysize(stdoutPath) );
#else
SDL_strlcpy( stderrPath, path, SDL_arraysize(stderrPath) );
SDL_strlcat( stderrPath, DIR_SEPERATOR STDERR_FILE, SDL_arraysize(stderrPath) );
#endif
newfp = freopen(stderrPath, TEXT("w"), stderr);
#ifndef _WIN32_WCE
if ( newfp == NULL ) { /* This happens on NT */
#if !defined(stderr)
stderr = fopen(stderrPath, TEXT("w"));
#else
newfp = fopen(stderrPath, TEXT("w"));
if ( newfp ) {
*stderr = *newfp;
}
May 23, 2001
May 23, 2001
257
#endif
Sep 26, 2009
Sep 26, 2009
258
259
260
261
262
263
}
#endif /* _WIN32_WCE */
setvbuf(stdout, NULL, _IOLBF, BUFSIZ); /* Line buffered */
setbuf(stderr, NULL); /* No buffering */
stdioRedirectEnabled = 1;
Apr 26, 2001
Apr 26, 2001
264
265
}
May 23, 2001
May 23, 2001
266
267
#if defined(_MSC_VER) && !defined(_WIN32_WCE)
/* The VC++ compiler needs main defined */
Apr 26, 2001
Apr 26, 2001
268
269
270
271
272
273
#define console_main main
#endif
/* This is where execution begins [console apps] */
int console_main(int argc, char *argv[])
{
Mar 6, 2006
Mar 6, 2006
274
size_t n;
Apr 26, 2001
Apr 26, 2001
275
char *bufp, *appname;
Feb 24, 2006
Feb 24, 2006
276
int status;
Apr 26, 2001
Apr 26, 2001
277
278
279
/* Get the class name from argv[0] */
appname = argv[0];
Feb 7, 2006
Feb 7, 2006
280
if ( (bufp=SDL_strrchr(argv[0], '\\')) != NULL ) {
Apr 26, 2001
Apr 26, 2001
281
282
appname = bufp+1;
} else
Feb 7, 2006
Feb 7, 2006
283
if ( (bufp=SDL_strrchr(argv[0], '/')) != NULL ) {
Apr 26, 2001
Apr 26, 2001
284
285
286
appname = bufp+1;
}
Feb 7, 2006
Feb 7, 2006
287
288
if ( (bufp=SDL_strrchr(appname, '.')) == NULL )
n = SDL_strlen(appname);
Apr 26, 2001
Apr 26, 2001
289
290
291
else
n = (bufp-appname);
Feb 24, 2006
Feb 24, 2006
292
bufp = SDL_stack_alloc(char, n+1);
Apr 26, 2001
Apr 26, 2001
293
294
295
if ( bufp == NULL ) {
return OutOfMemory();
}
May 7, 2006
May 7, 2006
296
SDL_strlcpy(bufp, appname, n+1);
Apr 26, 2001
Apr 26, 2001
297
298
299
300
301
302
303
304
appname = bufp;
/* Load SDL dynamic link library */
if ( SDL_Init(SDL_INIT_NOPARACHUTE) < 0 ) {
ShowError("WinMain() error", SDL_GetError());
return(FALSE);
}
atexit(cleanup_output);
May 7, 2006
May 7, 2006
305
atexit(cleanup);
Apr 26, 2001
Apr 26, 2001
306
Aug 9, 2001
Aug 9, 2001
307
308
309
310
311
312
/* Sam:
We still need to pass in the application handle so that
DirectInput will initialize properly when SDL_RegisterApp()
is called later in the video initialization.
*/
SDL_SetModuleHandle(GetModuleHandle(NULL));
May 2, 2001
May 2, 2001
313
314
/* Run the application main() code */
Feb 24, 2006
Feb 24, 2006
315
status = SDL_main(argc, argv);
Apr 26, 2001
Apr 26, 2001
316
317
/* Exit cleanly, calling atexit() functions */
Feb 24, 2006
Feb 24, 2006
318
exit(status);
Aug 20, 2002
Aug 20, 2002
319
320
/* Hush little compiler, don't you cry... */
Feb 24, 2006
Feb 24, 2006
321
return 0;
Apr 26, 2001
Apr 26, 2001
322
323
324
}
/* This is where execution begins [windowed apps] */
May 23, 2001
May 23, 2001
325
326
327
#ifdef _WIN32_WCE
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPWSTR szCmdLine, int sw)
#else
Apr 26, 2001
Apr 26, 2001
328
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw)
May 23, 2001
May 23, 2001
329
#endif
Apr 26, 2001
Apr 26, 2001
330
{
Sep 10, 2011
Sep 10, 2011
331
HMODULE handle;
Apr 26, 2001
Apr 26, 2001
332
333
334
char **argv;
int argc;
char *cmdline;
Sep 26, 2009
Sep 26, 2009
335
char *env_str;
May 23, 2001
May 23, 2001
336
337
338
339
#ifdef _WIN32_WCE
wchar_t *bufp;
int nLen;
#else
Apr 26, 2001
Apr 26, 2001
340
char *bufp;
Feb 19, 2006
Feb 19, 2006
341
size_t nLen;
May 23, 2001
May 23, 2001
342
#endif
Apr 26, 2001
Apr 26, 2001
343
344
345
346
347
/* Start up DDHELP.EXE before opening any files, so DDHELP doesn't
keep them open. This is a hack.. hopefully it will be fixed
someday. DDHELP.EXE starts up the first time DDRAW.DLL is loaded.
*/
May 23, 2001
May 23, 2001
348
handle = LoadLibrary(TEXT("DDRAW.DLL"));
Apr 26, 2001
Apr 26, 2001
349
350
351
352
if ( handle != NULL ) {
FreeLibrary(handle);
}
Sep 26, 2009
Sep 26, 2009
353
354
355
356
/* Check for stdio redirect settings and do the redirection */
if ((env_str = SDL_getenv("SDL_STDIO_REDIRECT"))) {
if (SDL_atoi(env_str)) {
redirect_output();
Apr 26, 2001
Apr 26, 2001
357
358
}
}
Sep 26, 2009
Sep 26, 2009
359
360
361
#ifndef NO_STDIO_REDIRECT
else {
redirect_output();
Apr 26, 2001
Apr 26, 2001
362
}
Sep 26, 2009
Sep 26, 2009
363
#endif
Apr 26, 2001
Apr 26, 2001
364
May 23, 2001
May 23, 2001
365
366
#ifdef _WIN32_WCE
nLen = wcslen(szCmdLine)+128+1;
Feb 24, 2006
Feb 24, 2006
367
bufp = SDL_stack_alloc(wchar_t, nLen*2);
Oct 5, 2002
Oct 5, 2002
368
wcscpy (bufp, TEXT("\""));
Oct 5, 2002
Oct 5, 2002
369
GetModuleFileName(NULL, bufp+1, 128-3);
Oct 5, 2002
Oct 5, 2002
370
wcscpy (bufp+wcslen(bufp), TEXT("\" "));
Jul 18, 2001
Jul 18, 2001
371
wcsncpy(bufp+wcslen(bufp), szCmdLine,nLen-wcslen(bufp));
May 23, 2001
May 23, 2001
372
nLen = wcslen(bufp)+1;
Mar 4, 2006
Mar 4, 2006
373
cmdline = SDL_stack_alloc(char, nLen);
May 23, 2001
May 23, 2001
374
375
376
377
378
if ( cmdline == NULL ) {
return OutOfMemory();
}
WideCharToMultiByte(CP_ACP, 0, bufp, -1, cmdline, nLen, NULL, NULL);
#else
Feb 24, 2006
Feb 24, 2006
379
/* Grab the command line */
Apr 26, 2001
Apr 26, 2001
380
bufp = GetCommandLine();
Feb 19, 2006
Feb 19, 2006
381
382
nLen = SDL_strlen(bufp)+1;
cmdline = SDL_stack_alloc(char, nLen);
Apr 26, 2001
Apr 26, 2001
383
384
385
if ( cmdline == NULL ) {
return OutOfMemory();
}
Feb 19, 2006
Feb 19, 2006
386
SDL_strlcpy(cmdline, bufp, nLen);
May 23, 2001
May 23, 2001
387
#endif
Apr 26, 2001
Apr 26, 2001
388
389
390
/* Parse it into argv and argc */
argc = ParseCommandLine(cmdline, NULL);
Feb 19, 2006
Feb 19, 2006
391
argv = SDL_stack_alloc(char*, argc+1);
Apr 26, 2001
Apr 26, 2001
392
393
394
395
396
397
if ( argv == NULL ) {
return OutOfMemory();
}
ParseCommandLine(cmdline, argv);
/* Run the main program (after a little SDL initialization) */
Feb 24, 2006
Feb 24, 2006
398
console_main(argc, argv);
Feb 19, 2006
Feb 19, 2006
399
Feb 24, 2006
Feb 24, 2006
400
401
/* Hush little compiler, don't you cry... */
return 0;
Apr 26, 2001
Apr 26, 2001
402
}