X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.c;h=0d0a5f6a5e106337ee0e7df99499412909190b38;hp=9ebfa861d0b100331db92ca4e0cb69132b42e645;hb=25c1e50390c480128a327519c37a0bf5df3a996f;hpb=384f5f43a20879e2553acd17b76e82059092fafb diff --git a/frontend/menu.c b/frontend/menu.c index 9ebfa861..0d0a5f6a 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -20,10 +20,13 @@ #include "plugin.h" #include "plugin_lib.h" #include "omap.h" +#include "pcnt.h" +#include "arm_utils.h" #include "common/plat.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" @@ -66,7 +69,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 @@ -223,6 +226,7 @@ static const struct { CE_INTVAL_V(iUseInterpolation, 2), CE_INTVAL_V(iSPUIRQWait, 2), CE_INTVAL(iUseTimer), + CE_INTVAL(warned_about_bios), }; static char *get_cd_label(void) @@ -415,7 +419,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; @@ -440,7 +444,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]; @@ -664,6 +667,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 } }; @@ -1054,9 +1058,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"; @@ -1174,24 +1178,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; } } @@ -1204,8 +1259,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); } } @@ -1215,20 +1271,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) { @@ -1256,6 +1310,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"); @@ -1280,6 +1335,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"); @@ -1318,6 +1374,8 @@ static int romsel_run(void) printf("selected file: %s\n", fname); + new_dynarec_clear_full(); + if (run_cd_image(fname) != 0) return -1; @@ -1401,7 +1459,7 @@ static int main_menu_handler(int id, int keys) 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: @@ -1443,6 +1501,11 @@ 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]);