1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171 |
- #include "main.h"
- SDL_Surface *gpScreen = NULL;
- SDL_Surface *gpScreenBak = NULL;
- #if SDL_VERSION_ATLEAST(2,0,0)
- SDL_Window *gpWindow = NULL;
- static SDL_Renderer *gpRenderer = NULL;
- static SDL_Texture *gpTexture = NULL;
- static SDL_Texture *gpTouchOverlay = NULL;
- static SDL_Rect gOverlayRect;
- static SDL_Rect gTextureRect;
- #endif
- static SDL_Surface *gpScreenReal = NULL;
- volatile BOOL g_bRenderPaused = FALSE;
- static BOOL bScaleScreen = PAL_SCALE_SCREEN;
- static WORD g_wShakeTime = 0;
- static WORD g_wShakeLevel = 0;
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- #define SDL_SoftStretch SDL_UpperBlit
- static SDL_Texture *VIDEO_CreateTexture(int width, int height)
- {
- int texture_width, texture_height;
- float ratio = (float)width / (float)height;
-
-
-
- if (gConfig.fKeepAspectRatio && ratio != 1.6f)
- {
- if (ratio > 1.6f)
- {
- texture_height = 200;
- texture_width = (int)(200 * ratio) & ~0x3;
- ratio = (float)height / 200.0f;
- }
- else
- {
- texture_width = 320;
- texture_height = (int)(320 / ratio) & ~0x3;
- ratio = (float)width / 320.0f;
- }
- WORD w = (WORD)(ratio * 320.0f) & ~0x3;
- WORD h = (WORD)(ratio * 200.0f) & ~0x3;
- gOverlayRect.x = (width - w) / 2;
- gOverlayRect.y = (height - h) / 2;
- gOverlayRect.w = w;
- gOverlayRect.h = h;
- gTextureRect.x = (texture_width - 320) / 2;
- gTextureRect.y = (texture_height - 200) / 2;
- gTextureRect.w = 320; gTextureRect.h = 200;
- #if PAL_HAS_TOUCH
- PAL_SetTouchBounds(width, height, gOverlayRect);
- #endif
- }
- else
- {
- texture_width = 320;
- texture_height = 200;
- gOverlayRect.x = gOverlayRect.y = 0;
- gOverlayRect.w = width;
- gOverlayRect.h = height;
- gTextureRect.x = gTextureRect.y = 0;
- gTextureRect.w = 320; gTextureRect.h = 200;
- }
-
-
-
- return SDL_CreateTexture(gpRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, texture_width, texture_height);
- }
- #endif
- INT
- VIDEO_Startup(
- VOID
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- int render_w, render_h;
-
-
-
- gpWindow = SDL_CreateWindow("Pal", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
- gConfig.dwScreenWidth, gConfig.dwScreenHeight, PAL_VIDEO_INIT_FLAGS);
- if (gpWindow == NULL)
- {
- return -1;
- }
- gpRenderer = SDL_CreateRenderer(gpWindow, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
- if (gpRenderer == NULL)
- {
- return -1;
- }
- #if defined (__IOS__)
- SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
- SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 1);
- #endif
-
-
-
- gpScreen = SDL_CreateRGBSurface(SDL_SWSURFACE, 320, 200, 8, 0, 0, 0, 0);
- gpScreenBak = SDL_CreateRGBSurface(SDL_SWSURFACE, 320, 200, 8, 0, 0, 0, 0);
- gpScreenReal = SDL_CreateRGBSurface(SDL_SWSURFACE, 320, 200, 32,
- 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000);
-
-
-
- SDL_GetRendererOutputSize(gpRenderer, &render_w, &render_h);
- gpTexture = VIDEO_CreateTexture(render_w, render_h);
-
-
-
- if (gpScreen == NULL || gpScreenBak == NULL || gpScreenReal == NULL || gpTexture == NULL)
- {
- VIDEO_Shutdown();
- return -2;
- }
-
-
-
- if (gConfig.fUseTouchOverlay)
- {
- extern const void * PAL_LoadOverlayBMP(void);
- extern int PAL_OverlayBMPLength();
- SDL_Surface *overlay = SDL_LoadBMP_RW(SDL_RWFromConstMem(PAL_LoadOverlayBMP(), PAL_OverlayBMPLength()), 1);
- if (overlay != NULL)
- {
- SDL_SetColorKey(overlay, SDL_RLEACCEL, SDL_MapRGB(overlay->format, 255, 0, 255));
- gpTouchOverlay = SDL_CreateTextureFromSurface(gpRenderer, overlay);
- SDL_SetTextureAlphaMod(gpTouchOverlay, 120);
- SDL_FreeSurface(overlay);
- }
- }
- #else
-
-
-
- gpScreenReal = SDL_SetVideoMode(gConfig.dwScreenWidth, gConfig.dwScreenHeight, 8, PAL_VIDEO_INIT_FLAGS);
- if (gpScreenReal == NULL)
- {
-
-
-
- gpScreenReal = SDL_SetVideoMode(640, 480, 8,
- SDL_SWSURFACE | (gConfig.fFullScreen ? SDL_FULLSCREEN : 0));
- }
-
-
-
- if (gpScreenReal == NULL)
- {
- return -1;
- }
-
-
-
- gpScreen = SDL_CreateRGBSurface(gpScreenReal->flags & ~SDL_HWSURFACE, 320, 200, 8,
- gpScreenReal->format->Rmask, gpScreenReal->format->Gmask,
- gpScreenReal->format->Bmask, gpScreenReal->format->Amask);
- gpScreenBak = SDL_CreateRGBSurface(gpScreenReal->flags & ~SDL_HWSURFACE, 320, 200, 8,
- gpScreenReal->format->Rmask, gpScreenReal->format->Gmask,
- gpScreenReal->format->Bmask, gpScreenReal->format->Amask);
-
-
-
- if (gpScreen == NULL || gpScreenBak == NULL)
- {
- VIDEO_Shutdown();
- return -2;
- }
- if (gConfig.fFullScreen)
- {
- SDL_ShowCursor(FALSE);
- }
- #endif
- return 0;
- }
- VOID
- VIDEO_Shutdown(
- VOID
- )
- {
- if (gpScreen != NULL)
- {
- SDL_FreeSurface(gpScreen);
- }
- gpScreen = NULL;
- if (gpScreenBak != NULL)
- {
- SDL_FreeSurface(gpScreenBak);
- }
- gpScreenBak = NULL;
- #if SDL_VERSION_ATLEAST(2,0,0)
- if (gpTouchOverlay)
- {
- SDL_DestroyTexture(gpTouchOverlay);
- }
- gpTouchOverlay = NULL;
- if (gpTexture)
- {
- SDL_DestroyTexture(gpTexture);
- }
- gpTexture = NULL;
- if (gpRenderer)
- {
- SDL_DestroyRenderer(gpRenderer);
- }
- gpRenderer = NULL;
- if (gpWindow)
- {
- SDL_DestroyWindow(gpWindow);
- }
- gpWindow = NULL;
- #endif
- if (gpScreenReal != NULL)
- {
- SDL_FreeSurface(gpScreenReal);
- }
- gpScreenReal = NULL;
- }
- #if SDL_VERSION_ATLEAST(2,0,0)
- PAL_FORCE_INLINE
- VOID
- VIDEO_RenderCopy(
- VOID
- )
- {
- void *texture_pixels;
- int texture_pitch;
- SDL_LockTexture(gpTexture, NULL, &texture_pixels, &texture_pitch);
- memset(texture_pixels, 0, gTextureRect.y * texture_pitch);
- uint8_t *pixels = (uint8_t *)texture_pixels + gTextureRect.y * texture_pitch;
- uint8_t *src = (uint8_t *)gpScreenReal->pixels;
- int left_pitch = gTextureRect.x << 2;
- int right_pitch = texture_pitch - ((gTextureRect.x + gTextureRect.w) << 2);
- for (int y = 0; y < gTextureRect.h; y++, src += gpScreenReal->pitch)
- {
- memset(pixels, 0, left_pitch); pixels += left_pitch;
- memcpy(pixels, src, 320 << 2); pixels += 320 << 2;
- memset(pixels, 0, right_pitch); pixels += right_pitch;
- }
- memset(pixels, 0, gTextureRect.y * texture_pitch);
- SDL_UnlockTexture(gpTexture);
- SDL_RenderCopy(gpRenderer, gpTexture, NULL, NULL);
- if (gpTouchOverlay)
- {
- SDL_RenderCopy(gpRenderer, gpTouchOverlay, NULL, &gOverlayRect);
- }
- SDL_RenderPresent(gpRenderer);
- }
- #endif
- VOID
- VIDEO_UpdateScreen(
- const SDL_Rect *lpRect
- )
- {
- SDL_Rect srcrect, dstrect;
- short offset = 240 - 200;
- short screenRealHeight = gpScreenReal->h;
- short screenRealY = 0;
- #if SDL_VERSION_ATLEAST(2,0,0)
- if (g_bRenderPaused)
- {
- return;
- }
- #endif
-
-
-
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- if (SDL_LockSurface(gpScreenReal) < 0)
- return;
- }
- if (!bScaleScreen)
- {
- screenRealHeight -= offset;
- screenRealY = offset / 2;
- }
- if (lpRect != NULL)
- {
- dstrect.x = (SHORT)((INT)(lpRect->x) * gpScreenReal->w / gpScreen->w);
- dstrect.y = (SHORT)((INT)(screenRealY + lpRect->y) * screenRealHeight / gpScreen->h);
- dstrect.w = (WORD)((DWORD)(lpRect->w) * gpScreenReal->w / gpScreen->w);
- dstrect.h = (WORD)((DWORD)(lpRect->h) * screenRealHeight / gpScreen->h);
- SDL_SoftStretch(gpScreen, (SDL_Rect *)lpRect, gpScreenReal, &dstrect);
- }
- else if (g_wShakeTime != 0)
- {
-
-
-
- srcrect.x = 0;
- srcrect.y = 0;
- srcrect.w = 320;
- srcrect.h = 200 - g_wShakeLevel;
- dstrect.x = 0;
- dstrect.y = screenRealY;
- dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
- dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
- if (g_wShakeTime & 1)
- {
- srcrect.y = g_wShakeLevel;
- }
- else
- {
- dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
- }
- SDL_SoftStretch(gpScreen, &srcrect, gpScreenReal, &dstrect);
- if (g_wShakeTime & 1)
- {
- dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
- }
- else
- {
- dstrect.y = screenRealY;
- }
- dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
- SDL_FillRect(gpScreenReal, &dstrect, 0);
- #if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
- dstrect.x = dstrect.y = 0;
- dstrect.w = gpScreenReal->w;
- dstrect.h = gpScreenReal->h;
- #endif
- g_wShakeTime--;
- }
- else
- {
- dstrect.x = 0;
- dstrect.y = screenRealY;
- dstrect.w = gpScreenReal->w;
- dstrect.h = screenRealHeight;
- SDL_SoftStretch(gpScreen, NULL, gpScreenReal, &dstrect);
- #if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION <= 2
- dstrect.x = dstrect.y = 0;
- dstrect.w = gpScreenReal->w;
- dstrect.h = gpScreenReal->h;
- #endif
- }
- #if SDL_VERSION_ATLEAST(2,0,0)
- VIDEO_RenderCopy();
- #else
- SDL_UpdateRect(gpScreenReal, dstrect.x, dstrect.y, dstrect.w, dstrect.h);
- #endif
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- SDL_UnlockSurface(gpScreenReal);
- }
- }
- VOID
- VIDEO_SetPalette(
- SDL_Color rgPalette[256]
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- SDL_Palette *palette = SDL_AllocPalette(256);
- if (palette == NULL)
- {
- return;
- }
- SDL_SetPaletteColors(palette, rgPalette, 0, 256);
- SDL_SetSurfacePalette(gpScreen, palette);
- SDL_SetSurfacePalette(gpScreenBak, palette);
-
-
-
-
- SDL_SetSurfaceColorMod(gpScreen, 0, 0, 0);
- SDL_SetSurfaceColorMod(gpScreen, 0xFF, 0xFF, 0xFF);
- SDL_SetSurfaceColorMod(gpScreenBak, 0, 0, 0);
- SDL_SetSurfaceColorMod(gpScreenBak, 0xFF, 0xFF, 0xFF);
- VIDEO_UpdateScreen(NULL);
-
- SDL_FreePalette(palette);
- #else
- SDL_SetPalette(gpScreen, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
- SDL_SetPalette(gpScreenBak, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
- SDL_SetPalette(gpScreenReal, SDL_LOGPAL | SDL_PHYSPAL, rgPalette, 0, 256);
- # if defined(PAL_FORCE_UPDATE_ON_PALETTE_SET)
- {
- static UINT32 time = 0;
- if (SDL_GetTicks() - time > 50)
- {
- SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
- time = SDL_GetTicks();
- }
- }
- # endif
- #endif
- }
- VOID
- VIDEO_Resize(
- INT w,
- INT h
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- if (gpTexture) SDL_DestroyTexture(gpTexture);
- gpTexture = VIDEO_CreateTexture(w, h);
- if (gpTexture == NULL)
- TerminateOnError("Re-creating texture failed on window resize!\n");
- #else
- DWORD flags;
- PAL_LARGE SDL_Color palette[256];
- int i;
-
-
-
- for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
- {
- palette[i] = gpScreenReal->format->palette->colors[i];
- }
-
-
-
- flags = gpScreenReal->flags;
- SDL_FreeSurface(gpScreenReal);
- gpScreenReal = SDL_SetVideoMode(w, h, 8, flags);
- if (gpScreenReal == NULL)
- {
-
-
-
- gpScreenReal = SDL_SetVideoMode(PAL_DEFAULT_WINDOW_WIDTH, PAL_DEFAULT_WINDOW_HEIGHT, 8, SDL_SWSURFACE);
- }
- SDL_SetPalette(gpScreenReal, SDL_PHYSPAL | SDL_LOGPAL, palette, 0, i);
- VIDEO_UpdateScreen(NULL);
- #endif
- }
- SDL_Color *
- VIDEO_GetPalette(
- VOID
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- return gpScreen->format->palette->colors;
- #else
- return gpScreenReal->format->palette->colors;
- #endif
- }
- VOID
- VIDEO_ToggleScaleScreen(
- VOID
- )
- {
- bScaleScreen = !bScaleScreen;
- VIDEO_Resize(PAL_DEFAULT_WINDOW_WIDTH, PAL_DEFAULT_WINDOW_HEIGHT);
- VIDEO_UpdateScreen(NULL);
- }
- VOID
- VIDEO_ToggleFullscreen(
- VOID
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- if (gConfig.fFullScreen)
- {
- SDL_SetWindowFullscreen(gpWindow, 0);
- gConfig.fFullScreen = FALSE;
- }
- else
- {
- SDL_SetWindowFullscreen(gpWindow, SDL_WINDOW_FULLSCREEN_DESKTOP);
- gConfig.fFullScreen = TRUE;
- }
- #else
- DWORD flags;
- PAL_LARGE SDL_Color palette[256];
- int i;
-
-
-
- for (i = 0; i < gpScreenReal->format->palette->ncolors; i++)
- {
- palette[i] = gpScreenReal->format->palette->colors[i];
- }
-
-
-
- flags = gpScreenReal->flags;
- if (flags & SDL_FULLSCREEN)
- {
-
-
-
- flags &= ~SDL_FULLSCREEN;
- flags |= SDL_RESIZABLE;
- SDL_ShowCursor(TRUE);
- }
- else
- {
-
-
-
- flags |= SDL_FULLSCREEN;
- SDL_ShowCursor(FALSE);
- }
-
-
-
- SDL_FreeSurface(gpScreenReal);
-
-
-
- if (gConfig.dwScreenWidth == 640 && gConfig.dwScreenHeight == 400 && (flags & SDL_FULLSCREEN))
- {
- gpScreenReal = SDL_SetVideoMode(640, 480, 8, flags);
- }
- else if (gConfig.dwScreenWidth == 640 && gConfig.dwScreenHeight == 480 && !(flags & SDL_FULLSCREEN))
- {
- gpScreenReal = SDL_SetVideoMode(640, 400, 8, flags);
- }
- else
- {
- gpScreenReal = SDL_SetVideoMode(gConfig.dwScreenWidth, gConfig.dwScreenHeight, 8, flags);
- }
- VIDEO_SetPalette(palette);
-
-
-
- VIDEO_UpdateScreen(NULL);
- #endif
- }
- VOID
- VIDEO_SaveScreenshot(
- VOID
- )
- {
- char filename[1024];
- #ifdef _WIN32
- SYSTEMTIME st;
- GetLocalTime(&st);
- sprintf(filename, "%s%04d%02d%02d%02d%02d%02d%03d.bmp", PAL_SCREENSHOT_PREFIX, st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
- #else
- struct timeval tv;
- struct tm *ptm;
- gettimeofday(&tv, NULL);
- ptm = localtime(&tv.tv_sec);
- sprintf(filename, "%s%04d%02d%02d%02d%02d%02d%03d.bmp", PAL_SCREENSHOT_PREFIX, ptm->tm_year + 1900, ptm->tm_mon, ptm->tm_mday, ptm->tm_hour, ptm->tm_min, ptm->tm_sec, (int)(tv.tv_usec / 1000));
- #endif
-
-
-
-
- #if SDL_VERSION_ATLEAST(2,0,0)
- SDL_SaveBMP(gpScreen, filename);
- #else
- SDL_SaveBMP(gpScreenReal, filename);
- #endif
- }
- VOID
- VIDEO_ShakeScreen(
- WORD wShakeTime,
- WORD wShakeLevel
- )
- {
- g_wShakeTime = wShakeTime;
- g_wShakeLevel = wShakeLevel;
- }
- VOID
- VIDEO_SwitchScreen(
- WORD wSpeed
- )
- {
- int i, j;
- const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
- SDL_Rect dstrect;
- short offset = 240 - 200;
- short screenRealHeight = gpScreenReal->h;
- short screenRealY = 0;
- if (!bScaleScreen)
- {
- screenRealHeight -= offset;
- screenRealY = offset / 2;
- }
- wSpeed++;
- wSpeed *= 10;
- for (i = 0; i < 6; i++)
- {
- for (j = rgIndex[i]; j < gpScreen->pitch * gpScreen->h; j += 6)
- {
- ((LPBYTE)(gpScreenBak->pixels))[j] = ((LPBYTE)(gpScreen->pixels))[j];
- }
-
-
-
- dstrect.x = 0;
- dstrect.y = screenRealY;
- dstrect.w = gpScreenReal->w;
- dstrect.h = screenRealHeight;
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- if (SDL_LockSurface(gpScreenReal) < 0)
- return;
- }
- SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- VIDEO_RenderCopy();
- #else
- SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
- #endif
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- SDL_UnlockSurface(gpScreenReal);
- }
- UTIL_Delay(wSpeed);
- }
- }
- VOID
- VIDEO_FadeScreen(
- WORD wSpeed
- )
- {
- int i, j, k;
- DWORD time;
- BYTE a, b;
- const int rgIndex[6] = {0, 3, 1, 5, 2, 4};
- SDL_Rect dstrect;
- short offset = 240 - 200;
- short screenRealHeight = gpScreenReal->h;
- short screenRealY = 0;
-
-
-
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- if (SDL_LockSurface(gpScreenReal) < 0)
- return;
- }
- if (!bScaleScreen)
- {
- screenRealHeight -= offset;
- screenRealY = offset / 2;
- }
- time = SDL_GetTicks();
- wSpeed++;
- wSpeed *= 10;
- for (i = 0; i < 12; i++)
- {
- for (j = 0; j < 6; j++)
- {
- PAL_ProcessEvent();
- while (!SDL_TICKS_PASSED(SDL_GetTicks(), time))
- {
- PAL_ProcessEvent();
- SDL_Delay(5);
- }
- time = SDL_GetTicks() + wSpeed;
-
-
-
-
- for (k = rgIndex[j]; k < gpScreen->pitch * gpScreen->h; k += 6)
- {
- a = ((LPBYTE)(gpScreen->pixels))[k];
- b = ((LPBYTE)(gpScreenBak->pixels))[k];
- if (i > 0)
- {
- if ((a & 0x0F) > (b & 0x0F))
- {
- b++;
- }
- else if ((a & 0x0F) < (b & 0x0F))
- {
- b--;
- }
- }
- ((LPBYTE)(gpScreenBak->pixels))[k] = ((a & 0xF0) | (b & 0x0F));
- }
-
-
-
- if (g_wShakeTime != 0)
- {
-
-
-
- SDL_Rect srcrect, dstrect;
- srcrect.x = 0;
- srcrect.y = 0;
- srcrect.w = 320;
- srcrect.h = 200 - g_wShakeLevel;
- dstrect.x = 0;
- dstrect.y = screenRealY;
- dstrect.w = 320 * gpScreenReal->w / gpScreen->w;
- dstrect.h = (200 - g_wShakeLevel) * screenRealHeight / gpScreen->h;
- if (g_wShakeTime & 1)
- {
- srcrect.y = g_wShakeLevel;
- }
- else
- {
- dstrect.y = (screenRealY + g_wShakeLevel) * screenRealHeight / gpScreen->h;
- }
- SDL_SoftStretch(gpScreenBak, &srcrect, gpScreenReal, &dstrect);
- if (g_wShakeTime & 1)
- {
- dstrect.y = (screenRealY + screenRealHeight - g_wShakeLevel) * screenRealHeight / gpScreen->h;
- }
- else
- {
- dstrect.y = screenRealY;
- }
- dstrect.h = g_wShakeLevel * screenRealHeight / gpScreen->h;
- SDL_FillRect(gpScreenReal, &dstrect, 0);
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- VIDEO_RenderCopy();
- #else
- SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
- #endif
- g_wShakeTime--;
- }
- else
- {
- dstrect.x = 0;
- dstrect.y = screenRealY;
- dstrect.w = gpScreenReal->w;
- dstrect.h = screenRealHeight;
- SDL_SoftStretch(gpScreenBak, NULL, gpScreenReal, &dstrect);
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- VIDEO_RenderCopy();
- #else
- SDL_UpdateRect(gpScreenReal, 0, 0, gpScreenReal->w, gpScreenReal->h);
- #endif
- }
- }
- }
- if (SDL_MUSTLOCK(gpScreenReal))
- {
- SDL_UnlockSurface(gpScreenReal);
- }
-
-
-
- VIDEO_UpdateScreen(NULL);
- }
- void
- VIDEO_SetWindowTitle(
- const char* pszTitle
- )
- {
- #if SDL_VERSION_ATLEAST(2,0,0)
- SDL_SetWindowTitle(gpWindow, pszTitle);
- #else
- SDL_WM_SetCaption(lpszCaption, NULL);
- #endif
- }
- SDL_Surface *
- VIDEO_CreateCompatibleSurface(
- SDL_Surface *pSource
- )
- {
-
-
-
- SDL_Surface *dest = SDL_CreateRGBSurface(pSource->flags,
- pSource->w, pSource->h, pSource->format->BitsPerPixel,
- pSource->format->Rmask, pSource->format->Gmask,
- pSource->format->Bmask, pSource->format->Amask);
- if (dest)
- {
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- SDL_SetSurfacePalette(dest, pSource->format->palette);
- #else
- SDL_SetPalette(dest, SDL_PHYSPAL | SDL_LOGPAL, VIDEO_GetPalette(), 0, 256);
- #endif
- }
- return dest;
- }
- SDL_Surface *
- VIDEO_DuplicateSurface(
- SDL_Surface *pSource,
- const SDL_Rect *pRect
- )
- {
- SDL_Surface* dest = VIDEO_CreateCompatibleSurface(pSource);
- if (dest)
- {
- VIDEO_CopySurface(pSource, pRect, dest, NULL);
- }
- return dest;
- }
- void
- VIDEO_UpdateSurfacePalette(
- SDL_Surface *pSurface,
- SDL_Surface *pSource
- )
- {
- #if SDL_VERSION_ATLEAST(2, 0, 0)
- SDL_SetSurfacePalette(pSurface, pSource->format->palette);
- #else
- SDL_SetPalette(pSurface, SDL_PHYSPAL | SDL_LOGPAL, VIDEO_GetPalette(), 0, 256);
- #endif
- }
|