From 36fdadd45345a6ce4402fa3bdbb3b12b4cbb62ee Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 3 Oct 2014 20:56:25 +0200 Subject: [PATCH] added virtual keyboard on Android port when entering player name --- ChangeLog | 3 +++ src/conftime.h | 2 +- src/events.c | 32 ++++++++++++++++++++++++-------- src/screens.c | 10 ++++++++++ 4 files changed, 38 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index a6867518..0011bfac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2014-10-02 + * added virtual keyboard on Android port when entering player name + 2014-10-01 * fixed "quick menu doors" and sounds for door and envelope requests diff --git a/src/conftime.h b/src/conftime.h index e12f98de..72f21842 100644 --- a/src/conftime.h +++ b/src/conftime.h @@ -1 +1 @@ -#define COMPILE_DATE_STRING "2014-10-01 09:50" +#define COMPILE_DATE_STRING "2014-10-02 10:57" diff --git a/src/events.c b/src/events.c index 14e7df86..1d02e8c2 100644 --- a/src/events.c +++ b/src/events.c @@ -22,7 +22,14 @@ #include "network.h" -#define DEBUG_EVENTS 0 +#define DEBUG_EVENTS 1 + +#define DEBUG_EVENTS_BUTTON (DEBUG_EVENTS * 0) +#define DEBUG_EVENTS_MOTION (DEBUG_EVENTS * 0) +#define DEBUG_EVENTS_WINDOW (DEBUG_EVENTS * 0) +#define DEBUG_EVENTS_FINGER (DEBUG_EVENTS * 0) +#define DEBUG_EVENTS_TEXT (DEBUG_EVENTS * 1) +#define DEBUG_EVENTS_KEY (DEBUG_EVENTS * 1) static boolean cursor_inside_playfield = FALSE; @@ -364,7 +371,7 @@ void HandleExposeEvent(ExposeEvent *event) void HandleButtonEvent(ButtonEvent *event) { -#if DEBUG_EVENTS +#if DEBUG_EVENTS_BUTTON Error(ERR_DEBUG, "BUTTON EVENT: button %d %s, x/y %d/%d\n", event->button, event->type == EVENT_BUTTONPRESS ? "pressed" : "released", @@ -391,7 +398,7 @@ void HandleMotionEvent(MotionEvent *event) motion_status = TRUE; -#if DEBUG_EVENTS +#if DEBUG_EVENTS_MOTION Error(ERR_DEBUG, "MOTION EVENT: button %d moved, x/y %d/%d\n", button_status, event->x, event->y); #endif @@ -403,7 +410,7 @@ void HandleMotionEvent(MotionEvent *event) void HandleWindowEvent(WindowEvent *event) { -#if DEBUG_EVENTS +#if DEBUG_EVENTS_WINDOW int subtype = event->event; char *event_name = @@ -485,7 +492,7 @@ void HandleFingerEvent(FingerEvent *event) float event_x = event->x; float event_y = event->y; -#if DEBUG_EVENTS +#if DEBUG_EVENTS_FINGER Error(ERR_DEBUG, "FINGER EVENT: finger was %s, touch ID %lld, finger ID %lld, x/y %f/%f, dx/dy %f/%f, pressure %f", event->type == EVENT_FINGERPRESS ? "pressed" : event->type == EVENT_FINGERRELEASE ? "released" : "moved", @@ -775,7 +782,7 @@ void HandleTextEvent(TextEvent *event) char *text = event->text; Key key = getKeyFromKeyName(text); -#if DEBUG_EVENTS +#if DEBUG_EVENTS_TEXT Error(ERR_DEBUG, "TEXT EVENT: text == '%s' [%d byte(s), '%c'/%d], resulting key == %d (%s) [%04x]", text, strlen(text), @@ -785,6 +792,15 @@ void HandleTextEvent(TextEvent *event) GetKeyModState()); #endif +#if defined(PLATFORM_ANDROID) + if (game_status == GAME_MODE_PSEUDO_TYPENAME) + { + HandleTypeName(0, key); + + return; + } +#endif + // if (game_status != GAME_MODE_PLAYING && GetKeyModState() != KMOD_None) /* if (game_status != GAME_MODE_PLAYING && @@ -818,7 +834,7 @@ void HandleKeyEvent(KeyEvent *event) Key key = GetEventKey(event, with_modifiers); Key keymod = (with_modifiers ? GetEventKey(event, FALSE) : key); -#if DEBUG_EVENTS +#if DEBUG_EVENTS_KEY Error(ERR_DEBUG, "KEY EVENT: key was %s, keysym.scancode == %d, keysym.sym == %d, keymod = %d, GetKeyModState() = 0x%04x, resulting key == %d (%s)", event->type == EVENT_KEYPRESS ? "pressed" : "released", event->keysym.scancode, @@ -1020,7 +1036,7 @@ static void HandleKeysSpecial(Key key) cheat_input[cheat_input_len++] = letter; cheat_input[cheat_input_len] = '\0'; -#if DEBUG_EVENTS +#if DEBUG_EVENTS_KEY Error(ERR_DEBUG, "SPECIAL KEY '%s' [%d]\n", cheat_input, cheat_input_len); #endif diff --git a/src/screens.c b/src/screens.c index b22e8299..a6c7e0a6 100644 --- a/src/screens.c +++ b/src/screens.c @@ -3159,6 +3159,10 @@ void HandleTypeName(int newxpos, Key key) strcpy(last_player_name, setup.player_name); xpos = newxpos; + +#if defined(TARGET_SDL2) + SDL_StartTextInput(); +#endif } else if (is_valid_key_char && xpos < MAX_PLAYER_NAME_LEN) { @@ -3204,6 +3208,10 @@ void HandleTypeName(int newxpos, Key key) startx = mSX + ALIGNED_TEXT_XPOS(pos); DrawText(startx, starty, setup.player_name, font_nr); + +#if defined(TARGET_SDL2) + SDL_StopTextInput(); +#endif } } @@ -4638,12 +4646,14 @@ static void execSetupChooseMusic() DrawSetupScreen(); } +#if !defined(PLATFORM_ANDROID) static void execSetupInput() { setup_mode = SETUP_MODE_INPUT; DrawSetupScreen(); } +#endif static void execSetupShortcuts() { -- 2.34.1