video.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 3; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // All rights reserved.
  5. //
  6. // This file is part of SDLPAL.
  7. //
  8. // SDLPAL is free software: you can redistribute it and/or modify
  9. // it under the terms of the GNU General Public License as published by
  10. // the Free Software Foundation, either version 3 of the License, or
  11. // (at your option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // GNU General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU General Public License
  19. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. //
  21. #include "main.h"
  22. // Screen buffer
  23. SDL_Surface *gpScreen = NULL;
  24. // Backup screen buffer
  25. SDL_Surface *gpScreenBak = NULL;
  26. // The real screen surface
  27. #if SDL_VERSION_ATLEAST(2,0,0)
  28. static SDL_Window *gpWindow = NULL;
  29. static SDL_Renderer *gpRenderer = NULL;
  30. static SDL_Texture *gpTouchOverlay = NULL;
  31. #else
  32. static SDL_Surface *gpScreenReal = NULL;
  33. #endif
  34. volatile BOOL g_bRenderPaused = FALSE;
  35. #if !SDL_VERSION_ATLEAST(2, 0, 0)
  36. #if (defined (__SYMBIAN32__) && !defined (__S60_5X__)) || defined (PSP) || defined (GEKKO)
  37. static BOOL bScaleScreen = FALSE;
  38. #else
  39. static BOOL bScaleScreen = TRUE;
  40. #endif
  41. #endif
  42. // Initial screen size
  43. static WORD g_wInitialWidth = 640;
  44. static WORD g_wInitialHeight = 400;
  45. // Shake times and level
  46. static WORD g_wShakeTime = 0;
  47. static WORD g_wShakeLevel = 0;
  48. INT
  49. #ifdef GEKKO // Rikku2000: Crash on compile, allready define on WIISDK
  50. VIDEO_Init_GEKKO(
  51. #else
  52. VIDEO_Init(
  53. #endif
  54. WORD wScreenWidth,
  55. WORD wScreenHeight,
  56. BOOL fFullScreen
  57. )
  58. /*++
  59. Purpose:
  60. Initialze the video subsystem.
  61. Parameters:
  62. [IN] wScreenWidth - width of the screen.
  63. [IN] wScreenHeight - height of the screen.
  64. [IN] fFullScreen - TRUE to use full screen mode, FALSE to use windowed mode.
  65. Return value:
  66. 0 = success, -1 = fail to create the screen surface,
  67. -2 = fail to create screen buffer.
  68. --*/
  69. {
  70. #if SDL_VERSION_ATLEAST(2,0,0)
  71. SDL_Surface *overlay;
  72. #endif
  73. g_wInitialWidth = wScreenWidth;
  74. g_wInitialHeight = wScreenHeight;
  75. #if SDL_VERSION_ATLEAST(2,0,0)
  76. //
  77. // Before we can render anything, we need a window and a renderer.
  78. //
  79. #if defined (__IOS__) || defined (__ANDROID__)
  80. gpWindow = SDL_CreateWindow("Pal",
  81. SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, wScreenWidth, wScreenHeight,
  82. SDL_WINDOW_SHOWN);
  83. #else
  84. gpWindow = SDL_CreateWindow("Pal",
  85. SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, wScreenWidth, wScreenHeight,
  86. SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE);
  87. #endif
  88. if (gpWindow == NULL)
  89. {
  90. return -1;
  91. }
  92. gpRenderer = SDL_CreateRenderer(gpWindow, -1, SDL_RENDERER_ACCELERATED);
  93. if (gpRenderer == NULL)
  94. {
  95. return -1;
  96. }
  97. #if defined (__IOS__)
  98. SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
  99. SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 1);
  100. #endif
  101. //
  102. // Create the screen buffer and the backup screen buffer.
  103. //
  104. gpScreen = SDL_CreateRGBSurface(SDL_SWSURFACE, 320, 200, 8, 0, 0, 0, 0);
  105. gpScreenBak = SDL_CreateRGBSurface(SDL_SWSURFACE, 320, 200, 8, 0, 0, 0, 0);
  106. //
  107. // Failed?
  108. //
  109. if (gpScreen == NULL || gpScreenBak == NULL)
  110. {
  111. if (gpScreen != NULL)
  112. {
  113. SDL_FreeSurface(gpScreen);
  114. gpScreen = NULL;
  115. }
  116. if (gpScreenBak != NULL)
  117. {
  118. SDL_FreeSurface(gpScreenBak);
  119. gpScreenBak = NULL;
  120. }
  121. SDL_DestroyRenderer(gpRenderer);
  122. gpRenderer = NULL;
  123. SDL_DestroyWindow(gpWindow);
  124. gpWindow = NULL;
  125. return -2;
  126. }
  127. overlay = SDL_LoadBMP(PAL_PREFIX "overlay.bmp");
  128. if (overlay != NULL)
  129. {
  130. SDL_SetColorKey(overlay, SDL_RLEACCEL, SDL_MapRGB(overlay->format, 255, 0, 255));
  131. gpTouchOverlay = SDL_CreateTextureFromSurface(gpRenderer, overlay);
  132. SDL_SetTextureAlphaMod(gpTouchOverlay, 120);
  133. SDL_FreeSurface(overlay);
  134. }
  135. #else
  136. //
  137. // Create the screen surface.
  138. //
  139. #if defined (NDS)
  140. gpScreenReal = SDL_SetVideoMode(293, 196, 8, SDL_SWSURFACE | SDL_FULLSCREEN);
  141. #elif defined (__SYMBIAN32__)
  142. #ifdef __S60_5X__
  143. gpScreenReal = SDL_SetVideoMode(640, 360, 8,
  144. SDL_SWSURFACE | (fFullScreen ? SDL_FULLSCREEN : 0));
  145. #else
  146. gpScreenReal = SDL_SetVideoMode(320, 240, 8,
  147. SDL_SWSURFACE | (fFullScreen ? SDL_FULLSCREEN : 0));
  148. #endif
  149. #elif defined (GEKKO)
  150. gpScreenReal = SDL_SetVideoMode(640, 480, 8,
  151. SDL_SWSURFACE | (fFullScreen ? SDL_FULLSCREEN : 0));
  152. #elif defined (PSP)
  153. gpScreenReal = SDL_SetVideoMode(320, 240, 8, SDL_SWSURFACE | SDL_FULLSCREEN);
  154. #else
  155. gpScreenReal = SDL_SetVideoMode(wScreenWidth, wScreenHeight, 8,
  156. SDL_HWSURFACE | SDL_RESIZABLE | (fFullScreen ? SDL_FULLSCREEN : 0));
  157. #endif
  158. if (gpScreenReal == NULL)
  159. {
  160. //
  161. // Fall back to 640x480 software mode.
  162. //
  163. gpScreenReal = SDL_SetVideoMode(640, 480, 8,
  164. SDL_SWSURFACE | (fFullScreen ? SDL_FULLSCREEN : 0));
  165. }
  166. //
  167. // Still fail?
  168. //
  169. if (gpScreenReal == NULL)
  170. {
  171. return -1;
  172. }
  173. //
  174. // Create the screen buffer and the backup screen buffer.
  175. //
  176. gpScreen = SDL_CreateRGBSurface(gpScreenReal->flags & ~SDL_HWSURFACE, 320, 200, 8,
  177. gpScreenReal->format->Rmask, gpScreenReal->format->Gmask,
  178. gpScreenReal->format->Bmask, gpScreenReal->format->Amask);
  179. gpScreenBak = SDL_CreateRGBSurface(gpScreenReal->flags & ~SDL_HWSURFACE, 320, 200, 8,
  180. gpScreenReal->format->Rmask, gpScreenReal->format->Gmask,
  181. gpScreenReal->format->Bmask, gpScreenReal->format->Amask);
  182. //
  183. // Failed?
  184. //
  185. if (gpScreen == NULL || gpScreenBak == NULL)
  186. {
  187. if (gpScreen != NULL)
  188. {
  189. SDL_FreeSurface(gpScreen);
  190. gpScreen = NULL;
  191. }
  192. if (gpScreenBak != NULL)
  193. {
  194. SDL_FreeSurface(gpScreenBak);
  195. gpScreenBak = NULL;
  196. }
  197. SDL_FreeSurface(gpScreenReal);
  198. gpScreenReal = NULL;
  199. return -2;
  200. }
  201. #endif
  202. if (fFullScreen)
  203. {
  204. SDL_ShowCursor(FALSE);
  205. }
  206. return 0;
  207. }
  208. VOID
  209. VIDEO_Shutdown(
  210. VOID
  211. )
  212. /*++
  213. Purpose:
  214. Shutdown the video subsystem.
  215. Parameters:
  216. None.
  217. Return value:
  218. None.
  219. --*/
  220. {
  221. if (gpScreen != NULL)
  222. {
  223. SDL_FreeSurface(gpScreen);
  224. }
  225. gpScreen = NULL;
  226. if (gpScreenBak != NULL)
  227. {
  228. SDL_FreeSurface(gpScreenBak);
  229. }
  230. gpScreenBak = NULL;
  231. #if SDL_VERSION_ATLEAST(2,0,0)
  232. if (gpTouchOverlay)
  233. {
  234. SDL_DestroyTexture(gpTouchOverlay);
  235. }
  236. gpTouchOverlay = NULL;
  237. if (gpRenderer)
  238. {
  239. SDL_DestroyRenderer(gpRenderer);
  240. }
  241. gpRenderer = NULL;
  242. if (gpWindow)
  243. {
  244. SDL_DestroyWindow(gpWindow);
  245. }
  246. gpWindow = NULL;
  247. #else
  248. if (gpScreenReal != NULL)
  249. {
  250. SDL_FreeSurface(gpScreenReal);
  251. }
  252. gpScreenReal = NULL;
  253. #endif
  254. }
  255. VOID
  256. VIDEO_UpdateScreen(
  257. const SDL_Rect *lpRect
  258. )
  259. /*++
  260. Purpose:
  261. Update the screen area specified by lpRect.
  262. Parameters:
  263. [IN] lpRect - Screen area to update.
  264. Return value:
  265. None.
  266. --*/
  267. {
  268. #if SDL_VERSION_ATLEAST(2,0,0)
  269. if (!g_bRenderPaused)
  270. {
  271. SDL_Texture *pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreen);
  272. if (lpRect != NULL)
  273. {
  274. SDL_Rect viewport, dstrect;
  275. SDL_RenderGetViewport(gpRenderer, &viewport);
  276. dstrect.x = (SHORT)((INT)(lpRect->x) * viewport.w / gpScreen->w);
  277. dstrect.y = (SHORT)((INT)(lpRect->y) * viewport.h / gpScreen->h);
  278. dstrect.w = (WORD)((DWORD)(lpRect->w) * viewport.w / gpScreen->w);
  279. dstrect.h = (WORD)((DWORD)(lpRect->h) * viewport.h / gpScreen->h);
  280. SDL_RenderCopy(gpRenderer, pTexture, lpRect, &dstrect);
  281. if (gpTouchOverlay)
  282. {
  283. SDL_RenderCopy(gpRenderer, gpTouchOverlay, lpRect, &dstrect);
  284. }
  285. }
  286. else if (g_wShakeTime != 0)
  287. {
  288. //
  289. // Shake the screen
  290. //
  291. SDL_Rect srcrect, dstrect, viewport;
  292. SDL_RenderGetViewport(gpRenderer, &viewport);
  293. srcrect.x = 0;
  294. srcrect.y = 0;
  295. srcrect.w = 320;
  296. srcrect.h = 200 - g_wShakeLevel;
  297. dstrect.x = 0;
  298. dstrect.y = 0;
  299. dstrect.w = 320 * viewport.w / gpScreen->w;
  300. dstrect.h = (200 - g_wShakeLevel) * viewport.h / gpScreen->h;
  301. if (g_wShakeTime & 1)
  302. {
  303. srcrect.y = g_wShakeLevel;
  304. }
  305. else
  306. {
  307. dstrect.y = g_wShakeLevel * viewport.h / gpScreen->h;
  308. }
  309. SDL_RenderClear(gpRenderer);
  310. SDL_RenderCopy(gpRenderer, pTexture, &srcrect, &dstrect);
  311. if (gpTouchOverlay)
  312. {
  313. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  314. }
  315. g_wShakeTime--;
  316. }
  317. else
  318. {
  319. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  320. if (gpTouchOverlay)
  321. {
  322. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  323. }
  324. }
  325. SDL_RenderPresent(gpRenderer);
  326. SDL_DestroyTexture(pTexture);
  327. }
  328. #else
  329. SDL_Rect srcrect, dstrect;
  330. short offset = 240 - 200;
  331. short screenRealHeight = gpScreenReal->h;
  332. short screenRealY = 0;
  333. //
  334. // Lock surface if needed
  335. //
  336. if (SDL_MUSTLOCK(gpScreenReal))
  337. {
  338. if (SDL_LockSurface(gpScreenReal) < 0)
  339. return;
  340. }
  341. if (!bScaleScreen)
  342. {
  343. screenRealHeight -= offset;
  344. screenRealY = offset / 2;
  345. }
  346. if (lpRect != NULL)
  347. {
  348. dstrect.x = (SHORT)((INT)(lpRect->x) * gpScreenReal->w / gpScreen->w);
  349. dstrect.y = (SHORT)((INT)(screenRealY + lpRect->y) * screenRealHeight / gpScreen->h);
  350. dstrect.w = (WORD)((DWORD)(lpRect->w) * gpScreenReal->w / gpScreen->w);
  351. dstrect.h = (WORD)((DWORD)(lpRect->h) * screenRealHeight / gpScreen->h);
  352. SDL_SoftStretch(gpScreen, (SDL_Rect *)lpRect, gpScreenReal, &dstrect);
  353. if (SDL_MUSTLOCK(gpScreenReal))
  354. {
  355. SDL_UnlockSurface(gpScreenReal);
  356. }
  357. SDL_UpdateRect(gpScreenReal, dstrect.x, dstrect.y, dstrect.w, dstrect.h);
  358. }
  359. else if (g_wShakeTime != 0)
  360. {
  361. //
  362. // Shake the screen
  363. //
  364. srcrect.x = 0;
  365. srcrect.y = 0;
  366. srcrect.w = 320;
  367. srcrect.h = 200 - g_wShakeLevel;
  368. dstrect.x = 0;
  369. dstrect.y = screenRealY;
  370. dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
  371. dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  372. if (g_wShakeTime & 1)
  373. {
  374. srcrect.y = g_wShakeLevel;
  375. }
  376. else
  377. {
  378. dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
  379. }
  380. SDL_SoftStretch(gpScreen, &srcrect, gpScreenReal, &dstrect);
  381. if (g_wShakeTime & 1)
  382. {
  383. dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  384. }
  385. else
  386. {
  387. dstrect.y = screenRealY;
  388. }
  389. dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
  390. SDL_FillRect(gpScreenReal, &dstrect, 0);
  391. if (SDL_MUSTLOCK(gpScreenReal))
  392. {
  393. SDL_UnlockSurface(gpScreenReal);
  394. }
  395. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  396. g_wShakeTime--;
  397. }
  398. else
  399. {
  400. dstrect.x = 0;
  401. dstrect.y = screenRealY;
  402. dstrect.w = gpScreenReal->w;
  403. dstrect.h = screenRealHeight;
  404. SDL_SoftStretch(gpScreen, NULL, gpScreenReal, &dstrect);
  405. if (SDL_MUSTLOCK(gpScreenReal))
  406. {
  407. SDL_UnlockSurface(gpScreenReal);
  408. }
  409. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  410. }
  411. #endif
  412. }
  413. VOID
  414. VIDEO_SetPalette(
  415. SDL_Color rgPalette[256]
  416. )
  417. /*++
  418. Purpose:
  419. Set the palette of the screen.
  420. Parameters:
  421. [IN] rgPalette - array of 256 colors.
  422. Return value:
  423. None.
  424. --*/
  425. {
  426. #if SDL_VERSION_ATLEAST(2,0,0)
  427. int i;
  428. SDL_Palette *palette = SDL_AllocPalette(256);
  429. if (palette == NULL)
  430. {
  431. return;
  432. }
  433. for (i = 0; i < 256; i++)
  434. {
  435. palette->colors[i] = rgPalette[i];
  436. }
  437. SDL_SetSurfacePalette(gpScreen, palette);
  438. SDL_SetSurfacePalette(gpScreenBak, palette);
  439. VIDEO_UpdateScreen(NULL);
  440. #else
  441. SDL_SetPalette(gpScreen, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
  442. SDL_SetPalette(gpScreenReal, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
  443. #if (defined (__SYMBIAN32__))
  444. {
  445. static UINT32 time = 0;
  446. if (SDL_GetTicks() - time > 50)
  447. {
  448. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  449. time = SDL_GetTicks();
  450. }
  451. }
  452. #endif
  453. #endif
  454. }
  455. VOID
  456. VIDEO_Resize(
  457. INT w,
  458. INT h
  459. )
  460. /*++
  461. Purpose:
  462. This function is called when user resized the window.
  463. Parameters:
  464. [IN] w - width of the window after resizing.
  465. [IN] h - height of the window after resizing.
  466. Return value:
  467. None.
  468. --*/
  469. {
  470. #if SDL_VERSION_ATLEAST(2,0,0)
  471. // TODO
  472. #else
  473. DWORD flags;
  474. PAL_LARGE SDL_Color palette[256];
  475. int i;
  476. //
  477. // Get the original palette.
  478. //
  479. for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
  480. {
  481. palette[i] = gpScreenReal->format->palette->colors[i];
  482. }
  483. //
  484. // Create the screen surface.
  485. //
  486. flags = gpScreenReal->flags;
  487. SDL_FreeSurface(gpScreenReal);
  488. gpScreenReal = SDL_SetVideoMode(w, h, 8, flags);
  489. if (gpScreenReal == NULL)
  490. {
  491. #ifdef __SYMBIAN32__
  492. #ifdef __S60_5X__
  493. gpScreenReal = SDL_SetVideoMode(640, 360, 8, SDL_SWSURFACE);
  494. #else
  495. gpScreenReal = SDL_SetVideoMode(320, 240, 8, SDL_SWSURFACE);
  496. #endif
  497. #else
  498. //
  499. // Fall back to 640x480 software windowed mode.
  500. //
  501. gpScreenReal = SDL_SetVideoMode(640, 480, 8, SDL_SWSURFACE);
  502. #endif
  503. }
  504. SDL_SetPalette(gpScreenReal, SDL_PHYSPAL | SDL_LOGPAL, palette, 0, i);
  505. VIDEO_UpdateScreen(NULL);
  506. #endif
  507. }
  508. SDL_Color *
  509. VIDEO_GetPalette(
  510. VOID
  511. )
  512. /*++
  513. Purpose:
  514. Get the current palette of the screen.
  515. Parameters:
  516. None.
  517. Return value:
  518. Pointer to the current palette.
  519. --*/
  520. {
  521. #if SDL_VERSION_ATLEAST(2,0,0)
  522. return gpScreen->format->palette->colors;
  523. #else
  524. return gpScreenReal->format->palette->colors;
  525. #endif
  526. }
  527. VOID
  528. VIDEO_ToggleScaleScreen(
  529. VOID
  530. )
  531. /*++
  532. Purpose:
  533. Toggle scalescreen mode.
  534. Parameters:
  535. None.
  536. Return value:
  537. None.
  538. --*/
  539. {
  540. #ifdef __SYMBIAN32__
  541. bScaleScreen = !bScaleScreen;
  542. VIDEO_Resize(320, 240);
  543. VIDEO_UpdateScreen(NULL);
  544. #endif
  545. }
  546. VOID
  547. VIDEO_ToggleFullscreen(
  548. VOID
  549. )
  550. /*++
  551. Purpose:
  552. Toggle fullscreen mode.
  553. Parameters:
  554. None.
  555. Return value:
  556. None.
  557. --*/
  558. {
  559. #if SDL_VERSION_ATLEAST(2,0,0)
  560. // TODO
  561. #else
  562. DWORD flags;
  563. PAL_LARGE SDL_Color palette[256];
  564. int i;
  565. //
  566. // Get the original palette.
  567. //
  568. for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
  569. {
  570. palette[i] = gpScreenReal->format->palette->colors[i];
  571. }
  572. //
  573. // Get the flags of the original screen surface
  574. //
  575. flags = gpScreenReal->flags;
  576. if (flags & SDL_FULLSCREEN)
  577. {
  578. //
  579. // Already in fullscreen mode. Remove the fullscreen flag.
  580. //
  581. flags &= ~SDL_FULLSCREEN;
  582. flags |= SDL_RESIZABLE;
  583. SDL_ShowCursor(TRUE);
  584. }
  585. else
  586. {
  587. //
  588. // Not in fullscreen mode. Set the fullscreen flag.
  589. //
  590. flags |= SDL_FULLSCREEN;
  591. SDL_ShowCursor(FALSE);
  592. }
  593. //
  594. // Free the original screen surface
  595. //
  596. SDL_FreeSurface(gpScreenReal);
  597. //
  598. // ... and create a new one
  599. //
  600. if (g_wInitialWidth == 640 && g_wInitialHeight == 400 && (flags & SDL_FULLSCREEN))
  601. {
  602. gpScreenReal = SDL_SetVideoMode(640, 480, 8, flags);
  603. }
  604. else if (g_wInitialWidth == 640 && g_wInitialHeight == 480 && !(flags & SDL_FULLSCREEN))
  605. {
  606. gpScreenReal = SDL_SetVideoMode(640, 400, 8, flags);
  607. }
  608. else
  609. {
  610. gpScreenReal = SDL_SetVideoMode(g_wInitialWidth, g_wInitialHeight, 8, flags);
  611. }
  612. VIDEO_SetPalette(palette);
  613. //
  614. // Update the screen
  615. //
  616. VIDEO_UpdateScreen(NULL);
  617. #endif
  618. }
  619. VOID
  620. VIDEO_SaveScreenshot(
  621. VOID
  622. )
  623. /*++
  624. Purpose:
  625. Save the screenshot of current screen to a BMP file.
  626. Parameters:
  627. None.
  628. Return value:
  629. None.
  630. --*/
  631. {
  632. int iNumBMP = 0;
  633. FILE *fp;
  634. //
  635. // Find a usable BMP filename.
  636. //
  637. for (iNumBMP = 0; iNumBMP <= 9999; iNumBMP++)
  638. {
  639. fp = fopen(va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP), "rb");
  640. if (fp == NULL)
  641. {
  642. break;
  643. }
  644. fclose(fp);
  645. }
  646. if (iNumBMP > 9999)
  647. {
  648. return;
  649. }
  650. //
  651. // Save the screenshot.
  652. //
  653. #if SDL_VERSION_ATLEAST(2,0,0)
  654. SDL_SaveBMP(gpScreen, va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP));
  655. #else
  656. SDL_SaveBMP(gpScreenReal, va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP));
  657. #endif
  658. }
  659. VOID
  660. VIDEO_BackupScreen(
  661. VOID
  662. )
  663. /*++
  664. Purpose:
  665. Backup the screen buffer.
  666. Parameters:
  667. None.
  668. Return value:
  669. None.
  670. --*/
  671. {
  672. SDL_BlitSurface(gpScreen, NULL, gpScreenBak, NULL);
  673. }
  674. VOID
  675. VIDEO_RestoreScreen(
  676. VOID
  677. )
  678. /*++
  679. Purpose:
  680. Restore the screen buffer which has been saved with VIDEO_BackupScreen().
  681. Parameters:
  682. None.
  683. Return value:
  684. None.
  685. --*/
  686. {
  687. SDL_BlitSurface(gpScreenBak, NULL, gpScreen, NULL);
  688. }
  689. VOID
  690. VIDEO_ShakeScreen(
  691. WORD wShakeTime,
  692. WORD wShakeLevel
  693. )
  694. /*++
  695. Purpose:
  696. Set the screen shake time and level.
  697. Parameters:
  698. [IN] wShakeTime - how many times should we shake the screen.
  699. [IN] wShakeLevel - level of shaking.
  700. Return value:
  701. None.
  702. --*/
  703. {
  704. g_wShakeTime = wShakeTime;
  705. g_wShakeLevel = wShakeLevel;
  706. }
  707. VOID
  708. VIDEO_SwitchScreen(
  709. WORD wSpeed
  710. )
  711. /*++
  712. Purpose:
  713. Switch the screen from the backup screen buffer to the current screen buffer.
  714. NOTE: This will destroy the backup buffer.
  715. Parameters:
  716. [IN] wSpeed - speed of fading (the larger value, the slower).
  717. Return value:
  718. None.
  719. --*/
  720. {
  721. #if SDL_VERSION_ATLEAST(2,0,0)
  722. int i, j;
  723. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  724. SDL_Texture *pTexture;
  725. if (g_bRenderPaused)
  726. {
  727. return;
  728. }
  729. wSpeed++;
  730. wSpeed *= 10;
  731. for (i = 0; i < 6; i++)
  732. {
  733. for (j = rgIndex[i]; j < gpScreen->pitch * gpScreen->h; j += 6)
  734. {
  735. ((LPBYTE)(gpScreenBak->pixels))[j] = ((LPBYTE)(gpScreen->pixels))[j];
  736. }
  737. //
  738. // Draw the backup buffer to the screen
  739. //
  740. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  741. SDL_RenderClear(gpRenderer);
  742. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  743. if (gpTouchOverlay)
  744. {
  745. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  746. }
  747. SDL_RenderPresent(gpRenderer);
  748. SDL_DestroyTexture(pTexture);
  749. UTIL_Delay(wSpeed);
  750. }
  751. #else
  752. int i, j;
  753. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  754. SDL_Rect dstrect;
  755. short offset = 240 - 200;
  756. short screenRealHeight = gpScreenReal->h;
  757. short screenRealY = 0;
  758. if (!bScaleScreen)
  759. {
  760. screenRealHeight -= offset;
  761. screenRealY = offset / 2;
  762. }
  763. wSpeed++;
  764. wSpeed *= 10;
  765. for (i = 0; i < 6; i++)
  766. {
  767. for (j = rgIndex[i]; j < gpScreen->pitch * gpScreen->h; j += 6)
  768. {
  769. ((LPBYTE)(gpScreenBak->pixels))[j] = ((LPBYTE)(gpScreen->pixels))[j];
  770. }
  771. //
  772. // Draw the backup buffer to the screen
  773. //
  774. dstrect.x = 0;
  775. dstrect.y = screenRealY;
  776. dstrect.w = gpScreenReal->w;
  777. dstrect.h = screenRealHeight;
  778. SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
  779. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  780. UTIL_Delay(wSpeed);
  781. }
  782. #endif
  783. }
  784. VOID
  785. VIDEO_FadeScreen(
  786. WORD wSpeed
  787. )
  788. /*++
  789. Purpose:
  790. Fade from the backup screen buffer to the current screen buffer.
  791. NOTE: This will destroy the backup buffer.
  792. Parameters:
  793. [IN] wSpeed - speed of fading (the larger value, the slower).
  794. Return value:
  795. None.
  796. --*/
  797. {
  798. #if SDL_VERSION_ATLEAST(2,0,0)
  799. int i, j, k;
  800. DWORD time;
  801. BYTE a, b;
  802. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  803. SDL_Rect viewport;
  804. SDL_Texture *pTexture;
  805. if (g_bRenderPaused)
  806. {
  807. return;
  808. }
  809. SDL_RenderGetViewport(gpRenderer, &viewport);
  810. time = SDL_GetTicks();
  811. wSpeed++;
  812. wSpeed *= 10;
  813. for (i = 0; i < 12; i++)
  814. {
  815. for (j = 0; j < 6; j++)
  816. {
  817. PAL_ProcessEvent();
  818. while (SDL_GetTicks() <= time)
  819. {
  820. PAL_ProcessEvent();
  821. SDL_Delay(5);
  822. }
  823. time = SDL_GetTicks() + wSpeed;
  824. //
  825. // Blend the pixels in the 2 buffers, and put the result into the
  826. // backup buffer
  827. //
  828. for (k = rgIndex[j]; k < gpScreen->pitch * gpScreen->h; k += 6)
  829. {
  830. a = ((LPBYTE)(gpScreen->pixels))[k];
  831. b = ((LPBYTE)(gpScreenBak->pixels))[k];
  832. if (i > 0)
  833. {
  834. if ((a & 0x0F) > (b & 0x0F))
  835. {
  836. b++;
  837. }
  838. else if ((a & 0x0F) < (b & 0x0F))
  839. {
  840. b--;
  841. }
  842. }
  843. ((LPBYTE)(gpScreenBak->pixels))[k] = ((a & 0xF0) | (b & 0x0F));
  844. }
  845. //
  846. // Draw the backup buffer to the screen
  847. //
  848. if (g_wShakeTime != 0)
  849. {
  850. //
  851. // Shake the screen
  852. //
  853. SDL_Rect srcrect, dstrect;
  854. srcrect.x = 0;
  855. srcrect.y = 0;
  856. srcrect.w = 320;
  857. srcrect.h = 200 - g_wShakeLevel;
  858. dstrect.x = 0;
  859. dstrect.y = 0;
  860. dstrect.w = 320 * viewport.w / gpScreen->w;
  861. dstrect.h = (200 - g_wShakeLevel) * viewport.h / gpScreen->h;
  862. if (g_wShakeTime & 1)
  863. {
  864. srcrect.y = g_wShakeLevel;
  865. }
  866. else
  867. {
  868. dstrect.y = g_wShakeLevel * viewport.h / gpScreen->h;
  869. }
  870. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  871. SDL_RenderClear(gpRenderer);
  872. SDL_RenderCopy(gpRenderer, pTexture, &srcrect, &dstrect);
  873. if (gpTouchOverlay)
  874. {
  875. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  876. }
  877. SDL_RenderPresent(gpRenderer);
  878. SDL_DestroyTexture(pTexture);
  879. g_wShakeTime--;
  880. }
  881. else
  882. {
  883. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  884. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  885. if (gpTouchOverlay)
  886. {
  887. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  888. }
  889. SDL_RenderPresent(gpRenderer);
  890. SDL_DestroyTexture(pTexture);
  891. }
  892. }
  893. }
  894. //
  895. // Draw the result buffer to the screen as the final step
  896. //
  897. VIDEO_UpdateScreen(NULL);
  898. #else
  899. int i, j, k;
  900. DWORD time;
  901. BYTE a, b;
  902. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  903. SDL_Rect dstrect;
  904. short offset = 240 - 200;
  905. short screenRealHeight = gpScreenReal->h;
  906. short screenRealY = 0;
  907. //
  908. // Lock surface if needed
  909. //
  910. if (SDL_MUSTLOCK(gpScreenReal))
  911. {
  912. if (SDL_LockSurface(gpScreenReal) < 0)
  913. return;
  914. }
  915. if (!bScaleScreen)
  916. {
  917. screenRealHeight -= offset;
  918. screenRealY = offset / 2;
  919. }
  920. time = SDL_GetTicks();
  921. wSpeed++;
  922. wSpeed *= 10;
  923. for (i = 0; i < 12; i++)
  924. {
  925. for (j = 0; j < 6; j++)
  926. {
  927. PAL_ProcessEvent();
  928. while (SDL_GetTicks() <= time)
  929. {
  930. PAL_ProcessEvent();
  931. SDL_Delay(5);
  932. }
  933. time = SDL_GetTicks() + wSpeed;
  934. //
  935. // Blend the pixels in the 2 buffers, and put the result into the
  936. // backup buffer
  937. //
  938. for (k = rgIndex[j]; k < gpScreen->pitch * gpScreen->h; k += 6)
  939. {
  940. a = ((LPBYTE)(gpScreen->pixels))[k];
  941. b = ((LPBYTE)(gpScreenBak->pixels))[k];
  942. if (i > 0)
  943. {
  944. if ((a & 0x0F) > (b & 0x0F))
  945. {
  946. b++;
  947. }
  948. else if ((a & 0x0F) < (b & 0x0F))
  949. {
  950. b--;
  951. }
  952. }
  953. ((LPBYTE)(gpScreenBak->pixels))[k] = ((a & 0xF0) | (b & 0x0F));
  954. }
  955. //
  956. // Draw the backup buffer to the screen
  957. //
  958. if (g_wShakeTime != 0)
  959. {
  960. //
  961. // Shake the screen
  962. //
  963. SDL_Rect srcrect, dstrect;
  964. srcrect.x = 0;
  965. srcrect.y = 0;
  966. srcrect.w = 320;
  967. srcrect.h = 200 - g_wShakeLevel;
  968. dstrect.x = 0;
  969. dstrect.y = screenRealY;
  970. dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
  971. dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  972. if (g_wShakeTime & 1)
  973. {
  974. srcrect.y = g_wShakeLevel;
  975. }
  976. else
  977. {
  978. dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
  979. }
  980. SDL_SoftStretch(gpScreenBak, &srcrect, gpScreenReal, &dstrect);
  981. if (g_wShakeTime & 1)
  982. {
  983. dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  984. }
  985. else
  986. {
  987. dstrect.y = screenRealY;
  988. }
  989. dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
  990. SDL_FillRect(gpScreenReal, &dstrect, 0);
  991. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  992. g_wShakeTime--;
  993. }
  994. else
  995. {
  996. dstrect.x = 0;
  997. dstrect.y = screenRealY;
  998. dstrect.w = gpScreenReal->w;
  999. dstrect.h = screenRealHeight;
  1000. SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
  1001. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  1002. }
  1003. }
  1004. }
  1005. if (SDL_MUSTLOCK(gpScreenReal))
  1006. {
  1007. SDL_UnlockSurface(gpScreenReal);
  1008. }
  1009. //
  1010. // Draw the result buffer to the screen as the final step
  1011. //
  1012. VIDEO_UpdateScreen(NULL);
  1013. #endif
  1014. }
  1015. #if SDL_VERSION_ATLEAST(2,0,0)
  1016. /*++
  1017. Purpose:
  1018. Set the caption of the window. For compatibility with SDL2 only.
  1019. Parameters:
  1020. [IN] lpszCaption - the new caption of the window.
  1021. [IN] lpReserved - not used, for compatibility only.
  1022. Return value:
  1023. None.
  1024. --*/
  1025. VOID
  1026. SDL_WM_SetCaption(
  1027. LPCSTR lpszCaption,
  1028. LPVOID lpReserved
  1029. )
  1030. {
  1031. if (gpWindow != NULL)
  1032. {
  1033. SDL_SetWindowTitle(gpWindow, lpszCaption);
  1034. }
  1035. }
  1036. #endif