video.c 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268
  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 (gpRenderer)
  233. {
  234. SDL_DestroyRenderer(gpRenderer);
  235. }
  236. gpRenderer = NULL;
  237. if (gpWindow)
  238. {
  239. SDL_DestroyWindow(gpWindow);
  240. }
  241. gpWindow = NULL;
  242. #else
  243. if (gpScreenReal != NULL)
  244. {
  245. SDL_FreeSurface(gpScreenReal);
  246. }
  247. gpScreenReal = NULL;
  248. #endif
  249. }
  250. VOID
  251. VIDEO_UpdateScreen(
  252. const SDL_Rect *lpRect
  253. )
  254. /*++
  255. Purpose:
  256. Update the screen area specified by lpRect.
  257. Parameters:
  258. [IN] lpRect - Screen area to update.
  259. Return value:
  260. None.
  261. --*/
  262. {
  263. #if SDL_VERSION_ATLEAST(2,0,0)
  264. if (!g_bRenderPaused)
  265. {
  266. SDL_Texture *pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreen);
  267. if (lpRect != NULL)
  268. {
  269. SDL_Rect viewport, dstrect;
  270. SDL_RenderGetViewport(gpRenderer, &viewport);
  271. dstrect.x = (SHORT)((INT)(lpRect->x) * viewport.w / gpScreen->w);
  272. dstrect.y = (SHORT)((INT)(lpRect->y) * viewport.h / gpScreen->h);
  273. dstrect.w = (WORD)((DWORD)(lpRect->w) * viewport.w / gpScreen->w);
  274. dstrect.h = (WORD)((DWORD)(lpRect->h) * viewport.h / gpScreen->h);
  275. SDL_RenderCopy(gpRenderer, pTexture, lpRect, &dstrect);
  276. }
  277. else if (g_wShakeTime != 0)
  278. {
  279. //
  280. // Shake the screen
  281. //
  282. SDL_Rect srcrect, dstrect, viewport;
  283. SDL_RenderGetViewport(gpRenderer, &viewport);
  284. srcrect.x = 0;
  285. srcrect.y = 0;
  286. srcrect.w = 320;
  287. srcrect.h = 200 - g_wShakeLevel;
  288. dstrect.x = 0;
  289. dstrect.y = 0;
  290. dstrect.w = 320 * viewport.w / gpScreen->w;
  291. dstrect.h = (200 - g_wShakeLevel) * viewport.h / gpScreen->h;
  292. if (g_wShakeTime & 1)
  293. {
  294. srcrect.y = g_wShakeLevel;
  295. }
  296. else
  297. {
  298. dstrect.y = g_wShakeLevel * viewport.h / gpScreen->h;
  299. }
  300. SDL_RenderClear(gpRenderer);
  301. SDL_RenderCopy(gpRenderer, pTexture, &srcrect, &dstrect);
  302. g_wShakeTime--;
  303. }
  304. else
  305. {
  306. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  307. }
  308. if (gpTouchOverlay)
  309. {
  310. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  311. }
  312. SDL_RenderPresent(gpRenderer);
  313. SDL_DestroyTexture(pTexture);
  314. }
  315. #else
  316. SDL_Rect srcrect, dstrect;
  317. short offset = 240 - 200;
  318. short screenRealHeight = gpScreenReal->h;
  319. short screenRealY = 0;
  320. //
  321. // Lock surface if needed
  322. //
  323. if (SDL_MUSTLOCK(gpScreenReal))
  324. {
  325. if (SDL_LockSurface(gpScreenReal) < 0)
  326. return;
  327. }
  328. if (!bScaleScreen)
  329. {
  330. screenRealHeight -= offset;
  331. screenRealY = offset / 2;
  332. }
  333. if (lpRect != NULL)
  334. {
  335. dstrect.x = (SHORT)((INT)(lpRect->x) * gpScreenReal->w / gpScreen->w);
  336. dstrect.y = (SHORT)((INT)(screenRealY + lpRect->y) * screenRealHeight / gpScreen->h);
  337. dstrect.w = (WORD)((DWORD)(lpRect->w) * gpScreenReal->w / gpScreen->w);
  338. dstrect.h = (WORD)((DWORD)(lpRect->h) * screenRealHeight / gpScreen->h);
  339. SDL_SoftStretch(gpScreen, (SDL_Rect *)lpRect, gpScreenReal, &dstrect);
  340. if (SDL_MUSTLOCK(gpScreenReal))
  341. {
  342. SDL_UnlockSurface(gpScreenReal);
  343. }
  344. SDL_UpdateRect(gpScreenReal, dstrect.x, dstrect.y, dstrect.w, dstrect.h);
  345. }
  346. else if (g_wShakeTime != 0)
  347. {
  348. //
  349. // Shake the screen
  350. //
  351. srcrect.x = 0;
  352. srcrect.y = 0;
  353. srcrect.w = 320;
  354. srcrect.h = 200 - g_wShakeLevel;
  355. dstrect.x = 0;
  356. dstrect.y = screenRealY;
  357. dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
  358. dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  359. if (g_wShakeTime & 1)
  360. {
  361. srcrect.y = g_wShakeLevel;
  362. }
  363. else
  364. {
  365. dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
  366. }
  367. SDL_SoftStretch(gpScreen, &srcrect, gpScreenReal, &dstrect);
  368. if (g_wShakeTime & 1)
  369. {
  370. dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  371. }
  372. else
  373. {
  374. dstrect.y = screenRealY;
  375. }
  376. dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
  377. SDL_FillRect(gpScreenReal, &dstrect, 0);
  378. if (SDL_MUSTLOCK(gpScreenReal))
  379. {
  380. SDL_UnlockSurface(gpScreenReal);
  381. }
  382. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  383. g_wShakeTime--;
  384. }
  385. else
  386. {
  387. dstrect.x = 0;
  388. dstrect.y = screenRealY;
  389. dstrect.w = gpScreenReal->w;
  390. dstrect.h = screenRealHeight;
  391. SDL_SoftStretch(gpScreen, NULL, gpScreenReal, &dstrect);
  392. if (SDL_MUSTLOCK(gpScreenReal))
  393. {
  394. SDL_UnlockSurface(gpScreenReal);
  395. }
  396. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  397. }
  398. #endif
  399. }
  400. VOID
  401. VIDEO_SetPalette(
  402. SDL_Color rgPalette[256]
  403. )
  404. /*++
  405. Purpose:
  406. Set the palette of the screen.
  407. Parameters:
  408. [IN] rgPalette - array of 256 colors.
  409. Return value:
  410. None.
  411. --*/
  412. {
  413. #if SDL_VERSION_ATLEAST(2,0,0)
  414. int i;
  415. SDL_Palette *palette = SDL_AllocPalette(256);
  416. if (palette == NULL)
  417. {
  418. return;
  419. }
  420. for (i = 0; i < 256; i++)
  421. {
  422. palette->colors[i] = rgPalette[i];
  423. }
  424. SDL_SetSurfacePalette(gpScreen, palette);
  425. SDL_SetSurfacePalette(gpScreenBak, palette);
  426. VIDEO_UpdateScreen(NULL);
  427. #else
  428. SDL_SetPalette(gpScreen, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
  429. SDL_SetPalette(gpScreenReal, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
  430. #if (defined (__SYMBIAN32__))
  431. {
  432. static UINT32 time = 0;
  433. if (SDL_GetTicks() - time > 50)
  434. {
  435. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  436. time = SDL_GetTicks();
  437. }
  438. }
  439. #endif
  440. #endif
  441. }
  442. VOID
  443. VIDEO_Resize(
  444. INT w,
  445. INT h
  446. )
  447. /*++
  448. Purpose:
  449. This function is called when user resized the window.
  450. Parameters:
  451. [IN] w - width of the window after resizing.
  452. [IN] h - height of the window after resizing.
  453. Return value:
  454. None.
  455. --*/
  456. {
  457. #if SDL_VERSION_ATLEAST(2,0,0)
  458. // TODO
  459. #else
  460. DWORD flags;
  461. PAL_LARGE SDL_Color palette[256];
  462. int i;
  463. //
  464. // Get the original palette.
  465. //
  466. for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
  467. {
  468. palette[i] = gpScreenReal->format->palette->colors[i];
  469. }
  470. //
  471. // Create the screen surface.
  472. //
  473. flags = gpScreenReal->flags;
  474. SDL_FreeSurface(gpScreenReal);
  475. gpScreenReal = SDL_SetVideoMode(w, h, 8, flags);
  476. if (gpScreenReal == NULL)
  477. {
  478. #ifdef __SYMBIAN32__
  479. #ifdef __S60_5X__
  480. gpScreenReal = SDL_SetVideoMode(640, 360, 8, SDL_SWSURFACE);
  481. #else
  482. gpScreenReal = SDL_SetVideoMode(320, 240, 8, SDL_SWSURFACE);
  483. #endif
  484. #else
  485. //
  486. // Fall back to 640x480 software windowed mode.
  487. //
  488. gpScreenReal = SDL_SetVideoMode(640, 480, 8, SDL_SWSURFACE);
  489. #endif
  490. }
  491. SDL_SetPalette(gpScreenReal, SDL_PHYSPAL | SDL_LOGPAL, palette, 0, i);
  492. VIDEO_UpdateScreen(NULL);
  493. #endif
  494. }
  495. SDL_Color *
  496. VIDEO_GetPalette(
  497. VOID
  498. )
  499. /*++
  500. Purpose:
  501. Get the current palette of the screen.
  502. Parameters:
  503. None.
  504. Return value:
  505. Pointer to the current palette.
  506. --*/
  507. {
  508. #if SDL_VERSION_ATLEAST(2,0,0)
  509. return gpScreen->format->palette->colors;
  510. #else
  511. return gpScreenReal->format->palette->colors;
  512. #endif
  513. }
  514. VOID
  515. VIDEO_ToggleScaleScreen(
  516. VOID
  517. )
  518. /*++
  519. Purpose:
  520. Toggle scalescreen mode.
  521. Parameters:
  522. None.
  523. Return value:
  524. None.
  525. --*/
  526. {
  527. #ifdef __SYMBIAN32__
  528. bScaleScreen = !bScaleScreen;
  529. VIDEO_Resize(320, 240);
  530. VIDEO_UpdateScreen(NULL);
  531. #endif
  532. }
  533. VOID
  534. VIDEO_ToggleFullscreen(
  535. VOID
  536. )
  537. /*++
  538. Purpose:
  539. Toggle fullscreen mode.
  540. Parameters:
  541. None.
  542. Return value:
  543. None.
  544. --*/
  545. {
  546. #if SDL_VERSION_ATLEAST(2,0,0)
  547. // TODO
  548. #else
  549. DWORD flags;
  550. PAL_LARGE SDL_Color palette[256];
  551. int i;
  552. //
  553. // Get the original palette.
  554. //
  555. for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
  556. {
  557. palette[i] = gpScreenReal->format->palette->colors[i];
  558. }
  559. //
  560. // Get the flags of the original screen surface
  561. //
  562. flags = gpScreenReal->flags;
  563. if (flags & SDL_FULLSCREEN)
  564. {
  565. //
  566. // Already in fullscreen mode. Remove the fullscreen flag.
  567. //
  568. flags &= ~SDL_FULLSCREEN;
  569. flags |= SDL_RESIZABLE;
  570. SDL_ShowCursor(TRUE);
  571. }
  572. else
  573. {
  574. //
  575. // Not in fullscreen mode. Set the fullscreen flag.
  576. //
  577. flags |= SDL_FULLSCREEN;
  578. SDL_ShowCursor(FALSE);
  579. }
  580. //
  581. // Free the original screen surface
  582. //
  583. SDL_FreeSurface(gpScreenReal);
  584. //
  585. // ... and create a new one
  586. //
  587. if (g_wInitialWidth == 640 && g_wInitialHeight == 400 && (flags & SDL_FULLSCREEN))
  588. {
  589. gpScreenReal = SDL_SetVideoMode(640, 480, 8, flags);
  590. }
  591. else if (g_wInitialWidth == 640 && g_wInitialHeight == 480 && !(flags & SDL_FULLSCREEN))
  592. {
  593. gpScreenReal = SDL_SetVideoMode(640, 400, 8, flags);
  594. }
  595. else
  596. {
  597. gpScreenReal = SDL_SetVideoMode(g_wInitialWidth, g_wInitialHeight, 8, flags);
  598. }
  599. VIDEO_SetPalette(palette);
  600. //
  601. // Update the screen
  602. //
  603. VIDEO_UpdateScreen(NULL);
  604. #endif
  605. }
  606. VOID
  607. VIDEO_SaveScreenshot(
  608. VOID
  609. )
  610. /*++
  611. Purpose:
  612. Save the screenshot of current screen to a BMP file.
  613. Parameters:
  614. None.
  615. Return value:
  616. None.
  617. --*/
  618. {
  619. int iNumBMP = 0;
  620. FILE *fp;
  621. //
  622. // Find a usable BMP filename.
  623. //
  624. for (iNumBMP = 0; iNumBMP <= 9999; iNumBMP++)
  625. {
  626. fp = fopen(va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP), "rb");
  627. if (fp == NULL)
  628. {
  629. break;
  630. }
  631. fclose(fp);
  632. }
  633. if (iNumBMP > 9999)
  634. {
  635. return;
  636. }
  637. //
  638. // Save the screenshot.
  639. //
  640. #if SDL_VERSION_ATLEAST(2,0,0)
  641. SDL_SaveBMP(gpScreen, va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP));
  642. #else
  643. SDL_SaveBMP(gpScreenReal, va("%sscrn%.4d.bmp", PAL_PREFIX, iNumBMP));
  644. #endif
  645. }
  646. VOID
  647. VIDEO_BackupScreen(
  648. VOID
  649. )
  650. /*++
  651. Purpose:
  652. Backup the screen buffer.
  653. Parameters:
  654. None.
  655. Return value:
  656. None.
  657. --*/
  658. {
  659. SDL_BlitSurface(gpScreen, NULL, gpScreenBak, NULL);
  660. }
  661. VOID
  662. VIDEO_RestoreScreen(
  663. VOID
  664. )
  665. /*++
  666. Purpose:
  667. Restore the screen buffer which has been saved with VIDEO_BackupScreen().
  668. Parameters:
  669. None.
  670. Return value:
  671. None.
  672. --*/
  673. {
  674. SDL_BlitSurface(gpScreenBak, NULL, gpScreen, NULL);
  675. }
  676. VOID
  677. VIDEO_ShakeScreen(
  678. WORD wShakeTime,
  679. WORD wShakeLevel
  680. )
  681. /*++
  682. Purpose:
  683. Set the screen shake time and level.
  684. Parameters:
  685. [IN] wShakeTime - how many times should we shake the screen.
  686. [IN] wShakeLevel - level of shaking.
  687. Return value:
  688. None.
  689. --*/
  690. {
  691. g_wShakeTime = wShakeTime;
  692. g_wShakeLevel = wShakeLevel;
  693. }
  694. VOID
  695. VIDEO_SwitchScreen(
  696. WORD wSpeed
  697. )
  698. /*++
  699. Purpose:
  700. Switch the screen from the backup screen buffer to the current screen buffer.
  701. NOTE: This will destroy the backup buffer.
  702. Parameters:
  703. [IN] wSpeed - speed of fading (the larger value, the slower).
  704. Return value:
  705. None.
  706. --*/
  707. {
  708. #if SDL_VERSION_ATLEAST(2,0,0)
  709. int i, j;
  710. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  711. SDL_Texture *pTexture;
  712. if (g_bRenderPaused)
  713. {
  714. return;
  715. }
  716. wSpeed++;
  717. wSpeed *= 10;
  718. for (i = 0; i < 6; i++)
  719. {
  720. for (j = rgIndex[i]; j < gpScreen->pitch * gpScreen->h; j += 6)
  721. {
  722. ((LPBYTE)(gpScreenBak->pixels))[j] = ((LPBYTE)(gpScreen->pixels))[j];
  723. }
  724. //
  725. // Draw the backup buffer to the screen
  726. //
  727. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  728. SDL_RenderClear(gpRenderer);
  729. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  730. if (gpTouchOverlay)
  731. {
  732. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  733. }
  734. SDL_RenderPresent(gpRenderer);
  735. SDL_DestroyTexture(pTexture);
  736. UTIL_Delay(wSpeed);
  737. }
  738. #else
  739. int i, j;
  740. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  741. SDL_Rect dstrect;
  742. short offset = 240 - 200;
  743. short screenRealHeight = gpScreenReal->h;
  744. short screenRealY = 0;
  745. if (!bScaleScreen)
  746. {
  747. screenRealHeight -= offset;
  748. screenRealY = offset / 2;
  749. }
  750. wSpeed++;
  751. wSpeed *= 10;
  752. for (i = 0; i < 6; i++)
  753. {
  754. for (j = rgIndex[i]; j < gpScreen->pitch * gpScreen->h; j += 6)
  755. {
  756. ((LPBYTE)(gpScreenBak->pixels))[j] = ((LPBYTE)(gpScreen->pixels))[j];
  757. }
  758. //
  759. // Draw the backup buffer to the screen
  760. //
  761. dstrect.x = 0;
  762. dstrect.y = screenRealY;
  763. dstrect.w = gpScreenReal->w;
  764. dstrect.h = screenRealHeight;
  765. SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
  766. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  767. UTIL_Delay(wSpeed);
  768. }
  769. #endif
  770. }
  771. VOID
  772. VIDEO_FadeScreen(
  773. WORD wSpeed
  774. )
  775. /*++
  776. Purpose:
  777. Fade from the backup screen buffer to the current screen buffer.
  778. NOTE: This will destroy the backup buffer.
  779. Parameters:
  780. [IN] wSpeed - speed of fading (the larger value, the slower).
  781. Return value:
  782. None.
  783. --*/
  784. {
  785. #if SDL_VERSION_ATLEAST(2,0,0)
  786. int i, j, k;
  787. DWORD time;
  788. BYTE a, b;
  789. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  790. SDL_Rect viewport;
  791. SDL_Texture *pTexture;
  792. if (g_bRenderPaused)
  793. {
  794. return;
  795. }
  796. SDL_RenderGetViewport(gpRenderer, &viewport);
  797. time = SDL_GetTicks();
  798. wSpeed++;
  799. wSpeed *= 10;
  800. for (i = 0; i < 12; i++)
  801. {
  802. for (j = 0; j < 6; j++)
  803. {
  804. PAL_ProcessEvent();
  805. while (SDL_GetTicks() <= time)
  806. {
  807. PAL_ProcessEvent();
  808. SDL_Delay(5);
  809. }
  810. time = SDL_GetTicks() + wSpeed;
  811. //
  812. // Blend the pixels in the 2 buffers, and put the result into the
  813. // backup buffer
  814. //
  815. for (k = rgIndex[j]; k < gpScreen->pitch * gpScreen->h; k += 6)
  816. {
  817. a = ((LPBYTE)(gpScreen->pixels))[k];
  818. b = ((LPBYTE)(gpScreenBak->pixels))[k];
  819. if (i > 0)
  820. {
  821. if ((a & 0x0F) > (b & 0x0F))
  822. {
  823. b++;
  824. }
  825. else if ((a & 0x0F) < (b & 0x0F))
  826. {
  827. b--;
  828. }
  829. }
  830. ((LPBYTE)(gpScreenBak->pixels))[k] = ((a & 0xF0) | (b & 0x0F));
  831. }
  832. //
  833. // Draw the backup buffer to the screen
  834. //
  835. if (g_wShakeTime != 0)
  836. {
  837. //
  838. // Shake the screen
  839. //
  840. SDL_Rect srcrect, dstrect;
  841. srcrect.x = 0;
  842. srcrect.y = 0;
  843. srcrect.w = 320;
  844. srcrect.h = 200 - g_wShakeLevel;
  845. dstrect.x = 0;
  846. dstrect.y = 0;
  847. dstrect.w = 320 * viewport.w / gpScreen->w;
  848. dstrect.h = (200 - g_wShakeLevel) * viewport.h / gpScreen->h;
  849. if (g_wShakeTime & 1)
  850. {
  851. srcrect.y = g_wShakeLevel;
  852. }
  853. else
  854. {
  855. dstrect.y = g_wShakeLevel * viewport.h / gpScreen->h;
  856. }
  857. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  858. SDL_RenderClear(gpRenderer);
  859. SDL_RenderCopy(gpRenderer, pTexture, &srcrect, &dstrect);
  860. if (gpTouchOverlay)
  861. {
  862. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  863. }
  864. SDL_RenderPresent(gpRenderer);
  865. SDL_DestroyTexture(pTexture);
  866. g_wShakeTime--;
  867. }
  868. else
  869. {
  870. pTexture = SDL_CreateTextureFromSurface(gpRenderer, gpScreenBak);
  871. SDL_RenderCopy(gpRenderer, pTexture, NULL, NULL);
  872. if (gpTouchOverlay)
  873. {
  874. SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, NULL);
  875. }
  876. SDL_RenderPresent(gpRenderer);
  877. SDL_DestroyTexture(pTexture);
  878. }
  879. }
  880. }
  881. //
  882. // Draw the result buffer to the screen as the final step
  883. //
  884. VIDEO_UpdateScreen(NULL);
  885. #else
  886. int i, j, k;
  887. DWORD time;
  888. BYTE a, b;
  889. const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
  890. SDL_Rect dstrect;
  891. short offset = 240 - 200;
  892. short screenRealHeight = gpScreenReal->h;
  893. short screenRealY = 0;
  894. //
  895. // Lock surface if needed
  896. //
  897. if (SDL_MUSTLOCK(gpScreenReal))
  898. {
  899. if (SDL_LockSurface(gpScreenReal) < 0)
  900. return;
  901. }
  902. if (!bScaleScreen)
  903. {
  904. screenRealHeight -= offset;
  905. screenRealY = offset / 2;
  906. }
  907. time = SDL_GetTicks();
  908. wSpeed++;
  909. wSpeed *= 10;
  910. for (i = 0; i < 12; i++)
  911. {
  912. for (j = 0; j < 6; j++)
  913. {
  914. PAL_ProcessEvent();
  915. while (SDL_GetTicks() <= time)
  916. {
  917. PAL_ProcessEvent();
  918. SDL_Delay(5);
  919. }
  920. time = SDL_GetTicks() + wSpeed;
  921. //
  922. // Blend the pixels in the 2 buffers, and put the result into the
  923. // backup buffer
  924. //
  925. for (k = rgIndex[j]; k < gpScreen->pitch * gpScreen->h; k += 6)
  926. {
  927. a = ((LPBYTE)(gpScreen->pixels))[k];
  928. b = ((LPBYTE)(gpScreenBak->pixels))[k];
  929. if (i > 0)
  930. {
  931. if ((a & 0x0F) > (b & 0x0F))
  932. {
  933. b++;
  934. }
  935. else if ((a & 0x0F) < (b & 0x0F))
  936. {
  937. b--;
  938. }
  939. }
  940. ((LPBYTE)(gpScreenBak->pixels))[k] = ((a & 0xF0) | (b & 0x0F));
  941. }
  942. //
  943. // Draw the backup buffer to the screen
  944. //
  945. if (g_wShakeTime != 0)
  946. {
  947. //
  948. // Shake the screen
  949. //
  950. SDL_Rect srcrect, dstrect;
  951. srcrect.x = 0;
  952. srcrect.y = 0;
  953. srcrect.w = 320;
  954. srcrect.h = 200 - g_wShakeLevel;
  955. dstrect.x = 0;
  956. dstrect.y = screenRealY;
  957. dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
  958. dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  959. if (g_wShakeTime & 1)
  960. {
  961. srcrect.y = g_wShakeLevel;
  962. }
  963. else
  964. {
  965. dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
  966. }
  967. SDL_SoftStretch(gpScreenBak, &srcrect, gpScreenReal, &dstrect);
  968. if (g_wShakeTime & 1)
  969. {
  970. dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
  971. }
  972. else
  973. {
  974. dstrect.y = screenRealY;
  975. }
  976. dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
  977. SDL_FillRect(gpScreenReal, &dstrect, 0);
  978. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  979. g_wShakeTime--;
  980. }
  981. else
  982. {
  983. dstrect.x = 0;
  984. dstrect.y = screenRealY;
  985. dstrect.w = gpScreenReal->w;
  986. dstrect.h = screenRealHeight;
  987. SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
  988. SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
  989. }
  990. }
  991. }
  992. if (SDL_MUSTLOCK(gpScreenReal))
  993. {
  994. SDL_UnlockSurface(gpScreenReal);
  995. }
  996. //
  997. // Draw the result buffer to the screen as the final step
  998. //
  999. VIDEO_UpdateScreen(NULL);
  1000. #endif
  1001. }
  1002. #if SDL_VERSION_ATLEAST(2,0,0)
  1003. /*++
  1004. Purpose:
  1005. Set the caption of the window. For compatibility with SDL2 only.
  1006. Parameters:
  1007. [IN] lpszCaption - the new caption of the window.
  1008. [IN] lpReserved - not used, for compatibility only.
  1009. Return value:
  1010. None.
  1011. --*/
  1012. VOID
  1013. SDL_WM_SetCaption(
  1014. LPCSTR lpszCaption,
  1015. LPVOID lpReserved
  1016. )
  1017. {
  1018. if (gpWindow != NULL)
  1019. {
  1020. SDL_SetWindowTitle(gpWindow, lpszCaption);
  1021. }
  1022. }
  1023. #endif