From 369f7e94764f394f09d8dffc3605f96622d527fc Mon Sep 17 00:00:00 2001 From: kub Date: Fri, 10 Jan 2025 00:00:58 +0100 Subject: [PATCH] pico, add barebone logic for keyboard config --- platform/common/config_file.c | 21 +++- platform/common/input_pico.h | 14 +-- platform/common/menu_pico.c | 192 ++++++++++++++++++++++++++++++++++ platform/common/menu_pico.h | 1 + platform/libpicofe | 2 +- 5 files changed, 219 insertions(+), 11 deletions(-) diff --git a/platform/common/config_file.c b/platform/common/config_file.c index d5f583d9..7425b845 100644 --- a/platform/common/config_file.c +++ b/platform/common/config_file.c @@ -53,7 +53,7 @@ static int seek_sect(FILE *f, const char *section) return 0; } -static void keys_write(FILE *fn, int dev_id, const int *binds) +static void keys_write(FILE *fn, int dev_id, const int *binds, const int *ps2_binds) { char act[48]; int key_count = 0, k, i; @@ -102,6 +102,12 @@ static void keys_write(FILE *fn, int dev_id, const int *binds) } } } + + for (k = 0; k < key_count; k++) { + const char *name = in_get_key_name(dev_id, k); + if (ps2_binds[k]) + fprintf(fn, "bind %s = key%02x" NL, name, ps2_binds[k]); + } } int config_write(const char *fname) @@ -170,7 +176,7 @@ write_line: fprintf(fn, "binddev = %s" NL, name); in_get_config(t, IN_CFG_BIND_COUNT, &count); - keys_write(fn, t, binds); + keys_write(fn, t, binds, in_get_dev_ps2_binds(t)); } fprintf(fn, "Sound Volume = %i" NL, currentConfig.volume); @@ -383,6 +389,12 @@ static int parse_bind_val(const char *val, int *type) if (val[0] == 0) return 0; + if (strncasecmp(val, "key", 3) == 0) + { + *type = IN_BINDTYPE_PICO_PS2; + return strtol(val + 3, NULL, 16); + } + if (strncasecmp(val, "player", 6) == 0) { int player, shift = 0; @@ -441,7 +453,10 @@ static void keys_parse_all(FILE *f) } mystrip(var + 5); - in_config_bind_key(dev_id, var + 5, acts, type); + if (type == IN_BINDTYPE_PICO_PS2) + in_config_bind_ps2_key(dev_id, var + 5, acts); + else + in_config_bind_key(dev_id, var + 5, acts, type); } in_clean_binds(); } diff --git a/platform/common/input_pico.h b/platform/common/input_pico.h index 6ed71385..d906c66d 100644 --- a/platform/common/input_pico.h +++ b/platform/common/input_pico.h @@ -61,8 +61,8 @@ #define PEVB_PICO_PS2_AMPERSAND 0 #define PEVB_PICO_PS2_LEFTPAREN 0 #define PEVB_PICO_PS2_RIGHTPAREN 0 -#define PEVB_PICO_PS2_ASTERISK 0x7c -#define PEVB_PICO_PS2_PLUS 0x79 +#define PEVB_PICO_PS2_ASTERISK 0 //x7c on kp ?? +#define PEVB_PICO_PS2_PLUS 0 //x79 on kp ?? #define PEVB_PICO_PS2_MINUS 0x4e #define PEVB_PICO_PS2_COMMA 0x41 #define PEVB_PICO_PS2_PERIOD 0x49 @@ -80,18 +80,18 @@ #define PEVB_PICO_PS2_COLON 0x52 #define PEVB_PICO_PS2_SEMICOLON 0x4c #define PEVB_PICO_PS2_LESS 0 -#define PEVB_PICO_PS2_EQUALS 0x55 +#define PEVB_PICO_PS2_EQUALS 0 //x55 ?? #define PEVB_PICO_PS2_GREATER 0 #define PEVB_PICO_PS2_QUESTION 0 -#define PEVB_PICO_PS2_AT 0 -#define PEVB_PICO_PS2_DAKUTEN 0x54 // ゛ +#define PEVB_PICO_PS2_AT 0x54 // ?? +#define PEVB_PICO_PS2_DAKUTEN 0 //x54 // ゛ #define PEVB_PICO_PS2_LEFTBRACKET 0x5b #define PEVB_PICO_PS2_RIGHTBRACKET 0x5d -#define PEVB_PICO_PS2_CARET 0 +#define PEVB_PICO_PS2_CARET 0x55 // ?? #define PEVB_PICO_PS2_UNDERSCORE 0 #define PEVB_PICO_PS2_YEN 0x6a // ¥ #define PEVB_PICO_PS2_RO 0x51 // ろ -#define PEVB_PICO_PS2_KE 0x52 // け +#define PEVB_PICO_PS2_KE 0 //x52 ?? // け #define PEVB_PICO_PS2_a 0x1c #define PEVB_PICO_PS2_b 0x32 diff --git a/platform/common/menu_pico.c b/platform/common/menu_pico.c index 556616b1..e2331993 100644 --- a/platform/common/menu_pico.c +++ b/platform/common/menu_pico.c @@ -420,6 +420,196 @@ static const char *mgn_dev_name(int id, int *offs) return name; } +struct key { + int xpos; + char *lower, *upper; + int key; +}; + +//pico +struct key pico_row1[] = { + { 0, "esc", "esc", PEVB_PICO_PS2_ESCAPE }, + { 4, "1", "!", PEVB_PICO_PS2_1 }, + { 7, "2", "\"", PEVB_PICO_PS2_2 }, + { 10, "3", "#", PEVB_PICO_PS2_3 }, + { 13, "4", "$", PEVB_PICO_PS2_4 }, + { 16, "5", "%", PEVB_PICO_PS2_5 }, + { 19, "6", "&", PEVB_PICO_PS2_6 }, + { 22, "7", "'", PEVB_PICO_PS2_7 }, + { 25, "8", "(", PEVB_PICO_PS2_8 }, + { 28, "9", ")", PEVB_PICO_PS2_9 }, + { 31, "0", "0", PEVB_PICO_PS2_0 }, + { 34, "-", "=", PEVB_PICO_PS2_MINUS }, + { 37, "^", "~", PEVB_PICO_PS2_CARET }, + { 40, "Y", "|", PEVB_PICO_PS2_YEN }, + { 43, "bs", "bs", PEVB_PICO_PS2_BACKSPACE }, + { 0 }, +}; +struct key pico_row2[] = { + { 5, "q", "Q", PEVB_PICO_PS2_q }, + { 8, "w", "W", PEVB_PICO_PS2_w }, + { 11, "e", "E", PEVB_PICO_PS2_e }, + { 14, "r", "R", PEVB_PICO_PS2_r }, + { 17, "t", "T", PEVB_PICO_PS2_t }, + { 20, "y", "Y", PEVB_PICO_PS2_y }, + { 23, "u", "U", PEVB_PICO_PS2_u }, + { 26, "i", "I", PEVB_PICO_PS2_i }, + { 29, "o", "O", PEVB_PICO_PS2_o }, + { 32, "p", "P", PEVB_PICO_PS2_p }, + { 35, "@", "`", PEVB_PICO_PS2_AT }, + { 38, "[", "{", PEVB_PICO_PS2_LEFTBRACKET }, + { 43, "ins", "ins", PEVB_PICO_PS2_INSERT }, + { 0 }, +}; +struct key pico_row3[] = { + { 0, "caps", "caps", PEVB_PICO_PS2_CAPSLOCK }, + { 6, "a", "A", PEVB_PICO_PS2_a }, + { 9, "s", "S", PEVB_PICO_PS2_s }, + { 12, "d", "D", PEVB_PICO_PS2_d }, + { 15, "f", "F", PEVB_PICO_PS2_f }, + { 18, "g", "G", PEVB_PICO_PS2_g }, + { 21, "h", "H", PEVB_PICO_PS2_h }, + { 24, "j", "J", PEVB_PICO_PS2_j }, + { 27, "k", "K", PEVB_PICO_PS2_k }, + { 30, "l", "L", PEVB_PICO_PS2_l }, + { 33, ";", "+", PEVB_PICO_PS2_SEMICOLON }, + { 36, ":", "*", PEVB_PICO_PS2_COLON }, + { 39, "]", "}", PEVB_PICO_PS2_RIGHTBRACKET }, + { 43, "del", "del", PEVB_PICO_PS2_DELETE }, + { 0 }, +}; +struct key pico_row4[] = { + { 0, "shift", "shift", PEVB_PICO_PS2_LSHIFT }, + { 7, "z", "Z", PEVB_PICO_PS2_z }, + { 10, "x", "X", PEVB_PICO_PS2_x }, + { 13, "c", "C", PEVB_PICO_PS2_c }, + { 16, "v", "V", PEVB_PICO_PS2_v }, + { 19, "b", "B", PEVB_PICO_PS2_b }, + { 22, "n", "N", PEVB_PICO_PS2_n }, + { 25, "m", "M", PEVB_PICO_PS2_m }, + { 28, ",", "<", PEVB_PICO_PS2_COMMA }, + { 31, ".", ">", PEVB_PICO_PS2_PERIOD }, + { 34, "/", "?", PEVB_PICO_PS2_SLASH }, + { 37, "_", "_", PEVB_PICO_PS2_COLON }, + { 41, "enter", "enter", PEVB_PICO_PS2_RETURN }, + { 0 }, +}; +struct key pico_row5[] = { + { 0, "muhenkan", "muhenkan", PEVB_PICO_PS2_SOUND }, + { 13, "space", "space", PEVB_PICO_PS2_SPACE }, + { 22, "henkan", "henkan", PEVB_PICO_PS2_HOME }, + { 29, "kana", "kana", PEVB_PICO_PS2_CJK }, + { 34, "romaji", "romaji", PEVB_PICO_PS2_ROMAJI }, + { 0 }, +}; + +struct key *pico_kbd[] = { + pico_row1, pico_row2, pico_row3, pico_row4, pico_row5, NULL +}; + +static void kbd_draw(struct key *desc[], int shift, int xoffs, int yoffs, struct key *hi) +{ + int i, j; + struct key *key; + + for (i = 0; desc[i]; i++) { + // clear line? + for (j = 0, key = &desc[i][j]; key->lower; j++, key++) { + int color = (key == hi ? PXMAKE(0xff, 0x00, 0xff) : + PXMAKE(0xff, 0xff, 0xff)); + char *text = (shift ? key->upper : key->lower); + smalltext_out16(xoffs + key->xpos*me_sfont_w, yoffs + i*me_sfont_h, text, color); + } + } +} + +static int find_xpos(struct key *keys, int xpos) +{ + int i; + + for (i = 0; keys[i].lower && keys[i].xpos < xpos; i++) + ; + + if (i == 0) return i; + else if (keys[i].lower == NULL) return i-1; + else if (keys[i].xpos - xpos < xpos - keys[i-1].xpos) return i; + else return i-1; +} + +int key_config_kbd_loop(int id, int keys) +{ + int keyx = 0, keyy = 0; + int inp; + int dev; + + int w = 20 * me_mfont_w; + int x = g_menuscreen_w / 2 - w / 2; + + struct key *key; + const int *binds; + int bc; + + while (in_menu_wait_any(NULL, 50) & (PBTN_MOK|PBTN_MBACK|PBTN_MENU)) + ; + + for (;;) { + key = &pico_kbd[keyy][keyx]; + for (dev = 0; dev < IN_MAX_DEVS-1; dev++) + if ((binds = in_get_dev_ps2_binds(dev))) break; + in_get_config(dev, IN_CFG_BIND_COUNT, &bc); + for (bc--; bc >= 0 && binds[bc] != key->key; bc--) ; + + menu_draw_begin(1, 0); + kbd_draw(pico_kbd, 0, (g_menuscreen_w - 320)/2, 4, key); + text_out16(x, g_menuscreen_h - 6 * me_mfont_h, "currently bound to %s", in_get_key_name(-1, bc)); + text_out16(x, g_menuscreen_h - 4 * me_mfont_h, "%s - bind, %s - clear", in_get_key_name(-1, -PBTN_MOK), in_get_key_name(-1, -PBTN_MA2)); + menu_draw_end(); + + inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT| + PBTN_MOK|PBTN_MBACK|PBTN_MENU|PBTN_L|PBTN_R, NULL, 70); + if (inp & (PBTN_MENU|PBTN_MBACK)) + break; + + if (inp & PBTN_UP) { + if (--keyy < 0) while (pico_kbd[keyy+1]) keyy++; + keyx = find_xpos(pico_kbd[keyy], key->xpos); + } + if (inp & PBTN_DOWN) { + if (pico_kbd[++keyy] == NULL) keyy = 0; + keyx = find_xpos(pico_kbd[keyy], key->xpos); + } + if (inp & PBTN_LEFT) { + if (--keyx < 0) while (pico_kbd[keyy][keyx+1].lower) keyx++; + } + if (inp & PBTN_RIGHT) { + if (pico_kbd[keyy][++keyx].lower == NULL) keyx = 0; + } + + if (inp & PBTN_MOK) { + int is_down, bind_dev_id, kc; + + while (in_menu_wait_any(NULL, 30) & PBTN_MOK) + ; + + key = &pico_kbd[keyy][keyx]; + menu_draw_begin(1, 0); + kbd_draw(pico_kbd, 0, (g_menuscreen_w - 320)/2, 4, key); + text_out16(x, g_menuscreen_h - 4 * me_mfont_h, "Press a button to bind/unbind"); + menu_draw_end(); + + /* wait for some up event */ + for (is_down = 1; is_down; ) + kc = in_update_keycode(&bind_dev_id, &is_down, NULL, -1); + + in_bind_ps2_key(bind_dev_id, bc, 0); /* ?? */ + in_bind_ps2_key(bind_dev_id, kc, pico_kbd[keyy][keyx].key); + } + } + + return 0; +} + + const char *indev0_names[] = { "none", "3 button pad", "6 button pad", "Team player", "4 way play", NULL }; const char *indev1_names[] = { "none", "3 button pad", "6 button pad", NULL }; @@ -433,6 +623,7 @@ static menu_entry e_menu_keyconfig[] = mee_handler_id_h("Player 3", MA_CTRL_PLAYER3, key_config_loop_wrap, h_play34), mee_handler_id_h("Player 4", MA_CTRL_PLAYER4, key_config_loop_wrap, h_play34), mee_handler_id("Emulator hotkeys", MA_CTRL_EMU, key_config_loop_wrap), + mee_handler_id("Keyboard mapping", MA_CTRL_KEYBOARD, key_config_kbd_loop), mee_enum ("Input device 1", MA_OPT_INPUT_DEV0, currentConfig.input_dev0, indev0_names), mee_enum ("Input device 2", MA_OPT_INPUT_DEV1, currentConfig.input_dev1, indev1_names), mee_range ("Turbo rate", MA_CTRL_TURBO_RATE, currentConfig.turbo_rate, 1, 30), @@ -1359,6 +1550,7 @@ static int mh_saveloadcfg(int id, int keys) return 1; } + static const char h_saveload[] = "Game options are overloading global options"; static menu_entry e_menu_main[] = diff --git a/platform/common/menu_pico.h b/platform/common/menu_pico.h index 2b37c4f8..3411b681 100644 --- a/platform/common/menu_pico.h +++ b/platform/common/menu_pico.h @@ -110,6 +110,7 @@ typedef enum MA_CTRL_DEADZONE, MA_CTRL_DEV_FIRST, MA_CTRL_DEV_NEXT, + MA_CTRL_KEYBOARD, MA_CTRL_DONE, } menu_id; diff --git a/platform/libpicofe b/platform/libpicofe index b047d2e2..c68a2bca 160000 --- a/platform/libpicofe +++ b/platform/libpicofe @@ -1 +1 @@ -Subproject commit b047d2e2e6375b5fad2f1b716616a536f7b56dc2 +Subproject commit c68a2bcaa9fd16b9eaf4f4d124e3948faecf137e -- 2.39.5