PSP sustend/resume and stuff
[picodrive.git] / platform / psp / main.c
CommitLineData
8b99ab90 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
110df09c 6#include <string.h>
1820b5a7 7#include "psp.h"
8#include "emu.h"
9#include "menu.h"
4b167c12 10#include "mp3.h"
1820b5a7 11#include "../common/menu.h"
7d4906bf 12#include "../common/emu.h"
1820b5a7 13#include "../common/lprintf.h"
9caf44b5 14#include "version.h"
1820b5a7 15
2445b7cb 16#ifdef GPROF
110df09c 17#include <pspprof.h>
18#endif
19
2445b7cb 20#ifdef GCOV
110df09c 21#include <stdio.h>
22#include <stdlib.h>
23
24void dummy(void)
1820b5a7 25{
110df09c 26 engineState = atoi(romFileName);
27 setbuf(NULL, NULL);
28 getenv(NULL);
29}
30#endif
4b167c12 31
2445b7cb 32int pico_main(void)
110df09c 33{
9caf44b5 34 lprintf("\nPicoDrive v" VERSION " " __DATE__ " " __TIME__ "\n");
1820b5a7 35 psp_init();
7d4906bf 36 emu_ReadConfig(0, 0);
1820b5a7 37 emu_Init();
38 menu_init();
110df09c 39 // moved to emu_Loop(), after CPU clock change..
40 //mp3_init();
1820b5a7 41
42 engineState = PGS_Menu;
43
44 for (;;)
45 {
46 switch (engineState)
47 {
48 case PGS_Menu:
2445b7cb 49#ifndef GPROF
1820b5a7 50 menu_loop();
110df09c 51#else
52 strcpy(romFileName, currentConfig.lastRomFile);
53 engineState = PGS_ReloadRom;
54#endif
1820b5a7 55 break;
56
57 case PGS_ReloadRom:
4b167c12 58 if (emu_ReloadRom()) {
1820b5a7 59 engineState = PGS_Running;
4b167c12 60 if (mp3_last_error != 0)
61 engineState = PGS_Menu; // send to menu to display mp3 error
62 } else {
1820b5a7 63 lprintf("PGS_ReloadRom == 0\n");
64 engineState = PGS_Menu;
65 }
1820b5a7 66 break;
67
7d0143a2 68 case PGS_Suspending:
ea08c296 69 while (engineState == PGS_Suspending)
70 psp_wait_suspend();
7d0143a2 71 break;
72
1820b5a7 73 case PGS_RestartRun:
74 engineState = PGS_Running;
75
76 case PGS_Running:
ea08c296 77 if (psp_unhandled_suspend) {
78 psp_resume_suspend();
79 emu_HandleResume();
80 }
7d4906bf 81 emu_Loop();
2445b7cb 82#ifdef GPROF
110df09c 83 goto endloop;
84#endif
1820b5a7 85 break;
86
87 case PGS_Quit:
88 goto endloop;
89
90 default:
91 lprintf("engine got into unknown state (%i), exitting\n", engineState);
92 goto endloop;
93 }
94 }
95
96 endloop:
97
110df09c 98 mp3_deinit();
1820b5a7 99 emu_Deinit();
2445b7cb 100#ifdef GPROF
110df09c 101 gprof_cleanup();
102#endif
2445b7cb 103#ifndef GCOV
1820b5a7 104 psp_finish();
110df09c 105#endif
1820b5a7 106
107 return 0;
108}
109