video.c 26 KB

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