From 907b1e90dff65f404907aeff405742030b62671e Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 4 Feb 2011 01:05:11 +0200 Subject: [PATCH] menu: don't override region, fix P.E.Op.S. frameskip --- frontend/menu.c | 33 +++++++++++++++++++++++++++------ frontend/plugin_lib.c | 7 +++++++ 2 files changed, 34 insertions(+), 6 deletions(-) diff --git a/frontend/menu.c b/frontend/menu.c index af351198..ea1ebe51 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -63,6 +63,7 @@ static int last_psx_w, last_psx_h, last_psx_bpp; static int scaling, filter, state_slot, cpu_clock, cpu_clock_st; static char rom_fname_reload[MAXPATHLEN]; static char last_selected_fname[MAXPATHLEN]; +static int region; int g_opts; // from softgpu plugin @@ -138,11 +139,27 @@ static int emu_save_load_game(int load, int sram) return ret; } +// propagate menu settings to the emu vars +static void menu_sync_config(void) +{ + Config.PsxAuto = 1; + if (region > 0) { + Config.PsxAuto = 0; + Config.PsxType = region - 1; + } + pl_frame_interval = Config.PsxType ? 20000 : 16667; + + // used by P.E.Op.S. frameskip code + fFrameRateHz = Config.PsxType ? 50.0f : 59.94f; + dwFrameRateTicks = (100000*100 / (unsigned long)(fFrameRateHz*100)); +} + static void menu_set_defconfig(void) { g_opts = 0; scaling = SCALE_4_3; + region = 0; Config.Xa = Config.Cdda = Config.Sio = Config.SpuIrq = Config.RCntFix = Config.VSyncWA = 0; @@ -153,6 +170,8 @@ static void menu_set_defconfig(void) iUseInterpolation = 1; iXAPitch = iSPUIRQWait = 0; iUseTimer = 2; + + menu_sync_config(); } #define CE_CONFIG_STR(val) \ @@ -179,7 +198,6 @@ static const struct { CE_CONFIG_VAL(Xa), CE_CONFIG_VAL(Sio), CE_CONFIG_VAL(Mdec), - CE_CONFIG_VAL(PsxAuto), CE_CONFIG_VAL(Cdda), CE_CONFIG_VAL(Debug), CE_CONFIG_VAL(PsxOut), @@ -187,7 +205,7 @@ static const struct { CE_CONFIG_VAL(RCntFix), CE_CONFIG_VAL(VSyncWA), CE_CONFIG_VAL(Cpu), - CE_CONFIG_VAL(PsxType), + CE_INTVAL(region), CE_INTVAL(scaling), CE_INTVAL(g_layer_x), CE_INTVAL(g_layer_y), @@ -363,6 +381,8 @@ static int menu_load_config(int is_game) } } + menu_sync_config(); + // sync plugins for (i = bios_sel = 0; bioses[i] != NULL; i++) if (strcmp(Config.Bios, bioses[i]) == 0) @@ -929,7 +949,7 @@ static int mh_restore_defaults(int id, int keys) return 1; } -static const char *men_region[] = { "NTSC", "PAL", NULL }; +static const char *men_region[] = { "Auto", "NTSC", "PAL", NULL }; /* static const char *men_confirm_save[] = { "OFF", "writes", "loads", "both", NULL }; static const char h_confirm_save[] = "Ask for confirmation when overwriting save,\n" @@ -944,7 +964,7 @@ static menu_entry e_menu_options[] = // mee_enum_h ("Confirm savestate", 0, dummy, men_confirm_save, h_confirm_save), mee_onoff ("Frameskip", 0, UseFrameSkip, 1), mee_onoff ("Show FPS", 0, g_opts, OPT_SHOWFPS), - mee_enum ("Region", 0, Config.PsxType, men_region), + mee_enum ("Region", 0, region, men_region), mee_range ("CPU clock", MA_OPT_CPU_CLOCKS, cpu_clock, 20, 5000), mee_handler ("[Display]", menu_loop_gfx_options), mee_handler ("[BIOS/Plugins]", menu_loop_plugin_options), @@ -1001,7 +1021,8 @@ static void draw_frame_main(void) { if (CdromId[0] != 0) { char buff[64]; - snprintf(buff, sizeof(buff), "%.32s/%.9s", get_cd_label(), CdromId); + snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s)", + get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC"); smalltext_out16(4, 1, buff, 0x105f); } } @@ -1425,7 +1446,7 @@ void menu_prepare_emu(void) if (Config.Cdda) CDR_stop(); - pl_frame_interval = Config.PsxType ? 20000 : 16667; + menu_sync_config(); if (GPU_open != NULL) { int ret = GPU_open(&gpuDisp, "PCSX", NULL); diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index 287b5510..24817794 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -31,6 +31,9 @@ int keystate; static int pl_fbdev_w, pl_fbdev_h, pl_fbdev_bpp; static int flip_cnt, vsync_cnt, flips_per_sec, tick_per_sec; static float vsps_cur; +// P.E.Op.S. +extern int UseFrameSkip; +extern float fps_skip; static int get_cpu_ticks(void) { @@ -192,6 +195,10 @@ void pl_frame_limit(void) //printf("usleep %d\n", diff - pl_frame_interval / 2); usleep(diff - pl_frame_interval / 2); } + else if (diff < 0 && UseFrameSkip) { + // P.E.Op.S. makes skip decision based on this + fps_skip = 1000000.0f / (float)-diff; + } } pcnt_start(PCNT_ALL); -- 2.39.2