1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096 |
- /* -*- 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_VERSION_ATLEAST(2,0,0)
- # define SDLK_KP_1 SDLK_KP1
- # define SDLK_KP_2 SDLK_KP2
- # define SDLK_KP_3 SDLK_KP3
- # define SDLK_KP_4 SDLK_KP4
- # define SDLK_KP_5 SDLK_KP5
- # define SDLK_KP_6 SDLK_KP6
- # define SDLK_KP_7 SDLK_KP7
- # define SDLK_KP_8 SDLK_KP8
- # define SDLK_KP_9 SDLK_KP9
- # define SDLK_KP_0 SDLK_KP0
- # define SDL_JoystickNameForIndex SDL_JoystickName
- #endif
- BOOL g_fUseJoystick = TRUE;
- static void _default_init_filter() {}
- static int _default_input_event_filter(const SDL_Event *event, volatile PALINPUTSTATE *state) { return 0; }
- static void _default_input_shutdown_filter() {}
- static void (*input_init_filter)() = _default_init_filter;
- static int (*input_event_filter)(const SDL_Event *, volatile PALINPUTSTATE *) = _default_input_event_filter;
- static void (*input_shutdown_filter)() = _default_input_shutdown_filter;
- 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)
- {
- case SDLK_UP:
- case SDLK_KP_8:
- 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_KP_2:
- 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_KP_4:
- 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_KP_6:
- 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;
- case SDLK_ESCAPE:
- case SDLK_INSERT:
- case SDLK_LALT:
- case SDLK_RALT:
- case SDLK_KP_0:
- 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_KP_9:
- g_InputState.dwKeyPress |= kKeyPgUp;
- break;
- case SDLK_PAGEDOWN:
- case SDLK_KP_3:
- 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;
- 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;
- default:
- break;
- }
- break;
- case SDL_KEYUP:
- //
- // Released a key
- //
- switch (lpEvent->key.keysym.sym)
- {
- case SDLK_UP:
- case SDLK_KP_8:
- if (g_InputState.dir == kDirNorth)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_DOWN:
- case SDLK_KP_2:
- if (g_InputState.dir == kDirSouth)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_LEFT:
- case SDLK_KP_4:
- if (g_InputState.dir == kDirWest)
- {
- g_InputState.dir = g_InputState.prevdir;
- }
- g_InputState.prevdir = kDirUnknown;
- break;
- case SDLK_RIGHT:
- case SDLK_KP_6:
- 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)
- {
- case SDL_JOYAXISMOTION:
- //
- // Moved an axis on joystick
- //
- switch (lpEvent->jaxis.axis)
- {
- case 0:
- //
- // X axis
- //
- 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;
- }
- break;
- case 1:
- //
- // Y axis
- //
- 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;
- }
- break;
- }
- break;
- case SDL_JOYBUTTONDOWN:
- //
- // Pressed the joystick button
- //
- switch (lpEvent->jbutton.button & 1)
- {
- case 0:
- g_InputState.dwKeyPress |= kKeyMenu;
- break;
- case 1:
- g_InputState.dwKeyPress |= kKeySearch;
- break;
- }
- break;
- }
- #endif
- }
- #if PAL_HAS_TOUCH
- #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;
- }
- }
- #endif
- static VOID
- PAL_TouchEventFilter(
- const SDL_Event *lpEvent
- )
- /*++
- Purpose:
- Handle touch events.
- Parameters:
- [IN] lpEvent - pointer to the event.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_TOUCH
- 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;
- }
- #endif
- }
- 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;
- case SDL_APP_WILLENTERBACKGROUND:
- g_bRenderPaused = TRUE;
- break;
- case SDL_APP_DIDENTERFOREGROUND:
- g_bRenderPaused = FALSE;
- VIDEO_UpdateScreen(NULL);
- break;
- #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++)
- {
- if (PAL_IS_VALID_JOYSTICK(SDL_JoystickNameForIndex(i)))
- {
- g_pJoy = SDL_JoystickOpen(i);
- break;
- }
- }
- if (g_pJoy != NULL)
- {
- SDL_JoystickEventState(SDL_ENABLE);
- }
- }
- #endif
- #ifdef PAL_ALLOW_KEYREPEAT
- SDL_EnableKeyRepeat(0, 0);
- #endif
- input_init_filter();
- }
- VOID
- PAL_ShutdownInput(
- VOID
- )
- /*++
- Purpose:
- Shutdown the input subsystem.
- Parameters:
- None.
- Return value:
- None.
- --*/
- {
- #if PAL_HAS_JOYSTICKS
- if (g_pJoy != NULL)
- {
- SDL_JoystickClose(g_pJoy);
- g_pJoy = NULL;
- }
- #endif
- input_shutdown_filter();
- }
- 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 && !input_event_filter(&evt, &g_InputState))
- {
- PAL_EventFilter(&evt);
- }
- if (event != NULL)
- {
- *event = evt;
- }
- return ret;
- }
- VOID
- PAL_RegisterInputFilter(
- void (*init_filter)(),
- int (*event_filter)(const SDL_Event *, volatile PALINPUTSTATE *),
- void (*shutdown_filter)()
- )
- /*++
- Purpose:
- Register caller-defined input event filter.
- Parameters:
- [IN] init_filter - Filter that will be called inside PAL_InitInput
- [IN] event_filter - Filter that will be called inside PAL_PollEvent,
- return non-zero value from this filter disables
- further internal event processing.
- [IN] shutdown_filter - Filter that will be called inside PAL_ShutdownInput
- Passing NULL to either parameter means the caller does not provide such filter.
- Return value:
- None.
- --*/
- {
- if (init_filter)
- input_init_filter = init_filter;
- if (event_filter)
- input_event_filter = event_filter;
- if (shutdown_filter)
- input_shutdown_filter = shutdown_filter;
- }
|