get rid of some CamelCase names
[libpicofe.git] / common / emu.h
CommitLineData
f013066e 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
36f6fd5a 6#include "port_config.h"
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
e31266dd 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
ee0f881e 23#define EOPT_EN_SRAM (1<<0)
36f6fd5a 24#define EOPT_SHOW_FPS (1<<1)
25#define EOPT_EN_SOUND (1<<2)
26#define EOPT_GZIP_SAVES (1<<3)
fa5e045b 27#define EOPT_MMUHACK (1<<4)
7f3b59cf 28#define EOPT_NO_AUTOSVCFG (1<<5)
388947f3 29#define EOPT_16BPP (1<<7)
fa5e045b 30#define EOPT_RAM_TIMINGS (1<<8)
388947f3 31#define EOPT_CONFIRM_SAVE (1<<9)
32#define EOPT_EN_CD_LEDS (1<<10)
33#define EOPT_CONFIRM_LOAD (1<<11)
fa8d1331 34#define EOPT_A_SN_GAMMA (1<<12)
fa5e045b 35#define EOPT_PSYNC (1<<13)
36f6fd5a 36
fa8d1331 37enum {
38 EOPT_SCALE_NONE = 0,
39 EOPT_SCALE_SW_H,
40 EOPT_SCALE_HW_H,
41 EOPT_SCALE_HW_HV,
42};
43
36f6fd5a 44typedef struct _currentConfig_t {
367b6f1f 45 // char lastRomFile[512];
f013066e 46 int EmuOpt; // LSb->MSb: use_sram, show_fps, enable_sound, gzip_saves,
fa5e045b 47 // mmuhack, no_save_cfg_on_exit, <unused>, 16_bit_mode
f013066e 48 // craigix_ram, confirm_save, show_cd_leds, confirm_load
f3dc5a3a 49 // A_SNs_gamma, perfect_vsync, giz_scanlines, giz_dblbuff
c6334564 50 // vsync_mode, show_clock, no_frame_limitter
0ae25549 51 int s_PicoOpt; // for old cfg files only
52 int s_PsndRate;
53 int s_PicoRegion;
36f6fd5a 54 int s_PicoAutoRgnOrder;
55 int s_PicoCDBuffers;
f013066e 56 int Frameskip;
57 int CPUclock;
f013066e 58 int volume;
59 int gamma;
36f6fd5a 60 int scaling; // gp2x: 0=center, 1=hscale, 2=hvscale, 3=hsoftscale; psp: bilinear filtering
61 int rotation; // for UIQ
6f748c47 62 float scale; // psp: screen scale
63 float hscale32, hscale40; // psp: horizontal scale
960a8e27 64 int gamma2; // psp: black level
6589c840 65 int turbo_rate;
f013066e 66} currentConfig_t;
67
0ae25549 68extern currentConfig_t currentConfig, defaultConfig;
f013066e 69extern char *PicoConfigFile;
144a28a0 70extern int rom_loaded;
f013066e 71extern int state_slot;
72extern int config_slot, config_slot_current;
73extern unsigned char *movie_data;
93c18cb4 74extern int reset_timing;
75
76#define PICO_PEN_ADJUST_X 4
77#define PICO_PEN_ADJUST_Y 2
78extern int pico_pen_x, pico_pen_y;
8a091e48 79extern int pico_inp_mode;
f013066e 80
049a6b3e 81extern char rom_fname_reload[512]; // ROM to try loading on next PGS_ReloadRom
82extern char rom_fname_loaded[512]; // currently loaded ROM filename
83
24b24674 84// engine states
049a6b3e 85extern int engineState;
24b24674 86enum TPicoGameState {
87 PGS_Paused = 1,
88 PGS_Running,
89 PGS_Quit,
90 PGS_KeyConfig,
91 PGS_ReloadRom,
92 PGS_Menu,
93 PGS_RestartRun,
94 PGS_Suspending, /* PSP */
95 PGS_SuspendWake, /* PSP */
96};
97
f013066e 98
93c18cb4 99void emu_init(void);
100void emu_finish(void);
101
ee0f881e 102int emu_reload_rom(char *rom_fname);
103int emu_save_load_game(int load, int sram);
93c18cb4 104void emu_reset_game(void);
388947f3 105
ee0f881e 106int emu_read_config(int game, int no_defaults);
107int emu_write_config(int game);
7f3b59cf 108void emu_writelrom(void);
388947f3 109
ee0f881e 110char *emu_get_save_fname(int load, int is_sram, int slot);
111int emu_check_save_file(int slot);
f013066e 112void emu_setSaveStateCbs(int gz);
388947f3 113
114void emu_update_input(void);
f013066e 115void emu_textOut8 (int x, int y, const char *text);
116void emu_textOut16(int x, int y, const char *text);
ee0f881e 117void emu_get_game_name(char *str150);
118void emu_set_fastforward(int set_on);
119int emu_cd_check(int *pregion, char *fname_in);
f013066e 120
36f6fd5a 121#ifdef __cplusplus
122} // extern "C"
123#endif
124