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