Skip to content

Latest commit

 

History

History
360 lines (317 loc) · 7.85 KB

SDL_win32_main.c

File metadata and controls

360 lines (317 loc) · 7.85 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 7, 2006
Feb 7, 2006
10
11
#include "SDL_windows.h"
Jan 21, 2003
Jan 21, 2003
12
13
#ifdef _WIN32_WCE
# define DIR_SEPERATOR TEXT("\\")
Jan 4, 2004
Jan 4, 2004
14
15
16
17
# 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
18
19
20
21
22
23
24
# 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
25
26
27
28
29
/* Include the SDL main definition header */
#include "SDL.h"
#include "SDL_main.h"
Jan 21, 2003
Jan 21, 2003
30
31
32
33
34
#ifdef main
# ifndef _WIN32_WCE_EMULATION
# undef main
# endif /* _WIN32_WCE_EMULATION */
#endif /* main */
May 23, 2001
May 23, 2001
35
Apr 26, 2001
Apr 26, 2001
36
/* The standard output files */
May 23, 2001
May 23, 2001
37
38
39
#define STDOUT_FILE TEXT("stdout.txt")
#define STDERR_FILE TEXT("stderr.txt")
Nov 17, 2002
Nov 17, 2002
40
#ifndef NO_STDIO_REDIRECT
Jan 21, 2003
Jan 21, 2003
41
42
43
44
45
46
47
# ifdef _WIN32_WCE
static wchar_t stdoutPath[MAX_PATH];
static wchar_t stderrPath[MAX_PATH];
# else
static char stdoutPath[MAX_PATH];
static char stderrPath[MAX_PATH];
# endif
Nov 17, 2002
Nov 17, 2002
48
49
#endif
Jul 18, 2001
Jul 18, 2001
50
#if defined(_WIN32_WCE) && _WIN32_WCE < 300
May 23, 2001
May 23, 2001
51
52
53
54
/* seems to be undefined in Win CE although in online help */
#define isspace(a) (((CHAR)a == ' ') || ((CHAR)a == '\t'))
/* seems to be undefined in Win CE although in online help */
Feb 7, 2006
Feb 7, 2006
55
char *SDL_strrchr(char *str, int c)
May 23, 2001
May 23, 2001
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
char *p;
/* Skip to the end of the string */
p=str;
while (*p)
p++;
/* Look for the given character */
while ( (p >= str) && (*p != (CHAR)c) )
p--;
/* Return NULL if character not found */
if ( p < str ) {
p = NULL;
}
return p;
}
Jul 18, 2001
Jul 18, 2001
74
#endif /* _WIN32_WCE < 300 */
Apr 26, 2001
Apr 26, 2001
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Parse a command line buffer into arguments */
static int ParseCommandLine(char *cmdline, char **argv)
{
char *bufp;
int argc;
argc = 0;
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 */
while ( *bufp && (*bufp != '"') ) {
++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;
}
}
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;
}
/* Remove the output files if there was no output written */
May 23, 2001
May 23, 2001
145
static void __cdecl cleanup_output(void)
Apr 26, 2001
Apr 26, 2001
146
{
May 23, 2001
May 23, 2001
147
#ifndef NO_STDIO_REDIRECT
Apr 26, 2001
Apr 26, 2001
148
149
FILE *file;
int empty;
May 23, 2001
May 23, 2001
150
#endif
Apr 26, 2001
Apr 26, 2001
151
152
153
154
155
/* Flush the output in case anything is queued */
fclose(stdout);
fclose(stderr);
May 23, 2001
May 23, 2001
156
#ifndef NO_STDIO_REDIRECT
Apr 26, 2001
Apr 26, 2001
157
/* See if the files have any output in them */
Dec 2, 2002
Dec 2, 2002
158
if ( stdoutPath[0] ) {
Jan 21, 2003
Jan 21, 2003
159
file = fopen(stdoutPath, TEXT("rb"));
Dec 2, 2002
Dec 2, 2002
160
161
162
163
164
165
if ( file ) {
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty ) {
remove(stdoutPath);
}
Apr 26, 2001
Apr 26, 2001
166
167
}
}
Dec 2, 2002
Dec 2, 2002
168
if ( stderrPath[0] ) {
Jan 21, 2003
Jan 21, 2003
169
file = fopen(stderrPath, TEXT("rb"));
Dec 2, 2002
Dec 2, 2002
170
171
172
173
174
175
if ( file ) {
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty ) {
remove(stderrPath);
}
Apr 26, 2001
Apr 26, 2001
176
177
}
}
May 23, 2001
May 23, 2001
178
#endif
Apr 26, 2001
Apr 26, 2001
179
180
}
May 23, 2001
May 23, 2001
181
182
#if defined(_MSC_VER) && !defined(_WIN32_WCE)
/* The VC++ compiler needs main defined */
Apr 26, 2001
Apr 26, 2001
183
184
185
186
187
188
189
190
#define console_main main
#endif
/* This is where execution begins [console apps] */
int console_main(int argc, char *argv[])
{
int n;
char *bufp, *appname;
Feb 24, 2006
Feb 24, 2006
191
int status;
Apr 26, 2001
Apr 26, 2001
192
193
194
/* Get the class name from argv[0] */
appname = argv[0];
Feb 7, 2006
Feb 7, 2006
195
if ( (bufp=SDL_strrchr(argv[0], '\\')) != NULL ) {
Apr 26, 2001
Apr 26, 2001
196
197
appname = bufp+1;
} else
Feb 7, 2006
Feb 7, 2006
198
if ( (bufp=SDL_strrchr(argv[0], '/')) != NULL ) {
Apr 26, 2001
Apr 26, 2001
199
200
201
appname = bufp+1;
}
Feb 7, 2006
Feb 7, 2006
202
203
if ( (bufp=SDL_strrchr(appname, '.')) == NULL )
n = SDL_strlen(appname);
Apr 26, 2001
Apr 26, 2001
204
205
206
else
n = (bufp-appname);
Feb 24, 2006
Feb 24, 2006
207
bufp = SDL_stack_alloc(char, n+1);
Apr 26, 2001
Apr 26, 2001
208
209
210
if ( bufp == NULL ) {
return OutOfMemory();
}
Feb 19, 2006
Feb 19, 2006
211
SDL_strlcpy(bufp, appname, n);
Apr 26, 2001
Apr 26, 2001
212
213
214
215
216
217
218
219
220
221
appname = bufp;
/* Load SDL dynamic link library */
if ( SDL_Init(SDL_INIT_NOPARACHUTE) < 0 ) {
ShowError("WinMain() error", SDL_GetError());
return(FALSE);
}
atexit(cleanup_output);
atexit(SDL_Quit);
Aug 9, 2001
Aug 9, 2001
222
223
224
225
226
227
/* 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
228
229
/* Run the application main() code */
Feb 24, 2006
Feb 24, 2006
230
status = SDL_main(argc, argv);
Apr 26, 2001
Apr 26, 2001
231
232
/* Exit cleanly, calling atexit() functions */
Feb 24, 2006
Feb 24, 2006
233
exit(status);
Aug 20, 2002
Aug 20, 2002
234
235
/* Hush little compiler, don't you cry... */
Feb 24, 2006
Feb 24, 2006
236
return 0;
Apr 26, 2001
Apr 26, 2001
237
238
239
}
/* This is where execution begins [windowed apps] */
May 23, 2001
May 23, 2001
240
241
242
#ifdef _WIN32_WCE
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPWSTR szCmdLine, int sw)
#else
Apr 26, 2001
Apr 26, 2001
243
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw)
May 23, 2001
May 23, 2001
244
#endif
Apr 26, 2001
Apr 26, 2001
245
246
247
248
249
{
HINSTANCE handle;
char **argv;
int argc;
char *cmdline;
Jan 29, 2006
Jan 29, 2006
250
251
252
253
254
255
DWORD pathlen;
#ifdef _WIN32_WCE
wchar_t path[MAX_PATH];
#else
char path[MAX_PATH];
#endif
May 23, 2001
May 23, 2001
256
257
258
259
#ifdef _WIN32_WCE
wchar_t *bufp;
int nLen;
#else
Apr 26, 2001
Apr 26, 2001
260
char *bufp;
Feb 19, 2006
Feb 19, 2006
261
size_t nLen;
May 23, 2001
May 23, 2001
262
#endif
Apr 26, 2001
Apr 26, 2001
263
264
265
266
267
268
269
270
#ifndef NO_STDIO_REDIRECT
FILE *newfp;
#endif
/* 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
271
handle = LoadLibrary(TEXT("DDRAW.DLL"));
Apr 26, 2001
Apr 26, 2001
272
273
274
275
276
if ( handle != NULL ) {
FreeLibrary(handle);
}
#ifndef NO_STDIO_REDIRECT
Feb 19, 2006
Feb 19, 2006
277
pathlen = GetModuleFileName(NULL, path, SDL_arraysize(path));
Jan 29, 2006
Jan 29, 2006
278
279
280
281
282
while ( pathlen > 0 && path[pathlen] != '\\' ) {
--pathlen;
}
path[pathlen] = '\0';
Feb 19, 2006
Feb 19, 2006
283
284
SDL_strlcpy( stdoutPath, path, SDL_arraysize(stdoutPath) );
SDL_strlcat( stdoutPath, DIR_SEPERATOR STDOUT_FILE, SDL_arraysize(stdoutPath) );
Nov 17, 2002
Nov 17, 2002
285
Apr 26, 2001
Apr 26, 2001
286
/* Redirect standard input and standard output */
Jan 21, 2003
Jan 21, 2003
287
288
289
newfp = freopen(stdoutPath, TEXT("w"), stdout);
#ifndef _WIN32_WCE
Apr 26, 2001
Apr 26, 2001
290
291
if ( newfp == NULL ) { /* This happens on NT */
#if !defined(stdout)
Jan 21, 2003
Jan 21, 2003
292
stdout = fopen(stdoutPath, TEXT("w"));
Apr 26, 2001
Apr 26, 2001
293
#else
Jan 21, 2003
Jan 21, 2003
294
newfp = fopen(stdoutPath, TEXT("w"));
Apr 26, 2001
Apr 26, 2001
295
296
297
298
299
if ( newfp ) {
*stdout = *newfp;
}
#endif
}
Jan 21, 2003
Jan 21, 2003
300
#endif /* _WIN32_WCE */
Nov 17, 2002
Nov 17, 2002
301
Feb 19, 2006
Feb 19, 2006
302
303
SDL_strlcpy( stderrPath, path, SDL_arraysize(stderrPath) );
SDL_strlcat( stderrPath, DIR_SEPERATOR STDERR_FILE, SDL_arraysize(stderrPath) );
Nov 17, 2002
Nov 17, 2002
304
Jan 21, 2003
Jan 21, 2003
305
306
newfp = freopen(stderrPath, TEXT("w"), stderr);
#ifndef _WIN32_WCE
Apr 26, 2001
Apr 26, 2001
307
308
if ( newfp == NULL ) { /* This happens on NT */
#if !defined(stderr)
Jan 21, 2003
Jan 21, 2003
309
stderr = fopen(stderrPath, TEXT("w"));
Apr 26, 2001
Apr 26, 2001
310
#else
Jan 21, 2003
Jan 21, 2003
311
newfp = fopen(stderrPath, TEXT("w"));
Apr 26, 2001
Apr 26, 2001
312
313
314
315
316
if ( newfp ) {
*stderr = *newfp;
}
#endif
}
Jan 21, 2003
Jan 21, 2003
317
318
#endif /* _WIN32_WCE */
Apr 26, 2001
Apr 26, 2001
319
320
321
322
setvbuf(stdout, NULL, _IOLBF, BUFSIZ); /* Line buffered */
setbuf(stderr, NULL); /* No buffering */
#endif /* !NO_STDIO_REDIRECT */
May 23, 2001
May 23, 2001
323
324
#ifdef _WIN32_WCE
nLen = wcslen(szCmdLine)+128+1;
Feb 24, 2006
Feb 24, 2006
325
bufp = SDL_stack_alloc(wchar_t, nLen*2);
Oct 5, 2002
Oct 5, 2002
326
wcscpy (bufp, TEXT("\""));
Oct 5, 2002
Oct 5, 2002
327
GetModuleFileName(NULL, bufp+1, 128-3);
Oct 5, 2002
Oct 5, 2002
328
wcscpy (bufp+wcslen(bufp), TEXT("\" "));
Jul 18, 2001
Jul 18, 2001
329
wcsncpy(bufp+wcslen(bufp), szCmdLine,nLen-wcslen(bufp));
May 23, 2001
May 23, 2001
330
nLen = wcslen(bufp)+1;
Feb 19, 2006
Feb 19, 2006
331
cmdline = SDL_stack_alloc(wchar_t, nLen);
May 23, 2001
May 23, 2001
332
333
334
335
336
if ( cmdline == NULL ) {
return OutOfMemory();
}
WideCharToMultiByte(CP_ACP, 0, bufp, -1, cmdline, nLen, NULL, NULL);
#else
Feb 24, 2006
Feb 24, 2006
337
/* Grab the command line */
Apr 26, 2001
Apr 26, 2001
338
bufp = GetCommandLine();
Feb 19, 2006
Feb 19, 2006
339
340
nLen = SDL_strlen(bufp)+1;
cmdline = SDL_stack_alloc(char, nLen);
Apr 26, 2001
Apr 26, 2001
341
342
343
if ( cmdline == NULL ) {
return OutOfMemory();
}
Feb 19, 2006
Feb 19, 2006
344
SDL_strlcpy(cmdline, bufp, nLen);
May 23, 2001
May 23, 2001
345
#endif
Apr 26, 2001
Apr 26, 2001
346
347
348
/* Parse it into argv and argc */
argc = ParseCommandLine(cmdline, NULL);
Feb 19, 2006
Feb 19, 2006
349
argv = SDL_stack_alloc(char*, argc+1);
Apr 26, 2001
Apr 26, 2001
350
351
352
353
354
355
if ( argv == NULL ) {
return OutOfMemory();
}
ParseCommandLine(cmdline, argv);
/* Run the main program (after a little SDL initialization) */
Feb 24, 2006
Feb 24, 2006
356
console_main(argc, argv);
Feb 19, 2006
Feb 19, 2006
357
Feb 24, 2006
Feb 24, 2006
358
359
/* Hush little compiler, don't you cry... */
return 0;
Apr 26, 2001
Apr 26, 2001
360
}