completely remove paletted color support
[drnoksnes] / platform / config.cpp
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <popt.h>
5
6 #include "platform.h"
7 #include "port.h"
8 #include "snes9x.h"
9 #include "display.h"
10
11 #if CONF_GUI
12 #include "osso.h"
13 #endif
14
15 #define DIE(format, ...) do { \
16                 fprintf(stderr, "Died at %s:%d: ", __FILE__, __LINE__ ); \
17                 fprintf(stderr, format "\n", ## __VA_ARGS__); \
18                 abort(); \
19         } while (0);
20
21 struct config Config;
22
23 /** Path to current rom file, with extension. */
24 static char * romFile;
25 /** Path to rom file, without extension.
26  *  Used as a simple optimization to S9xGetFilename
27  */
28 static char * basePath;
29
30 static struct poptOption commonOptionsTable[] = {
31         { "disable-audio", 'a', POPT_ARG_NONE, 0, 1,
32         "disable emulation and output of audio", 0 },
33         { "display-framerate", 'r', POPT_ARG_NONE, 0, 2,
34         "show frames per second counter in lower left corner", 0 },
35         { "skip-frames", 's', POPT_ARG_INT, 0, 3,
36         "render only 1 in every N frames", "NUM" },
37         { "fullscreen", 'f', POPT_ARG_NONE, 0, 4,
38         "start in fullscreen mode", 0 },
39         { "transparency", 'y', POPT_ARG_NONE, 0, 5,
40         "enable transparency effects (slower)", 0 },
41         { "scaler", 'S', POPT_ARG_STRING, 0, 6,
42         "select scaler to use", 0 },
43         { "pal", 'p', POPT_ARG_NONE, 0, 7,
44         "run in PAL mode", 0 },
45         { "ntsc", 'n', POPT_ARG_NONE, 0, 8,
46         "run in NTSC mode", 0 },
47         { "turbo", 't', POPT_ARG_NONE, 0, 9,
48         "turbo mode (do not try to sleep between frames)", 0 },
49         { "conf", 'c', POPT_ARG_STRING, 0, 10,
50         "extra configuration file to load", "FILE" },
51         { "mouse", 'm', POPT_ARG_INT | POPT_ARGFLAG_OPTIONAL, 0, 11,
52         "enable mouse on controller NUM", "NUM"},
53         { "superscope", 'e', POPT_ARG_NONE, 0, 12,
54         "enable SuperScope", 0},
55         { "snapshot", 'o', POPT_ARG_NONE, 0, 13,
56         "unfreeze previous game on start and freeze game on exit", 0 },
57         { "audio-rate", 'u', POPT_ARG_INT, 0, 14,
58         "audio output rate", "HZ" },
59         { "audio-buffer-size", 'b', POPT_ARG_INT, 0, 15,
60         "audio output buffer size", "SAMPLES" },
61         { "touchscreen", 'd', POPT_ARG_NONE, 0, 16,
62         "enable touchscreen controls", 0 },
63         { "touchscreen-grid", 'D', POPT_ARG_NONE, 0, 17,
64         "enable touchscreen controls and show grid", 0 },
65         { "hacks", 'h', POPT_ARG_NONE, 0, 18,
66         "enable safe subset of speedhacks", 0 },
67         { "all-hacks", 'H', POPT_ARG_NONE, 0, 19,
68         "enable all speedhacks (may break sound)", 0 },
69         { "saver", 'R', POPT_ARG_NONE, 0, 20,
70         "save&exit when the emulator window is unfocused", 0 },
71         POPT_TABLEEND
72 };
73
74 static struct poptOption configOptionsTable[] = {
75         { "scancode", '\0', POPT_ARG_INT, 0, 100,
76         "scancode to map", "CODE" },
77         { "button", '\0', POPT_ARG_STRING, 0, 101,
78         "SNES Button to press (A, B, X, Y, L, R, Up, Down, Left, Right)", "name" },
79         { "button2", '\0', POPT_ARG_STRING, 0, 102,
80         "SNES Button to press for joypad 2", "name" },
81         { "action", '\0', POPT_ARG_STRING, 0, 110,
82         "emulator action to do (fullscreen, quit, ...)", "action" },
83         { "hacks-file", '\0', POPT_ARG_STRING, 0, 200,
84         "path to snesadvance.dat file", "FILE" },
85         POPT_TABLEEND
86 };
87
88 static struct poptOption optionsTable[] = {
89         { 0, '\0', POPT_ARG_INCLUDE_TABLE, commonOptionsTable, 0,
90         "Common options", 0 },
91         { 0, '\0', POPT_ARG_INCLUDE_TABLE, configOptionsTable, 0,
92         "Configuration file options", 0 },
93         POPT_AUTOHELP
94         POPT_TABLEEND
95 };
96
97 static unsigned short buttonNameToBit(const char *s) {
98         if (strcasecmp(s, "A") == 0) {
99                 return SNES_A_MASK;
100         } else if (strcasecmp(s, "B") == 0) {
101                 return SNES_B_MASK;
102         } else if (strcasecmp(s, "X") == 0) {
103                 return SNES_X_MASK;
104         } else if (strcasecmp(s, "Y") == 0) {
105                 return SNES_Y_MASK;
106         } else if (strcasecmp(s, "L") == 0) {
107                 return SNES_TL_MASK;
108         } else if (strcasecmp(s, "R") == 0) {
109                 return SNES_TR_MASK;
110         } else if (strcasecmp(s, "UP") == 0) {
111                 return SNES_UP_MASK;
112         } else if (strcasecmp(s, "DOWN") == 0) {
113                 return SNES_DOWN_MASK;
114         } else if (strcasecmp(s, "LEFT") == 0) {
115                 return SNES_LEFT_MASK;
116         } else if (strcasecmp(s, "RIGHT") == 0) {
117                 return SNES_RIGHT_MASK;
118         } else if (strcasecmp(s, "START") == 0) {
119                 return SNES_START_MASK;
120         } else if (strcasecmp(s, "SELECT") == 0) {
121                 return SNES_SELECT_MASK;
122         } else {
123                 DIE("Bad button name: %s\n", s);
124         }
125 }
126
127 static unsigned char actionNameToBit(const char *s) {
128         if (strcasecmp(s, "quit") == 0) {
129                 return kActionQuit;
130         } else if (strcasecmp(s, "fullscreen") == 0) {
131                 return kActionToggleFullscreen;
132         } else if (strcasecmp(s, "quickload1") == 0) {
133                 return kActionQuickLoad1;
134         } else if (strcasecmp(s, "quicksave1") == 0) {
135                 return kActionQuickSave1;
136         } else if (strcasecmp(s, "quickload2") == 0) {
137                 return kActionQuickLoad2;
138         } else if (strcasecmp(s, "quicksave2") == 0) {
139                 return kActionQuickSave2;
140         } else {
141                 DIE("Bad action name: %s\n", s);
142         }
143 }
144
145 const char * S9xGetFilename(FileTypes file)
146 {
147         static char filename[PATH_MAX + 1];
148         const char * ext;
149         switch (file) {
150                 case FILE_ROM:
151                         return romFile;
152                 case FILE_SRAM:
153                         ext = "srm";
154                         break;
155                 case FILE_FREEZE:
156                         ext = "frz.gz";
157                         break;
158                 case FILE_CHT:
159                         ext = "cht";
160                         break;
161                 case FILE_IPS:
162                         ext = "ips";
163                         break;
164                 case FILE_SCREENSHOT:
165                         ext = "png";
166                         break;
167                 case FILE_SDD1_DAT:
168                         ext = "dat";
169                         break;
170                 default:
171                         ext = "???";
172                         break;
173         }
174
175         snprintf(filename, PATH_MAX, "%s.%s", basePath, ext);
176         return filename;
177 }
178
179 const char * S9xGetQuickSaveFilename(unsigned int slot)
180 {
181         static char filename[PATH_MAX + 1];
182         snprintf(filename, PATH_MAX, "%s.frz.%u.gz", basePath, slot);
183         return filename;
184 }
185
186 static void loadDefaults()
187 {
188         ZeroMemory(&Settings, sizeof(Settings));
189         ZeroMemory(&Config, sizeof(Config)); 
190         
191         romFile = 0;
192         basePath = 0;
193
194         Config.enableAudio = true;
195
196         Settings.SoundPlaybackRate = 22050;
197         Settings.Stereo = TRUE;
198         Settings.SoundBufferSize = 512; // in samples
199         Settings.CyclesPercentage = 100;
200         Settings.APUEnabled = FALSE;            // We'll enable it later
201         Settings.H_Max = SNES_CYCLES_PER_SCANLINE;
202         Settings.SkipFrames = AUTO_FRAMERATE;
203         Settings.Shutdown = Settings.ShutdownMaster = TRUE;
204         Settings.FrameTimePAL = 20;     // in msecs
205         Settings.FrameTimeNTSC = 16;
206         Settings.FrameTime = Settings.FrameTimeNTSC;
207         Settings.ControllerOption = SNES_JOYPAD;
208
209         Settings.ForceTransparency = FALSE;     // We'll enable those later
210         Settings.Transparency = FALSE;
211
212         Settings.SupportHiRes = FALSE;
213         Settings.ApplyCheats = FALSE;
214         Settings.TurboMode = FALSE;
215         Settings.TurboSkipFrames = 15;
216
217     Settings.ForcePAL = FALSE;
218     Settings.ForceNTSC = FALSE;
219
220     Settings.HacksEnabled = FALSE;
221     Settings.HacksFilter = FALSE;
222
223         Settings.HBlankStart = (256 * Settings.H_Max) / SNES_HCOUNTER_MAX;
224
225         Settings.AutoSaveDelay = 15*60; // Autosave each 15 minutes.
226 }
227
228 void S9xSetRomFile(const char * path)
229 {
230         if (romFile) {
231                 free(romFile);
232                 free(basePath);
233         }
234
235         romFile = strndup(path, PATH_MAX);
236         basePath = strdup(romFile);
237
238         // Truncate base path at the last '.' char
239         char * c = strrchr(basePath, '.');
240         if (c) {
241                 if (strcasecmp(c, ".gz") == 0) {
242                         // Ignore the .gz part when truncating
243                         *c = '\0';
244                         c = strrchr(basePath, '.');
245                         if (c) {
246                                 *c = '\0';
247                         }
248                 } else {
249                         *c = '\0';
250                 }
251         }
252 }
253
254 static bool gotRomFile() 
255 {
256         return romFile ? true : false;
257 }
258
259 static void loadConfig(poptContext optCon, const char * file)
260 {
261         char * out;
262         int newargc, ret;
263         const char ** newargv;
264         FILE * fp;
265
266         fp = fopen (file, "r");
267         if (!fp) {
268                 fprintf(stderr, "Cannot open config file %s\n", file);
269                 return;
270         }
271
272         ret = poptConfigFileToString (fp, &out, 0);
273         if (ret)
274             DIE("Cannot parse config file %s. ret=%d\n", file, ret);
275
276         poptParseArgvString(out, &newargc, &newargv);
277
278         poptStuffArgs(optCon, newargv);
279
280         free(out);
281         fclose(fp);
282         /* XXX: currently leaking newargv */
283 }
284
285 static void parseArgs(poptContext optCon)
286 {
287         int rc;
288         unsigned char scancode = 0;
289         
290         while ((rc = poptGetNextOpt(optCon)) > 0) {
291                 const char * val;
292                 switch (rc) {
293                         case 1:
294                                 Config.enableAudio = false;
295                                 break;
296                         case 2:
297                                 Settings.DisplayFrameRate = TRUE;
298                                 break;
299                         case 3:
300                                 Settings.SkipFrames = atoi(poptGetOptArg(optCon));
301                                 break;
302                         case 4:
303                                 Config.fullscreen = true;
304                                 break;
305                         case 5:
306                                 Settings.Transparency = TRUE;
307                                 break;
308                         case 6:
309                                 free(Config.scaler);
310                                 Config.scaler = strdup(poptGetOptArg(optCon));
311                                 break;
312                         case 7:
313                                 Settings.ForcePAL = TRUE;
314                                 break;
315                         case 8:
316                                 Settings.ForceNTSC = TRUE;
317                                 break;
318                         case 9:
319                                 Settings.TurboMode = TRUE;
320                                 break;
321                         case 10:
322                                 loadConfig(optCon, poptGetOptArg(optCon));
323                                 break;
324                         case 11:
325                                 val = poptGetOptArg(optCon);
326                                 Settings.Mouse = TRUE;
327                                 if (!val || atoi(val) <= 1) {
328                                         // Enable mouse on first controller
329                                         Settings.ControllerOption = SNES_MOUSE_SWAPPED;
330                                 } else {
331                                         // Enable mouse on second controller
332                                         Settings.ControllerOption = SNES_MOUSE;
333                                 }
334                                 break;
335                         case 12:
336                                 Settings.SuperScope = TRUE;
337                                 Settings.ControllerOption = SNES_SUPERSCOPE;
338                                 break;
339                         case 13:
340                                 Config.snapshotLoad = true;
341                                 Config.snapshotSave = true;
342                                 break;
343                         case 14:
344                                 Settings.SoundPlaybackRate = atoi(poptGetOptArg(optCon));
345                                 break;
346                         case 15:
347                                 Settings.SoundBufferSize = atoi(poptGetOptArg(optCon));
348                                 break;
349                         case 16:
350                                 Config.touchscreenInput = 1;
351                                 break;
352                         case 17:
353                                 Config.touchscreenInput = 1;
354                                 Config.touchscreenShow = true;
355                                 break;
356                         case 18:
357                                 Settings.HacksEnabled = TRUE;
358                                 Settings.HacksFilter = TRUE;
359                                 break;
360                         case 19:
361                                 Settings.HacksEnabled = TRUE;
362                                 Settings.HacksFilter = FALSE;
363                                 break;
364                         case 20:
365                                 Config.saver = true;
366                                 break;
367                         case 100:
368                                 scancode = atoi(poptGetOptArg(optCon));
369                                 break;
370                         case 101:
371                                 Config.joypad1Mapping[scancode] |=
372                                         buttonNameToBit(poptGetOptArg(optCon));
373                                 Config.joypad1Enabled = true;
374                                 break;
375                         case 102:
376                                 Config.joypad2Mapping[scancode] |=
377                                         buttonNameToBit(poptGetOptArg(optCon));
378                                 Config.joypad2Enabled = true;
379                                 break;
380                         case 110:
381                                 Config.action[scancode] |= 
382                                         actionNameToBit(poptGetOptArg(optCon));
383                                 break;
384                         case 200:
385                                 free(Config.hacksFile);
386                                 Config.hacksFile = strdup(poptGetOptArg(optCon));
387                                 break;
388                         default:
389                                 DIE("Invalid popt argument (this is a bug): %d", rc);
390                                 break;
391                 }
392         }
393         
394         if (rc < -1) {
395                 /* an error occurred during option processing */
396                 fprintf(stderr, "%s: %s\n",
397                         poptBadOption(optCon, 0),
398                         poptStrerror(rc));
399                 exit(2);
400         }
401
402         /* if there's an extra unparsed arg it's our rom file */
403         const char * extra_arg = poptGetArg(optCon);
404         if (extra_arg) 
405                 S9xSetRomFile(extra_arg);
406 }
407
408 void S9xLoadConfig(int argc, char ** argv)
409 {
410         poptContext optCon = poptGetContext("drnoksnes",
411                 argc, const_cast<const char **>(argv), optionsTable, 0);
412         poptSetOtherOptionHelp(optCon, "<rom>");
413
414         // Builtin defaults
415         loadDefaults();
416
417         // Read config file ~/.config/drnoksnes.conf
418         char defConfFile[PATH_MAX];
419         sprintf(defConfFile, "%s/%s", getenv("HOME"), ".config/drnoksnes.conf");
420         loadConfig(optCon, defConfFile);
421
422         // Command line parameters (including --conf args)
423         parseArgs(optCon);
424
425 #if CONF_GUI
426         if (!OssoOk())
427 #endif
428         {
429                 if (!gotRomFile()) {
430                         // User did not specify a ROM file in the command line
431                         fprintf(stderr, "You need to specify a ROM, like this:\n");
432                         poptPrintUsage(optCon, stdout, 0);
433                         poptFreeContext(optCon);
434                         exit(2);
435                 }
436         }
437
438         poptFreeContext(optCon);
439 }
440
441 void S9xUnloadConfig()
442 {
443         if (romFile) {
444                 free(romFile);
445                 romFile = 0;
446         }
447         if (basePath) {
448                 free(basePath);
449                 basePath = 0;
450         }
451         if (Config.hacksFile) {
452                 free(Config.hacksFile);
453                 Config.hacksFile = 0;
454         }
455 }
456