123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173 |
- /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
- //
- // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
- // Portions Copyright (c) 2009, netwan.
- //
- // All rights reserved.
- //
- // This file is part of SDLPAL.
- //
- // SDLPAL is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #include "main.h"
- #include <math.h>
- volatile PALINPUTSTATE g_InputState;
- #if PAL_HAS_JOYSTICKS
- static SDL_Joystick *g_pJoy = NULL;
- #endif
- #if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
- #define SDL_JoystickNameForIndex SDL_JoystickName
- #endif
- BOOL g_fUseJoystick = TRUE;
- #if defined(GPH)
- #define MIN_DEADZONE -16384
- #define MAX_DEADZONE 16384
- #endif
- static VOID
- PAL_KeyboardEventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- Handle keyboard events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- None.
- --*/
- {
- switch (lpEvent->type)
- {
- case SDL_KEYDOWN:
- //
- // Pressed a key
- //
- if (lpEvent->key.keysym.mod & KMOD_ALT)
- {
- if (lpEvent->key.keysym.sym == SDLK_RETURN)
- {
- //
- // Pressed Alt+Enter (toggle fullscreen)...
- //
- VIDEO_ToggleFullscreen();
- return;
- }
- else if (lpEvent->key.keysym.sym == SDLK_F4)
- {
- //
- // Pressed Alt+F4 (Exit program)...
- //
- PAL_Shutdown(0);
- }
- }
- switch (lpEvent->key.keysym.sym)
- {
- #ifdef __SYMBIAN32__
- //
- // Symbian-specific stuff
- //
- case SDLK_0:
- VIDEO_ToggleScaleScreen();
- break;
- case SDLK_1:
- AUDIO_DecreaseVolume();
- break;
- case SDLK_3:
- AUDIO_IncreaseVolume();
- break;
- #endif
- case SDLK_UP:
- case SDLK_KP8:
- if (gpGlobals->fInBattle || g_InputState.dir != kDirNorth)
- {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirNorth;
- g_InputState.dwKeyPress |= kKeyUp;
- }
- break;
- case SDLK_DOWN:
- case SDLK_KP2:
- if (gpGlobals->fInBattle || g_InputState.dir != kDirSouth)
- {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirSouth;
- g_InputState.dwKeyPress |= kKeyDown;
- }
- break;
- case SDLK_LEFT:
- case SDLK_KP4:
- if (gpGlobals->fInBattle || g_InputState.dir != kDirWest)
- {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirWest;
- g_InputState.dwKeyPress |= kKeyLeft;
- }
- break;
- case SDLK_RIGHT:
- case SDLK_KP6:
- if (gpGlobals->fInBattle || g_InputState.dir != kDirEast)
- {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirEast;
- g_InputState.dwKeyPress |= kKeyRight;
- }
- break;
- #if defined(DINGOO)
- case SDLK_SPACE:
- g_InputState.dwKeyPress = kKeyMenu;
- break;
- case SDLK_LCTRL:
- g_InputState.dwKeyPress = kKeySearch;
- break;
- #else
- case SDLK_ESCAPE:
- case SDLK_INSERT:
- case SDLK_LALT:
- case SDLK_RALT:
- case SDLK_KP0:
- g_InputState.dwKeyPress |= kKeyMenu;
- break;
- case SDLK_RETURN:
- case SDLK_SPACE:
- case SDLK_KP_ENTER:
- case SDLK_LCTRL:
- g_InputState.dwKeyPress |= kKeySearch;
- break;
- case SDLK_PAGEUP:
- case SDLK_KP9:
- g_InputState.dwKeyPress |= kKeyPgUp;
- break;
- case SDLK_PAGEDOWN:
- case SDLK_KP3:
- g_InputState.dwKeyPress |= kKeyPgDn;
- break;
- case SDLK_HOME:
- g_InputState.dwKeyPress |= kKeyHome;
- break;
- case SDLK_END:
- g_InputState.dwKeyPress |= kKeyEnd;
- break;
- case SDLK_7: //7 for mobile device
- case SDLK_r:
- g_InputState.dwKeyPress |= kKeyRepeat;
- break;
- case SDLK_2: //2 for mobile device
- case SDLK_a:
- g_InputState.dwKeyPress |= kKeyAuto;
- break;
- case SDLK_d:
- g_InputState.dwKeyPress |= kKeyDefend;
- break;
- case SDLK_e:
- g_InputState.dwKeyPress |= kKeyUseItem;
- break;
- case SDLK_w:
- g_InputState.dwKeyPress |= kKeyThrowItem;
- break;
- #if defined(__WINRT__)
- case SDLK_AC_BACK:
- // If game not started, exit directly
- if (!gpGlobals->fInMainGame)
- PAL_Shutdown(0);
- #endif
- case SDLK_q:
- g_InputState.dwKeyPress |= kKeyFlee;
- break;
- case SDLK_s:
- g_InputState.dwKeyPress |= kKeyStatus;
- break;
- case SDLK_f:
- case SDLK_5: // 5 for mobile device
- g_InputState.dwKeyPress |= kKeyForce;
- break;
- case SDLK_HASH: //# for mobile device
- case SDLK_p:
- VIDEO_SaveScreenshot();
- break;
- #endif
- default:
- break;
- }
- break;
- case SDL_KEYUP:
- //
- // Released a key
- //
- switch (lpEvent->key.keysym.sym)
- {
- case SDLK_UP:
- case SDLK_KP8:
- if (g_InputState.dir == kDirNorth)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_DOWN:
- case SDLK_KP2:
- if (g_InputState.dir == kDirSouth)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_LEFT:
- case SDLK_KP4:
- if (g_InputState.dir == kDirWest)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_RIGHT:
- case SDLK_KP6:
- if (g_InputState.dir == kDirEast)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- default:
- break;
- }
- break;
- }
- }
- static VOID
- PAL_MouseEventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- Handle mouse events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_MOUSE
- static short hitTest = 0; // Double click detect;
- const SDL_VideoInfo *vi;
- double screenWidth, gridWidth;
- double screenHeight, gridHeight;
- double mx, my;
- double thumbx;
- double thumby;
- INT gridIndex;
- BOOL isLeftMouseDBClick = FALSE;
- BOOL isLeftMouseClick = FALSE;
- BOOL isRightMouseClick = FALSE;
- static INT lastReleaseButtonTime, lastPressButtonTime, betweenTime;
- static INT lastPressx = 0;
- static INT lastPressy = 0;
- static INT lastReleasex = 0;
- static INT lastReleasey = 0;
- if (lpEvent->type!= SDL_MOUSEBUTTONDOWN && lpEvent->type != SDL_MOUSEBUTTONUP)
- return;
- vi = SDL_GetVideoInfo();
- screenWidth = vi->current_w;
- screenHeight = vi->current_h;
- gridWidth = screenWidth / 3;
- gridHeight = screenHeight / 3;
- mx = lpEvent->button.x;
- my = lpEvent->button.y;
- thumbx = ceil(mx / gridWidth);
- thumby = floor(my / gridHeight);
- gridIndex = thumbx + thumby * 3 - 1;
-
- switch (lpEvent->type)
- {
- case SDL_MOUSEBUTTONDOWN:
- lastPressButtonTime = SDL_GetTicks();
- lastPressx = lpEvent->button.x;
- lastPressy = lpEvent->button.y;
- switch (gridIndex)
- {
- case 2:
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirNorth;
- break;
- case 6:
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirSouth;
- break;
- case 0:
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirWest;
- break;
- case 8:
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirEast;
- break;
- case 1:
- //g_InputState.prevdir = g_InputState.dir;
- //g_InputState.dir = kDirNorth;
- g_InputState.dwKeyPress |= kKeyUp;
- break;
- case 7:
- //g_InputState.prevdir = g_InputState.dir;
- //g_InputState.dir = kDirSouth;
- g_InputState.dwKeyPress |= kKeyDown;
- break;
- case 3:
- //g_InputState.prevdir = g_InputState.dir;
- //g_InputState.dir = kDirWest;
- g_InputState.dwKeyPress |= kKeyLeft;
- break;
- case 5:
- //g_InputState.prevdir = g_InputState.dir;
- //g_InputState.dir = kDirEast;
- g_InputState.dwKeyPress |= kKeyRight;
- break;
- }
- break;
- case SDL_MOUSEBUTTONUP:
- lastReleaseButtonTime = SDL_GetTicks();
- lastReleasex = lpEvent->button.x;
- lastReleasey = lpEvent->button.y;
- hitTest ++;
- if (abs(lastPressx - lastReleasex) < 25 &&
- abs(lastPressy - lastReleasey) < 25)
- {
- betweenTime = lastReleaseButtonTime - lastPressButtonTime;
- if (betweenTime >500)
- {
- isRightMouseClick = TRUE;
- }
- else if (betweenTime >=0)
- {
- if((betweenTime < 100) && (hitTest >= 2))
- {
- isLeftMouseClick = TRUE;
- hitTest = 0;
- }
- else
- {
- isLeftMouseClick = TRUE;
- if(betweenTime > 100)
- {
- hitTest = 0;
- }
-
- }
- }
- }
- switch (gridIndex)
- {
- case 2:
- if( isLeftMouseDBClick )
- {
- AUDIO_IncreaseVolume();
- break;
- }
- case 6:
- case 0:
- if( isLeftMouseDBClick )
- {
- AUDIO_DecreaseVolume();
- break;
- }
- case 7:
- if (isRightMouseClick) //repeat attack
- {
- g_InputState.dwKeyPress |= kKeyRepeat;
- break;
- }
- case 8:
- g_InputState.dir = kDirUnknown;
- g_InputState.prevdir = kDirUnknown;
- break;
- case 1:
- if( isRightMouseClick )
- {
- g_InputState.dwKeyPress |= kKeyForce;
- }
- break;
- case 3:
- if( isRightMouseClick )
- {
- g_InputState.dwKeyPress |= kKeyAuto;
- }
- break;
- case 5:
- if( isRightMouseClick )
- {
- g_InputState.dwKeyPress |= kKeyDefend;
- }
- break;
- case 4:
- if (isRightMouseClick) // menu
- {
- g_InputState.dwKeyPress |= kKeyMenu;
- }
- else if (isLeftMouseClick) // search
- {
- g_InputState.dwKeyPress |= kKeySearch;
- }
-
- break;
- }
- break;
- }
- #endif
- }
- static VOID
- PAL_JoystickEventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- Handle joystick events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_JOYSTICKS
- switch (lpEvent->type)
- {
- #if defined (GEKKO)
- case SDL_JOYHATMOTION:
- switch (lpEvent->jhat.value)
- {
- case SDL_HAT_LEFT:
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirWest;
- g_InputState.dwKeyPress = kKeyLeft;
- break;
- case SDL_HAT_RIGHT:
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirEast;
- g_InputState.dwKeyPress = kKeyRight;
- break;
- case SDL_HAT_UP:
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirNorth;
- g_InputState.dwKeyPress = kKeyUp;
- break;
- case SDL_HAT_DOWN:
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirSouth;
- g_InputState.dwKeyPress = kKeyDown;
- break;
- }
- break;
- #else
- case SDL_JOYAXISMOTION:
- //
- // Moved an axis on joystick
- //
- switch (lpEvent->jaxis.axis)
- {
- case 0:
- //
- // X axis
- //
- #if defined(GPH)
- if (lpEvent->jaxis.value > MAX_DEADZONE) {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirEast;
- g_InputState.dwKeyPress = kKeyRight;
- } else if (lpEvent->jaxis.value < MIN_DEADZONE) {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirWest;
- g_InputState.dwKeyPress = kKeyLeft;
- } else {
- g_InputState.dir = kDirUnknown;
- }
- #else
- if (lpEvent->jaxis.value > 20000)
- {
- if (g_InputState.dir != kDirEast)
- {
- g_InputState.dwKeyPress |= kKeyRight;
- }
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirEast;
- }
- else if (lpEvent->jaxis.value < -20000)
- {
- if (g_InputState.dir != kDirWest)
- {
- g_InputState.dwKeyPress |= kKeyLeft;
- }
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirWest;
- }
- else
- {
- if (g_InputState.prevdir != kDirEast &&
- g_InputState.prevdir != kDirWest)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- }
- #endif
- break;
- case 1:
- //
- // Y axis
- //
- #if defined(GPH)
- if (lpEvent->jaxis.value > MAX_DEADZONE) {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirSouth;
- g_InputState.dwKeyPress = kKeyDown;
- } else if (lpEvent->jaxis.value < MIN_DEADZONE) {
- g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
- g_InputState.dir = kDirNorth;
- g_InputState.dwKeyPress = kKeyUp;
- } else {
- g_InputState.dir = kDirUnknown;
- }
- #else
- if (lpEvent->jaxis.value > 20000)
- {
- if (g_InputState.dir != kDirSouth)
- {
- g_InputState.dwKeyPress |= kKeyDown;
- }
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirSouth;
- }
- else if (lpEvent->jaxis.value < -20000)
- {
- if (g_InputState.dir != kDirNorth)
- {
- g_InputState.dwKeyPress |= kKeyUp;
- }
- g_InputState.prevdir = g_InputState.dir;
- g_InputState.dir = kDirNorth;
- }
- else
- {
- if (g_InputState.prevdir != kDirNorth &&
- g_InputState.prevdir != kDirSouth)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- }
- #endif
- break;
- }
- break;
- #endif
- case SDL_JOYBUTTONDOWN:
- //
- // Pressed the joystick button
- //
- #if defined(GPH)
- switch (lpEvent->jbutton.button)
- {
- #if defined(GP2XWIZ)
- case 14:
- #elif defined(CAANOO)
- case 3:
- #endif
- g_InputState.dwKeyPress = kKeyMenu;
- break;
- #if defined(GP2XWIZ)
- case 13:
- #elif defined(CAANOO)
- case 2:
- #endif
- g_InputState.dwKeyPress = kKeySearch;
- break;
- #else
- #if defined(GEKKO)
- switch (lpEvent->jbutton.button)
- {
- case 2:
- g_InputState.dwKeyPress |= kKeyMenu;
- break;
- case 3:
- g_InputState.dwKeyPress |= kKeySearch;
- break;
- #else
- switch (lpEvent->jbutton.button & 1)
- {
- case 0:
- g_InputState.dwKeyPress |= kKeyMenu;
- break;
- case 1:
- g_InputState.dwKeyPress |= kKeySearch;
- break;
- #endif
- #endif
- }
- break;
- }
- #endif
- }
- #define TOUCH_NONE 0
- #define TOUCH_UP 1
- #define TOUCH_DOWN 2
- #define TOUCH_LEFT 3
- #define TOUCH_RIGHT 4
- #define TOUCH_BUTTON1 5
- #define TOUCH_BUTTON2 6
- #define TOUCH_BUTTON3 7
- #define TOUCH_BUTTON4 8
- static float gfTouchXMin = 0.0f;
- static float gfTouchXMax = 1.0f;
- static float gfTouchYMin = 0.0f;
- static float gfTouchYMax = 1.0f;
- VOID
- PAL_SetTouchBounds(
- DWORD dwScreenWidth,
- DWORD dwScreenHeight,
- SDL_Rect renderRect
- )
- {
- gfTouchXMin = (float)renderRect.x / dwScreenWidth;
- gfTouchXMax = (float)(renderRect.x + renderRect.w) / dwScreenWidth;
- gfTouchYMin = (float)renderRect.y / dwScreenHeight;
- gfTouchYMax = (float)(renderRect.y + renderRect.h) / dwScreenHeight;
- }
- static int
- PAL_GetTouchArea(
- float X,
- float Y
- )
- {
- if (X < gfTouchXMin || X > gfTouchXMax || Y < 0.5f || Y > gfTouchYMax)
- {
- //
- // Upper area or cropped area
- //
- return TOUCH_NONE;
- }
- else
- {
- X = (X - gfTouchXMin) / (gfTouchXMax - gfTouchXMin);
- Y = (Y - gfTouchYMin) / (gfTouchYMax - gfTouchYMin);
- }
- if (X < 1.0f / 3)
- {
- if (Y - 0.5f < (1.0f / 6 - fabsf(X - 1.0f / 3 / 2)) * (0.5f / (1.0f / 3)))
- {
- return TOUCH_UP;
- }
- else if (Y - 0.75f > fabsf(X - 1.0f / 3 / 2) * (0.5f / (1.0f / 3)))
- {
- return TOUCH_DOWN;
- }
- else if (X < 1.0f / 3 / 2 && fabsf(Y - 0.75f) < 0.25f - X * (0.5f / (1.0f / 3)))
- {
- return TOUCH_LEFT;
- }
- else
- {
- return TOUCH_RIGHT;
- }
- }
- else if (X > 1.0f - 1.0f / 3)
- {
- if (X < 1.0f - (1.0f / 3 / 2))
- {
- if (Y < 0.75f)
- {
- return TOUCH_BUTTON1;
- }
- else
- {
- return TOUCH_BUTTON3;
- }
- }
- else
- {
- if (Y < 0.75f)
- {
- return TOUCH_BUTTON2;
- }
- else
- {
- return TOUCH_BUTTON4;
- }
- }
- }
- else
- {
- return TOUCH_NONE;
- }
- }
- static VOID
- PAL_SetTouchAction(
- int area
- )
- {
- switch (area)
- {
- case TOUCH_UP:
- g_InputState.dir = kDirNorth;
- g_InputState.dwKeyPress |= kKeyUp;
- break;
- case TOUCH_DOWN:
- g_InputState.dir = kDirSouth;
- g_InputState.dwKeyPress |= kKeyDown;
- break;
- case TOUCH_LEFT:
- g_InputState.dir = kDirWest;
- g_InputState.dwKeyPress |= kKeyLeft;
- break;
- case TOUCH_RIGHT:
- g_InputState.dir = kDirEast;
- g_InputState.dwKeyPress |= kKeyRight;
- break;
- case TOUCH_BUTTON1:
- if (gpGlobals->fInBattle)
- {
- g_InputState.dwKeyPress |= kKeyRepeat;
- }
- else
- {
- g_InputState.dwKeyPress |= kKeyForce;
- }
- break;
- case TOUCH_BUTTON2:
- g_InputState.dwKeyPress |= kKeyMenu;
- break;
- case TOUCH_BUTTON3:
- g_InputState.dwKeyPress |= kKeyUseItem;
- break;
- case TOUCH_BUTTON4:
- g_InputState.dwKeyPress |= kKeySearch;
- break;
- }
- }
- static VOID
- PAL_UnsetTouchAction(
- int area
- )
- {
- switch (area)
- {
- case TOUCH_UP:
- case TOUCH_DOWN:
- case TOUCH_LEFT:
- case TOUCH_RIGHT:
- g_InputState.dir = kDirUnknown;
- break;
- }
- }
- static VOID
- PAL_TouchEventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- Handle touch events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- None.
- --*/
- {
- static SDL_TouchID finger1 = -1, finger2 = -1;
- static int prev_touch1 = TOUCH_NONE;
- static int prev_touch2 = TOUCH_NONE;
- switch (lpEvent->type)
- {
- case SDL_FINGERDOWN:
- if (finger1 == -1)
- {
- int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
- finger1 = lpEvent->tfinger.fingerId;
- prev_touch1 = area;
- PAL_SetTouchAction(area);
- }
- else if (finger2 == -1)
- {
- int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
- finger2 = lpEvent->tfinger.fingerId;
- prev_touch2 = area;
- PAL_SetTouchAction(area);
- }
- break;
- case SDL_FINGERUP:
- if (lpEvent->tfinger.fingerId == finger1)
- {
- PAL_UnsetTouchAction(prev_touch1);
- finger1 = -1;
- prev_touch1 = TOUCH_NONE;
- }
- else if (lpEvent->tfinger.fingerId == finger2)
- {
- PAL_UnsetTouchAction(prev_touch2);
- finger2 = -1;
- prev_touch2 = TOUCH_NONE;
- }
- break;
- case SDL_FINGERMOTION:
- if (lpEvent->tfinger.fingerId == finger1)
- {
- int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
- if (prev_touch1 != area && area != TOUCH_NONE)
- {
- PAL_UnsetTouchAction(prev_touch1);
- prev_touch1 = area;
- PAL_SetTouchAction(area);
- }
- }
- else if (lpEvent->tfinger.fingerId == finger2)
- {
- int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
- if (prev_touch2 != area && area != TOUCH_NONE)
- {
- PAL_UnsetTouchAction(prev_touch2);
- prev_touch2 = area;
- PAL_SetTouchAction(area);
- }
- }
- break;
- }
- }
- static int SDLCALL
- PAL_EventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- SDL event filter function. A filter to process all events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- 1 = the event will be added to the internal queue.
- 0 = the event will be dropped from the queue.
- --*/
- {
- switch (lpEvent->type)
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- case SDL_WINDOWEVENT:
- if (lpEvent->window.event == SDL_WINDOWEVENT_RESIZED)
- {
- //
- // resized the window
- //
- VIDEO_Resize(lpEvent->window.data1, lpEvent->window.data2);
- }
- break;
- #ifdef __IOS__
- case SDL_APP_WILLENTERBACKGROUND:
- g_bRenderPaused = TRUE;
- break;
- case SDL_APP_DIDENTERFOREGROUND:
- g_bRenderPaused = FALSE;
- VIDEO_UpdateScreen(NULL);
- break;
- #endif
- #else
-
- case SDL_VIDEORESIZE:
- //
- // resized the window
- //
- VIDEO_Resize(lpEvent->resize.w, lpEvent->resize.h);
- break;
- #endif
- case SDL_QUIT:
- //
- // clicked on the close button of the window. Quit immediately.
- //
- PAL_Shutdown(0);
- }
- PAL_KeyboardEventFilter(lpEvent);
- PAL_MouseEventFilter(lpEvent);
- PAL_JoystickEventFilter(lpEvent);
- PAL_TouchEventFilter(lpEvent);
- //
- // All events are handled here; don't put anything to the internal queue
- //
- return 0;
- }
- VOID
- PAL_ClearKeyState(
- VOID
- )
- /*++
- Purpose:
- Clear the record of pressed keys.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- g_InputState.dwKeyPress = 0;
- }
- VOID
- PAL_InitInput(
- VOID
- )
- /*++
- Purpose:
- Initialize the input subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- memset((void *)&g_InputState, 0, sizeof(g_InputState));
- g_InputState.dir = kDirUnknown;
- g_InputState.prevdir = kDirUnknown;
- //
- // Check for joystick
- //
- #if PAL_HAS_JOYSTICKS
- if (SDL_NumJoysticks() > 0 && g_fUseJoystick)
- {
- int i;
- for (i = 0; i < SDL_NumJoysticks(); i++)
- {
- //
- // HACKHACK: applesmc and Android Accelerometer shouldn't be considered as real joysticks
- //
- if (strcmp(SDL_JoystickNameForIndex(i), "applesmc") != 0 && strcmp(SDL_JoystickNameForIndex(i), "Android Accelerometer") != 0)
- {
- g_pJoy = SDL_JoystickOpen(i);
- break;
- }
- }
- if (g_pJoy != NULL)
- {
- SDL_JoystickEventState(SDL_ENABLE);
- }
- }
- #endif
- #ifdef PAL_ALLOW_KEYREPEAT
- SDL_EnableKeyRepeat(0, 0);
- #endif
- }
- VOID
- PAL_ShutdownInput(
- VOID
- )
- /*++
- Purpose:
- Shutdown the input subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_JOYSTICKS
- #if SDL_VERSION_ATLEAST(2,0,0)
- if (g_pJoy != NULL)
- {
- SDL_JoystickClose(g_pJoy);
- g_pJoy = NULL;
- }
- #else
- if (SDL_JoystickOpened(0))
- {
- assert(g_pJoy != NULL);
- SDL_JoystickClose(g_pJoy);
- g_pJoy = NULL;
- }
- #endif
- #endif
- }
- VOID
- PAL_ProcessEvent(
- VOID
- )
- /*++
- Purpose:
- Process all events.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_NATIVEMIDI
- MIDI_CheckLoop();
- #endif
- while (PAL_PollEvent(NULL));
- }
- int
- PAL_PollEvent(
- SDL_Event *event
- )
- /*++
- Purpose:
- Poll and process one event.
- Parameters:
- [OUT] event - Events polled from SDL.
- Return value:
- Return value of PAL_PollEvent.
- --*/
- {
- SDL_Event evt;
- int ret = SDL_PollEvent(&evt);
- if (ret != 0)
- {
- PAL_EventFilter(&evt);
- }
- if (event != NULL)
- {
- *event = evt;
- }
- return ret;
- }
|