some minor adjustments
[libpicofe.git] / psp / main.c
... / ...
CommitLineData
1// (c) Copyright 2007 notaz, All rights reserved.
2// Free for non-commercial use.
3
4// For commercial use, separate licencing terms must be obtained.
5
6#include <string.h>
7#include "psp.h"
8#include "emu.h"
9#include "menu.h"
10#include "mp3.h"
11#include "../common/menu.h"
12#include "../common/emu.h"
13#include "../common/lprintf.h"
14#include "version.h"
15
16#ifdef GPROF
17#include <pspprof.h>
18#endif
19
20#ifdef GCOV
21#include <stdio.h>
22#include <stdlib.h>
23
24void dummy(void)
25{
26 engineState = atoi(romFileName);
27 setbuf(NULL, NULL);
28 getenv(NULL);
29}
30#endif
31
32int pico_main(void)
33{
34 lprintf("\nPicoDrive v" VERSION " " __DATE__ " " __TIME__ "\n");
35 psp_init();
36 emu_ReadConfig(0, 0);
37 emu_Init();
38 menu_init();
39 // moved to emu_Loop(), after CPU clock change..
40 //mp3_init();
41
42 engineState = PGS_Menu;
43
44 for (;;)
45 {
46 switch (engineState)
47 {
48 case PGS_Menu:
49#ifndef GPROF
50 menu_loop();
51#else
52 strcpy(romFileName, currentConfig.lastRomFile);
53 engineState = PGS_ReloadRom;
54#endif
55 break;
56
57 case PGS_ReloadRom:
58 if (emu_ReloadRom()) {
59 engineState = PGS_Running;
60 if (mp3_last_error != 0)
61 engineState = PGS_Menu; // send to menu to display mp3 error
62 } else {
63 lprintf("PGS_ReloadRom == 0\n");
64 engineState = PGS_Menu;
65 }
66 break;
67
68 case PGS_Suspending:
69 psp_wait_suspend();
70 break;
71
72 case PGS_RestartRun:
73 engineState = PGS_Running;
74
75 case PGS_Running:
76 emu_Loop();
77#ifdef GPROF
78 goto endloop;
79#endif
80 break;
81
82 case PGS_Quit:
83 goto endloop;
84
85 default:
86 lprintf("engine got into unknown state (%i), exitting\n", engineState);
87 goto endloop;
88 }
89 }
90
91 endloop:
92
93 mp3_deinit();
94 emu_Deinit();
95#ifdef GPROF
96 gprof_cleanup();
97#endif
98#ifndef GCOV
99 psp_finish();
100#endif
101
102 return 0;
103}
104