continuing input framework integration
[libpicofe.git] / gp2x / menu.c
index 0b3187c..94d1183 100644 (file)
@@ -42,45 +42,6 @@ const char * const keyNames[] = {
 void menu_darken_bg(void *dst, int pixels, int darker);\r
 static void menu_prepare_bg(int use_game_bg);\r
 \r
-/* wait for input, do autorepeat */\r
-int wait_for_input(int interesting)\r
-{\r
-       static int inp_prev = 0;\r
-       static int repeats = 0, wait = 20;\r
-       int ret, release = 0, i;\r
-\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 < wait; i++) {\r
-               ret = in_update_menu(30);\r
-               if (ret != inp_prev) break;\r
-               if (i == 0) repeats++;\r
-       }\r
-\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 = 20;\r
-       }\r
-       if (wait > 6 && (ret & (PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT)))\r
-               wait = 6;\r
-       inp_prev = ret;\r
-\r
-       // we don't need diagonals in menus\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
 void menu_flip(void)\r
 {\r
        gp2x_video_flush_cache();\r
@@ -247,8 +208,8 @@ static void do_delete(const char *fpath, const char *fname)
        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
+       while (in_menu_wait_any(50) & (PBTN_WEST|PBTN_MENU));\r
+       inp = in_menu_wait(GP2X_Y|PBTN_MBACK);  /* FIXME */\r
        if (inp & GP2X_Y)\r
                remove(fpath);\r
 }\r
@@ -298,14 +259,14 @@ rescan:
        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_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) || (inp & (GP2X_SELECT|GP2X_A)) == (GP2X_SELECT|GP2X_A)) // enter dir/select || delete\r
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_L|PBTN_R|PBTN_WEST|PBTN_MOK|PBTN_MBACK|PBTN_MENU);\r
+               if(inp & PBTN_UP  )  { sel--;   if (sel < 0)   sel = n-2; }\r
+               if(inp & PBTN_DOWN)  { sel++;   if (sel > n-2) sel = 0; }\r
+               if(inp & PBTN_LEFT)  { sel-=10; if (sel < 0)   sel = 0; }\r
+               if(inp & PBTN_L)     { sel-=24; if (sel < 0)   sel = 0; }\r
+               if(inp & PBTN_RIGHT) { sel+=10; if (sel > n-2) sel = n-2; }\r
+               if(inp & PBTN_R)     { sel+=24; if (sel > n-2) sel = n-2; }\r
+               if ((inp & PBTN_MOK) || (inp & (PBTN_MENU|PBTN_WEST)) == (PBTN_MENU|PBTN_WEST)) // enter dir/select || delete\r
                {\r
                        again:\r
                        if (namelist[sel+1]->d_type == DT_REG)\r
@@ -313,7 +274,7 @@ rescan:
                                strcpy(romFileName, curr_path);\r
                                strcat(romFileName, "/");\r
                                strcat(romFileName, namelist[sel+1]->d_name);\r
-                               if (inp & GP2X_B) { // return sel\r
+                               if (inp & PBTN_MOK) { // return sel\r
                                        ret = romFileName;\r
                                        break;\r
                                }\r
@@ -328,7 +289,7 @@ rescan:
                        {\r
                                int newlen;\r
                                char *p, *newdir;\r
-                               if (!(inp & GP2X_B)) continue;\r
+                               if (!(inp & PBTN_MOK)) 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
@@ -367,7 +328,7 @@ rescan:
                                }\r
                        }\r
                }\r
-               if(inp & GP2X_X) break; // cancel\r
+               if(inp & PBTN_MBACK) break; // cancel\r
        }\r
 \r
        if (n > 0) {\r
@@ -412,17 +373,17 @@ static void patches_menu_loop(void)
        for(;;)\r
        {\r
                draw_patchlist(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_L|GP2X_R|GP2X_B|GP2X_X);\r
-               if(inp & GP2X_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = PicoPatchCount; }\r
-               if(inp & GP2X_DOWN) { menu_sel++; if (menu_sel > PicoPatchCount) menu_sel = 0; }\r
-               if(inp &(GP2X_LEFT|GP2X_L))  { menu_sel-=10; if (menu_sel < 0) menu_sel = 0; }\r
-               if(inp &(GP2X_RIGHT|GP2X_R)) { menu_sel+=10; if (menu_sel > PicoPatchCount) menu_sel = PicoPatchCount; }\r
-               if(inp & GP2X_B) { // action\r
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_L|PBTN_R|PBTN_MOK|PBTN_MBACK);\r
+               if(inp & PBTN_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = PicoPatchCount; }\r
+               if(inp & PBTN_DOWN) { menu_sel++; if (menu_sel > PicoPatchCount) menu_sel = 0; }\r
+               if(inp &(PBTN_LEFT|PBTN_L))  { menu_sel-=10; if (menu_sel < 0) menu_sel = 0; }\r
+               if(inp &(PBTN_RIGHT|PBTN_R)) { menu_sel+=10; if (menu_sel > PicoPatchCount) menu_sel = PicoPatchCount; }\r
+               if(inp & PBTN_MOK) { // action\r
                        if (menu_sel < PicoPatchCount)\r
                                PicoPatches[menu_sel].active = !PicoPatches[menu_sel].active;\r
                        else    return;\r
                }\r
-               if(inp & GP2X_X) return;\r
+               if(inp & PBTN_MBACK) return;\r
        }\r
 \r
 }\r
@@ -532,18 +493,18 @@ static int savestate_menu_loop(int is_loading)
        for(;;)\r
        {\r
                draw_savestate_menu(menu_sel, is_loading);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_B|GP2X_X);\r
-               if(inp & GP2X_UP  ) {\r
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_MOK|PBTN_MBACK);\r
+               if(inp & PBTN_UP  ) {\r
                        do {\r
                                menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max;\r
                        } while (!(state_slot_flags & (1 << menu_sel)) && menu_sel != menu_sel_max && is_loading);\r
                }\r
-               if(inp & GP2X_DOWN) {\r
+               if(inp & PBTN_DOWN) {\r
                        do {\r
                                menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0;\r
                        } while (!(state_slot_flags & (1 << menu_sel)) && menu_sel != menu_sel_max && is_loading);\r
                }\r
-               if(inp & GP2X_B) { // save/load\r
+               if(inp & PBTN_MOK) { // save/load\r
                        if (menu_sel < 10) {\r
                                state_slot = menu_sel;\r
                                if (emu_SaveLoadGame(is_loading, 0)) {\r
@@ -553,26 +514,12 @@ static int savestate_menu_loop(int is_loading)
                                return 0;\r
                        } else  return 1;\r
                }\r
-               if(inp & GP2X_X) return 1;\r
+               if(inp & PBTN_MBACK) return 1;\r
        }\r
 }\r
 \r
 // -------------- key config --------------\r
 \r
-static char *usb_joy_key_name(int joy, int num)\r
-{\r
-       static char name[16];\r
-       switch (num)\r
-       {\r
-               case 0: sprintf(name, "Joy%i UP", joy); break;\r
-               case 1: sprintf(name, "Joy%i DOWN", joy); break;\r
-               case 2: sprintf(name, "Joy%i LEFT", joy); break;\r
-               case 3: sprintf(name, "Joy%i RIGHT", joy); break;\r
-               default:sprintf(name, "Joy%i b%i", joy, num-3); break;\r
-       }\r
-       return name;\r
-}\r
-\r
 static char *action_binds(int player_idx, int action_mask)\r
 {\r
        static char strkeys[32];\r
@@ -609,33 +556,6 @@ static char *action_binds(int player_idx, int action_mask)
                        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, keyNames[i]); break; }\r
-                       else strcpy(strkeys, keyNames[i]);\r
-               }\r
-       }\r
-       for (joy = 0; joy < num_of_joys; joy++)\r
-       {\r
-               for (i = 0; i < 32; i++)\r
-               {\r
-                       if (currentConfig.JoyBinds[joy][i] & action_mask)\r
-                       {\r
-                               if (player_idx >= 0 && ((currentConfig.JoyBinds[joy][i] >> 16) & 3) != player_idx) continue;\r
-                               if (strkeys[0]) {\r
-                                       strcat(strkeys, ", "); strcat(strkeys, usb_joy_key_name(joy + 1, i));\r
-                                       break;\r
-                               }\r
-                               else strcpy(strkeys, usb_joy_key_name(joy + 1, i));\r
-                       }\r
-               }\r
-       }\r
-#endif\r
-\r
 \r
        // limit..\r
        strkeys[20] = 0;\r
@@ -737,25 +657,25 @@ static void key_config_loop(const me_bind_action *opts, int opt_cnt, int player_
        for (;;)\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
+               mkey = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_MBACK|PBTN_MOK);\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
+                       case PBTN_MBACK: return;\r
+                       case PBTN_MOK:\r
                                if (sel >= opt_cnt)\r
                                        return;\r
+                               while (in_menu_wait_any(30) & PBTN_MOK);\r
                                break;\r
                        default:continue;\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
+               /* wait for some up event */\r
+               for (is_down = 1; is_down; ) {\r
+                       kc = in_update_keycode(&dev_id, &is_down, -1);\r
+               }\r
 \r
                unbind = count_bound_keys(dev_id, opts[sel].mask, player_idx) >= 2;\r
 \r
@@ -795,14 +715,16 @@ static void draw_kc_sel(int menu_sel)
        me_draw(ctrlopt_entries, ctrlopt_entry_count, tl_x, tl_y, NULL, NULL);\r
 \r
        tl_x = 25;\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
-                       text_out16(tl_x, (y+=10), "%i: %s", i+1, joyname);\r
-               }\r
-       } else {\r
-               text_out16(tl_x, (y+=10), "none");\r
+       text_out16(tl_x, (y=130), "Input devices:");\r
+       for (i = 0; i < IN_MAX_DEVS && y < 230; i++) {\r
+               const char *tmp, *name = in_get_dev_name(i, 1);\r
+               if (name == NULL)\r
+                       continue;\r
+               tmp = strchr(name, ':');\r
+               if (tmp != NULL)\r
+                       name = tmp + 1;\r
+               strncpy(joyname, name, 33); joyname[33] = 0;\r
+               text_out16(tl_x, (y+=10), "%i: %s", i, joyname);\r
        }\r
 \r
        menu_flip();\r
@@ -839,13 +761,13 @@ static void kc_sel_loop(void)
        while (1)\r
        {\r
                draw_kc_sel(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_RIGHT|GP2X_LEFT|GP2X_B|GP2X_X);\r
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_RIGHT|PBTN_LEFT|PBTN_MOK|PBTN_MBACK);\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
+               if (inp & (PBTN_LEFT|PBTN_RIGHT)) // multi choise\r
+                       me_process(ctrlopt_entries, CTRLOPT_ENTRY_COUNT, selected_id, (inp&PBTN_RIGHT) ? 1 : 0);\r
+               if (inp & PBTN_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if (inp & PBTN_DOWN) { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
+               if (inp & PBTN_MOK) {\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
@@ -856,7 +778,7 @@ static void kc_sel_loop(void)
                                default: return;\r
                        }\r
                }\r
-               if (inp & GP2X_X) return;\r
+               if (inp & PBTN_MBACK) return;\r
        }\r
 }\r
 \r
@@ -957,14 +879,14 @@ static void cd_menu_loop_options(void)
        for(;;)\r
        {\r
                draw_cd_menu_options(menu_sel, &bios_names);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_B|GP2X_X|GP2X_A|GP2X_START);\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
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_MOK|PBTN_MBACK|GP2X_START); /* FIXME */\r
+               if (inp & PBTN_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if (inp & PBTN_DOWN) { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
                selected_id = me_index2id(cdopt_entries, CDOPT_ENTRY_COUNT, menu_sel);\r
-               if (inp & (GP2X_LEFT|GP2X_RIGHT)) { // multi choise\r
-                       if (!me_process(cdopt_entries, CDOPT_ENTRY_COUNT, selected_id, (inp&GP2X_RIGHT) ? 1 : 0) &&\r
+               if (inp & (PBTN_LEFT|PBTN_RIGHT)) { // multi choise\r
+                       if (!me_process(cdopt_entries, CDOPT_ENTRY_COUNT, selected_id, (inp&PBTN_RIGHT) ? 1 : 0) &&\r
                            selected_id == MA_CDOPT_READAHEAD) {\r
-                               if (inp & GP2X_LEFT) {\r
+                               if (inp & PBTN_LEFT) {\r
                                        PicoCDBuffers >>= 1;\r
                                        if (PicoCDBuffers < 2) PicoCDBuffers = 0;\r
                                } else {\r
@@ -974,7 +896,7 @@ static void cd_menu_loop_options(void)
                                }\r
                        }\r
                }\r
-               if (inp & GP2X_B) { // toggleable options\r
+               if (inp & PBTN_MOK) { // toggleable options\r
                        if (!me_process(cdopt_entries, CDOPT_ENTRY_COUNT, selected_id, 1) &&\r
                            selected_id == MA_CDOPT_DONE) {\r
                                return;\r
@@ -1007,7 +929,7 @@ static void cd_menu_loop_options(void)
                                        break;\r
                        }\r
                }\r
-               if (inp & (GP2X_X|GP2X_A)) return;\r
+               if (inp & PBTN_MBACK) return;\r
        }\r
 }\r
 \r
@@ -1071,29 +993,28 @@ static void amenu_loop_options(void)
        for(;;)\r
        {\r
                draw_amenu_options(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_B|GP2X_X|GP2X_A);\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
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_MOK|PBTN_MBACK);\r
+               if (inp & PBTN_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if (inp & PBTN_DOWN) { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
                selected_id = me_index2id(opt2_entries, OPT2_ENTRY_COUNT, menu_sel);\r
-               if (inp & (GP2X_LEFT|GP2X_RIGHT)) { // multi choise\r
-                       if (!me_process(opt2_entries, OPT2_ENTRY_COUNT, selected_id, (inp&GP2X_RIGHT) ? 1 : 0) &&\r
+               if (inp & (PBTN_LEFT|PBTN_RIGHT)) { // multi choise\r
+                       if (!me_process(opt2_entries, OPT2_ENTRY_COUNT, selected_id, (inp&PBTN_RIGHT) ? 1 : 0) &&\r
                            selected_id == MA_OPT2_GAMMA) {\r
-                               while ((inp = gp2x_joystick_read(1)) & (GP2X_LEFT|GP2X_RIGHT)) {\r
-                                       currentConfig.gamma += (inp & GP2X_LEFT) ? -1 : 1;\r
+                               while ((inp = in_menu_wait_any(20)) & (PBTN_LEFT|PBTN_RIGHT)) {\r
+                                       currentConfig.gamma += (inp & PBTN_LEFT) ? -1 : 1;\r
                                        if (currentConfig.gamma <   1) currentConfig.gamma =   1;\r
                                        if (currentConfig.gamma > 300) currentConfig.gamma = 300;\r
                                        draw_amenu_options(menu_sel);\r
-                                       usleep(18*1000);\r
                                }\r
                        }\r
                }\r
-               if (inp & GP2X_B) { // toggleable options\r
+               if (inp & PBTN_MOK) { // toggleable options\r
                        if (!me_process(opt2_entries, OPT2_ENTRY_COUNT, selected_id, 1) &&\r
                            selected_id == MA_OPT2_DONE) {\r
                                return;\r
                        }\r
                }\r
-               if (inp & (GP2X_X|GP2X_A)) return;\r
+               if (inp & PBTN_MBACK) return;\r
        }\r
 }\r
 \r
@@ -1268,15 +1189,15 @@ static int menu_loop_options(void)
        while (1)\r
        {\r
                draw_menu_options(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_LEFT|GP2X_RIGHT|GP2X_B|GP2X_X|GP2X_A);\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
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_MOK|PBTN_MBACK);\r
+               if (inp & PBTN_UP  ) { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if (inp & PBTN_DOWN) { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
                selected_id = me_index2id(opt_entries, OPT_ENTRY_COUNT, menu_sel);\r
-               if (inp & (GP2X_LEFT|GP2X_RIGHT)) { // multi choice\r
-                       if (!me_process(opt_entries, OPT_ENTRY_COUNT, selected_id, (inp&GP2X_RIGHT) ? 1 : 0)) {\r
+               if (inp & (PBTN_LEFT|PBTN_RIGHT)) { // multi choice\r
+                       if (!me_process(opt_entries, OPT_ENTRY_COUNT, selected_id, (inp&PBTN_RIGHT) ? 1 : 0)) {\r
                                switch (selected_id) {\r
                                        case MA_OPT_RENDERER:\r
-                                               if (inp & GP2X_LEFT) {\r
+                                               if (inp & PBTN_LEFT) {\r
                                                        if      (PicoOpt&0x10) PicoOpt&= ~0x10;\r
                                                        else if (!(currentConfig.EmuOpt &0x80))currentConfig.EmuOpt |=  0x80;\r
                                                        else if (  currentConfig.EmuOpt &0x80) break;\r
@@ -1287,18 +1208,18 @@ static int menu_loop_options(void)
                                                }\r
                                                break;\r
                                        case MA_OPT_SOUND_QUALITY:\r
-                                               if ((inp & GP2X_RIGHT) && PsndRate == 44100 && !(PicoOpt&0x08)) {\r
+                                               if ((inp & PBTN_RIGHT) && PsndRate == 44100 && !(PicoOpt&0x08)) {\r
                                                        PsndRate = 8000; PicoOpt|= 0x08;\r
-                                               } else if ((inp & GP2X_LEFT) && PsndRate == 8000 && (PicoOpt&0x08)) {\r
+                                               } else if ((inp & PBTN_LEFT) && PsndRate == 8000 && (PicoOpt&0x08)) {\r
                                                        PsndRate = 44100; PicoOpt&=~0x08;\r
-                                               } else  PsndRate = sndrate_prevnext(PsndRate, inp & GP2X_RIGHT);\r
+                                               } else  PsndRate = sndrate_prevnext(PsndRate, inp & PBTN_RIGHT);\r
                                                break;\r
                                        case MA_OPT_REGION:\r
-                                               region_prevnext(inp & GP2X_RIGHT);\r
+                                               region_prevnext(inp & PBTN_RIGHT);\r
                                                break;\r
                                        case MA_OPT_CONFIRM_STATES: {\r
                                                         int n = ((currentConfig.EmuOpt>>9)&1) | ((currentConfig.EmuOpt>>10)&2);\r
-                                                        n += (inp & GP2X_LEFT) ? -1 : 1;\r
+                                                        n += (inp & PBTN_LEFT) ? -1 : 1;\r
                                                         if (n < 0) n = 0; else if (n > 3) n = 3;\r
                                                         n |= n << 1; n &= ~2;\r
                                                         currentConfig.EmuOpt &= ~0xa00;\r
@@ -1306,23 +1227,22 @@ static int menu_loop_options(void)
                                                         break;\r
                                                 }\r
                                        case MA_OPT_SAVE_SLOT:\r
-                                                if (inp & GP2X_RIGHT) {\r
+                                                if (inp & PBTN_RIGHT) {\r
                                                         state_slot++; if (state_slot > 9) state_slot = 0;\r
                                                 } else {state_slot--; if (state_slot < 0) state_slot = 9;\r
                                                 }\r
                                                 break;\r
                                        case MA_OPT_CPU_CLOCKS:\r
-                                                while ((inp = gp2x_joystick_read(1)) & (GP2X_LEFT|GP2X_RIGHT)) {\r
-                                                        currentConfig.CPUclock += (inp & GP2X_LEFT) ? -1 : 1;\r
+                                                while ((inp = in_menu_wait_any(50)) & (PBTN_LEFT|PBTN_RIGHT)) {\r
+                                                        currentConfig.CPUclock += (inp & PBTN_LEFT) ? -1 : 1;\r
                                                         if (currentConfig.CPUclock < 1) currentConfig.CPUclock = 1;\r
                                                         draw_menu_options(menu_sel);\r
-                                                        usleep(50*1000);\r
                                                 }\r
                                                 break;\r
                                        case MA_OPT_SAVECFG:\r
                                        case MA_OPT_SAVECFG_GAME:\r
                                        case MA_OPT_LOADCFG:\r
-                                                config_slot += (inp&GP2X_RIGHT) ? 1 : -1;\r
+                                                config_slot += (inp&PBTN_RIGHT) ? 1 : -1;\r
                                                 if (config_slot > 9) config_slot = 0;\r
                                                 if (config_slot < 0) config_slot = 9;\r
                                                 me_enable(opt_entries, OPT_ENTRY_COUNT, MA_OPT_LOADCFG, config_slot != config_slot_current);\r
@@ -1335,7 +1255,7 @@ static int menu_loop_options(void)
                                }\r
                        }\r
                }\r
-               if (inp & GP2X_B) {\r
+               if (inp & PBTN_MOK) {\r
                        if (!me_process(opt_entries, OPT_ENTRY_COUNT, selected_id, 1))\r
                        {\r
                                switch (selected_id)\r
@@ -1370,7 +1290,7 @@ static int menu_loop_options(void)
                                }\r
                        }\r
                }\r
-               if(inp & (GP2X_X|GP2X_A)) {\r
+               if(inp & PBTN_MBACK) {\r
                        menu_options_save();\r
                        return 0;  // done (update, no write)\r
                }\r
@@ -1464,28 +1384,28 @@ static void menu_loop_root(void)
 \r
        /* make sure action buttons are not pressed on entering menu */\r
        draw_menu_root(menu_sel);\r
-       while (gp2x_joystick_read(1) & (GP2X_B|GP2X_X|GP2X_SELECT)) usleep(50*1000);\r
+       while (in_menu_wait_any(50) & (PBTN_MOK|PBTN_MBACK|PBTN_MENU));\r
 \r
        for (;;)\r
        {\r
                draw_menu_root(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_B|GP2X_X|GP2X_SELECT|GP2X_L|GP2X_R);\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_L|GP2X_R)) == (GP2X_L|GP2X_R)) debug_menu_loop();\r
-               if(inp &(GP2X_SELECT|GP2X_X)){\r
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_MOK|PBTN_MBACK|PBTN_MENU|PBTN_L|PBTN_R);\r
+               if(inp & PBTN_UP  )  { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if(inp & PBTN_DOWN)  { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
+               if((inp & (PBTN_L|PBTN_R)) == (PBTN_L|PBTN_R)) debug_menu_loop();\r
+               if(inp &(PBTN_MENU|PBTN_MBACK)){\r
                        if (rom_loaded) {\r
-                               while (gp2x_joystick_read(1) & (GP2X_SELECT|GP2X_X)) usleep(50*1000); // wait until select is released\r
+                               while (in_menu_wait_any(50) & (PBTN_MENU|PBTN_MBACK)); // wait until select is released\r
                                engineState = PGS_Running;\r
                                break;\r
                        }\r
                }\r
-               if(inp & GP2X_B)  {\r
+               if(inp & PBTN_MOK)  {\r
                        switch (me_index2id(main_entries, MAIN_ENTRY_COUNT, menu_sel))\r
                        {\r
                                case MA_MAIN_RESUME_GAME:\r
                                        if (rom_loaded) {\r
-                                               while (gp2x_joystick_read(1) & GP2X_B) usleep(50*1000);\r
+                                               while (in_menu_wait_any(50) & PBTN_MOK);\r
                                                engineState = PGS_Running;\r
                                                return;\r
                                        }\r
@@ -1502,7 +1422,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
+                                               while (in_menu_wait_any(50) & PBTN_MOK);\r
                                                engineState = PGS_Running;\r
                                                return;\r
                                        }\r
@@ -1510,7 +1430,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
+                                               while (in_menu_wait_any(50) & PBTN_MOK);\r
                                                engineState = PGS_Running;\r
                                                return;\r
                                        }\r
@@ -1546,7 +1466,7 @@ static void menu_loop_root(void)
                                case MA_MAIN_CREDITS:\r
                                        draw_menu_credits();\r
                                        usleep(500*1000);\r
-                                       inp = wait_for_input(GP2X_B|GP2X_X);\r
+                                       inp = in_menu_wait(PBTN_MOK|PBTN_MBACK);\r
                                        break;\r
                                case MA_MAIN_EXIT:\r
                                        engineState = PGS_Quit;\r
@@ -1676,15 +1596,15 @@ int menu_loop_tray(void)
 \r
        /* make sure action buttons are not pressed on entering menu */\r
        draw_menu_tray(menu_sel);\r
-       while (gp2x_joystick_read(1) & GP2X_B) usleep(50*1000);\r
+       while (in_menu_wait_any(50) & PBTN_MOK);\r
 \r
        for (;;)\r
        {\r
                draw_menu_tray(menu_sel);\r
-               inp = wait_for_input(GP2X_UP|GP2X_DOWN|GP2X_B);\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
+               inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_MOK);\r
+               if(inp & PBTN_UP  )  { menu_sel--; if (menu_sel < 0) menu_sel = menu_sel_max; }\r
+               if(inp & PBTN_DOWN)  { menu_sel++; if (menu_sel > menu_sel_max) menu_sel = 0; }\r
+               if(inp & PBTN_MOK   )  {\r
                        switch (menu_sel) {\r
                                case 0: // select image\r
                                        selfname = romsel_loop(curr_path);\r