-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmain.c
212 lines (161 loc) · 3.96 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <signal.h>
#include "input.h"
#include "rc.h"
//#include "Version"
static char *defaultconfig[] =
{
"bind esc quit",
"bind up +up",
"bind down +down",
"bind left +left",
"bind right +right",
"bind d +a",
"bind s +b",
"bind enter +start",
"bind space +select",
"bind tab +select",
"bind joyup +up",
"bind joydown +down",
"bind joyleft +left",
"bind joyright +right",
"bind joy0 +b",
"bind joy1 +a",
"bind joy2 +select",
"bind joy3 +start",
"bind 1 \"set saveslot 1\"",
"bind 2 \"set saveslot 2\"",
"bind 3 \"set saveslot 3\"",
"bind 4 \"set saveslot 4\"",
"bind 5 \"set saveslot 5\"",
"bind 6 \"set saveslot 6\"",
"bind 7 \"set saveslot 7\"",
"bind 8 \"set saveslot 8\"",
"bind 9 \"set saveslot 9\"",
"bind 0 \"set saveslot 0\"",
"bind ins savestate",
"bind del loadstate",
"source gnuboy.rc",
NULL
};
static void banner()
{
//printf("\ngnuboy " VERSION "\n");
}
static void copyright()
{
banner();
printf(
"Copyright (C) 2000-2001 Laguna and Gilgamesh\n"
"Portions contributed by other authors; see CREDITS for details.\n"
"\n"
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2 of the License, or\n"
"(at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
"\n");
}
static void usage(char *name)
{
copyright();
printf("Type %s --help for detailed help.\n\n", name);
exit(1);
}
static void copying()
{
copyright();
exit(0);
}
static void help(char *name)
{
banner();
printf("Usage: %s [options] romfile\n", name);
printf("\n"
" --source FILE read rc commands from FILE\n"
" --bind KEY COMMAND bind KEY to perform COMMAND\n"
" --VAR=VALUE set rc variable VAR to VALUE\n"
" --VAR set VAR to 1 (turn on boolean options)\n"
" --no-VAR set VAR to 0 (turn off boolean options)\n"
" --showvars list all available rc variables\n"
" --help display this help and exit\n"
" --version output version information and exit\n"
" --copying show copying permissions\n"
"");
exit(0);
}
static void version(char *name)
{
// printf("%s-" VERSION "\n", name);
exit(0);
}
void doevents()
{
event_t ev;
int st;
/* ev_poll();
while (ev_getevent(&ev))
{
if (ev.type != EV_PRESS && ev.type != EV_RELEASE)
continue;
st = (ev.type != EV_RELEASE);
// rc_dokey(ev.code, st);
}*/
}
/*static void shutdown()
{
vid_close();
pcm_close();
}*/
void die(char *fmt, ...)
{
//TwConfirmQuit("die...;");
//DEBUGS("die");
char tmp[256];
va_list ap;
va_start(ap, fmt);
vfprintf(tmp, fmt, ap);
va_end(ap);
//DEBUGS(tmp);
// exit(1);
}
static int bad_signals[] =
{
/* These are all standard, so no need to #ifdef them... */
SIGINT, SIGSEGV, SIGTERM, SIGFPE, SIGABRT, SIGILL,
#ifdef SIGQUIT
SIGQUIT,
#endif
#ifdef SIGPIPE
SIGPIPE,
#endif
0
};
static void fatalsignal(int s)
{
die("Signal %d\n", s);
}
static void catch_signals()
{
int i;
for (i = 0; bad_signals[i]; i++)
signal(bad_signals[i], fatalsignal);
}
static char *base(char *s)
{
char *p;
p = (char*)strrchr(s, '/');
if (p) return p+1;
return s;
}