starting input layer integration work
[libpicofe.git] / gp2x / menu.c
index b3c1d75..0b3187c 100644 (file)
 #include "gp2x.h"\r
 #include "emu.h"\r
 #include "menu.h"\r
-#include "usbjoy.h"\r
+#include "../linux/usbjoy.h"\r
 #include "../common/emu.h"\r
 #include "../common/menu.h"\r
 #include "../common/arm_utils.h"\r
 #include "../common/readpng.h"\r
+#include "../common/common.h"\r
+#include "../common/input.h"\r
 #include "version.h"\r
 \r
-#include <Pico/PicoInt.h>\r
-#include <Pico/Patch.h>\r
+#include <pico/pico_int.h>\r
+#include <pico/patch.h>\r
 #include <zlib/zlib.h>\r
 \r
 #ifndef _DIRENT_HAVE_D_TYPE\r
-#error "need d_type for file browser\r
+#error "need d_type for file browser"\r
 #endif\r
 \r
 extern int  mmuhack_status;\r
 \r
-static const char *gp2xKeyNames[] = {\r
+const char * const keyNames[] = {\r
        "UP",    "???",    "LEFT", "???",  "DOWN", "???", "RIGHT",    "???",\r
        "START", "SELECT", "L",    "R",    "A",    "B",   "X",        "Y",\r
        "???",   "???",    "???",  "???",  "???",  "???", "VOL DOWN", "VOL UP",\r
        "???",   "???",    "???",  "PUSH", "???",  "???", "???",      "???"\r
 };\r
 \r
-static void menu_darken_bg(void *dst, int pixels, int darker);\r
+void menu_darken_bg(void *dst, int pixels, int darker);\r
 static void menu_prepare_bg(int use_game_bg);\r
 \r
-static unsigned long inp_prev = 0;\r
-static int inp_prevjoy = 0;\r
-\r
-static unsigned long wait_for_input(unsigned long interesting)\r
+/* wait for input, do autorepeat */\r
+int wait_for_input(int interesting)\r
 {\r
-       unsigned long ret;\r
-       static int repeats = 0, wait = 50*1000;\r
-       int release = 0, i;\r
+       static int inp_prev = 0;\r
+       static int repeats = 0, wait = 20;\r
+       int ret, release = 0, i;\r
 \r
-       if (repeats == 2 || repeats == 4) wait /= 2;\r
-       if (repeats == 6) wait = 15 * 1000;\r
+       if      (repeats == 2) wait = 3;\r
+       else if (repeats == 4) wait = 2;\r
+       else if (repeats == 6) wait = 1;\r
 \r
-       for (i = 0; i < 6 && inp_prev == gp2x_joystick_read(1); i++) {\r
+       for (i = 0; i < wait; i++) {\r
+               ret = in_update_menu(30);\r
+               if (ret != inp_prev) break;\r
                if (i == 0) repeats++;\r
-               if (wait >= 30*1000) usleep(wait); // usleep sleeps for ~30ms minimum\r
-               else spend_cycles(wait * currentConfig.CPUclock);\r
        }\r
 \r
-       while ( !((ret = gp2x_joystick_read(1)) & interesting) ) {\r
-               usleep(50000);\r
+       while (!(ret & interesting)) {\r
+               ret = in_update_menu(0);\r
                release = 1;\r
        }\r
 \r
        if (release || ret != inp_prev) {\r
                repeats = 0;\r
-               wait = 50*1000;\r
+               wait = 20;\r
        }\r
+       if (wait > 6 && (ret & (PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT)))\r
+               wait = 6;\r
        inp_prev = ret;\r
-       inp_prevjoy = 0;\r
 \r
        // we don't need diagonals in menus\r
-       if ((ret&GP2X_UP)   && (ret&GP2X_LEFT))  ret &= ~GP2X_LEFT;\r
-       if ((ret&GP2X_UP)   && (ret&GP2X_RIGHT)) ret &= ~GP2X_RIGHT;\r
-       if ((ret&GP2X_DOWN) && (ret&GP2X_LEFT))  ret &= ~GP2X_LEFT;\r
-       if ((ret&GP2X_DOWN) && (ret&GP2X_RIGHT)) ret &= ~GP2X_RIGHT;\r
-\r
-       return ret;\r
-}\r
-\r
-static unsigned long input2_read(unsigned long interesting, int *joy)\r
-{\r
-       unsigned long ret;\r
-       int i;\r
-\r
-       do\r
-       {\r
-               *joy = 0;\r
-               if ((ret = gp2x_joystick_read(0) & interesting)) break;\r
-               gp2x_usbjoy_update();\r
-               for (i = 0; i < num_of_joys; i++) {\r
-                       ret = gp2x_usbjoy_check2(i);\r
-                       if (ret) { *joy = i + 1; break; }\r
-               }\r
-               if (ret) break;\r
-       }\r
-       while(0);\r
-\r
-       return ret;\r
-}\r
-\r
-// similar to wait_for_input(), but returns joy num\r
-static unsigned long wait_for_input_usbjoy(unsigned long interesting, int *joy)\r
-{\r
-       unsigned long ret;\r
-       const int wait = 300*1000;\r
-       int i;\r
-\r
-       if (inp_prevjoy == 0) inp_prev &= interesting;\r
-       for (i = 0; i < 6; i++) {\r
-               ret = input2_read(interesting, joy);\r
-               if (*joy != inp_prevjoy || ret != inp_prev) break;\r
-               usleep(wait/6);\r
-       }\r
-\r
-       while ( !(ret = input2_read(interesting, joy)) ) {\r
-               usleep(50000);\r
-       }\r
-\r
-       inp_prev = ret;\r
-       inp_prevjoy = *joy;\r
+       if ((ret & PBTN_UP)   && (ret & PBTN_LEFT))  ret &= ~PBTN_LEFT;\r
+       if ((ret & PBTN_UP)   && (ret & PBTN_RIGHT)) ret &= ~PBTN_RIGHT;\r
+       if ((ret & PBTN_DOWN) && (ret & PBTN_LEFT))  ret &= ~PBTN_LEFT;\r
+       if ((ret & PBTN_DOWN) && (ret & PBTN_RIGHT)) ret &= ~PBTN_RIGHT;\r
 \r
        return ret;\r
 }\r
 \r
-static void menu_flip(void)\r
+void menu_flip(void)\r
 {\r
        gp2x_video_flush_cache();\r
        gp2x_video_flip2();\r
@@ -194,7 +151,7 @@ void menu_romload_end(void)
 static unsigned short file2color(const char *fname)\r
 {\r
        const char *ext = fname + strlen(fname) - 3;\r
-       static const char *rom_exts[]   = { "zip", "bin", "smd", "gen", "iso", "cso" };\r
+       static const char *rom_exts[]   = { "zip", "bin", "smd", "gen", "iso", "cso", "cue" };\r
        static const char *other_exts[] = { "gmv", "pat" };\r
        int i;\r
 \r
@@ -250,7 +207,7 @@ static int scandir_cmp(const void *p1, const void *p2)
 \r
 static char *filter_exts[] = {\r
        ".mp3", ".MP3", ".srm", ".brm", "s.gz", ".mds", "bcfg", ".txt", ".htm", "html",\r
-       ".jpg", ".gpe", ".cue"\r
+       ".jpg", ".gpe"\r
 };\r
 \r
 static int scandir_filter(const struct dirent *ent)\r
@@ -271,6 +228,31 @@ static int scandir_filter(const struct dirent *ent)
        return 1;\r
 }\r
 \r
+static void do_delete(const char *fpath, const char *fname)\r
+{\r
+       int len, inp;\r
+\r
+       gp2x_pd_clone_buffer2();\r
+\r
+       if (!rom_loaded)\r
+               menu_darken_bg(gp2x_screen, 320*240, 0);\r
+\r
+       len = strlen(fname);\r
+       if (len > 320/6) len = 320/6;\r
+\r
+       text_out16(320/2 - 15*8/2,  80, "About to delete");\r
+       smalltext_out16_lim(320/2 - len*6/2, 95, fname, 0xbdff, len);\r
+       text_out16(320/2 - 13*8/2, 110, "Are you sure?");\r
+       text_out16(320/2 - 25*8/2, 120, "(Y - confirm, X - cancel)");\r
+       menu_flip();\r
+\r
+\r
+       while (gp2x_joystick_read(1) & (GP2X_A|GP2X_SELECT)) usleep(50*1000);\r
+       inp = wait_for_input(GP2X_Y|GP2X_X);\r
+       if (inp & GP2X_Y)\r
+               remove(fpath);\r
+}\r
+\r
 static char *romsel_loop(char *curr_path)\r
 {\r
        struct dirent **namelist;\r
@@ -279,6 +261,7 @@ static char *romsel_loop(char *curr_path)
        unsigned long inp = 0;\r
        char *ret = NULL, *fname = NULL;\r
 \r
+rescan:\r
        // is this a dir or a full path?\r
        if ((dir = opendir(curr_path))) {\r
                closedir(dir);\r
@@ -315,24 +298,39 @@ static char *romsel_loop(char *curr_path)
        for (;;)\r
        {\r
                draw_dirlist(curr_path, namelist, n, sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_L|GP2X_R|GP2X_B|GP2X_X);\r
+               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_L|GP2X_R|GP2X_A|GP2X_B|GP2X_X|GP2X_SELECT);\r
                if(inp & GP2X_UP  )  { sel--;   if (sel < 0)   sel = n-2; }\r
                if(inp & GP2X_DOWN)  { sel++;   if (sel > n-2) sel = 0; }\r
                if(inp & GP2X_LEFT)  { sel-=10; if (sel < 0)   sel = 0; }\r
                if(inp & GP2X_L)     { sel-=24; if (sel < 0)   sel = 0; }\r
                if(inp & GP2X_RIGHT) { sel+=10; if (sel > n-2) sel = n-2; }\r
                if(inp & GP2X_R)     { sel+=24; if (sel > n-2) sel = n-2; }\r
-               if(inp & GP2X_B)     { // enter dir/select\r
+               if ((inp & GP2X_B) || (inp & (GP2X_SELECT|GP2X_A)) == (GP2X_SELECT|GP2X_A)) // enter dir/select || delete\r
+               {\r
                        again:\r
-                       if (namelist[sel+1]->d_type == DT_REG) {\r
+                       if (namelist[sel+1]->d_type == DT_REG)\r
+                       {\r
                                strcpy(romFileName, curr_path);\r
                                strcat(romFileName, "/");\r
                                strcat(romFileName, namelist[sel+1]->d_name);\r
-                               ret = romFileName;\r
-                               break;\r
-                       } else if (namelist[sel+1]->d_type == DT_DIR) {\r
-                               int newlen = strlen(curr_path) + strlen(namelist[sel+1]->d_name) + 2;\r
-                               char *p, *newdir = malloc(newlen);\r
+                               if (inp & GP2X_B) { // return sel\r
+                                       ret = romFileName;\r
+                                       break;\r
+                               }\r
+                               do_delete(romFileName, namelist[sel+1]->d_name);\r
+                               if (n > 0) {\r
+                                       while (n--) free(namelist[n]);\r
+                                       free(namelist);\r
+                               }\r
+                               goto rescan;\r
+                       }\r
+                       else if (namelist[sel+1]->d_type == DT_DIR)\r
+                       {\r
+                               int newlen;\r
+                               char *p, *newdir;\r
+                               if (!(inp & GP2X_B)) continue;\r
+                               newlen = strlen(curr_path) + strlen(namelist[sel+1]->d_name) + 2;\r
+                               newdir = malloc(newlen);\r
                                if (strcmp(namelist[sel+1]->d_name, "..") == 0) {\r
                                        char *start = curr_path;\r
                                        p = start + strlen(start) - 1;\r
@@ -350,7 +348,9 @@ static char *romsel_loop(char *curr_path)
                                ret = romsel_loop(newdir);\r
                                free(newdir);\r
                                break;\r
-                       } else {\r
+                       }\r
+                       else\r
+                       {\r
                                // unknown file type, happens on NTFS mounts. Try to guess.\r
                                FILE *tstf; int tmp;\r
                                strcpy(romFileName, curr_path);\r
@@ -371,43 +371,13 @@ static char *romsel_loop(char *curr_path)
        }\r
 \r
        if (n > 0) {\r
-               while(n--) free(namelist[n]);\r
+               while (n--) free(namelist[n]);\r
                free(namelist);\r
        }\r
 \r
        return ret;\r
 }\r
 \r
-// ------------ debug menu ------------\r
-\r
-char *debugString(void);\r
-\r
-static void draw_debug(void)\r
-{\r
-       char *p, *str = debugString();\r
-       int len, line;\r
-\r
-       gp2x_pd_clone_buffer2();\r
-\r
-       p = str;\r
-       for (line = 0; line < 24; line++)\r
-       {\r
-               while (*p && *p != '\n') p++;\r
-               len = p - str;\r
-               if (len > 55) len = 55;\r
-               smalltext_out16_lim(1, line*10, str, 0xffff, len);\r
-               if (*p == 0) break;\r
-               p++; str = p;\r
-       }\r
-       menu_flip();\r
-}\r
-\r
-static void debug_menu_loop(void)\r
-{\r
-       draw_debug();\r
-       wait_for_input(GP2X_B|GP2X_X);\r
-}\r
-\r
 // ------------ patch/gg menu ------------\r
 \r
 static void draw_patchlist(int sel)\r
@@ -504,7 +474,7 @@ static void draw_savestate_bg(int slot)
        }\r
 \r
        if (file) {\r
-               if (PicoMCD & 1) {\r
+               if (PicoAHW & PAHW_MCD) {\r
                        PicoCdLoadStateGfx(file);\r
                } else {\r
                        areaSeek(file, 0x10020, SEEK_SET);  // skip header and RAM in state file\r
@@ -518,7 +488,7 @@ static void draw_savestate_bg(int slot)
                areaClose(file);\r
        }\r
 \r
-       emu_forcedFrame();\r
+       emu_forcedFrame(POPT_EN_SOFTSCALE);\r
        menu_prepare_bg(1);\r
 \r
        memcpy(Pico.vram, tmp_vram, sizeof(Pico.vram));\r
@@ -605,17 +575,48 @@ static char *usb_joy_key_name(int joy, int num)
 \r
 static char *action_binds(int player_idx, int action_mask)\r
 {\r
-       static char strkeys[32*5];\r
-       int joy, i;\r
+       static char strkeys[32];\r
+       int d, k, d_prev = -1;\r
 \r
        strkeys[0] = 0;\r
+\r
+       for (d = 0; d < IN_MAX_DEVS; d++)\r
+       {\r
+               const int *binds;\r
+               int count;\r
+\r
+               binds = in_get_dev_binds(d);\r
+               if (binds == NULL)\r
+                       continue;\r
+\r
+               count = in_get_dev_bind_count(d);\r
+               for (k = 0; k < count; k++)\r
+               {\r
+                       const char *xname;\r
+                       char prefix[16];\r
+                       if (!(binds[k] & action_mask))\r
+                               continue;\r
+\r
+                       if (player_idx >= 0 && ((binds[k] >> 16) & 3) != player_idx)\r
+                               continue;\r
+\r
+                       xname = in_get_key_name(d, k);\r
+                       if (strkeys[0])\r
+                               strncat(strkeys, d == d_prev ? " + " : ", ", sizeof(strkeys));\r
+                       if (d) sprintf(prefix, "%d: ", d);\r
+                       if (d) strncat(strkeys, prefix, sizeof(strkeys));\r
+                       strncat(strkeys, xname, sizeof(strkeys));\r
+                       d_prev = d;\r
+               }\r
+       }\r
+#if 0\r
        for (i = 0; i < 32; i++) // i is key index\r
        {\r
                if (currentConfig.KeyBinds[i] & action_mask)\r
                {\r
                        if (player_idx >= 0 && ((currentConfig.KeyBinds[i] >> 16) & 3) != player_idx) continue;\r
-                       if (strkeys[0]) { strcat(strkeys, " + "); strcat(strkeys, gp2xKeyNames[i]); break; }\r
-                       else strcpy(strkeys, gp2xKeyNames[i]);\r
+                       if (strkeys[0]) { strcat(strkeys, " + "); strcat(strkeys, keyNames[i]); break; }\r
+                       else strcpy(strkeys, keyNames[i]);\r
                }\r
        }\r
        for (joy = 0; joy < num_of_joys; joy++)\r
@@ -633,6 +634,8 @@ static char *action_binds(int player_idx, int action_mask)
                        }\r
                }\r
        }\r
+#endif\r
+\r
 \r
        // limit..\r
        strkeys[20] = 0;\r
@@ -668,43 +671,46 @@ static void unbind_action(int action, int pl_idx, int joy)
        }\r
 }\r
 \r
-static int count_bound_keys(int action, int pl_idx, int joy)\r
+static int count_bound_keys(int dev_id, int action_mask, int player_idx)\r
 {\r
-       int i, keys = 0;\r
+       const int *binds;\r
+       int k, keys = 0;\r
+       int count;\r
 \r
-       if (joy)\r
-       {\r
-               for (i = 0; i < 32; i++) {\r
-                       if (pl_idx >= 0 && (currentConfig.JoyBinds[joy-1][i]&0x30000) != (pl_idx<<16)) continue;\r
-                       if (currentConfig.JoyBinds[joy-1][i] & action) keys++;\r
-               }\r
-       }\r
-       else\r
+       binds = in_get_dev_binds(dev_id);\r
+       if (binds == NULL)\r
+               return 0;\r
+\r
+       count = in_get_dev_bind_count(dev_id);\r
+       for (k = 0; k < count; k++)\r
        {\r
-               for (i = 0; i < 32; i++) {\r
-                       if (pl_idx >= 0 && (currentConfig.KeyBinds[i]&0x30000) != (pl_idx<<16)) continue;\r
-                       if (currentConfig.KeyBinds[i] & action) keys++;\r
-               }\r
+               if (!(binds[k] & action_mask))\r
+                       continue;\r
+\r
+               if (player_idx >= 0 && ((binds[k] >> 16) & 3) != player_idx)\r
+                       continue;\r
+\r
+               keys++;\r
        }\r
+\r
        return keys;\r
 }\r
 \r
-typedef struct { char *name; int mask; } bind_action_t;\r
-\r
-static void draw_key_config(const bind_action_t *opts, int opt_cnt, int player_idx, int sel)\r
+static void draw_key_config(const me_bind_action *opts, int opt_cnt, int player_idx,\r
+               int sel, int is_bind)\r
 {\r
-       int x, y, tl_y = 40, i;\r
+       int x, y, tl_y = 30, i;\r
 \r
        gp2x_pd_clone_buffer2();\r
        if (player_idx >= 0) {\r
-               text_out16(80, 20, "Player %i controls", player_idx + 1);\r
+               text_out16(80, 10, "Player %i controls", player_idx + 1);\r
                x = 80;\r
        } else {\r
-               text_out16(80, 20, "Emulator controls");\r
+               text_out16(80, 10, "Emulator controls");\r
                x = 40;\r
        }\r
 \r
-       menu_draw_selection(x - 16, tl_y + sel*10, (player_idx >= 0) ? 66 : 130);\r
+       menu_draw_selection(x - 16, tl_y + sel*10, (player_idx >= 0) ? 66 : 140);\r
 \r
        y = tl_y;\r
        for (i = 0; i < opt_cnt; i++, y+=10)\r
@@ -713,73 +719,70 @@ static void draw_key_config(const bind_action_t *opts, int opt_cnt, int player_i
        text_out16(x, y, "Done");\r
 \r
        if (sel < opt_cnt) {\r
-               text_out16(30, 180, "Press a button to bind/unbind");\r
-               text_out16(30, 190, "Use SELECT to clear");\r
-               text_out16(30, 200, "To bind UP/DOWN, hold SELECT");\r
-               text_out16(30, 210, "Select \"Done\" to exit");\r
+               text_out16(30, 205, is_bind ? "Press a button to bind/unbind" : "Press B to define");\r
+               text_out16(30, 225, "Select \"Done\" to exit");\r
        } else {\r
-               text_out16(30, 190, "Use Options -> Save cfg");\r
-               text_out16(30, 200, "to save controls");\r
-               text_out16(30, 210, "Press B or X to exit");\r
+               text_out16(30, 205, "Use Options -> Save cfg");\r
+               text_out16(30, 215, "to save controls");\r
+               text_out16(30, 225, "Press B or X to exit");\r
        }\r
        menu_flip();\r
 }\r
 \r
-static void key_config_loop(const bind_action_t *opts, int opt_cnt, int player_idx)\r
+static void key_config_loop(const me_bind_action *opts, int opt_cnt, int player_idx)\r
 {\r
-       int joy = 0, sel = 0, menu_sel_max = opt_cnt, prev_select = 0, i;\r
-       unsigned long inp = 0;\r
+       int sel = 0, menu_sel_max = opt_cnt;\r
+       int kc, dev_id, is_down, mkey, unbind;\r
 \r
        for (;;)\r
        {\r
-               draw_key_config(opts, opt_cnt, player_idx, sel);\r
-               inp = wait_for_input_usbjoy(CONFIGURABLE_KEYS, &joy);\r
-               // printf("got %08lX from joy %i\n", inp, joy);\r
-               if (joy == 0) {\r
-                       if (!(inp & GP2X_SELECT)) {\r
-                               prev_select = 0;\r
-                               if(inp & GP2X_UP  ) { sel--; if (sel < 0) sel = menu_sel_max; continue; }\r
-                               if(inp & GP2X_DOWN) { sel++; if (sel > menu_sel_max) sel = 0; continue; }\r
-                       }\r
-                       if (sel >= opt_cnt) {\r
-                               if (inp & (GP2X_B|GP2X_X)) break;\r
-                               else continue;\r
-                       }\r
-                       // if we are here, we want to bind/unbind something\r
-                       if ((inp & GP2X_SELECT) && !prev_select)\r
-                               unbind_action(opts[sel].mask, player_idx, -1);\r
-                       prev_select = inp & GP2X_SELECT;\r
-                       inp &= CONFIGURABLE_KEYS;\r
-                       inp &= ~GP2X_SELECT;\r
-                       for (i = 0; i < 32; i++)\r
-                               if (inp & (1 << i)) {\r
-                                       if (count_bound_keys(opts[sel].mask, player_idx, 0) >= 2)\r
-                                            currentConfig.KeyBinds[i] &= ~opts[sel].mask; // allow to unbind only\r
-                                       else currentConfig.KeyBinds[i] ^=  opts[sel].mask;\r
-                                       if (player_idx >= 0 && (currentConfig.KeyBinds[i] & opts[sel].mask)) {\r
-                                               currentConfig.KeyBinds[i] &= ~(3 << 16);\r
-                                               currentConfig.KeyBinds[i] |= player_idx << 16;\r
-                                       }\r
-                               }\r
+               draw_key_config(opts, opt_cnt, player_idx, sel, 0);\r
+               mkey = wait_for_input(PBTN_UP|PBTN_DOWN|PBTN_SOUTH|PBTN_EAST);\r
+               switch (mkey) {\r
+                       case PBTN_UP:   sel--; if (sel < 0) sel = menu_sel_max; continue;\r
+                       case PBTN_DOWN: sel++; if (sel > menu_sel_max) sel = 0; continue;\r
+                       case PBTN_SOUTH:\r
+                               if (sel >= opt_cnt)\r
+                                       return;\r
+                               continue;\r
+                       case PBTN_EAST:\r
+                               if (sel >= opt_cnt)\r
+                                       return;\r
+                               break;\r
+                       default:continue;\r
                }\r
-               else if (sel < opt_cnt)\r
-               {\r
-                       for (i = 0; i < 32; i++)\r
-                               if (inp & (1 << i)) {\r
-                                       int *bind = &currentConfig.JoyBinds[joy-1][i];\r
-                                       if ((*bind & opts[sel].mask) && (player_idx < 0 || player_idx == ((*bind>>16)&3)))\r
-                                               currentConfig.JoyBinds[joy-1][i] &= ~opts[sel].mask;\r
-                                       else {\r
-                                               // override\r
-                                               unbind_action(opts[sel].mask, player_idx, joy);\r
-                                               *bind = opts[sel].mask;\r
-                                               if (player_idx >= 0) *bind |= player_idx << 16;\r
-                                       }\r
-                               }\r
+\r
+               draw_key_config(opts, opt_cnt, player_idx, sel, 1);\r
+               //inp = wait_for_input_usbjoy(CONFIGURABLE_KEYS, &joy);\r
+               for (is_down = 0; is_down == 0; )\r
+                       kc = in_update_keycode(&dev_id, &is_down, 0);\r
+\r
+               unbind = count_bound_keys(dev_id, opts[sel].mask, player_idx) >= 2;\r
+\r
+               in_bind_key(dev_id, kc, opts[sel].mask, unbind);\r
+               if (player_idx >= 0) {\r
+                       /* FIXME */\r
+                       in_bind_key(dev_id, kc, 3 << 16, 1);\r
+                       in_bind_key(dev_id, kc, player_idx << 16, 0);\r
                }\r
        }\r
 }\r
 \r
+\r
+menu_entry ctrlopt_entries[] =\r
+{\r
+       { "Player 1",                  MB_NONE,  MA_CTRL_PLAYER1,       NULL, 0, 0, 0, 1, 0 },\r
+       { "Player 2",                  MB_NONE,  MA_CTRL_PLAYER2,       NULL, 0, 0, 0, 1, 0 },\r
+       { "Emulator controls",         MB_NONE,  MA_CTRL_EMU,           NULL, 0, 0, 0, 1, 0 },\r
+       { "6 button pad",              MB_ONOFF, MA_OPT_6BUTTON_PAD,   &PicoOpt, 0x020, 0, 0, 1, 1 },\r
+       { "Turbo rate",                MB_RANGE, MA_CTRL_TURBO_RATE,   &currentConfig.turbo_rate, 0, 1, 30, 1, 1 },\r
+       { "Done",                      MB_NONE,  MA_CTRL_DONE,          NULL, 0, 0, 0, 1, 0 },\r
+};\r
+\r
+#define CTRLOPT_ENTRY_COUNT (sizeof(ctrlopt_entries) / sizeof(ctrlopt_entries[0]))\r
+const int ctrlopt_entry_count = CTRLOPT_ENTRY_COUNT;\r
+\r
+\r
 static void draw_kc_sel(int menu_sel)\r
 {\r
        int tl_x = 25+40, tl_y = 60, y, i;\r
@@ -789,13 +792,10 @@ static void draw_kc_sel(int menu_sel)
        gp2x_pd_clone_buffer2();\r
        menu_draw_selection(tl_x - 16, tl_y + menu_sel*10, 138);\r
 \r
-       text_out16(tl_x, y,       "Player 1");\r
-       text_out16(tl_x, (y+=10), "Player 2");\r
-       text_out16(tl_x, (y+=10), "Emulator controls");\r
-       text_out16(tl_x, (y+=10), "Done");\r
+       me_draw(ctrlopt_entries, ctrlopt_entry_count, tl_x, tl_y, NULL, NULL);\r
 \r
        tl_x = 25;\r
-       text_out16(tl_x, (y=110), "USB joys detected:");\r
+       text_out16(tl_x, (y=130), "USB joys detected:");\r
        if (num_of_joys > 0) {\r
                for (i = 0; i < num_of_joys; i++) {\r
                        strncpy(joyname, joy_name(joys[i]), 33); joyname[33] = 0;\r
@@ -809,58 +809,50 @@ static void draw_kc_sel(int menu_sel)
 }\r
 \r
 \r
-// PicoPad[] format: MXYZ SACB RLDU\r
-static bind_action_t ctrl_actions[] =\r
-{\r
-       { "UP     ", 0x001 },\r
-       { "DOWN   ", 0x002 },\r
-       { "LEFT   ", 0x004 },\r
-       { "RIGHT  ", 0x008 },\r
-       { "A      ", 0x040 },\r
-       { "B      ", 0x010 },\r
-       { "C      ", 0x020 },\r
-       { "START  ", 0x080 },\r
-       { "MODE   ", 0x800 },\r
-       { "X      ", 0x400 },\r
-       { "Y      ", 0x200 },\r
-       { "Z      ", 0x100 },\r
-};\r
-\r
-// player2_flag, ?, ?, ?, ?, ?, ?, menu\r
+// player2_flag, reserved, ?, ?,\r
+// ?, ?, fast forward, menu\r
 // "NEXT SAVE SLOT", "PREV SAVE SLOT", "SWITCH RENDERER", "SAVE STATE",\r
 // "LOAD STATE", "VOLUME UP", "VOLUME DOWN", "DONE"\r
-static bind_action_t emuctrl_actions[] =\r
+me_bind_action emuctrl_actions[] =\r
 {\r
-       { "Load State     ", 1<<28 },\r
-       { "Save State     ", 1<<27 },\r
-       { "Prev Save Slot ", 1<<25 },\r
-       { "Next Save Slot ", 1<<24 },\r
-       { "Switch Renderer", 1<<26 },\r
-       { "Volume Down    ", 1<<30 },\r
-       { "Volume Up      ", 1<<29 },\r
-       { "Fast forward   ", 1<<22 },\r
-       { "Enter Menu     ", 1<<23 },\r
+       { "Load State       ", 1<<28 },\r
+       { "Save State       ", 1<<27 },\r
+       { "Prev Save Slot   ", 1<<25 },\r
+       { "Next Save Slot   ", 1<<24 },\r
+       { "Switch Renderer  ", 1<<26 },\r
+       { "Volume Down      ", 1<<30 },\r
+       { "Volume Up        ", 1<<29 },\r
+       { "Fast forward     ", 1<<22 },\r
+       { "Enter Menu       ", 1<<23 },\r
+       { "Pico Next page   ", 1<<21 },\r
+       { "Pico Prev page   ", 1<<20 },\r
+       { "Pico Switch input", 1<<19 },\r
+       { NULL,                0     }\r
 };\r
 \r
 static void kc_sel_loop(void)\r
 {\r
-       int menu_sel = 3, menu_sel_max = 3;\r
+       int menu_sel = 5, menu_sel_max = 5;\r
        unsigned long inp = 0;\r
-       int is_6button = PicoOpt & 0x020;\r
+       menu_id selected_id;\r
 \r
        while (1)\r
        {\r
                draw_kc_sel(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_B|GP2X_X);\r
+               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_RIGHT|GP2X_LEFT|GP2X_B|GP2X_X);\r
+               selected_id = me_index2id(ctrlopt_entries, CTRLOPT_ENTRY_COUNT, menu_sel);\r
+               if (inp & (GP2X_LEFT|GP2X_RIGHT)) // multi choise\r
+                       me_process(ctrlopt_entries, CTRLOPT_ENTRY_COUNT, selected_id, (inp&GP2X_RIGHT) ? 1 : 0);\r
                if (inp & GP2X_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
                if (inp & GP2X_DOWN) { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
                if (inp & GP2X_B) {\r
-                       switch (menu_sel) {\r
-                               case 0: key_config_loop(ctrl_actions, is_6button ? 12 : 8, 0); return;\r
-                               case 1: key_config_loop(ctrl_actions, is_6button ? 12 : 8, 1); return;\r
-                               case 2: key_config_loop(emuctrl_actions,\r
-                                               sizeof(emuctrl_actions)/sizeof(emuctrl_actions[0]), -1); return;\r
-                               case 3: if (!rom_loaded) emu_WriteConfig(0); return;\r
+                       int is_6button = PicoOpt & POPT_6BTN_PAD;\r
+                       switch (selected_id) {\r
+                               case MA_CTRL_PLAYER1: key_config_loop(me_ctrl_actions, is_6button ? 15 : 11, 0); return;\r
+                               case MA_CTRL_PLAYER2: key_config_loop(me_ctrl_actions, is_6button ? 15 : 11, 1); return;\r
+                               case MA_CTRL_EMU:     key_config_loop(emuctrl_actions,\r
+                                                       sizeof(emuctrl_actions)/sizeof(emuctrl_actions[0]) - 1, -1); return;\r
+                               case MA_CTRL_DONE:    if (!rom_loaded) emu_WriteConfig(0); return;\r
                                default: return;\r
                        }\r
                }\r
@@ -877,7 +869,7 @@ menu_entry cdopt_entries[] =
        { NULL,                        MB_NONE,  MA_CDOPT_TESTBIOS_EUR, NULL, 0, 0, 0, 1, 0 },\r
        { NULL,                        MB_NONE,  MA_CDOPT_TESTBIOS_JAP, NULL, 0, 0, 0, 1, 0 },\r
        { "CD LEDs",                   MB_ONOFF, MA_CDOPT_LEDS,         &currentConfig.EmuOpt, 0x0400, 0, 0, 1, 1 },\r
-       { "CDDA audio (using mp3s)",   MB_ONOFF, MA_CDOPT_CDDA,         &PicoOpt, 0x0800, 0, 0, 1, 1 },\r
+       { "CDDA audio",                MB_ONOFF, MA_CDOPT_CDDA,         &PicoOpt, 0x0800, 0, 0, 1, 1 },\r
        { "PCM audio",                 MB_ONOFF, MA_CDOPT_PCM,          &PicoOpt, 0x0400, 0, 0, 1, 1 },\r
        { NULL,                        MB_NONE,  MA_CDOPT_READAHEAD,    NULL, 0, 0, 0, 1, 1 },\r
        { "SaveRAM cart",              MB_ONOFF, MA_CDOPT_SAVERAM,      &PicoOpt, 0x8000, 0, 0, 1, 1 },\r
@@ -886,8 +878,8 @@ menu_entry cdopt_entries[] =
        { "done",                      MB_NONE,  MA_CDOPT_DONE,         NULL, 0, 0, 0, 1, 0 },\r
 };\r
 \r
-const int cdopt_entry_count = (sizeof(cdopt_entries) / sizeof(cdopt_entries[0]));\r
 #define CDOPT_ENTRY_COUNT (sizeof(cdopt_entries) / sizeof(cdopt_entries[0]))\r
+const int cdopt_entry_count = CDOPT_ENTRY_COUNT;\r
 \r
 \r
 struct bios_names_t\r
@@ -974,9 +966,9 @@ static void cd_menu_loop_options(void)
                            selected_id == MA_CDOPT_READAHEAD) {\r
                                if (inp & GP2X_LEFT) {\r
                                        PicoCDBuffers >>= 1;\r
-                                       if (PicoCDBuffers < 64) PicoCDBuffers = 0;\r
+                                       if (PicoCDBuffers < 2) PicoCDBuffers = 0;\r
                                } else {\r
-                                       if (PicoCDBuffers < 64) PicoCDBuffers = 64;\r
+                                       if (PicoCDBuffers < 2) PicoCDBuffers = 2;\r
                                        else PicoCDBuffers <<= 1;\r
                                        if (PicoCDBuffers > 8*1024) PicoCDBuffers = 8*1024; // 16M\r
                                }\r
@@ -1027,19 +1019,22 @@ menu_entry opt2_entries[] =
        { NULL,                        MB_NONE,  MA_OPT2_GAMMA,         NULL, 0, 0, 0, 1, 1 },\r
        { "A_SN's gamma curve",        MB_ONOFF, MA_OPT2_A_SN_GAMMA,    &currentConfig.EmuOpt, 0x1000, 0, 0, 1, 1 },\r
        { "Perfect vsync",             MB_ONOFF, MA_OPT2_VSYNC,         &currentConfig.EmuOpt, 0x2000, 0, 0, 1, 1 },\r
-       { "Emulate Z80",               MB_ONOFF, MA_OPT2_ENABLE_Z80,    &PicoOpt, 0x0004, 0, 0, 1, 1 },\r
-       { "Emulate YM2612 (FM)",       MB_ONOFF, MA_OPT2_ENABLE_YM2612, &PicoOpt, 0x0001, 0, 0, 1, 1 },\r
-       { "Emulate SN76496 (PSG)",     MB_ONOFF, MA_OPT2_ENABLE_SN76496,&PicoOpt, 0x0002, 0, 0, 1, 1 },\r
+       { "Disable sprite limit",      MB_ONOFF, MA_OPT2_NO_SPRITE_LIM, &PicoOpt, 0x40000, 0, 0, 1, 1 },\r
+       { "Emulate Z80",               MB_ONOFF, MA_OPT2_ENABLE_Z80,    &PicoOpt, 0x00004, 0, 0, 1, 1 },\r
+       { "Emulate YM2612 (FM)",       MB_ONOFF, MA_OPT2_ENABLE_YM2612, &PicoOpt, 0x00001, 0, 0, 1, 1 },\r
+       { "Emulate SN76496 (PSG)",     MB_ONOFF, MA_OPT2_ENABLE_SN76496,&PicoOpt, 0x00002, 0, 0, 1, 1 },\r
        { "gzip savestates",           MB_ONOFF, MA_OPT2_GZIP_STATES,   &currentConfig.EmuOpt, 0x0008, 0, 0, 1, 1 },\r
        { "Don't save last used ROM",  MB_ONOFF, MA_OPT2_NO_LAST_ROM,   &currentConfig.EmuOpt, 0x0020, 0, 0, 1, 1 },\r
        { "needs restart:",            MB_NONE,  MA_NONE,               NULL, 0, 0, 0, 1, 0 },\r
        { "craigix's RAM timings",     MB_ONOFF, MA_OPT2_RAMTIMINGS,    &currentConfig.EmuOpt, 0x0100, 0, 0, 1, 1 },\r
        { NULL,                        MB_ONOFF, MA_OPT2_SQUIDGEHACK,   &currentConfig.EmuOpt, 0x0010, 0, 0, 1, 1 },\r
+       { "SVP dynarec",               MB_ONOFF, MA_OPT2_SVP_DYNAREC,   &PicoOpt, 0x20000, 0, 0, 1, 1 },\r
+       { "Disable idle loop patching",MB_ONOFF, MA_OPT2_NO_IDLE_LOOPS, &PicoOpt, 0x80000, 0, 0, 1, 1 },\r
        { "done",                      MB_NONE,  MA_OPT2_DONE,          NULL, 0, 0, 0, 1, 0 },\r
 };\r
 \r
 #define OPT2_ENTRY_COUNT (sizeof(opt2_entries) / sizeof(opt2_entries[0]))\r
-const int opt2_entry_count = (sizeof(opt2_entries) / sizeof(opt2_entries[0]));\r
+const int opt2_entry_count = OPT2_ENTRY_COUNT;\r
 \r
 static void menu_opt2_cust_draw(const menu_entry *entry, int x, int y, void *param)\r
 {\r
@@ -1109,14 +1104,12 @@ menu_entry opt_entries[] =
 {\r
        { NULL,                        MB_NONE,  MA_OPT_RENDERER,      NULL, 0, 0, 0, 1, 1 },\r
        { NULL,                        MB_RANGE, MA_OPT_SCALING,       &currentConfig.scaling, 0, 0, 3, 1, 1 },\r
-       { "Accurate timing (slower)",  MB_ONOFF, MA_OPT_ACC_TIMING,    &PicoOpt, 0x040, 0, 0, 1, 1 },\r
-       { "Accurate sprites (slower)", MB_ONOFF, MA_OPT_ACC_SPRITES,   &PicoOpt, 0x080, 0, 0, 1, 1 },\r
+       { "Accurate sprites",          MB_ONOFF, MA_OPT_ACC_SPRITES,   &PicoOpt, 0x080, 0, 0, 0, 1 },\r
        { "Show FPS",                  MB_ONOFF, MA_OPT_SHOW_FPS,      &currentConfig.EmuOpt,  0x002, 0, 0, 1, 1 },\r
        { NULL,                        MB_RANGE, MA_OPT_FRAMESKIP,     &currentConfig.Frameskip, 0, -1, 16, 1, 1 },\r
        { "Enable sound",              MB_ONOFF, MA_OPT_ENABLE_SOUND,  &currentConfig.EmuOpt,  0x004, 0, 0, 1, 1 },\r
        { NULL,                        MB_NONE,  MA_OPT_SOUND_QUALITY, NULL, 0, 0, 0, 1, 1 },\r
        { "Use ARM940 core for sound", MB_ONOFF, MA_OPT_ARM940_SOUND,  &PicoOpt, 0x200, 0, 0, 1, 1 },\r
-       { "6 button pad",              MB_ONOFF, MA_OPT_6BUTTON_PAD,   &PicoOpt, 0x020, 0, 0, 1, 1 },\r
        { NULL,                        MB_NONE,  MA_OPT_REGION,        NULL, 0, 0, 0, 1, 1 },\r
        { "Use SRAM/BRAM savestates",  MB_ONOFF, MA_OPT_SRAM_STATES,   &currentConfig.EmuOpt,  0x001, 0, 0, 1, 1 },\r
        { NULL,                        MB_NONE,  MA_OPT_CONFIRM_STATES,NULL, 0, 0, 0, 1, 1 },\r
@@ -1140,7 +1133,7 @@ static void menu_opt_cust_draw(const menu_entry *entry, int x, int y, void *para
        switch (entry->id)\r
        {\r
                case MA_OPT_RENDERER:\r
-                       if (PicoOpt&0x10)\r
+                       if (PicoOpt & POPT_ALT_RENDERER)\r
                                str = " 8bit fast";\r
                        else if (currentConfig.EmuOpt&0x80)\r
                                str = "16bit accurate";\r
@@ -1164,7 +1157,7 @@ static void menu_opt_cust_draw(const menu_entry *entry, int x, int y, void *para
                        text_out16(x, y, "Frameskip                  %s", str24);\r
                        break;\r
                case MA_OPT_SOUND_QUALITY:\r
-                       str = (PicoOpt&0x08)?"stereo":"mono";\r
+                       str = (PicoOpt & POPT_EN_STEREO) ? "stereo" : "mono";\r
                        text_out16(x, y, "Sound Quality:     %5iHz %s", PsndRate, str);\r
                        break;\r
                case MA_OPT_REGION:\r
@@ -1254,7 +1247,7 @@ static void menu_options_save(void)
                // force setting possibly changed..\r
                Pico.m.pal = (PicoRegionOverride == 2 || PicoRegionOverride == 8) ? 1 : 0;\r
        }\r
-       if (!(PicoOpt & 0x20)) {\r
+       if (!(PicoOpt & POPT_6BTN_PAD)) {\r
                // unbind XYZ MODE, just in case\r
                unbind_action(0xf00, -1, -1);\r
        }\r
@@ -1388,27 +1381,29 @@ static int menu_loop_options(void)
 \r
 static void draw_menu_credits(void)\r
 {\r
-       int tl_x = 15, tl_y = 64, y;\r
+       int tl_x = 15, tl_y = 56, y;\r
        gp2x_pd_clone_buffer2();\r
 \r
-       text_out16(tl_x, 20, "PicoDrive v" VERSION " (c) notaz, 2006,2007");\r
+       text_out16(tl_x, 20, "PicoDrive v" VERSION " (c) notaz, 2006-2008");\r
        y = tl_y;\r
        text_out16(tl_x, y, "Credits:");\r
        text_out16(tl_x, (y+=10), "fDave: Cyclone 68000 core,");\r
        text_out16(tl_x, (y+=10), "      base code of PicoDrive");\r
        text_out16(tl_x, (y+=10), "Reesy & FluBBa: DrZ80 core");\r
        text_out16(tl_x, (y+=10), "MAME devs: YM2612 and SN76496 cores");\r
-       text_out16(tl_x, (y+=10), "Charles MacDonald: Genesis hw docs");\r
-       text_out16(tl_x, (y+=10), "Stephane Dallongeville:");\r
-       text_out16(tl_x, (y+=10), "      opensource Gens");\r
-       text_out16(tl_x, (y+=10), "Haze: Genesis hw info");\r
        text_out16(tl_x, (y+=10), "rlyeh and others: minimal SDK");\r
        text_out16(tl_x, (y+=10), "Squidge: squidgehack");\r
        text_out16(tl_x, (y+=10), "Dzz: ARM940 sample");\r
-       text_out16(tl_x, (y+=10), "GnoStiC / Puck2099: USB joystick");\r
+       text_out16(tl_x, (y+=10), "GnoStiC / Puck2099: USB joy code");\r
        text_out16(tl_x, (y+=10), "craigix: GP2X hardware");\r
        text_out16(tl_x, (y+=10), "ketchupgun: skin design");\r
 \r
+       text_out16(tl_x, (y+=20), "special thanks (for docs, ideas):");\r
+       text_out16(tl_x, (y+=10), " Charles MacDonald, Haze,");\r
+       text_out16(tl_x, (y+=10), " Stephane Dallongeville,");\r
+       text_out16(tl_x, (y+=10), " Lordus, Exophase, Rokas,");\r
+       text_out16(tl_x, (y+=10), " Nemesis, Tasco Deluxe");\r
+\r
        menu_flip();\r
 }\r
 \r
@@ -1507,6 +1502,7 @@ static void menu_loop_root(void)
                                        if (rom_loaded) {\r
                                                if(savestate_menu_loop(1))\r
                                                        continue;\r
+                                               while (gp2x_joystick_read(1) & GP2X_B) usleep(50*1000);\r
                                                engineState = PGS_Running;\r
                                                return;\r
                                        }\r
@@ -1514,6 +1510,7 @@ static void menu_loop_root(void)
                                case MA_MAIN_RESET_GAME:\r
                                        if (rom_loaded) {\r
                                                emu_ResetGame();\r
+                                               while (gp2x_joystick_read(1) & GP2X_B) usleep(50*1000);\r
                                                engineState = PGS_Running;\r
                                                return;\r
                                        }\r
@@ -1522,10 +1519,10 @@ static void menu_loop_root(void)
                                {\r
                                        char curr_path[PATH_MAX], *selfname;\r
                                        FILE *tstf;\r
-                                       if ( (tstf = fopen(currentConfig.lastRomFile, "rb")) )\r
+                                       if ( (tstf = fopen(loadedRomFName, "rb")) )\r
                                        {\r
                                                fclose(tstf);\r
-                                               strcpy(curr_path, currentConfig.lastRomFile);\r
+                                               strcpy(curr_path, loadedRomFName);\r
                                        }\r
                                        else\r
                                                getcwd(curr_path, PATH_MAX);\r
@@ -1571,7 +1568,7 @@ static void menu_loop_root(void)
        }\r
 }\r
 \r
-static void menu_darken_bg(void *dst, int pixels, int darker)\r
+void menu_darken_bg(void *dst, int pixels, int darker)\r
 {\r
        unsigned int *screen = dst;\r
        pixels /= 2;\r
@@ -1625,10 +1622,12 @@ static void menu_gfx_prepare(void)
 \r
 void menu_loop(void)\r
 {\r
+       in_set_blocking(1);\r
        menu_gfx_prepare();\r
 \r
        menu_loop_root();\r
 \r
+       in_set_blocking(0);\r
        menuErrorMsg[0] = 0;\r
 }\r
 \r
@@ -1665,10 +1664,10 @@ int menu_loop_tray(void)
        gp2x_memset_all_buffers(0, 0, 320*240*2);\r
        menu_gfx_prepare();\r
 \r
-       if ( (tstf = fopen(currentConfig.lastRomFile, "rb")) )\r
+       if ( (tstf = fopen(loadedRomFName, "rb")) )\r
        {\r
                fclose(tstf);\r
-               strcpy(curr_path, currentConfig.lastRomFile);\r
+               strcpy(curr_path, loadedRomFName);\r
        }\r
        else\r
        {\r
@@ -1690,10 +1689,11 @@ int menu_loop_tray(void)
                                case 0: // select image\r
                                        selfname = romsel_loop(curr_path);\r
                                        if (selfname) {\r
-                                               int ret = -1, cd_type;\r
-                                               cd_type = emu_cdCheck(NULL);\r
-                                               if (cd_type > 0)\r
-                                                       ret = Insert_CD(romFileName, cd_type == 2);\r
+                                               int ret = -1;\r
+                                               cd_img_type cd_type;\r
+                                               cd_type = emu_cdCheck(NULL, romFileName);\r
+                                               if (cd_type != CIT_NOT_CD)\r
+                                                       ret = Insert_CD(romFileName, cd_type);\r
                                                if (ret != 0) {\r
                                                        sprintf(menuErrorMsg, "Load failed, invalid CD image?");\r
                                                        printf("%s\n", menuErrorMsg);\r