input.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // Copyright (c) 2011-2017, SDLPAL development team.
  5. // All rights reserved.
  6. //
  7. // This file is part of SDLPAL.
  8. //
  9. // SDLPAL is free software: you can redistribute it and/or modify
  10. // it under the terms of the GNU General Public License as published by
  11. // the Free Software Foundation, either version 3 of the License, or
  12. // (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. // GNU General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public License
  20. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. //
  22. #include "main.h"
  23. #include <math.h>
  24. volatile PALINPUTSTATE g_InputState;
  25. #if PAL_HAS_JOYSTICKS
  26. static SDL_Joystick *g_pJoy = NULL;
  27. #endif
  28. #if !SDL_VERSION_ATLEAST(2,0,0)
  29. # define SDLK_KP_1 SDLK_KP1
  30. # define SDLK_KP_2 SDLK_KP2
  31. # define SDLK_KP_3 SDLK_KP3
  32. # define SDLK_KP_4 SDLK_KP4
  33. # define SDLK_KP_5 SDLK_KP5
  34. # define SDLK_KP_6 SDLK_KP6
  35. # define SDLK_KP_7 SDLK_KP7
  36. # define SDLK_KP_8 SDLK_KP8
  37. # define SDLK_KP_9 SDLK_KP9
  38. # define SDLK_KP_0 SDLK_KP0
  39. # define SDL_JoystickNameForIndex SDL_JoystickName
  40. # define SDL_GetKeyboardState SDL_GetKeyState
  41. # define SDL_GetScancodeFromKey(x) (x)
  42. #endif
  43. BOOL g_fUseJoystick = TRUE;
  44. static void _default_init_filter() {}
  45. static int _default_input_event_filter(const SDL_Event *event, volatile PALINPUTSTATE *state) { return 0; }
  46. static void _default_input_shutdown_filter() {}
  47. static void (*input_init_filter)() = _default_init_filter;
  48. static int (*input_event_filter)(const SDL_Event *, volatile PALINPUTSTATE *) = _default_input_event_filter;
  49. static void (*input_shutdown_filter)() = _default_input_shutdown_filter;
  50. static const int g_KeyMap[][2] = {
  51. { SDLK_UP, kKeyUp },
  52. { SDLK_KP_8, kKeyUp },
  53. { SDLK_DOWN, kKeyDown },
  54. { SDLK_KP_2, kKeyDown },
  55. { SDLK_LEFT, kKeyLeft },
  56. { SDLK_KP_4, kKeyLeft },
  57. { SDLK_RIGHT, kKeyRight },
  58. { SDLK_KP_6, kKeyRight },
  59. { SDLK_ESCAPE, kKeyMenu },
  60. { SDLK_INSERT, kKeyMenu },
  61. { SDLK_LALT, kKeyMenu },
  62. { SDLK_RALT, kKeyMenu },
  63. { SDLK_KP_0, kKeyMenu },
  64. { SDLK_RETURN, kKeySearch },
  65. { SDLK_SPACE, kKeySearch },
  66. { SDLK_KP_ENTER, kKeySearch },
  67. { SDLK_LCTRL, kKeySearch },
  68. { SDLK_PAGEUP, kKeyPgUp },
  69. { SDLK_KP_9, kKeyPgUp },
  70. { SDLK_PAGEDOWN, kKeyPgDn },
  71. { SDLK_KP_3, kKeyPgDn },
  72. { SDLK_HOME, kKeyHome },
  73. { SDLK_KP_7, kKeyHome },
  74. { SDLK_END, kKeyEnd },
  75. { SDLK_KP_1, kKeyEnd },
  76. { SDLK_r, kKeyRepeat },
  77. { SDLK_a, kKeyAuto },
  78. { SDLK_d, kKeyDefend },
  79. { SDLK_e, kKeyUseItem },
  80. { SDLK_w, kKeyThrowItem },
  81. { SDLK_q, kKeyFlee },
  82. { SDLK_f, kKeyForce },
  83. { SDLK_s, kKeyStatus }
  84. };
  85. static VOID
  86. PAL_KeyDown(
  87. INT key,
  88. BOOL fRepeat
  89. )
  90. /*++
  91. Purpose:
  92. Called when user pressed a key.
  93. Parameters:
  94. [IN] key - keycode of the pressed key.
  95. Return value:
  96. None.
  97. --*/
  98. {
  99. switch (key)
  100. {
  101. case kKeyUp:
  102. if (g_InputState.dir != kDirNorth && !fRepeat)
  103. {
  104. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  105. g_InputState.dir = kDirNorth;
  106. }
  107. g_InputState.dwKeyPress |= kKeyUp;
  108. break;
  109. case kKeyDown:
  110. if (g_InputState.dir != kDirSouth && !fRepeat)
  111. {
  112. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  113. g_InputState.dir = kDirSouth;
  114. }
  115. g_InputState.dwKeyPress |= kKeyDown;
  116. break;
  117. case kKeyLeft:
  118. if (g_InputState.dir != kDirWest && !fRepeat)
  119. {
  120. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  121. g_InputState.dir = kDirWest;
  122. }
  123. g_InputState.dwKeyPress |= kKeyLeft;
  124. break;
  125. case kKeyRight:
  126. if (g_InputState.dir != kDirEast && !fRepeat)
  127. {
  128. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  129. g_InputState.dir = kDirEast;
  130. }
  131. g_InputState.dwKeyPress |= kKeyRight;
  132. break;
  133. default:
  134. g_InputState.dwKeyPress |= key;
  135. break;
  136. }
  137. }
  138. static VOID
  139. PAL_KeyUp(
  140. INT key
  141. )
  142. /*++
  143. Purpose:
  144. Called when user released a key.
  145. Parameters:
  146. [IN] key - keycode of the released key.
  147. Return value:
  148. None.
  149. --*/
  150. {
  151. switch (key)
  152. {
  153. case kKeyUp:
  154. if (g_InputState.dir == kDirNorth)
  155. {
  156. g_InputState.dir = g_InputState.prevdir;
  157. }
  158. g_InputState.prevdir = kDirUnknown;
  159. break;
  160. case kKeyDown:
  161. if (g_InputState.dir == kDirSouth)
  162. {
  163. g_InputState.dir = g_InputState.prevdir;
  164. }
  165. g_InputState.prevdir = kDirUnknown;
  166. break;
  167. case kKeyLeft:
  168. if (g_InputState.dir == kDirWest)
  169. {
  170. g_InputState.dir = g_InputState.prevdir;
  171. }
  172. g_InputState.prevdir = kDirUnknown;
  173. break;
  174. case kKeyRight:
  175. if (g_InputState.dir == kDirEast)
  176. {
  177. g_InputState.dir = g_InputState.prevdir;
  178. }
  179. g_InputState.prevdir = kDirUnknown;
  180. break;
  181. default:
  182. break;
  183. }
  184. }
  185. static VOID
  186. PAL_UpdateKeyboardState(
  187. VOID
  188. )
  189. /*++
  190. Purpose:
  191. Poll & update keyboard state.
  192. Parameters:
  193. None.
  194. Return value:
  195. None.
  196. --*/
  197. {
  198. static DWORD rgdwKeyLastTime[sizeof(g_KeyMap) / sizeof(g_KeyMap[0])] = {0};
  199. LPCBYTE keyState = (LPCBYTE)SDL_GetKeyboardState(NULL);
  200. int i;
  201. DWORD dwCurrentTime = SDL_GetTicks();
  202. for (i = 0; i < sizeof(g_KeyMap) / sizeof(g_KeyMap[0]); i++)
  203. {
  204. if (keyState[SDL_GetScancodeFromKey(g_KeyMap[i][0])])
  205. {
  206. if (dwCurrentTime > rgdwKeyLastTime[i])
  207. {
  208. PAL_KeyDown(g_KeyMap[i][1], (rgdwKeyLastTime[i] != 0));
  209. if (gConfig.fEnableKeyRepeat)
  210. {
  211. rgdwKeyLastTime[i] = dwCurrentTime + (rgdwKeyLastTime[i] == 0 ? 200 : 75);
  212. }
  213. else
  214. {
  215. rgdwKeyLastTime[i] = 0xFFFFFFFF;
  216. }
  217. }
  218. }
  219. else
  220. {
  221. if (rgdwKeyLastTime[i] != 0)
  222. {
  223. PAL_KeyUp(g_KeyMap[i][1]);
  224. rgdwKeyLastTime[i] = 0;
  225. }
  226. }
  227. }
  228. }
  229. static VOID
  230. PAL_KeyboardEventFilter(
  231. const SDL_Event *lpEvent
  232. )
  233. /*++
  234. Purpose:
  235. Handle keyboard events.
  236. Parameters:
  237. [IN] lpEvent - pointer to the event.
  238. Return value:
  239. None.
  240. --*/
  241. {
  242. if (lpEvent->type == SDL_KEYDOWN)
  243. {
  244. //
  245. // Pressed a key
  246. //
  247. if (lpEvent->key.keysym.mod & KMOD_ALT)
  248. {
  249. if (lpEvent->key.keysym.sym == SDLK_RETURN)
  250. {
  251. //
  252. // Pressed Alt+Enter (toggle fullscreen)...
  253. //
  254. VIDEO_ToggleFullscreen();
  255. return;
  256. }
  257. else if (lpEvent->key.keysym.sym == SDLK_F4)
  258. {
  259. //
  260. // Pressed Alt+F4 (Exit program)...
  261. //
  262. PAL_Shutdown(0);
  263. }
  264. }
  265. else if (lpEvent->key.keysym.sym == SDLK_p)
  266. {
  267. VIDEO_SaveScreenshot();
  268. }
  269. }
  270. }
  271. static VOID
  272. PAL_MouseEventFilter(
  273. const SDL_Event *lpEvent
  274. )
  275. /*++
  276. Purpose:
  277. Handle mouse events.
  278. Parameters:
  279. [IN] lpEvent - pointer to the event.
  280. Return value:
  281. None.
  282. --*/
  283. {
  284. #if PAL_HAS_MOUSE
  285. static short hitTest = 0; // Double click detect;
  286. const SDL_VideoInfo *vi;
  287. double screenWidth, gridWidth;
  288. double screenHeight, gridHeight;
  289. double mx, my;
  290. double thumbx;
  291. double thumby;
  292. INT gridIndex;
  293. BOOL isLeftMouseDBClick = FALSE;
  294. BOOL isLeftMouseClick = FALSE;
  295. BOOL isRightMouseClick = FALSE;
  296. static INT lastReleaseButtonTime, lastPressButtonTime, betweenTime;
  297. static INT lastPressx = 0;
  298. static INT lastPressy = 0;
  299. static INT lastReleasex = 0;
  300. static INT lastReleasey = 0;
  301. if (lpEvent->type!= SDL_MOUSEBUTTONDOWN && lpEvent->type != SDL_MOUSEBUTTONUP)
  302. return;
  303. vi = SDL_GetVideoInfo();
  304. screenWidth = vi->current_w;
  305. screenHeight = vi->current_h;
  306. gridWidth = screenWidth / 3;
  307. gridHeight = screenHeight / 3;
  308. mx = lpEvent->button.x;
  309. my = lpEvent->button.y;
  310. thumbx = ceil(mx / gridWidth);
  311. thumby = floor(my / gridHeight);
  312. gridIndex = thumbx + thumby * 3 - 1;
  313. switch (lpEvent->type)
  314. {
  315. case SDL_MOUSEBUTTONDOWN:
  316. lastPressButtonTime = SDL_GetTicks();
  317. lastPressx = lpEvent->button.x;
  318. lastPressy = lpEvent->button.y;
  319. switch (gridIndex)
  320. {
  321. case 2:
  322. g_InputState.prevdir = g_InputState.dir;
  323. g_InputState.dir = kDirNorth;
  324. break;
  325. case 6:
  326. g_InputState.prevdir = g_InputState.dir;
  327. g_InputState.dir = kDirSouth;
  328. break;
  329. case 0:
  330. g_InputState.prevdir = g_InputState.dir;
  331. g_InputState.dir = kDirWest;
  332. break;
  333. case 8:
  334. g_InputState.prevdir = g_InputState.dir;
  335. g_InputState.dir = kDirEast;
  336. break;
  337. case 1:
  338. //g_InputState.prevdir = g_InputState.dir;
  339. //g_InputState.dir = kDirNorth;
  340. g_InputState.dwKeyPress |= kKeyUp;
  341. break;
  342. case 7:
  343. //g_InputState.prevdir = g_InputState.dir;
  344. //g_InputState.dir = kDirSouth;
  345. g_InputState.dwKeyPress |= kKeyDown;
  346. break;
  347. case 3:
  348. //g_InputState.prevdir = g_InputState.dir;
  349. //g_InputState.dir = kDirWest;
  350. g_InputState.dwKeyPress |= kKeyLeft;
  351. break;
  352. case 5:
  353. //g_InputState.prevdir = g_InputState.dir;
  354. //g_InputState.dir = kDirEast;
  355. g_InputState.dwKeyPress |= kKeyRight;
  356. break;
  357. }
  358. break;
  359. case SDL_MOUSEBUTTONUP:
  360. lastReleaseButtonTime = SDL_GetTicks();
  361. lastReleasex = lpEvent->button.x;
  362. lastReleasey = lpEvent->button.y;
  363. hitTest ++;
  364. if (abs(lastPressx - lastReleasex) < 25 &&
  365. abs(lastPressy - lastReleasey) < 25)
  366. {
  367. betweenTime = lastReleaseButtonTime - lastPressButtonTime;
  368. if (betweenTime >500)
  369. {
  370. isRightMouseClick = TRUE;
  371. }
  372. else if (betweenTime >=0)
  373. {
  374. if((betweenTime < 100) && (hitTest >= 2))
  375. {
  376. isLeftMouseClick = TRUE;
  377. hitTest = 0;
  378. }
  379. else
  380. {
  381. isLeftMouseClick = TRUE;
  382. if(betweenTime > 100)
  383. {
  384. hitTest = 0;
  385. }
  386. }
  387. }
  388. }
  389. switch (gridIndex)
  390. {
  391. case 2:
  392. if( isLeftMouseDBClick )
  393. {
  394. AUDIO_IncreaseVolume();
  395. break;
  396. }
  397. case 6:
  398. case 0:
  399. if( isLeftMouseDBClick )
  400. {
  401. AUDIO_DecreaseVolume();
  402. break;
  403. }
  404. case 7:
  405. if (isRightMouseClick) //repeat attack
  406. {
  407. g_InputState.dwKeyPress |= kKeyRepeat;
  408. break;
  409. }
  410. case 8:
  411. g_InputState.dir = kDirUnknown;
  412. g_InputState.prevdir = kDirUnknown;
  413. break;
  414. case 1:
  415. if( isRightMouseClick )
  416. {
  417. g_InputState.dwKeyPress |= kKeyForce;
  418. }
  419. break;
  420. case 3:
  421. if( isRightMouseClick )
  422. {
  423. g_InputState.dwKeyPress |= kKeyAuto;
  424. }
  425. break;
  426. case 5:
  427. if( isRightMouseClick )
  428. {
  429. g_InputState.dwKeyPress |= kKeyDefend;
  430. }
  431. break;
  432. case 4:
  433. if (isRightMouseClick) // menu
  434. {
  435. g_InputState.dwKeyPress |= kKeyMenu;
  436. }
  437. else if (isLeftMouseClick) // search
  438. {
  439. g_InputState.dwKeyPress |= kKeySearch;
  440. }
  441. break;
  442. }
  443. break;
  444. }
  445. #endif
  446. }
  447. static VOID
  448. PAL_JoystickEventFilter(
  449. const SDL_Event *lpEvent
  450. )
  451. /*++
  452. Purpose:
  453. Handle joystick events.
  454. Parameters:
  455. [IN] lpEvent - pointer to the event.
  456. Return value:
  457. None.
  458. --*/
  459. {
  460. #if PAL_HAS_JOYSTICKS
  461. switch (lpEvent->type)
  462. {
  463. case SDL_JOYAXISMOTION:
  464. g_InputState.joystickNeedUpdate = TRUE;
  465. //
  466. // Moved an axis on joystick
  467. //
  468. switch (lpEvent->jaxis.axis)
  469. {
  470. case 0:
  471. //
  472. // X axis
  473. //
  474. if (lpEvent->jaxis.value > 3200)
  475. {
  476. g_InputState.axisX = 1;
  477. }
  478. else if (lpEvent->jaxis.value < -3200)
  479. {
  480. g_InputState.axisX = -1;
  481. }
  482. else
  483. {
  484. g_InputState.axisX = 0;
  485. }
  486. break;
  487. case 1:
  488. //
  489. // Y axis
  490. //
  491. if (lpEvent->jaxis.value > 3200)
  492. {
  493. g_InputState.axisY = 1;
  494. }
  495. else if (lpEvent->jaxis.value < -3200)
  496. {
  497. g_InputState.axisY = -1;
  498. }
  499. else
  500. {
  501. g_InputState.axisY = 0;
  502. }
  503. break;
  504. }
  505. break;
  506. case SDL_JOYHATMOTION:
  507. //
  508. // Pressed the joystick hat button
  509. //
  510. switch (lpEvent->jhat.value)
  511. {
  512. case SDL_HAT_LEFT:
  513. case SDL_HAT_LEFTUP:
  514. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  515. g_InputState.dir = kDirWest;
  516. g_InputState.dwKeyPress = kKeyLeft;
  517. break;
  518. case SDL_HAT_RIGHT:
  519. case SDL_HAT_RIGHTDOWN:
  520. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  521. g_InputState.dir = kDirEast;
  522. g_InputState.dwKeyPress = kKeyRight;
  523. break;
  524. case SDL_HAT_UP:
  525. case SDL_HAT_RIGHTUP:
  526. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  527. g_InputState.dir = kDirNorth;
  528. g_InputState.dwKeyPress = kKeyUp;
  529. break;
  530. case SDL_HAT_DOWN:
  531. case SDL_HAT_LEFTDOWN:
  532. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  533. g_InputState.dir = kDirSouth;
  534. g_InputState.dwKeyPress = kKeyDown;
  535. break;
  536. case SDL_HAT_CENTERED:
  537. g_InputState.prevdir = (gpGlobals->fInBattle ? kDirUnknown : g_InputState.dir);
  538. g_InputState.dir = kDirUnknown;
  539. g_InputState.dwKeyPress = kKeyNone;
  540. break;
  541. }
  542. break;
  543. case SDL_JOYBUTTONDOWN:
  544. //
  545. // Pressed the joystick button
  546. //
  547. switch (lpEvent->jbutton.button & 1)
  548. {
  549. case 0:
  550. g_InputState.dwKeyPress |= kKeyMenu;
  551. break;
  552. case 1:
  553. g_InputState.dwKeyPress |= kKeySearch;
  554. break;
  555. }
  556. break;
  557. }
  558. #endif
  559. }
  560. #if PAL_HAS_JOYSTICKS
  561. static VOID
  562. PAL_UpdateJoyStickState(
  563. VOID
  564. )
  565. /*++
  566. Purpose:
  567. Poll & update joystick state.
  568. Parameters:
  569. None.
  570. Return value:
  571. None.
  572. --*/
  573. {
  574. if( g_InputState.axisX == 1 && g_InputState.axisY >= 0 )
  575. {
  576. g_InputState.prevdir = g_InputState.dir;
  577. g_InputState.dir = kDirEast;
  578. g_InputState.dwKeyPress |= kKeyRight;
  579. }
  580. else if( g_InputState.axisX == -1 && g_InputState.axisY <= 0 )
  581. {
  582. g_InputState.prevdir = g_InputState.dir;
  583. g_InputState.dir = kDirWest;
  584. g_InputState.dwKeyPress |= kKeyLeft;
  585. }
  586. else if( g_InputState.axisY == 1 && g_InputState.axisX <= 0 )
  587. {
  588. g_InputState.prevdir = g_InputState.dir;
  589. g_InputState.dir = kDirSouth;
  590. g_InputState.dwKeyPress |= kKeyDown;
  591. }
  592. else if( g_InputState.axisY == -1 && g_InputState.axisX >= 0 )
  593. {
  594. g_InputState.prevdir = g_InputState.dir;
  595. g_InputState.dir = kDirNorth;
  596. g_InputState.dwKeyPress |= kKeyUp;
  597. }
  598. else
  599. {
  600. g_InputState.prevdir = g_InputState.dir;
  601. g_InputState.dir = kDirUnknown;
  602. if(!input_event_filter)
  603. g_InputState.dwKeyPress = kKeyNone;
  604. }
  605. }
  606. #endif
  607. #if PAL_HAS_TOUCH
  608. #define TOUCH_NONE 0
  609. #define TOUCH_UP 1
  610. #define TOUCH_DOWN 2
  611. #define TOUCH_LEFT 3
  612. #define TOUCH_RIGHT 4
  613. #define TOUCH_BUTTON1 5
  614. #define TOUCH_BUTTON2 6
  615. #define TOUCH_BUTTON3 7
  616. #define TOUCH_BUTTON4 8
  617. static float gfTouchXMin = 0.0f;
  618. static float gfTouchXMax = 1.0f;
  619. static float gfTouchYMin = 0.0f;
  620. static float gfTouchYMax = 1.0f;
  621. static SDL_TouchID gFinger1 = -1, gFinger2 = -1;
  622. static DWORD g_dwFinger1Time = 0, g_dwFinger2Time = 0;
  623. static int g_iPrevTouch1 = TOUCH_NONE;
  624. static int g_iPrevTouch2 = TOUCH_NONE;
  625. VOID
  626. PAL_SetTouchBounds(
  627. DWORD dwScreenWidth,
  628. DWORD dwScreenHeight,
  629. SDL_Rect renderRect
  630. )
  631. {
  632. gfTouchXMin = (float)renderRect.x / dwScreenWidth;
  633. gfTouchXMax = (float)(renderRect.x + renderRect.w) / dwScreenWidth;
  634. gfTouchYMin = (float)renderRect.y / dwScreenHeight;
  635. gfTouchYMax = (float)(renderRect.y + renderRect.h) / dwScreenHeight;
  636. }
  637. static int
  638. PAL_GetTouchArea(
  639. float X,
  640. float Y
  641. )
  642. {
  643. if (X < gfTouchXMin || X > gfTouchXMax || Y < 0.5f || Y > gfTouchYMax)
  644. {
  645. //
  646. // Upper area or cropped area
  647. //
  648. return TOUCH_NONE;
  649. }
  650. else
  651. {
  652. X = (X - gfTouchXMin) / (gfTouchXMax - gfTouchXMin);
  653. Y = (Y - gfTouchYMin) / (gfTouchYMax - gfTouchYMin);
  654. }
  655. if (X < 1.0f / 3)
  656. {
  657. if (Y - 0.5f < (1.0f / 6 - fabsf(X - 1.0f / 3 / 2)) * (0.5f / (1.0f / 3)))
  658. {
  659. return TOUCH_UP;
  660. }
  661. else if (Y - 0.75f > fabsf(X - 1.0f / 3 / 2) * (0.5f / (1.0f / 3)))
  662. {
  663. return TOUCH_DOWN;
  664. }
  665. else if (X < 1.0f / 3 / 2 && fabsf(Y - 0.75f) < 0.25f - X * (0.5f / (1.0f / 3)))
  666. {
  667. return TOUCH_LEFT;
  668. }
  669. else
  670. {
  671. return TOUCH_RIGHT;
  672. }
  673. }
  674. else if (X > 1.0f - 1.0f / 3)
  675. {
  676. if (X < 1.0f - (1.0f / 3 / 2))
  677. {
  678. if (Y < 0.75f)
  679. {
  680. return TOUCH_BUTTON1;
  681. }
  682. else
  683. {
  684. return TOUCH_BUTTON3;
  685. }
  686. }
  687. else
  688. {
  689. if (Y < 0.75f)
  690. {
  691. return TOUCH_BUTTON2;
  692. }
  693. else
  694. {
  695. return TOUCH_BUTTON4;
  696. }
  697. }
  698. }
  699. else
  700. {
  701. return TOUCH_NONE;
  702. }
  703. }
  704. static VOID
  705. PAL_SetTouchAction(
  706. int area
  707. )
  708. {
  709. switch (area)
  710. {
  711. case TOUCH_UP:
  712. g_InputState.dir = kDirNorth;
  713. g_InputState.dwKeyPress |= kKeyUp;
  714. break;
  715. case TOUCH_DOWN:
  716. g_InputState.dir = kDirSouth;
  717. g_InputState.dwKeyPress |= kKeyDown;
  718. break;
  719. case TOUCH_LEFT:
  720. g_InputState.dir = kDirWest;
  721. g_InputState.dwKeyPress |= kKeyLeft;
  722. break;
  723. case TOUCH_RIGHT:
  724. g_InputState.dir = kDirEast;
  725. g_InputState.dwKeyPress |= kKeyRight;
  726. break;
  727. case TOUCH_BUTTON1:
  728. g_InputState.dwKeyPress |= kKeyForce;
  729. break;
  730. case TOUCH_BUTTON2:
  731. g_InputState.dwKeyPress |= kKeyMenu;
  732. break;
  733. case TOUCH_BUTTON3:
  734. if (gpGlobals->fInBattle)
  735. {
  736. g_InputState.dwKeyPress |= kKeyRepeat;
  737. }
  738. else
  739. {
  740. g_InputState.dwKeyPress |= kKeyUseItem;
  741. }
  742. break;
  743. case TOUCH_BUTTON4:
  744. g_InputState.dwKeyPress |= kKeySearch;
  745. break;
  746. }
  747. }
  748. static VOID
  749. PAL_UnsetTouchAction(
  750. int area
  751. )
  752. {
  753. switch (area)
  754. {
  755. case TOUCH_UP:
  756. case TOUCH_DOWN:
  757. case TOUCH_LEFT:
  758. case TOUCH_RIGHT:
  759. g_InputState.dir = kDirUnknown;
  760. break;
  761. }
  762. }
  763. static VOID
  764. PAL_TouchRepeatCheck(
  765. VOID
  766. )
  767. {
  768. if (gFinger1 != -1 && SDL_GetTicks() > g_dwFinger1Time)
  769. {
  770. PAL_UnsetTouchAction(g_iPrevTouch1);
  771. PAL_SetTouchAction(g_iPrevTouch1);
  772. g_dwFinger1Time = SDL_GetTicks() + 120;
  773. }
  774. if (gFinger2 != -1 && SDL_GetTicks() > g_dwFinger2Time)
  775. {
  776. PAL_UnsetTouchAction(g_iPrevTouch2);
  777. PAL_SetTouchAction(g_iPrevTouch2);
  778. g_dwFinger2Time = SDL_GetTicks() + 120;
  779. }
  780. }
  781. #endif
  782. static VOID
  783. PAL_TouchEventFilter(
  784. const SDL_Event *lpEvent
  785. )
  786. /*++
  787. Purpose:
  788. Handle touch events.
  789. Parameters:
  790. [IN] lpEvent - pointer to the event.
  791. Return value:
  792. None.
  793. --*/
  794. {
  795. #if PAL_HAS_TOUCH
  796. switch (lpEvent->type)
  797. {
  798. case SDL_FINGERDOWN:
  799. if (gFinger1 == -1)
  800. {
  801. int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
  802. gFinger1 = lpEvent->tfinger.fingerId;
  803. g_iPrevTouch1 = area;
  804. PAL_SetTouchAction(area);
  805. g_dwFinger1Time = SDL_GetTicks() + 500;
  806. }
  807. else if (gFinger2 == -1)
  808. {
  809. int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
  810. gFinger2 = lpEvent->tfinger.fingerId;
  811. g_iPrevTouch2 = area;
  812. PAL_SetTouchAction(area);
  813. g_dwFinger2Time = SDL_GetTicks() + 500;
  814. }
  815. break;
  816. case SDL_FINGERUP:
  817. if (lpEvent->tfinger.fingerId == gFinger1)
  818. {
  819. PAL_UnsetTouchAction(g_iPrevTouch1);
  820. gFinger1 = -1;
  821. g_iPrevTouch1 = TOUCH_NONE;
  822. }
  823. else if (lpEvent->tfinger.fingerId == gFinger2)
  824. {
  825. PAL_UnsetTouchAction(g_iPrevTouch2);
  826. gFinger2 = -1;
  827. g_iPrevTouch2 = TOUCH_NONE;
  828. }
  829. break;
  830. case SDL_FINGERMOTION:
  831. if (lpEvent->tfinger.fingerId == gFinger1)
  832. {
  833. int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
  834. if (g_iPrevTouch1 != area && area != TOUCH_NONE)
  835. {
  836. PAL_UnsetTouchAction(g_iPrevTouch1);
  837. g_iPrevTouch1 = area;
  838. PAL_SetTouchAction(area);
  839. g_dwFinger1Time = SDL_GetTicks() + 500;
  840. }
  841. }
  842. else if (lpEvent->tfinger.fingerId == gFinger2)
  843. {
  844. int area = PAL_GetTouchArea(lpEvent->tfinger.x, lpEvent->tfinger.y);
  845. if (g_iPrevTouch2 != area && area != TOUCH_NONE)
  846. {
  847. PAL_UnsetTouchAction(g_iPrevTouch2);
  848. g_iPrevTouch2 = area;
  849. PAL_SetTouchAction(area);
  850. g_dwFinger2Time = SDL_GetTicks() + 500;
  851. }
  852. }
  853. break;
  854. }
  855. #endif
  856. }
  857. static int SDLCALL
  858. PAL_EventFilter(
  859. const SDL_Event *lpEvent
  860. )
  861. /*++
  862. Purpose:
  863. SDL event filter function. A filter to process all events.
  864. Parameters:
  865. [IN] lpEvent - pointer to the event.
  866. Return value:
  867. 1 = the event will be added to the internal queue.
  868. 0 = the event will be dropped from the queue.
  869. --*/
  870. {
  871. switch (lpEvent->type)
  872. {
  873. #if SDL_VERSION_ATLEAST(2,0,0)
  874. case SDL_WINDOWEVENT:
  875. if (lpEvent->window.event == SDL_WINDOWEVENT_RESIZED)
  876. {
  877. //
  878. // resized the window
  879. //
  880. VIDEO_Resize(lpEvent->window.data1, lpEvent->window.data2);
  881. }
  882. break;
  883. case SDL_APP_WILLENTERBACKGROUND:
  884. g_bRenderPaused = TRUE;
  885. break;
  886. case SDL_APP_DIDENTERFOREGROUND:
  887. g_bRenderPaused = FALSE;
  888. VIDEO_UpdateScreen(NULL);
  889. break;
  890. #else
  891. case SDL_VIDEORESIZE:
  892. //
  893. // resized the window
  894. //
  895. VIDEO_Resize(lpEvent->resize.w, lpEvent->resize.h);
  896. break;
  897. #endif
  898. case SDL_QUIT:
  899. //
  900. // clicked on the close button of the window. Quit immediately.
  901. //
  902. PAL_Shutdown(0);
  903. }
  904. PAL_KeyboardEventFilter(lpEvent);
  905. PAL_MouseEventFilter(lpEvent);
  906. PAL_JoystickEventFilter(lpEvent);
  907. PAL_TouchEventFilter(lpEvent);
  908. //
  909. // All events are handled here; don't put anything to the internal queue
  910. //
  911. return 0;
  912. }
  913. VOID
  914. PAL_ClearKeyState(
  915. VOID
  916. )
  917. /*++
  918. Purpose:
  919. Clear the record of pressed keys.
  920. Parameters:
  921. None.
  922. Return value:
  923. None.
  924. --*/
  925. {
  926. g_InputState.dwKeyPress = 0;
  927. }
  928. VOID
  929. PAL_InitInput(
  930. VOID
  931. )
  932. /*++
  933. Purpose:
  934. Initialize the input subsystem.
  935. Parameters:
  936. None.
  937. Return value:
  938. None.
  939. --*/
  940. {
  941. memset((void *)&g_InputState, 0, sizeof(g_InputState));
  942. g_InputState.dir = kDirUnknown;
  943. g_InputState.prevdir = kDirUnknown;
  944. //
  945. // Check for joystick
  946. //
  947. #if PAL_HAS_JOYSTICKS
  948. if (SDL_NumJoysticks() > 0 && g_fUseJoystick)
  949. {
  950. int i;
  951. for (i = 0; i < SDL_NumJoysticks(); i++)
  952. {
  953. if (PAL_IS_VALID_JOYSTICK(SDL_JoystickNameForIndex(i)))
  954. {
  955. g_pJoy = SDL_JoystickOpen(i);
  956. break;
  957. }
  958. }
  959. if (g_pJoy != NULL)
  960. {
  961. SDL_JoystickEventState(SDL_ENABLE);
  962. }
  963. }
  964. #endif
  965. input_init_filter();
  966. }
  967. VOID
  968. PAL_ShutdownInput(
  969. VOID
  970. )
  971. /*++
  972. Purpose:
  973. Shutdown the input subsystem.
  974. Parameters:
  975. None.
  976. Return value:
  977. None.
  978. --*/
  979. {
  980. #if PAL_HAS_JOYSTICKS
  981. if (g_pJoy != NULL)
  982. {
  983. SDL_JoystickClose(g_pJoy);
  984. g_pJoy = NULL;
  985. }
  986. #endif
  987. input_shutdown_filter();
  988. }
  989. static int
  990. PAL_PollEvent(
  991. SDL_Event *event
  992. )
  993. /*++
  994. Purpose:
  995. Poll and process one event.
  996. Parameters:
  997. [OUT] event - Events polled from SDL.
  998. Return value:
  999. Return value of PAL_PollEvent.
  1000. --*/
  1001. {
  1002. SDL_Event evt;
  1003. int ret = SDL_PollEvent(&evt);
  1004. if (ret != 0 && !input_event_filter(&evt, &g_InputState))
  1005. {
  1006. PAL_EventFilter(&evt);
  1007. }
  1008. if (event != NULL)
  1009. {
  1010. *event = evt;
  1011. }
  1012. return ret;
  1013. }
  1014. VOID
  1015. PAL_ProcessEvent(
  1016. VOID
  1017. )
  1018. /*++
  1019. Purpose:
  1020. Process all events.
  1021. Parameters:
  1022. None.
  1023. Return value:
  1024. None.
  1025. --*/
  1026. {
  1027. #if PAL_HAS_JOYSTICKS
  1028. g_InputState.joystickNeedUpdate = FALSE;
  1029. #endif
  1030. while (PAL_PollEvent(NULL));
  1031. PAL_UpdateKeyboardState();
  1032. #if PAL_HAS_JOYSTICKS
  1033. if(g_InputState.joystickNeedUpdate)
  1034. PAL_UpdateJoyStickState();
  1035. #endif
  1036. #if PAL_HAS_TOUCH
  1037. PAL_TouchRepeatCheck();
  1038. #endif
  1039. }
  1040. VOID
  1041. PAL_RegisterInputFilter(
  1042. void (*init_filter)(),
  1043. int (*event_filter)(const SDL_Event *, volatile PALINPUTSTATE *),
  1044. void (*shutdown_filter)()
  1045. )
  1046. /*++
  1047. Purpose:
  1048. Register caller-defined input event filter.
  1049. Parameters:
  1050. [IN] init_filter - Filter that will be called inside PAL_InitInput
  1051. [IN] event_filter - Filter that will be called inside PAL_PollEvent,
  1052. return non-zero value from this filter disables
  1053. further internal event processing.
  1054. [IN] shutdown_filter - Filter that will be called inside PAL_ShutdownInput
  1055. Passing NULL to either parameter means the caller does not provide such filter.
  1056. Return value:
  1057. None.
  1058. --*/
  1059. {
  1060. if (init_filter)
  1061. input_init_filter = init_filter;
  1062. if (event_filter)
  1063. input_event_filter = event_filter;
  1064. if (shutdown_filter)
  1065. input_shutdown_filter = shutdown_filter;
  1066. }