b9bedff7d0aa6fc5c341f912f8b68d96d56dca7a
[libpicofe.git] / common / emu.h
1 // (c) Copyright 2006-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 "port_config.h"
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 extern void *g_screen_ptr;
13
14 #if SCREEN_SIZE_FIXED
15 #define g_screen_width  SCREEN_WIDTH
16 #define g_screen_height SCREEN_HEIGHT
17 #else
18 extern int g_screen_width;
19 extern int g_screen_height;
20 #endif
21
22
23 #define EOPT_USE_SRAM     (1<<0)
24 #define EOPT_SHOW_FPS     (1<<1)
25 #define EOPT_EN_SOUND     (1<<2)
26 #define EOPT_GZIP_SAVES   (1<<3)
27 #define EOPT_NO_AUTOSVCFG (1<<5)
28
29 typedef struct _currentConfig_t {
30         // char lastRomFile[512];
31         int EmuOpt;             // LSb->MSb: use_sram, show_fps, enable_sound, gzip_saves,
32                                         // squidgehack, no_save_cfg_on_exit, <unused>, 16_bit_mode
33                                         // craigix_ram, confirm_save, show_cd_leds, confirm_load
34                                         // A_SNs_gamma, perfect_vsync, giz_scanlines, giz_dblbuff
35                                         // vsync_mode, show_clock, no_frame_limitter
36         int s_PicoOpt;          // for old cfg files only
37         int s_PsndRate;
38         int s_PicoRegion;
39         int s_PicoAutoRgnOrder;
40         int s_PicoCDBuffers;
41         int Frameskip;
42         int CPUclock;
43         int KeyBinds[PLAT_MAX_KEYS];
44         int volume;
45         int gamma;
46 #if PLAT_HAVE_JOY
47         int JoyBinds[4][32];
48 #endif
49         int scaling;  // gp2x: 0=center, 1=hscale, 2=hvscale, 3=hsoftscale; psp: bilinear filtering
50         int rotation; // for UIQ
51         float scale; // psp: screen scale
52         float hscale32, hscale40; // psp: horizontal scale
53         int gamma2;  // psp: black level
54         int turbo_rate;
55 } currentConfig_t;
56
57 extern currentConfig_t currentConfig, defaultConfig;
58 extern char *PicoConfigFile;
59 extern int rom_loaded;
60 extern char noticeMsg[64];
61 extern int state_slot;
62 extern int config_slot, config_slot_current;
63 extern unsigned char *movie_data;
64 extern int pico_inp_mode;
65
66 extern char rom_fname_reload[512];              // ROM to try loading on next PGS_ReloadRom
67 extern char rom_fname_loaded[512];              // currently loaded ROM filename
68
69 // engine states
70 extern int engineState;
71 enum TPicoGameState {
72         PGS_Paused = 1,
73         PGS_Running,
74         PGS_Quit,
75         PGS_KeyConfig,
76         PGS_ReloadRom,
77         PGS_Menu,
78         PGS_RestartRun,
79         PGS_Suspending,         /* PSP */
80         PGS_SuspendWake,        /* PSP */
81 };
82
83
84 int   emu_ReloadRom(char *rom_fname);
85 int   emu_SaveLoadGame(int load, int sram);
86 int   emu_ReadConfig(int game, int no_defaults);
87 int   emu_WriteConfig(int game);
88 void  emu_writelrom(void);
89 char *emu_GetSaveFName(int load, int is_sram, int slot);
90 int   emu_checkSaveFile(int slot);
91 void  emu_setSaveStateCbs(int gz);
92 void  emu_updateMovie(void);
93 int   emu_cdCheck(int *pregion, char *fname_in);
94 int   emu_findBios(int region, char **bios_file);
95 void  emu_textOut8 (int x, int y, const char *text);
96 void  emu_textOut16(int x, int y, const char *text);
97 char *emu_makeRomId(void);
98 void  emu_getGameName(char *str150);
99 void  emu_changeFastForward(int set_on);
100 void  emu_RunEventsPico(unsigned int events);
101 void  emu_DoTurbo(int *pad, int acts);
102 void  emu_packConfig(void);
103 void  emu_unpackConfig(void);
104 void  emu_shutdownMCD(void);
105
106 #ifdef __cplusplus
107 } // extern "C"
108 #endif
109