-
Notifications
You must be signed in to change notification settings - Fork 1
/
onscripter.cpp
451 lines (434 loc) · 16.9 KB
/
onscripter.cpp
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
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/* -*- C++ -*-
*
* onscripter.cpp -- main function of ONScripter-EN
*
* Copyright (c) 2001-2011 Ogapee. All rights reserved.
* (original ONScripter, of which this is a fork).
*
* ogapee@aqua.dti2.ne.jp
*
* Copyright (c) 2007-2011 "Uncle" Mion Sonozaki
*
* UncleMion@gmail.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>
* or write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "ONScripterLabel.h"
#include "version.h"
#include <cstdio>
#define CFG_FILE "ons.cfg"
static void optionHelp()
{
printf( "Usage: onscripter [option ...]\n" );
printf( " --cdaudio\t\tuse CD audio if available\n");
printf( " --cdnumber no\tchoose the CD-ROM drive number\n");
#ifdef WIN32
printf( " --waveout-audio\tuse the Windows waveout audio driver (instead of Direct Sound)\n");
#endif
printf( " --match-audiodevice-to-bgm\treset audio to match bgm specs\n");
printf( " --nomatch-audiodevice-to-bgm\tdon't reset audio to match bgm specs (default)\n");
printf( " -f, --font file\tset a TTF font file\n");
printf( " --registry file\tset a registry file\n");
printf( " --dll file\tset a dll file\n");
printf( " --english\t\tset preferred text mode to English (default)\n");
printf( " --japanese\tset preferred text mode to Japanese\n");
printf( " --english-menu\tuse English system menu messages (default)\n");
printf( " --japanese-menu\tuse Japanese system menu messages\n");
#if defined WIN32
printf( " -r, --root path\tset the root path to the archives\n");
printf( " -s, --save path\tset the path to use for saved games (default: folder in All Users profile)\n");
printf( " --current-user-appdata\tuse the current user's AppData folder instead of AllUsers' AppData\n");
#elif defined MACOSX
printf( " -r, --root path\tset the root path to the archives (default: Resources in ONScripter bundle)\n");
printf( " -s, --save path\tset the path to use for saved games (default: folder in ~/Library/Application Support)\n");
#elif defined LINUX
printf( " -r, --root path\tset the root path to the archives\n");
printf( " -s, --save path\tset the path to use for saved games (default: hidden subdirectory in ~)\n");
#else
printf( " -r, --root path\tset the root path to the archives\n");
printf( " -s, --save path\tset the path to use for saved games (default: same as root path)\n");
#endif
printf( " --use-app-icons\tuse the icns for the current application, if bundled/embedded\n");
printf( " --gameid id\t\tset game identifier (like with game.id)\n");
#ifndef NO_LAYER_EFFECTS
printf( " --no-layers\tignore layer-based cmds\n");
#endif
printf( " --fullscreen\tstart in fullscreen mode\n");
printf( " --window\t\tstart in window mode\n");
#ifndef PDA
printf( " --window-width width\t\tset preferred window width\n");
#endif
#ifdef RCA_SCALE
printf( " --widescreen\ttransform game to match widescreen monitors\n");
#endif
printf( " --scale\t\tscale game to native display size. Yields small sharp text.\n");
printf( " --force-png-alpha\t\talways use PNG alpha channels\n");
printf( " --force-png-nscmask\talways use NScripter-style masks\n");
printf( " --detect-png-nscmask\tdetect PNG alpha images that actually use masks\n");
printf( " --force-button-shortcut\tignore useescspc and getenter command\n");
#ifdef USE_X86_GFX
printf( " --disable-cpu-gfx\tdo not use MMX/SSE2 graphics acceleration routines\n");
#elif USE_PPC_GFX
printf( " --disable-cpu-gfx\tdo not use Altivec graphics acceleration routines\n");
#endif
printf( " --enable-wheeldown-advance\tadvance the text on mouse wheeldown event\n");
printf( " --disable-rescale\tdo not rescale the images in the archives when compiled with -DPDA\n");
printf( " --edit\t\tenable editing the volumes and the variables when 'z' is pressed\n");
printf( " --fileversion\tset the ONS file version for loading unversioned files\n");
printf( " --key-exe file\tset a file (*.EXE) that includes a key table\n");
printf( " --nsa-offset offset\tuse byte offset x when reading arc*.nsa files\n");
printf( " --allow-color-type-only\tsyntax option for only recognizing color type for color arguments\n");
printf( " --set-tag-page-origin-to-1\tsyntax option for setting 'gettaglog' origin to 1 instead of 0\n");
printf( " --answer-dialog-with-yes-ok\thave 'yesnobox' and 'okcancelbox' give 'yes/ok' result\n");
printf( " --ignore-textgosub-newline\tignore newline after a clickwait when in textgosub mode\n");
printf( " --skip-past-newline\twhen doing a 'click to skip', don't leave that skip mode at newlines\n");
printf( " --audiodriver dev\tset the SDL_AUDIODRIVER to dev\n");
printf( " --audiobuffer size\tset the audio buffer size in kB (default: 2)\n");
printf( " --strict\t\ttreat warnings more like errors\n");
printf( " --debug\t\tgenerate runtime debugging output (use multiple times to increase debug level)\n");
printf( " -h, --help\t\tshow this help and exit\n");
printf( " -v, --version\t\tshow the version information and exit\n");
exit(0);
}
static void optionVersion()
{
printf("ONScripter-EN version %s (%d.%02d)\n", ONS_VERSION, NSC_VERSION/100, NSC_VERSION%100 );
printf("Original written by Ogapee <ogapee@aqua.dti2.ne.jp>,\n");
printf("English fork maintained by \"Uncle\" Mion Sonozaki <UncleMion@gmail.com>\n\n");
printf("Copyright (c) 2001-2011 Ogapee, 2007-2011 Sonozaki\n");
printf("This is free software; see the source for copying conditions.\n");
exit(0);
}
static void parseOptions(int argc, char **argv, ONScripterLabel &ons, bool &hasArchivePath)
{
argv++;
while( argc > 1 ){
if ( argv[0][0] == '-' ){
if ( !strcmp( argv[0]+1, "h" ) || !strcmp( argv[0]+1, "-help" ) ){
optionHelp();
}
else if ( !strcmp( argv[0]+1, "v" ) || !strcmp( argv[0]+1, "-version" ) ){
optionVersion();
}
else if ( !strcmp( argv[0]+1, "-cdaudio" ) ){
ons.enableCDAudio();
}
else if ( !strcmp( argv[0]+1, "-cdnumber" ) ){
argc--;
argv++;
ons.setCDNumber(atoi(argv[0]));
}
#ifdef WIN32
else if ( !strcmp( argv[0]+1, "-waveout-audio" ) ){
ons.setAudiodriver("waveout");
}
#endif
else if ( !strcmp( argv[0]+1, "-audiodriver" ) ){
argc--;
argv++;
ons.setAudiodriver(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-audiobuffer" ) ){
argc--;
argv++;
ons.setAudioBufferSize(atoi(argv[0]));
}
else if ( !strcmp( argv[0]+1, "-match-audiodevice-to-bgm" ) ){
ons.setMatchBgmAudio(true);
}
else if ( !strcmp( argv[0]+1, "-nomatch-audiodevice-to-bgm" ) ){
ons.setMatchBgmAudio(false);
}
else if ( !strcmp( argv[0]+1, "f" ) || !strcmp( argv[0]+1, "-font" ) ){
argc--;
argv++;
ons.setFontFile(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-registry" ) ){
argc--;
argv++;
ons.setRegistryFile(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-dll" ) ){
argc--;
argv++;
ons.setDLLFile(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-english" ) ){
ons.setEnglishPreferred();
}
else if ( !strcmp( argv[0]+1, "-japanese" ) ){
ons.setJapanesePreferred();
}
else if ( !strcmp( argv[0]+1, "-english-menu" ) ){
ons.setEnglishMenu();
}
else if ( !strcmp( argv[0]+1, "-japanese-menu" ) ){
ons.setJapaneseMenu();
}
else if ( !strcmp( argv[0]+1, "r" ) || !strcmp( argv[0]+1, "-root" ) ){
hasArchivePath = true;
argc--;
argv++;
ons.setArchivePath(argv[0]);
}
else if ( !strcmp( argv[0]+1, "s" ) || !strcmp( argv[0]+1, "-save" ) ){
argc--;
argv++;
ons.setSavePath(argv[0]);
}
#ifdef WIN32
else if ( !strcmp( argv[0]+1, "-current-user-appdata" ) ){
ons.setUserAppData();
}
#endif
else if ( !strcmp( argv[0]+1, "-use-app-icons" ) ){
ons.setUseAppIcons();
}
else if ( !strcmp( argv[0]+1, "-fileversion" ) ){
argc--;
argv++;
ons.setFileVersion(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-fullscreen" ) ){
ons.setFullscreenMode();
}
else if ( !strcmp( argv[0]+1, "-window" ) ){
ons.setWindowMode();
}
else if ( !strcmp( argv[0]+1, "-window-width" ) ){
argc--;
argv++;
ons.setPreferredWidth(argv[0]);
}
#ifndef NO_LAYER_EFFECTS
else if ( !strcmp( argv[0]+1, "-no-layers" ) ){
ons.setNoLayers();
}
#endif
else if ( !strcmp( argv[0]+1, "-gameid" ) ){
argc--;
argv++;
ons.setGameIdentifier(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-nsa-offset" ) ){
argc--;
argv++;
ons.setNsaOffset(argv[0]);
}
else if ( !strcmp( argv[0]+1, "-force-button-shortcut" ) ){
ons.enableButtonShortCut();
}
else if ( !strcmp( argv[0]+1, "-enable-wheeldown-advance" ) ){
ons.enableWheelDownAdvance();
}
else if ( !strcmp( argv[0]+1, "-debug" ) ){
ons.add_debug_level();
}
#if defined (USE_X86_GFX) || defined(USE_PPC_GFX)
else if ( !strcmp( argv[0]+1, "-disable-cpu-gfx" ) ){
ons.disableCpuGfx();
printf("disabling CPU accelerated graphics routines\n");
}
#endif
else if ( !strcmp( argv[0]+1, "-disable-rescale" ) ){
ons.disableRescale();
}
else if ( !strcmp( argv[0]+1, "-allow-color-type-only" ) ){
ons.allow_color_type_only = true;
}
else if ( !strcmp( argv[0]+1, "-set-tag-page-origin-to-1" ) ){
ons.set_tag_page_origin_to_1 = true;
}
else if ( !strcmp( argv[0]+1, "-answer-dialog-with-yes-ok" ) ){
ons.answer_dialog_with_yes_ok = true;
}
else if ( !strcmp( argv[0]+1, "-ignore-textgosub-newline" ) ){
ons.setIgnoreTextgosubNewline();
}
else if ( !strcmp( argv[0]+1, "-skip-past-newline" ) ){
ons.setSkipPastNewline();
}
else if ( !strcmp( argv[0]+1, "-edit" ) ){
ons.enableEdit();
}
else if ( !strcmp( argv[0]+1, "-strict" ) ){
ons.setStrict();
}
else if ( !strcmp( argv[0]+1, "-key-exe" ) ){
argc--;
argv++;
ons.setKeyEXE(argv[0]);
}
#ifdef RCA_SCALE
else if ( !strcmp( argv[0]+1, "-widescreen" ) ){
ons.setWidescreen();
}
#endif
else if ( !strcmp( argv[0]+1, "-scale" ) ){
ons.setScaled();
}
else if ( !strcmp( argv[0]+1, "-detect-png-nscmask" ) ){
ons.setMaskType( ONScripterLabel::PNG_MASK_AUTODETECT );
}
else if ( !strcmp( argv[0]+1, "-force-png-alpha" ) ){
ons.setMaskType( ONScripterLabel::PNG_MASK_USE_ALPHA );
}
else if ( !strcmp( argv[0]+1, "-force-png-nscmask" ) ){
ons.setMaskType( ONScripterLabel::PNG_MASK_USE_NSCRIPTER );
}
else{
char errstr[256];
snprintf(errstr, 256, "unknown option %s", argv[0]);
ons.errorAndCont(errstr, NULL, "Command-Line Issue", true);
}
}
else if (!hasArchivePath) {
hasArchivePath = true;
ons.setArchivePath(argv[0]);
argc--;
argv++;
}
else{
optionHelp();
}
argc--;
argv++;
}
}
static bool parseOptionFile(const char *filename, ONScripterLabel &ons, bool &hasArchivePath)
{
int argc;
char **argv = NULL;
argc = 1;
FILE *fp = fopen(filename, "r");
if (!fp) {
//printf("Couldn't open option file '%s'\n", filename);
return false;
}
printf("Reading command-line options from '%s'\n", filename);
int numlines = 1;
int curlen = 0, maxlen = 0;
while (!feof(fp)) {
char ch = (char) fgetc(fp);
++curlen;
if ((ch == '\0') || (ch == '\r') || (ch == '\n')) {
++numlines;
if (curlen > maxlen)
maxlen = curlen;
curlen = 0;
}
}
if (curlen > 0) {
if (curlen > maxlen)
maxlen = curlen;
++numlines;
}
if (numlines > 0) {
fseek(fp, 0, SEEK_SET);
numlines *= 2;
argv = new char*[numlines+1];
for (int i=0; i<=numlines; i++)
argv[i] = NULL;
char *tmp = new char[maxlen+1];
while (!feof(fp) && (argc<numlines)) {
char *ptmp = tmp;
if (fgets(ptmp,maxlen+1,fp) == NULL)
break;
curlen = strlen(tmp);
while ((curlen > 0) && ((tmp[curlen-1] == '\n') || (tmp[curlen-1] == '\r'))) {
tmp[curlen-1] = '\0';
curlen = strlen(tmp);
}
if (curlen == 0) continue;
if (*ptmp == '#') continue;
ptmp = strchr(tmp, '=');
if (ptmp != NULL) {
*ptmp++ = '\0';
curlen = strlen(tmp);
argv[argc] = new char[curlen+3];
sprintf(argv[argc], "--%s", tmp);
curlen = strlen(ptmp);
argv[argc+1] = new char[curlen+1];
sprintf(argv[argc+1], "%s", ptmp);
//printf("Got option '%s'='%s'\n", argv[argc], argv[argc+1]);
argc += 2;
} else {
argv[argc] = new char[curlen+3];
sprintf(argv[argc], "--%s", tmp);
//printf("Got option '%s'\n", argv[argc]);
++argc;
}
}
delete [] tmp;
}
fclose(fp);
// now parse the options
if ((argv != NULL)) {
if ((argc > 1) && (argv[1] != NULL))
parseOptions(argc, argv, ons, hasArchivePath);
for (int i=0; i<=numlines; i++)
if (argv[i] != NULL)
delete[] argv[i];
delete argv;
return true;
}
return false;
}
#ifdef QWS
int SDL_main( int argc, char **argv )
#elif defined(PSP)
extern "C" int main( int argc, char **argv )
#else
int main( int argc, char **argv )
#endif
{
ONScripterLabel ons;
#ifdef PSP
ons.disableRescale();
ons.enableButtonShortCut();
#endif
#ifdef MACOSX
//Check for application bundle on Mac OS X
ons.checkBundled();
#endif
// ----------------------------------------
// Parse options
bool hasArchivePath = false;
#ifdef MACOSX
if (ons.isBundled()) {
const int maxpath=32768;
char cfgpath[maxpath];
char *tmp = ons.bundleResPath();
if (tmp) {
sprintf(cfgpath, "%s/%s", tmp, CFG_FILE);
parseOptionFile(cfgpath, ons, hasArchivePath);
}
tmp = ons.bundleAppPath();
if (tmp) {
sprintf(cfgpath, "%s/%s", tmp, CFG_FILE);
parseOptionFile(cfgpath, ons, hasArchivePath);
}
} else
#endif
parseOptionFile(CFG_FILE, ons, hasArchivePath);
parseOptions(argc, argv, ons, hasArchivePath);
// ----------------------------------------
// Run ONScripter
if (ons.init()) exit(-1);
ons.executeLabel();
exit(0);
}