X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.c;h=546125ff9506fdf3f2fcd824bd785915788b2ac8;hp=77629059137ee6e9a024e6500d233bfabf69ff25;hb=ef94866c5ee97402b81a173093c0be4ca0daa4a0;hpb=cdb31c9557f464b452ce6dc78b58b7e73cd423d8 diff --git a/frontend/menu.c b/frontend/menu.c index 77629059..546125ff 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -20,9 +20,17 @@ #include "plugin.h" #include "plugin_lib.h" #include "omap.h" +#include "pandora.h" +#include "pcnt.h" +#include "arm_utils.h" #include "common/plat.h" +#include "common/input.h" +#include "linux/in_evdev.h" #include "../libpcsxcore/misc.h" +#include "../libpcsxcore/cdrom.h" #include "../libpcsxcore/psemu_plugin_defs.h" +#include "../libpcsxcore/new_dynarec/new_dynarec.h" +#include "../plugins/dfinput/pad.h" #include "revision.h" #define MENU_X2 1 @@ -36,6 +44,7 @@ typedef enum MA_MAIN_LOAD_STATE, MA_MAIN_RESET_GAME, MA_MAIN_LOAD_ROM, + MA_MAIN_SWAP_CD, MA_MAIN_RUN_BIOS, MA_MAIN_CONTROLS, MA_MAIN_CREDITS, @@ -63,7 +72,7 @@ static int last_psx_w, last_psx_h, last_psx_bpp; static int scaling, filter, cpu_clock, cpu_clock_st; static char rom_fname_reload[MAXPATHLEN]; static char last_selected_fname[MAXPATHLEN]; -static int region, in_type_sel; +static int warned_about_bios, region, in_type_sel; int g_opts; // from softgpu plugin @@ -130,12 +139,18 @@ static int emu_save_load_game(int load, int unused) // propagate menu settings to the emu vars static void menu_sync_config(void) { + static int allow_abs_only_old; + Config.PsxAuto = 1; if (region > 0) { Config.PsxAuto = 0; Config.PsxType = region - 1; } in_type = in_type_sel ? PSE_PAD_TYPE_ANALOGPAD : PSE_PAD_TYPE_STANDARD; + if (in_evdev_allow_abs_only != allow_abs_only_old) { + pandora_rescan_inputs(); + allow_abs_only_old = in_evdev_allow_abs_only; + } pl_frame_interval = Config.PsxType ? 20000 : 16667; // used by P.E.Op.S. frameskip code @@ -150,6 +165,7 @@ static void menu_set_defconfig(void) region = 0; in_type_sel = 0; + in_evdev_allow_abs_only = 0; Config.Xa = Config.Cdda = Config.Sio = Config.SpuIrq = Config.RCntFix = Config.VSyncWA = 0; @@ -220,6 +236,8 @@ static const struct { CE_INTVAL_V(iUseInterpolation, 2), CE_INTVAL_V(iSPUIRQWait, 2), CE_INTVAL(iUseTimer), + CE_INTVAL(warned_about_bios), + CE_INTVAL(in_evdev_allow_abs_only), }; static char *get_cd_label(void) @@ -412,7 +430,7 @@ fail: static unsigned short fname2color(const char *fname) { static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" }; - static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index" }; + static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index", ".sbi" }; const char *ext = strrchr(fname, '.'); int i; @@ -437,7 +455,6 @@ static void draw_savestate_bg(int slot); // a bit of black magic here static void draw_savestate_bg(int slot) { - extern void bgr555_to_rgb565(void *dst, void *src, int bytes); static const int psx_widths[8] = { 256, 368, 320, 384, 512, 512, 640, 640 }; int x, y, w, h; char fname[MAXPATHLEN]; @@ -661,6 +678,7 @@ me_bind_action emuctrl_actions[] = { "Prev Save Slot ", 1 << SACTION_PREV_SSLOT }, { "Next Save Slot ", 1 << SACTION_NEXT_SSLOT }, { "Toggle Frameskip ", 1 << SACTION_TOGGLE_FSKIP }, + { "Take Screenshot ", 1 << SACTION_SCREENSHOT }, { "Enter Menu ", 1 << SACTION_ENTER_MENU }, { NULL, 0 } }; @@ -834,6 +852,7 @@ static void keys_load_all(const char *cfg) lprintf("config: unhandled action \"%s\"\n", act); } } + in_clean_binds(); } static int key_config_loop_wrap(int id, int keys) @@ -887,7 +906,17 @@ static int mh_savecfg(int id, int keys) return 1; } +static int mh_input_rescan(int id, int keys) +{ + //menu_sync_config(); + pandora_rescan_inputs(); + me_update_msg("rescan complete."); + + return 0; +} + static const char *men_in_type_sel[] = { "Standard (SCPH-1080)", "Analog (SCPH-1150)", NULL }; +static const char h_nub_btns[] = "Experimental, keep this OFF if unsure. Select rescan after change."; static menu_entry e_menu_keyconfig[] = { @@ -896,8 +925,10 @@ static menu_entry e_menu_keyconfig[] = mee_handler_id("Emulator controls", MA_CTRL_EMU, key_config_loop_wrap), mee_label (""), mee_enum ("Controller", 0, in_type_sel, men_in_type_sel), + mee_onoff_h ("Nubs as buttons", 0, in_evdev_allow_abs_only, 1, h_nub_btns), mee_cust_nosave("Save global config", MA_OPT_SAVECFG, mh_savecfg, mgn_saveloadcfg), mee_cust_nosave("Save cfg for loaded game", MA_OPT_SAVECFG_GAME, mh_savecfg, mgn_saveloadcfg), + mee_handler ("Rescan devices", mh_input_rescan), mee_label (""), mee_label ("Input devices:"), mee_label_mk (MA_CTRL_DEV_FIRST, mgn_dev_name), @@ -1051,9 +1082,9 @@ static int menu_loop_plugin_spu(int id, int keys) return 0; } -static const char h_bios[] = "HLE is simulated BIOS. BIOS is saved in savestates.\n" - "Must save config and reload the game\n" - "for change to take effect"; +static const char h_bios[] = "HLE is simulated BIOS. BIOS selection is saved in savestates\n" + "and can't be changed there. Must save config and reload\n" + "the game for change to take effect"; static const char h_plugin_xpu[] = "Must save config and reload the game\n" "for plugin change to take effect"; static const char h_gpu[] = "Configure built-in P.E.Op.S. SoftGL Driver V1.17"; @@ -1137,12 +1168,13 @@ static const char h_confirm_save[] = "Ask for confirmation when overwriting s */ static const char h_restore_def[] = "Switches back to default / recommended\n" "configuration"; +static const char h_frameskip[] = "Warning: frameskip sometimes causes glitches\n"; static menu_entry e_menu_options[] = { // mee_range ("Save slot", 0, state_slot, 0, 9), // mee_enum_h ("Confirm savestate", 0, dummy, men_confirm_save, h_confirm_save), - mee_onoff ("Frameskip", 0, UseFrameSkip, 1), + mee_onoff_h ("Frameskip", 0, UseFrameSkip, 1, h_frameskip), mee_onoff ("Show FPS", 0, g_opts, OPT_SHOWFPS), mee_enum ("Region", 0, region, men_region), mee_range ("CPU clock", MA_OPT_CPU_CLOCKS, cpu_clock, 20, 5000), @@ -1171,24 +1203,75 @@ static int menu_loop_options(int id, int keys) // ------------ debug menu ------------ -static void draw_frame_debug(void) +static void draw_frame_debug(GPUFreeze_t *gpuf) { + int w = min(g_menuscreen_w, 1024); + int h = min(g_menuscreen_h, 512); + u16 *d = g_menuscreen_ptr; + u16 *s = (u16 *)gpuf->psxVRam; + char buff[64]; + int ty = 1; + + gpuf->ulFreezeVersion = 1; + if (GPU_freeze != NULL) + GPU_freeze(1, gpuf); + + for (; h > 0; h--, d += g_menuscreen_w, s += 1024) + bgr555_to_rgb565(d, s, w * 2); + smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc); + snprintf(buff, sizeof(buff), "GPU sr: %08x", gpuf->ulStatus); + smalltext_out16(4, (ty += me_sfont_h), buff, 0xe7fc); + snprintf(buff, sizeof(buff), "PC/SP: %08x %08x", psxRegs.pc, psxRegs.GPR.n.sp); + smalltext_out16(4, (ty += me_sfont_h), buff, 0xe7fc); } static void debug_menu_loop(void) { + GPUFreeze_t *gpuf; int inp; + gpuf = malloc(sizeof(*gpuf)); + if (gpuf == NULL) + return; + while (1) { - menu_draw_begin(1); - draw_frame_debug(); + menu_draw_begin(0); + draw_frame_debug(gpuf); menu_draw_end(); inp = in_menu_wait(PBTN_MOK|PBTN_MBACK|PBTN_MA2|PBTN_MA3|PBTN_L|PBTN_R | PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT, 70); if (inp & PBTN_MBACK) + break; + } + + free(gpuf); +} + +// ------------ main menu ------------ + +static void menu_bios_warn(void) +{ + int inp; + static const char msg[] = + "You don't seem to have copied any BIOS files to\n" + "/pandora/appdata/pcsx_rearmed/bios/\n\n" + "While many games work fine with fake (HLE) BIOS,\n" + "others (like MGS and FF8) require BIOS to work.\n" + "After copying the file, you'll also need to\n" + "select it in the emu's options->[BIOS/Plugins]\n\n" + "The file is usually named SCPH1001.BIN, but\n" + "other not compressed files can be used too.\n\n" + "Press (B) or (X) to continue"; + + while (1) + { + draw_menu_message(msg, NULL); + + inp = in_menu_wait(PBTN_MOK|PBTN_MBACK, 70); + if (inp & (PBTN_MBACK|PBTN_MOK)) return; } } @@ -1201,8 +1284,9 @@ static void draw_frame_main(void) { if (CdromId[0] != 0) { char buff[64]; - snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s)", - get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC"); + snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s, with %s)", + get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC", + Config.HLE ? "HLE" : "BIOS"); smalltext_out16(4, 1, buff, 0x105f); } } @@ -1212,20 +1296,18 @@ static void draw_frame_credits(void) smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc); } -const char *plat_get_credits(void) -{ - return "PCSX-ReARMed\n\n" - "(C) 1999-2003 PCSX Team\n" - "(C) 2005-2009 PCSX-df Team\n" - "(C) 2009-2011 PCSX-Reloaded Team\n\n" - "GPU and SPU code by Pete Bernert\n" - " and the P.E.Op.S. team\n" - "ARM recompiler (C) 2009-2011 Ari64\n" - "PCSX4ALL plugins by PCSX4ALL team\n" - " Chui, Franxis, Unai\n\n" - "integration, optimization and\n" - " frontend (C) 2010-2011 notaz\n"; -} +static const char credits_text[] = + "PCSX-ReARMed\n\n" + "(C) 1999-2003 PCSX Team\n" + "(C) 2005-2009 PCSX-df Team\n" + "(C) 2009-2011 PCSX-Reloaded Team\n\n" + "GPU and SPU code by Pete Bernert\n" + " and the P.E.Op.S. team\n" + "ARM recompiler (C) 2009-2011 Ari64\n" + "PCSX4ALL plugins by PCSX4ALL team\n" + " Chui, Franxis, Unai\n\n" + "integration, optimization and\n" + " frontend (C) 2010-2011 notaz\n"; static int reset_game(void) { @@ -1253,6 +1335,7 @@ static int run_bios(void) ClosePlugins(); set_cd_image(NULL); LoadPlugins(); + pcnt_hook_plugins(); NetOpened = 0; if (OpenPlugins() == -1) { me_update_msg("failed to open plugins"); @@ -1277,6 +1360,7 @@ static int run_cd_image(const char *fname) ClosePlugins(); set_cd_image(fname); LoadPlugins(); + pcnt_hook_plugins(); NetOpened = 0; if (OpenPlugins() == -1) { me_update_msg("failed to open plugins"); @@ -1315,6 +1399,8 @@ static int romsel_run(void) printf("selected file: %s\n", fname); + new_dynarec_clear_full(); + if (run_cd_image(fname) != 0) return -1; @@ -1335,6 +1421,36 @@ static int romsel_run(void) return 0; } +static int swap_cd_image(void) +{ + char *fname; + + fname = menu_loop_romsel(last_selected_fname, sizeof(last_selected_fname)); + if (fname == NULL) + return -1; + + printf("selected file: %s\n", fname); + + CdromId[0] = '\0'; + CdromLabel[0] = '\0'; + + set_cd_image(fname); + if (ReloadCdromPlugin() < 0) { + me_update_msg("failed to load cdr plugin"); + return -1; + } + if (CDR_open() < 0) { + me_update_msg("failed to open cdr plugin"); + return -1; + } + + SetCdOpenCaseTime(time(NULL) + 2); + LidInterrupt(); + + strcpy(last_selected_fname, rom_fname_reload); + return 0; +} + static int main_menu_handler(int id, int keys) { switch (id) @@ -1359,12 +1475,16 @@ static int main_menu_handler(int id, int keys) if (romsel_run() == 0) return 1; break; + case MA_MAIN_SWAP_CD: + if (swap_cd_image() == 0) + return 1; + break; case MA_MAIN_RUN_BIOS: if (run_bios() == 0) return 1; break; case MA_MAIN_CREDITS: - draw_menu_credits(draw_frame_credits); + draw_menu_message(credits_text, draw_frame_credits); in_menu_wait(PBTN_MOK|PBTN_MBACK, 70); break; case MA_MAIN_EXIT: @@ -1387,6 +1507,7 @@ static menu_entry e_menu_main[] = mee_handler_id("Load State", MA_MAIN_LOAD_STATE, main_menu_handler), mee_handler_id("Reset game", MA_MAIN_RESET_GAME, main_menu_handler), mee_handler_id("Load CD image", MA_MAIN_LOAD_ROM, main_menu_handler), + mee_handler_id("Change CD image", MA_MAIN_SWAP_CD, main_menu_handler), mee_handler_id("Run BIOS", MA_MAIN_RUN_BIOS, main_menu_handler), mee_handler ("Options", menu_loop_options), mee_handler ("Controls", menu_loop_keyconfig), @@ -1405,10 +1526,16 @@ void menu_loop(void) menu_leave_emu(); + if (bioses[1] == NULL && !warned_about_bios) { + menu_bios_warn(); + warned_about_bios = 1; + } + me_enable(e_menu_main, MA_MAIN_RESUME_GAME, ready_to_go); me_enable(e_menu_main, MA_MAIN_SAVE_STATE, ready_to_go && CdromId[0]); me_enable(e_menu_main, MA_MAIN_LOAD_STATE, ready_to_go && CdromId[0]); me_enable(e_menu_main, MA_MAIN_RESET_GAME, ready_to_go); + me_enable(e_menu_main, MA_MAIN_SWAP_CD, ready_to_go); me_enable(e_menu_main, MA_MAIN_RUN_BIOS, bios_sel != 0); in_set_config_int(0, IN_CFG_BLOCKING, 1); @@ -1632,6 +1759,8 @@ void menu_prepare_emu(void) if (ret) fprintf(stderr, "Warning: GPU_open returned %d\n", ret); } + + dfinput_activate(in_type == PSE_PAD_TYPE_ANALOGPAD); } void me_update_msg(const char *msg)