video.c 20 KB

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