release r1
[fceu.git] / drivers / common / main.c
CommitLineData
35868d35 1/* FCE Ultra - NES/Famicom Emulator
35868d35 2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
35868d35 18
19#include <unistd.h>
20#include <sys/types.h>
21#include <signal.h>
22#include <sys/time.h>
23#include <sys/stat.h>
24#include <string.h>
25#include <strings.h>
26#include <errno.h>
27#include <stdio.h>
28#include <stdlib.h>
29
4a2a617a 30#include "main.h"
35868d35 31#include "throttle.h"
4a2a617a 32#include "config.h"
33#include "args.h"
34#include "unixdsp.h"
35#include "cheat.h"
36#include "dface.h"
37#include "platform.h"
b2b95d2e 38#include "menu.h"
4a2a617a 39#include "settings.h"
e4434f79 40#include "../libpicofe/config_file.h"
35868d35 41
21afaa36 42#include "../../fce.h"
9b451455 43#include "../../cart.h"
21afaa36 44
35868d35 45
4a2a617a 46// these are now here to try to make compatible configs
47// between different versions of the emu
48DSETTINGS Settings;
49CFGSTRUCT DriverConfig[]={
50 AC(Settings.turbo_rate_add),
51 AC(Settings.sound_rate),
52 AC(Settings.showfps),
53 AC(Settings.scaling),
54 AC(Settings.frameskip),
55 AC(Settings.sstate_confirm),
56 AC(Settings.region_force),
57 AC(Settings.cpuclock),
58 AC(Settings.mmuhack),
59 AC(Settings.ramtimings),
60 AC(Settings.gamma),
61 AC(Settings.perfect_vsync),
62 AC(Settings.accurate_mode),
88e59df3 63 AC(Settings.sw_filter),
e4434f79 64 AC(Settings.hw_filter),
4a2a617a 65 ENDCFGSTRUCT
66};
21afaa36 67
21afaa36 68void CleanSurface(void);
6587f346 69
b2b95d2e 70// internals
b2b95d2e 71extern uint8 Exit; // exit emu loop flag
7b356ee3 72extern int FSkip;
b2b95d2e 73void CloseGame(void);
74
75FCEUGI *fceugi = NULL;
21afaa36 76int ntsccol=0,ntschue=-1,ntsctint=-1;
35868d35 77int soundvol=70;
78int inited=0;
35868d35 79
21afaa36 80int srendlinev[2]={8,0};
81int erendlinev[2]={231,239};
35868d35 82int srendline,erendline;
83
84
85static char BaseDirectory[2048];
86
87int eoptions=0;
88
89static void DriverKill(void);
90static int DriverInitialize(void);
91
92static int gametype;
93#include "input.c"
94
95static void ParseGI(FCEUGI *gi)
96{
97 gametype=gi->type;
98
99 InputType[0]=UsrInputType[0];
100 InputType[1]=UsrInputType[1];
101 InputTypeFC=UsrInputTypeFC;
102
103 if(gi->input[0]>=0)
104 InputType[0]=gi->input[0];
105 if(gi->input[1]>=0)
106 InputType[1]=gi->input[1];
107 if(gi->inputfc>=0)
108 InputTypeFC=gi->inputfc;
35868d35 109}
110
111void FCEUD_PrintError(char *s)
112{
113 puts(s);
114}
115
6f6bc6fa 116char *cpalette=0;
117void LoadCPalette(void)
35868d35 118{
119 char tmpp[192];
120 FILE *fp;
121
122 if(!(fp=fopen(cpalette,"rb")))
123 {
124 printf(" Error loading custom palette from file: %s\n",cpalette);
6f6bc6fa 125 free(cpalette);
126 cpalette=0;
35868d35 127 return;
128 }
129 fread(tmpp,1,192,fp);
130 FCEUI_SetPaletteArray((uint8 *)tmpp);
131 fclose(fp);
132}
133
134static CFGSTRUCT fceuconfig[]={
135 AC(soundvol),
136 ACS(cpalette),
137 AC(ntsctint),
138 AC(ntschue),
139 AC(ntsccol),
140 AC(UsrInputTypeFC),
141 ACA(UsrInputType),
142 AC(powerpadside),
143 AC(powerpadsc),
144 AC(eoptions),
145 ACA(srendlinev),
146 ACA(erendlinev),
147 ADDCFGSTRUCT(DriverConfig),
148 ENDCFGSTRUCT
149};
150
642070a9 151static const char *skip_path(const char *path)
35868d35 152{
642070a9 153 const char *p;
154 if (path == NULL) return NULL;
155 for (p = path+strlen(path)-1; p > path && *p != '/'; p--);
156 if (*p == '/') p++;
157 return p;
158}
159
160int SaveConfig(const char *llgn_path)
161{
162 const char *name = skip_path(llgn_path);
35868d35 163 char tdir[2048];
e4434f79 164 FILE *f;
642070a9 165 int ret;
e4434f79 166
b547bda7 167 if (name)
168 sprintf(tdir,"%s"PSS"cfg"PSS"%s.cfg",BaseDirectory,name);
169 else sprintf(tdir,"%s"PSS"fceu2.cfg",BaseDirectory);
642070a9 170 printf("saving cfg to %s ... ", tdir); fflush(stdout);
21afaa36 171 FCEUI_GetNTSCTH(&ntsctint, &ntschue);
642070a9 172 ret=SaveFCEUConfig(tdir,fceuconfig);
173 printf(ret == 0 ? "done\n" : "failed\n");
e4434f79 174
175 // keys
176 if (name)
177 sprintf(tdir,"%s"PSS"cfg"PSS"%s_keys.cfg",BaseDirectory,name);
178 else sprintf(tdir,"%s"PSS"fceu_keys.cfg",BaseDirectory);
179 f=fopen(tdir, "w");
180 if (f!=NULL) {
181 config_write_keys(f);
182 fclose(f);
183 }
184
642070a9 185 return ret;
35868d35 186}
187
642070a9 188static int LoadConfig(const char *llgn_path)
35868d35 189{
642070a9 190 const char *name = skip_path(llgn_path);
35868d35 191 char tdir[2048];
e4434f79 192 FILE *f;
193 int ret, l;
194
b547bda7 195 if (name)
196 sprintf(tdir,"%s"PSS"cfg"PSS"%s.cfg",BaseDirectory,name);
197 else sprintf(tdir,"%s"PSS"fceu2.cfg",BaseDirectory);
642070a9 198 printf("loading cfg from %s ... ", tdir); fflush(stdout);
21afaa36 199 FCEUI_GetNTSCTH(&ntsctint, &ntschue); /* Get default settings for if no config file exists. */
642070a9 200 ret=LoadFCEUConfig(tdir,fceuconfig);
21afaa36 201 FCEUI_SetNTSCTH(ntsccol, ntsctint, ntschue);
642070a9 202 printf(ret == 0 ? "done\n" : "failed\n");
e4434f79 203
204 // keys
205 if (name)
206 sprintf(tdir,"%s"PSS"cfg"PSS"%s_keys.cfg",BaseDirectory,name);
207 else sprintf(tdir,"%s"PSS"fceu_keys.cfg",BaseDirectory);
208 f=fopen(tdir, "r");
209 if (f!=NULL) {
210 l=fread(tdir,1,sizeof(tdir)-1,f);
211 tdir[l]=0;
212 config_read_keys(tdir);
213 fclose(f);
214 }
215
642070a9 216 return ret;
35868d35 217}
218
989672f4 219static void LoadLLGN(void)
220{
221 char tdir[2048];
222 FILE *f;
223 int len;
224 sprintf(tdir,"%s"PSS"last_rom.txt",BaseDirectory);
225 f=fopen(tdir, "r");
226 if(f)
227 {
228 len = fread(lastLoadedGameName, 1, sizeof(lastLoadedGameName)-1, f);
229 lastLoadedGameName[len] = 0;
230 fclose(f);
231 }
158d88ba 232 else
233 {
234 platform_get_def_rompath(lastLoadedGameName, sizeof(lastLoadedGameName));
235 }
989672f4 236}
237
238static void SaveLLGN(void)
239{
240 // save last loaded game name
7b356ee3 241 if (lastLoadedGameName[0] && !(eoptions&EO_NOAUTOWRITE))
989672f4 242 {
243 char tdir[2048];
244 FILE *f;
245 sprintf(tdir,"%s"PSS"last_rom.txt",BaseDirectory);
246 f=fopen(tdir, "w");
247 if(f)
248 {
249 fwrite(lastLoadedGameName, 1, strlen(lastLoadedGameName), f);
250 fclose(f);
251 sync();
252 }
253 }
254}
255
256
35868d35 257static void CreateDirs(void)
258{
6f6bc6fa 259 char *subs[]={"fcs","snaps","gameinfo","sav","cheats","cfg","pal"};
35868d35 260 char tdir[2048];
261 int x;
262
263 mkdir(BaseDirectory,S_IRWXU);
b547bda7 264 for(x=0;x<sizeof(subs)/sizeof(subs[0]);x++)
35868d35 265 {
266 sprintf(tdir,"%s"PSS"%s",BaseDirectory,subs[x]);
267 mkdir(tdir,S_IRWXU);
268 }
269}
270
271static void SetSignals(void (*t)(int))
272{
273 int sigs[11]={SIGINT,SIGTERM,SIGHUP,SIGPIPE,SIGSEGV,SIGFPE,SIGKILL,SIGALRM,SIGABRT,SIGUSR1,SIGUSR2};
274 int x;
275 for(x=0;x<11;x++)
276 signal(sigs[x],t);
277}
278
279static void CloseStuff(int signum)
280{
281 DriverKill();
282 printf("\nSignal %d has been caught and dealt with...\n",signum);
283 switch(signum)
284 {
285 case SIGINT:printf("How DARE you interrupt me!\n");break;
286 case SIGTERM:printf("MUST TERMINATE ALL HUMANS\n");break;
287 case SIGHUP:printf("Reach out and hang-up on someone.\n");break;
288 case SIGPIPE:printf("The pipe has broken! Better watch out for floods...\n");break;
289 case SIGSEGV:printf("Iyeeeeeeeee!!! A segmentation fault has occurred. Have a fluffy day.\n");break;
35868d35 290 #if(SIGBUS!=SIGSEGV)
291 case SIGBUS:printf("I told you to be nice to the driver.\n");break;
292 #endif
35868d35 293 case SIGFPE:printf("Those darn floating points. Ne'er know when they'll bite!\n");break;
294 case SIGALRM:printf("Don't throw your clock at the meowing cats!\n");break;
295 case SIGABRT:printf("Abort, Retry, Ignore, Fail?\n");break;
296 case SIGUSR1:
297 case SIGUSR2:printf("Killing your processes is not nice.\n");break;
298 }
299 exit(1);
300}
301
b2b95d2e 302static int DoArgs(int argc, char *argv[])
35868d35 303{
304 static char *cortab[5]={"none","gamepad","zapper","powerpad","arkanoid"};
305 static int cortabi[5]={SI_NONE,SI_GAMEPAD,
d97315ac 306 SI_ZAPPER,SI_POWERPADA,SI_ARKANOID};
35868d35 307 static char *fccortab[5]={"none","arkanoid","shadow","4player","fkb"};
308 static int fccortabi[5]={SIFC_NONE,SIFC_ARKANOID,SIFC_SHADOW,
309 SIFC_4PLAYER,SIFC_FKB};
310
b2b95d2e 311 int x, ret;
35868d35 312 static char *inputa[2]={0,0};
313 static char *fcexp=0;
314 static int docheckie[4];
4a2a617a 315#ifdef NETWORK
316 static int docheckie2[2]={0,0};
317#endif
35868d35 318
319 static ARGPSTRUCT FCEUArgs[]={
320 {"-soundvol",0,&soundvol,0},
321 {"-cpalette",0,&cpalette,0x4001},
322
323 {"-ntsccol",0,&ntsccol,0},
324 {"-pal",&docheckie[0],0,0},
325 {"-input1",0,&inputa[0],0x4001},{"-input2",0,&inputa[1],0x4001},
326 {"-fcexp",0,&fcexp,0x4001},
327
9b451455 328 {"-gg",0,&eoptions,0x8000|EO_GG},
6f6bc6fa 329 {"-no8lim",0,&eoptions,0x8000|EO_NO8LIM},
35868d35 330 {"-snapname",0,&eoptions,0x8000|EO_SNAPNAME},
331 {"-nofs",0,&eoptions,0x8000|EO_NOFOURSCORE},
332 {"-clipsides",0,&eoptions,0x8000|EO_CLIPSIDES},
333 {"-nothrottle",0,&eoptions,0x8000|EO_NOTHROTTLE},
7b356ee3 334 {"-noautowrite",0,&eoptions,0x8000|EO_NOAUTOWRITE},
35868d35 335 {"-slstart",0,&srendlinev[0],0},{"-slend",0,&erendlinev[0],0},
336 {"-slstartp",0,&srendlinev[1],0},{"-slendp",0,&erendlinev[1],0},
4a2a617a 337 {"-sound",0,&Settings.sound_rate,0},
338 {"-showfps",0,&Settings.showfps,0},
339 #ifdef NETWORK
340 {"-connect",&docheckie2[0],&netplayhost,0x4001},
341 {"-server",&docheckie2[1],0,0},
342 {"-netport",0,&Port,0},
343 #endif
344 {0,(void *)DriverArgs,0,0},
345 {0,0,0,0}
35868d35 346 };
347
348 memset(docheckie,0,sizeof(docheckie));
b2b95d2e 349 ret=ParseArguments(argc, argv, FCEUArgs);
35868d35 350 if(cpalette)
351 {
352 if(cpalette[0]=='0')
353 if(cpalette[1]==0)
354 {
355 free(cpalette);
356 cpalette=0;
357 }
358 }
359 if(docheckie[0])
989672f4 360 Settings.region_force=2;
9b451455 361 FCEUI_SetGameGenie(eoptions&EO_GG);
6f6bc6fa 362 FCEUI_DisableSpriteLimitation(eoptions&EO_NO8LIM);
35868d35 363 FCEUI_SetSnapName(eoptions&EO_SNAPNAME);
364
365 for(x=0;x<2;x++)
366 {
367 if(srendlinev[x]<0 || srendlinev[x]>239) srendlinev[x]=0;
368 if(erendlinev[x]<srendlinev[x] || erendlinev[x]>239) erendlinev[x]=239;
369 }
370
35868d35 371 FCEUI_SetRenderedLines(srendlinev[0],erendlinev[0],srendlinev[1],erendlinev[1]);
7b356ee3 372 FCEUI_SetSoundVolume(80);
4a2a617a 373 #ifdef NETWORK
374 if(docheckie2[0])
375 netplay=2;
376 else if(docheckie2[1])
377 netplay=1;
378
379 if(netplay)
380 FCEUI_SetNetworkPlay(netplay);
381 #endif
35868d35 382 DoDriverArgs();
383
384 if(fcexp)
385 {
386 int y;
387 for(y=0;y<5;y++)
388 {
389 if(!strncmp(fccortab[y],fcexp,8))
390 {
391 UsrInputTypeFC=fccortabi[y];
392 break;
393 }
394 }
395 free(fcexp);
396 }
397 for(x=0;x<2;x++)
398 {
399 int y;
400
401 if(!inputa[x])
402 continue;
403
404 for(y=0;y<5;y++)
405 {
406 if(!strncmp(cortab[y],inputa[x],8))
407 {
408 UsrInputType[x]=cortabi[y];
409 if(y==3)
410 {
411 powerpadside&=~(1<<x);
412 powerpadside|=((((inputa[x][8])-'a')&1)^1)<<x;
413 }
414 free(inputa[x]);
415 }
416 }
417 }
b2b95d2e 418 return ret;
35868d35 419}
420
b547bda7 421
35868d35 422#include "usage.h"
423
4a2a617a 424int main(int argc, char *argv[])
35868d35 425{
642070a9 426 int last_arg_parsed, ret;
b2b95d2e 427 /* TODO if(argc<=1)
937bf65b 428 {
429 ShowUsage(argv[0]);
430 return 1;
b2b95d2e 431 }*/
937bf65b 432
4a2a617a 433 platform_init();
937bf65b 434 if(!DriverInitialize())
435 {
436 return 1;
437 }
438
b2b95d2e 439 if(!FCEUI_Initialize())
35868d35 440 return(1);
441 GetBaseDirectory(BaseDirectory);
442 FCEUI_SetBaseDirectory(BaseDirectory);
b2b95d2e 443 lastLoadedGameName[0] = 0;
4a2a617a 444 menu_init();
445 in_init();
35868d35 446
447 CreateDirs();
b547bda7 448 LoadConfig(NULL);
b2b95d2e 449 last_arg_parsed=DoArgs(argc-1,&argv[1]);
4a2a617a 450 platform_late_init();
4a2a617a 451
989672f4 452 LoadLLGN();
21afaa36 453 FCEUI_SetNTSCTH(ntsccol, ntsctint, ntschue);
35868d35 454 if(cpalette)
6f6bc6fa 455 LoadCPalette();
35868d35 456 if(InitSound())
457 inited|=1;
458
b2b95d2e 459 if (argc > 1 && !last_arg_parsed)
6587f346 460 {
b2b95d2e 461 strncpy(lastLoadedGameName, argv[argc-1], sizeof(lastLoadedGameName));
462 lastLoadedGameName[sizeof(lastLoadedGameName)-1] = 0;
463 Exit = 0;
464 }
465 else
466 {
b2b95d2e 467 Exit = 1;
6587f346 468 }
469
b2b95d2e 470 while (1)
471 {
472 if(!Exit)
473 {
474 if (fceugi)
475 CloseGame();
642070a9 476 ret=LoadConfig(lastLoadedGameName);
477 if (ret != 0)
478 {
479 LoadConfig(NULL);
480 }
6244011f 481 FCEUI_SetEmuMode(Settings.accurate_mode);
b2b95d2e 482 fceugi=FCEUI_LoadGame(lastLoadedGameName);
483 if (fceugi)
484 {
c4980f9e 485 char infostring[32];
989672f4 486 if (Settings.region_force)
487 FCEUI_SetVidSystem(Settings.region_force - 1);
b2b95d2e 488 ParseGI(fceugi);
b2b95d2e 489 InitOtherInput();
490
9b451455 491 if ((eoptions&EO_GG) && geniestage == 0) {
492 strcpy(infostring, "gg.rom is missing, GG disabled");
493 eoptions&=~EO_GG;
494 FCEUI_SetGameGenie(0);
495 } else
496 GameInterface(GI_INFOSTRING, infostring);
c4980f9e 497 FCEU_DispMessage("%s", infostring);
b2b95d2e 498 }
499 else
989672f4 500 {
501 switch(LoadGameLastError) {
4a2a617a 502 default: menu_update_msg("failed to load ROM"); break;
503 case 2: menu_update_msg("Can't find a ROM for ips/movie"); break;
504 case 10: menu_update_msg("FDS BIOS ROM is missing, read docs"); break;
505 case 11: menu_update_msg("Error reading auxillary FDS file"); break;
989672f4 506 }
507 }
b2b95d2e 508 }
509 if(Exit || !fceugi)
510 {
511 int ret;
4a2a617a 512 ret = menu_loop();
b2b95d2e 513 if (ret == 1) break; // exit emu
514 if (ret == 2) { // reload ROM
e4434f79 515 SaveLLGN();
b2b95d2e 516 Exit = 0;
517 continue;
518 }
519 }
520
971a1d07 521 PrepareOtherInput();
21afaa36 522 FCEUI_GetCurrentVidSystem(&srendline,&erendline);
4a2a617a 523 platform_apply_config();
21afaa36 524 CleanSurface();
4a2a617a 525 StartSound();
7b356ee3 526 RefreshThrottleFPS();
b2b95d2e 527 FCEUI_Emulate();
528 }
35868d35 529
b547bda7 530 if (fceugi)
531 CloseGame();
532
6244011f 533 FCEUI_Kill();
35868d35 534 DriverKill();
4a2a617a 535 platform_finish();
536 return 0;
35868d35 537}
538
539static int DriverInitialize(void)
540{
541 SetSignals((void *)CloseStuff);
542
35868d35 543 if(!InitVideo()) return 0;
544 inited|=4;
35868d35 545 return 1;
546}
547
548static void DriverKill(void)
549{
989672f4 550 // SaveConfig(NULL); // done explicitly in menu now
cc981841 551 SetSignals(SIG_DFL);
35868d35 552
6f6bc6fa 553 if(cpalette) free(cpalette);
554 cpalette=0;
555
35868d35 556 if(inited&4)
557 KillVideo();
558 if(inited&1)
559 KillSound();
35868d35 560 inited=0;
561}
562
937bf65b 563void FCEUD_Update(uint8 *xbuf, int16 *Buffer, int Count)
35868d35 564{
7b356ee3 565 FCEUD_UpdateInput(); // must update input before blitting because of save confirmation stuff
566 BlitPrepare(xbuf == NULL);
0bb3fe12 567 if(!(eoptions&EO_NOTHROTTLE))
568 {
569 if(Count)
570 WriteSound(Buffer,Count);
35868d35 571 SpeedThrottle();
0bb3fe12 572 }
7b356ee3 573 BlitScreen(xbuf == NULL);
574 // make sure last frame won't get skipped, because we need it for menu bg
575 if (Exit) FSkip=0;
35868d35 576}
577
4a2a617a 578