video.c 27 KB

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