mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
2712 lines
75 KiB
C++
2712 lines
75 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#if defined(SDL_BACKEND)
|
|
#include "backends/graphics/surfacesdl/surfacesdl-graphics.h"
|
|
#include "backends/events/sdl/sdl-events.h"
|
|
#include "common/config-manager.h"
|
|
#include "common/mutex.h"
|
|
#include "common/textconsole.h"
|
|
#include "common/translation.h"
|
|
#include "common/util.h"
|
|
#include "common/file.h"
|
|
#include "common/frac.h"
|
|
#ifdef USE_RGB_COLOR
|
|
#include "common/list.h"
|
|
#endif
|
|
#include "graphics/font.h"
|
|
#include "graphics/fontman.h"
|
|
#include "graphics/scaler.h"
|
|
#include "graphics/scaler/aspect.h"
|
|
#include "graphics/surface.h"
|
|
#include "gui/debugger.h"
|
|
#include "gui/EventRecorder.h"
|
|
#ifdef USE_PNG
|
|
#include "image/png.h"
|
|
#else
|
|
#include "image/bmp.h"
|
|
#endif
|
|
#ifdef USE_TTS
|
|
#include "common/text-to-speech.h"
|
|
#endif
|
|
|
|
// SDL surface flags which got removed in SDL2.
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
#define SDL_SRCCOLORKEY 0
|
|
#define SDL_SRCALPHA 0
|
|
#define SDL_FULLSCREEN 0x40000000
|
|
#endif
|
|
|
|
static const OSystem::GraphicsMode s_supportedGraphicsModes[] = {
|
|
{"1x", _s("Normal (no scaling)"), GFX_NORMAL},
|
|
#ifdef USE_SCALERS
|
|
{"2x", "2x", GFX_DOUBLESIZE},
|
|
{"3x", "3x", GFX_TRIPLESIZE},
|
|
{"2xsai", "2xSAI", GFX_2XSAI},
|
|
{"super2xsai", "Super2xSAI", GFX_SUPER2XSAI},
|
|
{"supereagle", "SuperEagle", GFX_SUPEREAGLE},
|
|
{"advmame2x", "AdvMAME2x", GFX_ADVMAME2X},
|
|
{"advmame3x", "AdvMAME3x", GFX_ADVMAME3X},
|
|
#ifdef USE_HQ_SCALERS
|
|
{"hq2x", "HQ2x", GFX_HQ2X},
|
|
{"hq3x", "HQ3x", GFX_HQ3X},
|
|
#endif
|
|
{"tv2x", "TV2x", GFX_TV2X},
|
|
{"dotmatrix", "DotMatrix", GFX_DOTMATRIX},
|
|
#endif
|
|
{0, 0, 0}
|
|
};
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
const OSystem::GraphicsMode s_supportedStretchModes[] = {
|
|
{"center", _s("Center"), STRETCH_CENTER},
|
|
{"pixel-perfect", _s("Pixel-perfect scaling"), STRETCH_INTEGRAL},
|
|
{"fit", _s("Fit to window"), STRETCH_FIT},
|
|
{"stretch", _s("Stretch to window"), STRETCH_STRETCH},
|
|
{"fit_force_aspect", _s("Fit to window (4:3)"), STRETCH_FIT_FORCE_ASPECT},
|
|
{nullptr, nullptr, 0}
|
|
};
|
|
#endif
|
|
|
|
DECLARE_TRANSLATION_ADDITIONAL_CONTEXT("Normal (no scaling)", "lowres")
|
|
|
|
// Table of the cursor scalers [scaleFactor - 1]
|
|
static ScalerProc *scalersMagn[3] = {
|
|
#ifdef USE_SCALERS
|
|
Normal1x, AdvMame2x, AdvMame3x
|
|
#else // remove dependencies on other scalers
|
|
Normal1x, Normal1x, Normal1x
|
|
#endif
|
|
};
|
|
|
|
static const int s_gfxModeSwitchTable[][4] = {
|
|
{ GFX_NORMAL, GFX_DOUBLESIZE, GFX_TRIPLESIZE, -1 },
|
|
{ GFX_NORMAL, GFX_ADVMAME2X, GFX_ADVMAME3X, -1 },
|
|
{ GFX_NORMAL, GFX_HQ2X, GFX_HQ3X, -1 },
|
|
{ GFX_NORMAL, GFX_2XSAI, -1, -1 },
|
|
{ GFX_NORMAL, GFX_SUPER2XSAI, -1, -1 },
|
|
{ GFX_NORMAL, GFX_SUPEREAGLE, -1, -1 },
|
|
{ GFX_NORMAL, GFX_TV2X, -1, -1 },
|
|
{ GFX_NORMAL, GFX_DOTMATRIX, -1, -1 }
|
|
};
|
|
|
|
AspectRatio::AspectRatio(int w, int h) {
|
|
// TODO : Validation and so on...
|
|
// Currently, we just ensure the program don't instantiate non-supported aspect ratios
|
|
_kw = w;
|
|
_kh = h;
|
|
}
|
|
|
|
#if !defined(__SYMBIAN32__) && defined(USE_SCALERS)
|
|
static AspectRatio getDesiredAspectRatio() {
|
|
const size_t AR_COUNT = 4;
|
|
const char *desiredAspectRatioAsStrings[AR_COUNT] = { "auto", "4/3", "16/9", "16/10" };
|
|
const AspectRatio desiredAspectRatios[AR_COUNT] = { AspectRatio(0, 0), AspectRatio(4,3), AspectRatio(16,9), AspectRatio(16,10) };
|
|
|
|
//TODO : We could parse an arbitrary string, if we code enough proper validation
|
|
Common::String desiredAspectRatio = ConfMan.get("desired_screen_aspect_ratio");
|
|
|
|
for (size_t i = 0; i < AR_COUNT; i++) {
|
|
assert(desiredAspectRatioAsStrings[i] != NULL);
|
|
|
|
if (!scumm_stricmp(desiredAspectRatio.c_str(), desiredAspectRatioAsStrings[i])) {
|
|
return desiredAspectRatios[i];
|
|
}
|
|
}
|
|
// TODO : Report a warning
|
|
return AspectRatio(0, 0);
|
|
}
|
|
#endif
|
|
|
|
SurfaceSdlGraphicsManager::SurfaceSdlGraphicsManager(SdlEventSource *sdlEventSource, SdlWindow *window)
|
|
:
|
|
SdlGraphicsManager(sdlEventSource, window),
|
|
#ifdef USE_OSD
|
|
_osdMessageSurface(nullptr), _osdMessageAlpha(SDL_ALPHA_TRANSPARENT), _osdMessageFadeStartTime(0),
|
|
_osdIconSurface(nullptr),
|
|
#endif
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
_renderer(nullptr), _screenTexture(nullptr),
|
|
#endif
|
|
#if defined(WIN32) && !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
_originalBitsPerPixel(0),
|
|
#endif
|
|
_screen(0), _tmpscreen(0),
|
|
_screenFormat(Graphics::PixelFormat::createFormatCLUT8()),
|
|
_cursorFormat(Graphics::PixelFormat::createFormatCLUT8()),
|
|
_overlayscreen(0), _tmpscreen2(0),
|
|
_scalerProc(0), _screenChangeCount(0),
|
|
_mouseData(nullptr), _mouseSurface(nullptr),
|
|
_mouseOrigSurface(nullptr), _cursorDontScale(false), _cursorPaletteDisabled(true),
|
|
_currentShakeXOffset(0), _currentShakeYOffset(0),
|
|
_paletteDirtyStart(0), _paletteDirtyEnd(0),
|
|
_screenIsLocked(false),
|
|
_displayDisabled(false),
|
|
#ifdef USE_SDL_DEBUG_FOCUSRECT
|
|
_enableFocusRectDebugCode(false), _enableFocusRect(false), _focusRect(),
|
|
#endif
|
|
_transactionMode(kTransactionNone) {
|
|
|
|
// allocate palette storage
|
|
_currentPalette = (SDL_Color *)calloc(sizeof(SDL_Color), 256);
|
|
_cursorPalette = (SDL_Color *)calloc(sizeof(SDL_Color), 256);
|
|
|
|
_mouseBackup.x = _mouseBackup.y = _mouseBackup.w = _mouseBackup.h = 0;
|
|
|
|
#ifdef USE_SDL_DEBUG_FOCUSRECT
|
|
if (ConfMan.hasKey("use_sdl_debug_focusrect"))
|
|
_enableFocusRectDebugCode = ConfMan.getBool("use_sdl_debug_focusrect");
|
|
#endif
|
|
|
|
#if !defined(__SYMBIAN32__) && defined(USE_SCALERS)
|
|
_videoMode.mode = GFX_DOUBLESIZE;
|
|
_videoMode.scaleFactor = 2;
|
|
_videoMode.aspectRatioCorrection = ConfMan.getBool("aspect_ratio");
|
|
_videoMode.desiredAspectRatio = getDesiredAspectRatio();
|
|
_scalerProc = Normal2x;
|
|
#else // for small screen platforms
|
|
_videoMode.mode = GFX_NORMAL;
|
|
_videoMode.scaleFactor = 1;
|
|
_videoMode.aspectRatioCorrection = false;
|
|
_scalerProc = Normal1x;
|
|
#endif
|
|
_scalerType = 0;
|
|
|
|
_videoMode.fullscreen = ConfMan.getBool("fullscreen");
|
|
_videoMode.filtering = ConfMan.getBool("filtering");
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
_videoMode.stretchMode = STRETCH_FIT;
|
|
#endif
|
|
}
|
|
|
|
SurfaceSdlGraphicsManager::~SurfaceSdlGraphicsManager() {
|
|
unloadGFXMode();
|
|
if (_mouseOrigSurface) {
|
|
SDL_FreeSurface(_mouseOrigSurface);
|
|
if (_mouseOrigSurface == _mouseSurface) {
|
|
_mouseSurface = nullptr;
|
|
}
|
|
}
|
|
if (_mouseSurface) {
|
|
SDL_FreeSurface(_mouseSurface);
|
|
}
|
|
free(_currentPalette);
|
|
free(_cursorPalette);
|
|
delete[] _mouseData;
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::hasFeature(OSystem::Feature f) const {
|
|
return
|
|
(f == OSystem::kFeatureFullscreenMode) ||
|
|
(f == OSystem::kFeatureAspectRatioCorrection) ||
|
|
(f == OSystem::kFeatureFilteringMode) ||
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
(f == OSystem::kFeatureStretchMode) ||
|
|
#endif
|
|
(f == OSystem::kFeatureCursorPalette) ||
|
|
(f == OSystem::kFeatureIconifyWindow);
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setFeatureState(OSystem::Feature f, bool enable) {
|
|
switch (f) {
|
|
case OSystem::kFeatureFullscreenMode:
|
|
setFullscreenMode(enable);
|
|
break;
|
|
case OSystem::kFeatureAspectRatioCorrection:
|
|
setAspectRatioCorrection(enable);
|
|
break;
|
|
case OSystem::kFeatureFilteringMode:
|
|
setFilteringMode(enable);
|
|
break;
|
|
case OSystem::kFeatureCursorPalette:
|
|
_cursorPaletteDisabled = !enable;
|
|
blitCursor();
|
|
break;
|
|
case OSystem::kFeatureIconifyWindow:
|
|
if (enable)
|
|
_window->iconifyWindow();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::getFeatureState(OSystem::Feature f) const {
|
|
// We need to allow this to be called from within a transaction, since we
|
|
// currently use it to retreive the graphics state, when switching from
|
|
// SDL->OpenGL mode for example.
|
|
//assert(_transactionMode == kTransactionNone);
|
|
|
|
switch (f) {
|
|
case OSystem::kFeatureFullscreenMode:
|
|
return _videoMode.fullscreen;
|
|
case OSystem::kFeatureAspectRatioCorrection:
|
|
return _videoMode.aspectRatioCorrection;
|
|
case OSystem::kFeatureFilteringMode:
|
|
return _videoMode.filtering;
|
|
case OSystem::kFeatureCursorPalette:
|
|
return !_cursorPaletteDisabled;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
const OSystem::GraphicsMode *SurfaceSdlGraphicsManager::getSupportedGraphicsModes() const {
|
|
return s_supportedGraphicsModes;
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::getDefaultGraphicsMode() const {
|
|
#ifdef USE_SCALERS
|
|
return GFX_DOUBLESIZE;
|
|
#else
|
|
return GFX_NORMAL;
|
|
#endif
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::resetGraphicsScale() {
|
|
setGraphicsMode(s_gfxModeSwitchTable[_scalerType][0]);
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::beginGFXTransaction() {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
_transactionMode = kTransactionActive;
|
|
|
|
_transactionDetails.sizeChanged = false;
|
|
|
|
_transactionDetails.needHotswap = false;
|
|
_transactionDetails.needUpdatescreen = false;
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
_transactionDetails.needDisplayResize = false;
|
|
_transactionDetails.needTextureUpdate = false;
|
|
#endif
|
|
#ifdef USE_RGB_COLOR
|
|
_transactionDetails.formatChanged = false;
|
|
#endif
|
|
|
|
_oldVideoMode = _videoMode;
|
|
}
|
|
|
|
OSystem::TransactionError SurfaceSdlGraphicsManager::endGFXTransaction() {
|
|
int errors = OSystem::kTransactionSuccess;
|
|
|
|
assert(_transactionMode != kTransactionNone);
|
|
|
|
if (_transactionMode == kTransactionRollback) {
|
|
if (_videoMode.fullscreen != _oldVideoMode.fullscreen) {
|
|
errors |= OSystem::kTransactionFullscreenFailed;
|
|
|
|
_videoMode.fullscreen = _oldVideoMode.fullscreen;
|
|
} else if (_videoMode.aspectRatioCorrection != _oldVideoMode.aspectRatioCorrection) {
|
|
errors |= OSystem::kTransactionAspectRatioFailed;
|
|
|
|
_videoMode.aspectRatioCorrection = _oldVideoMode.aspectRatioCorrection;
|
|
} else if (_videoMode.mode != _oldVideoMode.mode) {
|
|
errors |= OSystem::kTransactionModeSwitchFailed;
|
|
|
|
_videoMode.mode = _oldVideoMode.mode;
|
|
_videoMode.scaleFactor = _oldVideoMode.scaleFactor;
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
} else if (_videoMode.stretchMode != _oldVideoMode.stretchMode) {
|
|
errors |= OSystem::kTransactionStretchModeSwitchFailed;
|
|
|
|
_videoMode.stretchMode = _oldVideoMode.stretchMode;
|
|
#endif
|
|
} else if (_videoMode.filtering != _oldVideoMode.filtering) {
|
|
errors |= OSystem::kTransactionFilteringFailed;
|
|
|
|
_videoMode.filtering = _oldVideoMode.filtering;
|
|
#ifdef USE_RGB_COLOR
|
|
} else if (_videoMode.format != _oldVideoMode.format) {
|
|
errors |= OSystem::kTransactionFormatNotSupported;
|
|
|
|
_videoMode.format = _oldVideoMode.format;
|
|
_screenFormat = _videoMode.format;
|
|
#endif
|
|
} else if (_videoMode.screenWidth != _oldVideoMode.screenWidth || _videoMode.screenHeight != _oldVideoMode.screenHeight) {
|
|
errors |= OSystem::kTransactionSizeChangeFailed;
|
|
|
|
_videoMode.screenWidth = _oldVideoMode.screenWidth;
|
|
_videoMode.screenHeight = _oldVideoMode.screenHeight;
|
|
_videoMode.overlayWidth = _oldVideoMode.overlayWidth;
|
|
_videoMode.overlayHeight = _oldVideoMode.overlayHeight;
|
|
}
|
|
|
|
if (_videoMode.fullscreen == _oldVideoMode.fullscreen &&
|
|
_videoMode.aspectRatioCorrection == _oldVideoMode.aspectRatioCorrection &&
|
|
_videoMode.mode == _oldVideoMode.mode &&
|
|
_videoMode.filtering == _oldVideoMode.filtering &&
|
|
_videoMode.screenWidth == _oldVideoMode.screenWidth &&
|
|
_videoMode.screenHeight == _oldVideoMode.screenHeight) {
|
|
|
|
// Our new video mode would now be exactly the same as the
|
|
// old one. Since we still can not assume SDL_SetVideoMode
|
|
// to be working fine, we need to invalidate the old video
|
|
// mode, so loadGFXMode would error out properly.
|
|
_oldVideoMode.setup = false;
|
|
}
|
|
}
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
if (_transactionDetails.sizeChanged || _transactionDetails.formatChanged) {
|
|
#else
|
|
if (_transactionDetails.sizeChanged) {
|
|
#endif
|
|
unloadGFXMode();
|
|
if (!loadGFXMode()) {
|
|
if (_oldVideoMode.setup) {
|
|
_transactionMode = kTransactionRollback;
|
|
errors |= endGFXTransaction();
|
|
}
|
|
} else {
|
|
setGraphicsModeIntern();
|
|
clearOverlay();
|
|
|
|
_videoMode.setup = true;
|
|
// OSystem_SDL::pollEvent used to update the screen change count,
|
|
// but actually it gives problems when a video mode was changed
|
|
// but OSystem_SDL::pollEvent was not called. This for example
|
|
// caused a crash under certain circumstances when returning to launcher.
|
|
// To fix this issue we update the screen change count right here.
|
|
_screenChangeCount++;
|
|
}
|
|
} else if (_transactionDetails.needHotswap) {
|
|
setGraphicsModeIntern();
|
|
if (!hotswapGFXMode()) {
|
|
if (_oldVideoMode.setup) {
|
|
_transactionMode = kTransactionRollback;
|
|
errors |= endGFXTransaction();
|
|
}
|
|
} else {
|
|
_videoMode.setup = true;
|
|
// OSystem_SDL::pollEvent used to update the screen change count,
|
|
// but actually it gives problems when a video mode was changed
|
|
// but OSystem_SDL::pollEvent was not called. This for example
|
|
// caused a crash under certain circumstances when returning to launcher.
|
|
// To fix this issue we update the screen change count right here.
|
|
_screenChangeCount++;
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
if (_transactionDetails.needDisplayResize)
|
|
recalculateDisplayAreas();
|
|
#endif
|
|
if (_transactionDetails.needUpdatescreen)
|
|
internUpdateScreen();
|
|
}
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
} else if (_transactionDetails.needTextureUpdate) {
|
|
setGraphicsModeIntern();
|
|
recreateScreenTexture();
|
|
if (_transactionDetails.needDisplayResize)
|
|
recalculateDisplayAreas();
|
|
internUpdateScreen();
|
|
#endif
|
|
} else if (_transactionDetails.needUpdatescreen) {
|
|
setGraphicsModeIntern();
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
if (_transactionDetails.needDisplayResize)
|
|
recalculateDisplayAreas();
|
|
#endif
|
|
internUpdateScreen();
|
|
}
|
|
|
|
_transactionMode = kTransactionNone;
|
|
return (OSystem::TransactionError)errors;
|
|
}
|
|
|
|
Graphics::PixelFormat SurfaceSdlGraphicsManager::convertSDLPixelFormat(SDL_PixelFormat *in) const {
|
|
Graphics::PixelFormat out(in->BytesPerPixel,
|
|
8 - in->Rloss, 8 - in->Gloss,
|
|
8 - in->Bloss, 8 - in->Aloss,
|
|
in->Rshift, in->Gshift,
|
|
in->Bshift, in->Ashift);
|
|
|
|
// Workaround to SDL not providing an accurate Aloss value on some platforms.
|
|
if (in->Amask == 0)
|
|
out.aLoss = 8;
|
|
|
|
return out;
|
|
}
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
Common::List<Graphics::PixelFormat> SurfaceSdlGraphicsManager::getSupportedFormats() const {
|
|
assert(!_supportedFormats.empty());
|
|
return _supportedFormats;
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
static void maskToBitCount(Uint32 mask, uint8 &numBits, uint8 &shift) {
|
|
numBits = 0;
|
|
shift = 32;
|
|
for (int i = 0; i < 32; ++i) {
|
|
if (mask & 1) {
|
|
if (i < shift) {
|
|
shift = i;
|
|
}
|
|
++numBits;
|
|
}
|
|
|
|
mask >>= 1;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void SurfaceSdlGraphicsManager::detectSupportedFormats() {
|
|
_supportedFormats.clear();
|
|
|
|
Graphics::PixelFormat format = Graphics::PixelFormat::createFormatCLUT8();
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
{
|
|
SDL_Window *window = _window->getSDLWindow();
|
|
if (window == nullptr) {
|
|
error("Could not find ScummVM window for retrieving default display mode");
|
|
}
|
|
|
|
const int displayIndex = SDL_GetWindowDisplayIndex(window);
|
|
if (displayIndex < 0) {
|
|
error("Could not find ScummVM window display index");
|
|
}
|
|
|
|
SDL_DisplayMode defaultMode;
|
|
if (SDL_GetDesktopDisplayMode(displayIndex, &defaultMode) != 0) {
|
|
error("Could not get default system display mode");
|
|
}
|
|
|
|
int bpp;
|
|
Uint32 rMask, gMask, bMask, aMask;
|
|
if (SDL_PixelFormatEnumToMasks(defaultMode.format, &bpp, &rMask, &gMask, &bMask, &aMask) != SDL_TRUE) {
|
|
error("Could not convert system pixel format %s to masks", SDL_GetPixelFormatName(defaultMode.format));
|
|
}
|
|
|
|
const uint8 bytesPerPixel = SDL_BYTESPERPIXEL(defaultMode.format);
|
|
uint8 rBits, rShift, gBits, gShift, bBits, bShift, aBits, aShift;
|
|
maskToBitCount(rMask, rBits, rShift);
|
|
maskToBitCount(gMask, gBits, gShift);
|
|
maskToBitCount(bMask, bBits, bShift);
|
|
maskToBitCount(aMask, aBits, aShift);
|
|
|
|
format = Graphics::PixelFormat(bytesPerPixel, rBits, gBits, bBits, aBits, rShift, gShift, bShift, aShift);
|
|
|
|
_supportedFormats.push_back(format);
|
|
}
|
|
#endif
|
|
|
|
// Some tables with standard formats that we always list
|
|
// as "supported". If frontend code tries to use one of
|
|
// these, we will perform the necessary format
|
|
// conversion in the background. Of course this incurs a
|
|
// performance hit, but on desktop ports this should not
|
|
// matter. We still push the currently active format to
|
|
// the front, so if frontend code just uses the first
|
|
// available format, it will get one that is "cheap" to
|
|
// use.
|
|
const Graphics::PixelFormat RGBList[] = {
|
|
// RGBA8888, ARGB8888, RGB888
|
|
Graphics::PixelFormat(4, 8, 8, 8, 8, 24, 16, 8, 0),
|
|
Graphics::PixelFormat(4, 8, 8, 8, 8, 16, 8, 0, 24),
|
|
Graphics::PixelFormat(3, 8, 8, 8, 0, 16, 8, 0, 0),
|
|
// RGB565, XRGB1555, RGB555, RGBA4444, ARGB4444
|
|
Graphics::PixelFormat(2, 5, 6, 5, 0, 11, 5, 0, 0),
|
|
Graphics::PixelFormat(2, 5, 5, 5, 1, 10, 5, 0, 15),
|
|
Graphics::PixelFormat(2, 5, 5, 5, 0, 10, 5, 0, 0),
|
|
Graphics::PixelFormat(2, 4, 4, 4, 4, 12, 8, 4, 0),
|
|
Graphics::PixelFormat(2, 4, 4, 4, 4, 8, 4, 0, 12)
|
|
};
|
|
const Graphics::PixelFormat BGRList[] = {
|
|
// ABGR8888, BGRA8888, BGR888
|
|
Graphics::PixelFormat(4, 8, 8, 8, 8, 0, 8, 16, 24),
|
|
Graphics::PixelFormat(4, 8, 8, 8, 8, 8, 16, 24, 0),
|
|
Graphics::PixelFormat(3, 8, 8, 8, 0, 0, 8, 16, 0),
|
|
// BGR565, XBGR1555, BGR555, ABGR4444, BGRA4444
|
|
Graphics::PixelFormat(2, 5, 6, 5, 0, 0, 5, 11, 0),
|
|
Graphics::PixelFormat(2, 5, 5, 5, 1, 0, 5, 10, 15),
|
|
Graphics::PixelFormat(2, 5, 5, 5, 0, 0, 5, 10, 0),
|
|
Graphics::PixelFormat(2, 4, 4, 4, 4, 0, 4, 8, 12),
|
|
Graphics::PixelFormat(2, 4, 4, 4, 4, 4, 8, 12, 0)
|
|
};
|
|
|
|
if (_hwScreen) {
|
|
// Get our currently set hardware format
|
|
Graphics::PixelFormat hwFormat = convertSDLPixelFormat(_hwScreen->format);
|
|
|
|
_supportedFormats.push_back(hwFormat);
|
|
|
|
#if !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
format = hwFormat;
|
|
#endif
|
|
}
|
|
|
|
// TODO: prioritize matching alpha masks
|
|
int i;
|
|
|
|
// Push some RGB formats
|
|
for (i = 0; i < ARRAYSIZE(RGBList); i++) {
|
|
if (_hwScreen && (RGBList[i].bytesPerPixel > format.bytesPerPixel))
|
|
continue;
|
|
if (RGBList[i] != format)
|
|
_supportedFormats.push_back(RGBList[i]);
|
|
}
|
|
|
|
// Push some BGR formats
|
|
for (i = 0; i < ARRAYSIZE(BGRList); i++) {
|
|
if (_hwScreen && (BGRList[i].bytesPerPixel > format.bytesPerPixel))
|
|
continue;
|
|
if (BGRList[i] != format)
|
|
_supportedFormats.push_back(BGRList[i]);
|
|
}
|
|
|
|
// Finally, we always supposed 8 bit palette graphics
|
|
_supportedFormats.push_back(Graphics::PixelFormat::createFormatCLUT8());
|
|
}
|
|
#endif
|
|
|
|
int SurfaceSdlGraphicsManager::getGraphicsModeScale(int mode) const {
|
|
int scale;
|
|
switch (mode) {
|
|
case GFX_NORMAL:
|
|
scale = 1;
|
|
break;
|
|
#ifdef USE_SCALERS
|
|
case GFX_DOUBLESIZE:
|
|
case GFX_2XSAI:
|
|
case GFX_SUPER2XSAI:
|
|
case GFX_SUPEREAGLE:
|
|
case GFX_ADVMAME2X:
|
|
case GFX_TV2X:
|
|
case GFX_DOTMATRIX:
|
|
#ifdef USE_HQ_SCALERS
|
|
case GFX_HQ2X:
|
|
#endif
|
|
scale = 2;
|
|
break;
|
|
case GFX_TRIPLESIZE:
|
|
case GFX_ADVMAME3X:
|
|
#ifdef USE_HQ_SCALERS
|
|
case GFX_HQ3X:
|
|
#endif
|
|
scale = 3;
|
|
break;
|
|
#endif
|
|
default:
|
|
scale = -1;
|
|
}
|
|
|
|
return scale;
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::setGraphicsMode(int mode) {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
assert(_transactionMode == kTransactionActive);
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.mode == mode)
|
|
return true;
|
|
|
|
int newScaleFactor = getGraphicsModeScale(mode);
|
|
|
|
if (newScaleFactor == -1) {
|
|
warning("unknown gfx mode %d", mode);
|
|
return false;
|
|
}
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.scaleFactor != newScaleFactor)
|
|
_transactionDetails.needHotswap = true;
|
|
|
|
_transactionDetails.needUpdatescreen = true;
|
|
|
|
_videoMode.mode = mode;
|
|
_videoMode.scaleFactor = newScaleFactor;
|
|
|
|
return true;
|
|
}
|
|
|
|
ScalerProc *SurfaceSdlGraphicsManager::getGraphicsScalerProc(int mode) const {
|
|
ScalerProc *newScalerProc = 0;
|
|
switch (_videoMode.mode) {
|
|
case GFX_NORMAL:
|
|
newScalerProc = Normal1x;
|
|
break;
|
|
#ifdef USE_SCALERS
|
|
case GFX_DOUBLESIZE:
|
|
newScalerProc = Normal2x;
|
|
break;
|
|
case GFX_TRIPLESIZE:
|
|
newScalerProc = Normal3x;
|
|
break;
|
|
|
|
case GFX_2XSAI:
|
|
newScalerProc = _2xSaI;
|
|
break;
|
|
case GFX_SUPER2XSAI:
|
|
newScalerProc = Super2xSaI;
|
|
break;
|
|
case GFX_SUPEREAGLE:
|
|
newScalerProc = SuperEagle;
|
|
break;
|
|
case GFX_ADVMAME2X:
|
|
newScalerProc = AdvMame2x;
|
|
break;
|
|
case GFX_ADVMAME3X:
|
|
newScalerProc = AdvMame3x;
|
|
break;
|
|
#ifdef USE_HQ_SCALERS
|
|
case GFX_HQ2X:
|
|
newScalerProc = HQ2x;
|
|
break;
|
|
case GFX_HQ3X:
|
|
newScalerProc = HQ3x;
|
|
break;
|
|
#endif
|
|
case GFX_TV2X:
|
|
newScalerProc = TV2x;
|
|
break;
|
|
case GFX_DOTMATRIX:
|
|
newScalerProc = DotMatrix;
|
|
break;
|
|
#endif // USE_SCALERS
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return newScalerProc;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setGraphicsModeIntern() {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
ScalerProc *newScalerProc = getGraphicsScalerProc(_videoMode.mode);
|
|
|
|
if (!newScalerProc) {
|
|
error("Unknown gfx mode %d", _videoMode.mode);
|
|
}
|
|
|
|
_scalerProc = newScalerProc;
|
|
|
|
if (_videoMode.mode != GFX_NORMAL) {
|
|
for (int i = 0; i < ARRAYSIZE(s_gfxModeSwitchTable); i++) {
|
|
if (s_gfxModeSwitchTable[i][1] == _videoMode.mode || s_gfxModeSwitchTable[i][2] == _videoMode.mode) {
|
|
_scalerType = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!_screen || !_hwScreen)
|
|
return;
|
|
|
|
// Blit everything to the screen
|
|
_forceRedraw = true;
|
|
|
|
// Even if the old and new scale factors are the same, we may have a
|
|
// different scaler for the cursor now.
|
|
blitCursor();
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::getGraphicsMode() const {
|
|
assert(_transactionMode == kTransactionNone);
|
|
return _videoMode.mode;
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
const OSystem::GraphicsMode *SurfaceSdlGraphicsManager::getSupportedStretchModes() const {
|
|
return s_supportedStretchModes;
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::getDefaultStretchMode() const {
|
|
return STRETCH_FIT;
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::setStretchMode(int mode) {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
assert(_transactionMode == kTransactionActive);
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.stretchMode == mode)
|
|
return true;
|
|
|
|
// Check this is a valid mode
|
|
const OSystem::GraphicsMode *sm = s_supportedStretchModes;
|
|
bool found = false;
|
|
while (sm->name) {
|
|
if (sm->id == mode) {
|
|
found = true;
|
|
break;
|
|
}
|
|
sm++;
|
|
}
|
|
if (!found) {
|
|
warning("unknown stretch mode %d", mode);
|
|
return false;
|
|
}
|
|
|
|
_transactionDetails.needUpdatescreen = true;
|
|
_transactionDetails.needDisplayResize = true;
|
|
|
|
_videoMode.stretchMode = mode;
|
|
|
|
return true;
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::getStretchMode() const {
|
|
return _videoMode.stretchMode;
|
|
}
|
|
#endif
|
|
|
|
void SurfaceSdlGraphicsManager::initSize(uint w, uint h, const Graphics::PixelFormat *format) {
|
|
assert(_transactionMode == kTransactionActive);
|
|
|
|
_gameScreenShakeXOffset = 0;
|
|
_gameScreenShakeYOffset = 0;
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
//avoid redundant format changes
|
|
Graphics::PixelFormat newFormat;
|
|
if (!format)
|
|
newFormat = Graphics::PixelFormat::createFormatCLUT8();
|
|
else
|
|
newFormat = *format;
|
|
|
|
assert(newFormat.bytesPerPixel > 0);
|
|
|
|
if (newFormat != _videoMode.format) {
|
|
_videoMode.format = newFormat;
|
|
_transactionDetails.formatChanged = true;
|
|
_screenFormat = newFormat;
|
|
}
|
|
#endif
|
|
|
|
#if !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
// Avoid redundant res changes, only in SDL1. In SDL2, redundancies may not
|
|
// actually be redundant if ScummVM is switching between game engines and
|
|
// the screen dimensions are being reinitialized, since window resizing is
|
|
// supposed to reset when this happens
|
|
if ((int)w == _videoMode.screenWidth && (int)h == _videoMode.screenHeight)
|
|
return;
|
|
#endif
|
|
|
|
if ((int)w != _videoMode.screenWidth || (int)h != _videoMode.screenHeight) {
|
|
const bool useDefault = defaultGraphicsModeConfig();
|
|
if (useDefault && w > 320) {
|
|
resetGraphicsScale();
|
|
} else {
|
|
setGraphicsMode(getGraphicsModeIdByName(ConfMan.get("gfx_mode")));
|
|
}
|
|
}
|
|
|
|
_videoMode.screenWidth = w;
|
|
_videoMode.screenHeight = h;
|
|
|
|
_transactionDetails.sizeChanged = true;
|
|
}
|
|
|
|
static void fixupResolutionForAspectRatio(AspectRatio desiredAspectRatio, int &width, int &height) {
|
|
assert(&width != &height);
|
|
|
|
if (desiredAspectRatio.isAuto())
|
|
return;
|
|
|
|
int kw = desiredAspectRatio.kw();
|
|
int kh = desiredAspectRatio.kh();
|
|
|
|
const int w = width;
|
|
const int h = height;
|
|
|
|
int bestW = 0, bestH = 0;
|
|
uint bestMetric = (uint)-1; // Metric is wasted space
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
const int numModes = SDL_GetNumDisplayModes(0);
|
|
SDL_DisplayMode modeData, *mode = &modeData;
|
|
for (int i = 0; i < numModes; ++i) {
|
|
if (SDL_GetDisplayMode(0, i, &modeData)) {
|
|
continue;
|
|
}
|
|
#else
|
|
SDL_Rect const* const*availableModes = SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_SWSURFACE); //TODO : Maybe specify a pixel format
|
|
assert(availableModes);
|
|
|
|
while (const SDL_Rect *mode = *availableModes++) {
|
|
#endif
|
|
if (mode->w < w)
|
|
continue;
|
|
if (mode->h < h)
|
|
continue;
|
|
if (mode->h * kw != mode->w * kh)
|
|
continue;
|
|
|
|
uint metric = mode->w * mode->h - w * h;
|
|
if (metric > bestMetric)
|
|
continue;
|
|
|
|
bestMetric = metric;
|
|
bestW = mode->w;
|
|
bestH = mode->h;
|
|
|
|
// Make editors a bit more happy by having the same amount of closing as
|
|
// opening curley braces.
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
}
|
|
#else
|
|
}
|
|
#endif
|
|
|
|
if (!bestW || !bestH) {
|
|
warning("Unable to enforce the desired aspect ratio");
|
|
return;
|
|
}
|
|
width = bestW;
|
|
height = bestH;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setupHardwareSize() {
|
|
_videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor;
|
|
_videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor;
|
|
|
|
if (_videoMode.screenHeight != 200 && _videoMode.screenHeight != 400)
|
|
_videoMode.aspectRatioCorrection = false;
|
|
|
|
_videoMode.hardwareWidth = _videoMode.screenWidth * _videoMode.scaleFactor;
|
|
_videoMode.hardwareHeight = _videoMode.screenHeight * _videoMode.scaleFactor;
|
|
|
|
if (_videoMode.aspectRatioCorrection) {
|
|
_videoMode.overlayHeight = real2Aspect(_videoMode.overlayHeight);
|
|
_videoMode.hardwareHeight = real2Aspect(_videoMode.hardwareHeight);
|
|
}
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::loadGFXMode() {
|
|
_forceRedraw = true;
|
|
|
|
setupHardwareSize();
|
|
|
|
//
|
|
// Create the surface that contains the 8 bit game data
|
|
//
|
|
|
|
const Graphics::PixelFormat &format = _screenFormat;
|
|
const Uint32 rMask = ((0xFF >> format.rLoss) << format.rShift);
|
|
const Uint32 gMask = ((0xFF >> format.gLoss) << format.gShift);
|
|
const Uint32 bMask = ((0xFF >> format.bLoss) << format.bShift);
|
|
const Uint32 aMask = ((0xFF >> format.aLoss) << format.aShift);
|
|
_screen = SDL_CreateRGBSurface(SDL_SWSURFACE, _videoMode.screenWidth, _videoMode.screenHeight,
|
|
_screenFormat.bytesPerPixel * 8, rMask, gMask, bMask, aMask);
|
|
if (_screen == NULL)
|
|
error("allocating _screen failed");
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
// Avoid having SDL_SRCALPHA set even if we supplied an alpha-channel in the format.
|
|
SDL_SetAlpha(_screen, 0, 255);
|
|
#endif
|
|
|
|
// SDL 1.2 palettes default to all black,
|
|
// SDL 1.3 palettes default to all white,
|
|
// Thus set our own default palette to all black.
|
|
// SDL_SetColors does nothing for non indexed surfaces.
|
|
SDL_SetColors(_screen, _currentPalette, 0, 256);
|
|
|
|
//
|
|
// Create the surface that contains the scaled graphics in 16 bit mode
|
|
//
|
|
|
|
if (_videoMode.fullscreen) {
|
|
fixupResolutionForAspectRatio(_videoMode.desiredAspectRatio, _videoMode.hardwareWidth, _videoMode.hardwareHeight);
|
|
}
|
|
|
|
|
|
#ifdef ENABLE_EVENTRECORDER
|
|
_displayDisabled = ConfMan.getBool("disable_display");
|
|
|
|
if (_displayDisabled) {
|
|
_hwScreen = g_eventRec.getSurface(_videoMode.hardwareWidth, _videoMode.hardwareHeight);
|
|
} else
|
|
#endif
|
|
{
|
|
#if defined(WIN32) && !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
// Save the original bpp to be able to restore the video mode on
|
|
// unload. See _originalBitsPerPixel documentation.
|
|
if (_originalBitsPerPixel == 0) {
|
|
const SDL_VideoInfo *videoInfo = SDL_GetVideoInfo();
|
|
_originalBitsPerPixel = videoInfo->vfmt->BitsPerPixel;
|
|
}
|
|
#endif
|
|
|
|
_hwScreen = SDL_SetVideoMode(_videoMode.hardwareWidth, _videoMode.hardwareHeight, 16,
|
|
_videoMode.fullscreen ? (SDL_FULLSCREEN|SDL_SWSURFACE) : SDL_SWSURFACE
|
|
);
|
|
}
|
|
|
|
#ifdef USE_RGB_COLOR
|
|
detectSupportedFormats();
|
|
#endif
|
|
|
|
if (_hwScreen == NULL) {
|
|
// DON'T use error(), as this tries to bring up the debug
|
|
// console, which WON'T WORK now that _hwScreen is hosed.
|
|
|
|
if (!_oldVideoMode.setup) {
|
|
warning("SDL_SetVideoMode says we can't switch to that mode (%s)", SDL_GetError());
|
|
g_system->quit();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
#if !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
handleResize(_videoMode.hardwareWidth, _videoMode.hardwareHeight, 90, 90);
|
|
#endif
|
|
|
|
//
|
|
// Create the surface used for the graphics in 16 bit before scaling, and also the overlay
|
|
//
|
|
|
|
// Need some extra bytes around when using 2xSaI
|
|
_tmpscreen = SDL_CreateRGBSurface(SDL_SWSURFACE, _videoMode.screenWidth + 3, _videoMode.screenHeight + 3,
|
|
16,
|
|
_hwScreen->format->Rmask,
|
|
_hwScreen->format->Gmask,
|
|
_hwScreen->format->Bmask,
|
|
_hwScreen->format->Amask);
|
|
|
|
if (_tmpscreen == NULL)
|
|
error("allocating _tmpscreen failed");
|
|
|
|
_overlayscreen = SDL_CreateRGBSurface(SDL_SWSURFACE, _videoMode.overlayWidth, _videoMode.overlayHeight,
|
|
16,
|
|
_hwScreen->format->Rmask,
|
|
_hwScreen->format->Gmask,
|
|
_hwScreen->format->Bmask,
|
|
_hwScreen->format->Amask);
|
|
|
|
if (_overlayscreen == NULL)
|
|
error("allocating _overlayscreen failed");
|
|
|
|
_overlayFormat = convertSDLPixelFormat(_overlayscreen->format);
|
|
|
|
_tmpscreen2 = SDL_CreateRGBSurface(SDL_SWSURFACE, _videoMode.overlayWidth + 3, _videoMode.overlayHeight + 3,
|
|
16,
|
|
_hwScreen->format->Rmask,
|
|
_hwScreen->format->Gmask,
|
|
_hwScreen->format->Bmask,
|
|
_hwScreen->format->Amask);
|
|
|
|
if (_tmpscreen2 == NULL)
|
|
error("allocating _tmpscreen2 failed");
|
|
|
|
// Distinguish 555 and 565 mode
|
|
if (_hwScreen->format->Gmask == 0x3E0)
|
|
InitScalers(555);
|
|
else
|
|
InitScalers(565);
|
|
|
|
return true;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::unloadGFXMode() {
|
|
if (_screen) {
|
|
SDL_FreeSurface(_screen);
|
|
_screen = NULL;
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
deinitializeRenderer();
|
|
#endif
|
|
|
|
if (_hwScreen) {
|
|
SDL_FreeSurface(_hwScreen);
|
|
_hwScreen = NULL;
|
|
}
|
|
|
|
if (_tmpscreen) {
|
|
SDL_FreeSurface(_tmpscreen);
|
|
_tmpscreen = NULL;
|
|
}
|
|
|
|
if (_tmpscreen2) {
|
|
SDL_FreeSurface(_tmpscreen2);
|
|
_tmpscreen2 = NULL;
|
|
}
|
|
|
|
if (_overlayscreen) {
|
|
SDL_FreeSurface(_overlayscreen);
|
|
_overlayscreen = NULL;
|
|
}
|
|
|
|
#ifdef USE_OSD
|
|
if (_osdMessageSurface) {
|
|
SDL_FreeSurface(_osdMessageSurface);
|
|
_osdMessageSurface = NULL;
|
|
}
|
|
|
|
if (_osdIconSurface) {
|
|
SDL_FreeSurface(_osdIconSurface);
|
|
_osdIconSurface = NULL;
|
|
}
|
|
#endif
|
|
DestroyScalers();
|
|
|
|
#if defined(WIN32) && !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
// Reset video mode to original.
|
|
// This will ensure that any new graphic manager will use the initial BPP
|
|
// when listing available modes. See _originalBitsPerPixel documentation.
|
|
if (_originalBitsPerPixel != 0)
|
|
SDL_SetVideoMode(_videoMode.screenWidth, _videoMode.screenHeight, _originalBitsPerPixel, _videoMode.fullscreen ? (SDL_FULLSCREEN | SDL_SWSURFACE) : SDL_SWSURFACE);
|
|
#endif
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::hotswapGFXMode() {
|
|
if (!_screen)
|
|
return false;
|
|
|
|
// Keep around the old _screen & _overlayscreen so we can restore the screen data
|
|
// after the mode switch.
|
|
SDL_Surface *old_screen = _screen;
|
|
_screen = NULL;
|
|
SDL_Surface *old_overlayscreen = _overlayscreen;
|
|
_overlayscreen = NULL;
|
|
|
|
// Release the HW screen surface
|
|
if (_hwScreen) {
|
|
SDL_FreeSurface(_hwScreen);
|
|
_hwScreen = NULL;
|
|
}
|
|
if (_tmpscreen) {
|
|
SDL_FreeSurface(_tmpscreen);
|
|
_tmpscreen = NULL;
|
|
}
|
|
if (_tmpscreen2) {
|
|
SDL_FreeSurface(_tmpscreen2);
|
|
_tmpscreen2 = NULL;
|
|
}
|
|
|
|
// Setup the new GFX mode
|
|
if (!loadGFXMode()) {
|
|
unloadGFXMode();
|
|
|
|
_screen = old_screen;
|
|
_overlayscreen = old_overlayscreen;
|
|
|
|
return false;
|
|
}
|
|
|
|
// reset palette
|
|
SDL_SetColors(_screen, _currentPalette, 0, 256);
|
|
|
|
// Restore old screen content
|
|
SDL_BlitSurface(old_screen, NULL, _screen, NULL);
|
|
SDL_BlitSurface(old_overlayscreen, NULL, _overlayscreen, NULL);
|
|
|
|
// Free the old surfaces
|
|
SDL_FreeSurface(old_screen);
|
|
SDL_FreeSurface(old_overlayscreen);
|
|
|
|
// Update cursor to new scale
|
|
blitCursor();
|
|
|
|
// Blit everything to the screen
|
|
internUpdateScreen();
|
|
|
|
return true;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::updateScreen() {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
Common::StackLock lock(_graphicsMutex); // Lock the mutex until this function ends
|
|
|
|
internUpdateScreen();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::internUpdateScreen() {
|
|
SDL_Surface *srcSurf, *origSurf;
|
|
int height, width;
|
|
ScalerProc *scalerProc;
|
|
int scale1;
|
|
|
|
// If there's an active debugger, update it
|
|
GUI::Debugger *debugger = g_engine ? g_engine->getDebugger() : nullptr;
|
|
if (debugger)
|
|
debugger->onFrame();
|
|
|
|
#if !SDL_VERSION_ATLEAST(2, 0, 0)
|
|
// If the shake position changed, fill the dirty area with blackness
|
|
// When building with SDL2, the shake offset is added to the active rect instead,
|
|
// so this isn't needed there.
|
|
if (_currentShakeXOffset != _gameScreenShakeXOffset ||
|
|
(_cursorNeedsRedraw && _mouseBackup.x <= _currentShakeXOffset)) {
|
|
SDL_Rect blackrect = {0, 0, (Uint16)(_gameScreenShakeXOffset * _videoMode.scaleFactor), (Uint16)(_videoMode.screenHeight * _videoMode.scaleFactor)};
|
|
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible)
|
|
blackrect.h = real2Aspect(blackrect.h - 1) + 1;
|
|
|
|
SDL_FillRect(_hwScreen, &blackrect, 0);
|
|
|
|
_currentShakeXOffset = _gameScreenShakeXOffset;
|
|
|
|
_forceRedraw = true;
|
|
}
|
|
if (_currentShakeYOffset != _gameScreenShakeYOffset ||
|
|
(_cursorNeedsRedraw && _mouseBackup.y <= _currentShakeYOffset)) {
|
|
SDL_Rect blackrect = {0, 0, (Uint16)(_videoMode.screenWidth * _videoMode.scaleFactor), (Uint16)(_gameScreenShakeYOffset * _videoMode.scaleFactor)};
|
|
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible)
|
|
blackrect.h = real2Aspect(blackrect.h - 1) + 1;
|
|
|
|
SDL_FillRect(_hwScreen, &blackrect, 0);
|
|
|
|
_currentShakeYOffset = _gameScreenShakeYOffset;
|
|
|
|
_forceRedraw = true;
|
|
}
|
|
#endif
|
|
|
|
// Check whether the palette was changed in the meantime and update the
|
|
// screen surface accordingly.
|
|
if (_screen && _paletteDirtyEnd != 0) {
|
|
SDL_SetColors(_screen, _currentPalette + _paletteDirtyStart,
|
|
_paletteDirtyStart,
|
|
_paletteDirtyEnd - _paletteDirtyStart);
|
|
|
|
_paletteDirtyEnd = 0;
|
|
|
|
_forceRedraw = true;
|
|
}
|
|
|
|
if (!_overlayVisible) {
|
|
origSurf = _screen;
|
|
srcSurf = _tmpscreen;
|
|
width = _videoMode.screenWidth;
|
|
height = _videoMode.screenHeight;
|
|
scalerProc = _scalerProc;
|
|
scale1 = _videoMode.scaleFactor;
|
|
} else {
|
|
origSurf = _overlayscreen;
|
|
srcSurf = _tmpscreen2;
|
|
width = _videoMode.overlayWidth;
|
|
height = _videoMode.overlayHeight;
|
|
scalerProc = Normal1x;
|
|
|
|
scale1 = 1;
|
|
}
|
|
|
|
// Add the area covered by the mouse cursor to the list of dirty rects if
|
|
// we have to redraw the mouse, or if the cursor is alpha-blended since
|
|
// alpha-blended cursors will happily blend into themselves if the surface
|
|
// under the cursor is not reset first
|
|
if (_cursorNeedsRedraw || _cursorFormat.bytesPerPixel == 4)
|
|
undrawMouse();
|
|
|
|
#ifdef USE_OSD
|
|
updateOSD();
|
|
#endif
|
|
|
|
// Force a full redraw if requested
|
|
if (_forceRedraw) {
|
|
_numDirtyRects = 1;
|
|
_dirtyRectList[0].x = 0;
|
|
_dirtyRectList[0].y = 0;
|
|
_dirtyRectList[0].w = width;
|
|
_dirtyRectList[0].h = height;
|
|
}
|
|
|
|
// Only draw anything if necessary
|
|
if (_numDirtyRects > 0 || _cursorNeedsRedraw) {
|
|
SDL_Rect *r;
|
|
SDL_Rect dst;
|
|
uint32 srcPitch, dstPitch;
|
|
SDL_Rect *lastRect = _dirtyRectList + _numDirtyRects;
|
|
|
|
for (r = _dirtyRectList; r != lastRect; ++r) {
|
|
dst = *r;
|
|
dst.x++; // Shift rect by one since 2xSai needs to access the data around
|
|
dst.y++; // any pixel to scale it, and we want to avoid mem access crashes.
|
|
|
|
if (SDL_BlitSurface(origSurf, r, srcSurf, &dst) != 0)
|
|
error("SDL_BlitSurface failed: %s", SDL_GetError());
|
|
}
|
|
|
|
SDL_LockSurface(srcSurf);
|
|
SDL_LockSurface(_hwScreen);
|
|
|
|
srcPitch = srcSurf->pitch;
|
|
dstPitch = _hwScreen->pitch;
|
|
|
|
for (r = _dirtyRectList; r != lastRect; ++r) {
|
|
int dst_x = r->x + _currentShakeXOffset;
|
|
int dst_y = r->y + _currentShakeYOffset;
|
|
int dst_w = 0;
|
|
int dst_h = 0;
|
|
#ifdef USE_SCALERS
|
|
int orig_dst_y = 0;
|
|
#endif
|
|
|
|
if (dst_x < width && dst_y < height) {
|
|
dst_w = r->w;
|
|
if (dst_w > width - dst_x)
|
|
dst_w = width - dst_x;
|
|
|
|
dst_h = r->h;
|
|
if (dst_h > height - dst_y)
|
|
dst_h = height - dst_y;
|
|
|
|
#ifdef USE_SCALERS
|
|
orig_dst_y = dst_y;
|
|
#endif
|
|
dst_x *= scale1;
|
|
dst_y *= scale1;
|
|
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible)
|
|
dst_y = real2Aspect(dst_y);
|
|
|
|
assert(scalerProc != NULL);
|
|
scalerProc((byte *)srcSurf->pixels + (r->x * 2 + 2) + (r->y + 1) * srcPitch, srcPitch,
|
|
(byte *)_hwScreen->pixels + dst_x * 2 + dst_y * dstPitch, dstPitch, dst_w, dst_h);
|
|
}
|
|
|
|
r->x = dst_x;
|
|
r->y = dst_y;
|
|
r->w = dst_w * scale1;
|
|
r->h = dst_h * scale1;
|
|
|
|
#ifdef USE_SCALERS
|
|
if (_videoMode.aspectRatioCorrection && orig_dst_y < height && !_overlayVisible)
|
|
r->h = stretch200To240((uint8 *) _hwScreen->pixels, dstPitch, r->w, r->h, r->x, r->y, orig_dst_y * scale1, _videoMode.filtering);
|
|
#endif
|
|
}
|
|
SDL_UnlockSurface(srcSurf);
|
|
SDL_UnlockSurface(_hwScreen);
|
|
|
|
// Readjust the dirty rect list in case we are doing a full update.
|
|
// This is necessary if shaking is active.
|
|
if (_forceRedraw) {
|
|
_dirtyRectList[0].x = 0;
|
|
_dirtyRectList[0].y = 0;
|
|
_dirtyRectList[0].w = _videoMode.hardwareWidth;
|
|
_dirtyRectList[0].h = _videoMode.hardwareHeight;
|
|
}
|
|
|
|
drawMouse();
|
|
|
|
#ifdef USE_OSD
|
|
drawOSD();
|
|
#endif
|
|
|
|
#ifdef USE_SDL_DEBUG_FOCUSRECT
|
|
// We draw the focus rectangle on top of everything, to assure it's easily visible.
|
|
// Of course when the overlay is visible we do not show it, since it is only for game
|
|
// specific focus.
|
|
if (_enableFocusRect && !_overlayVisible) {
|
|
int x = _focusRect.left + _currentShakeXOffset;
|
|
int y = _focusRect.top + _currentShakeYOffset;
|
|
|
|
if (x < width && y < height) {
|
|
int w = _focusRect.width();
|
|
if (w > width - x)
|
|
w = width - x;
|
|
|
|
int h = _focusRect.height();
|
|
if (h > height - y)
|
|
h = height - y;
|
|
|
|
x *= scale1;
|
|
y *= scale1;
|
|
w *= scale1;
|
|
h *= scale1;
|
|
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible)
|
|
y = real2Aspect(y);
|
|
|
|
if (h > 0 && w > 0) {
|
|
SDL_LockSurface(_hwScreen);
|
|
|
|
// Use white as color for now.
|
|
Uint32 rectColor = SDL_MapRGB(_hwScreen->format, 0xFF, 0xFF, 0xFF);
|
|
|
|
// First draw the top and bottom lines
|
|
// then draw the left and right lines
|
|
if (_hwScreen->format->BytesPerPixel == 2) {
|
|
uint16 *top = (uint16 *)((byte *)_hwScreen->pixels + y * _hwScreen->pitch + x * 2);
|
|
uint16 *bottom = (uint16 *)((byte *)_hwScreen->pixels + (y + h) * _hwScreen->pitch + x * 2);
|
|
byte *left = ((byte *)_hwScreen->pixels + y * _hwScreen->pitch + x * 2);
|
|
byte *right = ((byte *)_hwScreen->pixels + y * _hwScreen->pitch + (x + w - 1) * 2);
|
|
|
|
while (w--) {
|
|
*top++ = rectColor;
|
|
*bottom++ = rectColor;
|
|
}
|
|
|
|
while (h--) {
|
|
*(uint16 *)left = rectColor;
|
|
*(uint16 *)right = rectColor;
|
|
|
|
left += _hwScreen->pitch;
|
|
right += _hwScreen->pitch;
|
|
}
|
|
} else if (_hwScreen->format->BytesPerPixel == 4) {
|
|
uint32 *top = (uint32 *)((byte *)_hwScreen->pixels + y * _hwScreen->pitch + x * 4);
|
|
uint32 *bottom = (uint32 *)((byte *)_hwScreen->pixels + (y + h) * _hwScreen->pitch + x * 4);
|
|
byte *left = ((byte *)_hwScreen->pixels + y * _hwScreen->pitch + x * 4);
|
|
byte *right = ((byte *)_hwScreen->pixels + y * _hwScreen->pitch + (x + w - 1) * 4);
|
|
|
|
while (w--) {
|
|
*top++ = rectColor;
|
|
*bottom++ = rectColor;
|
|
}
|
|
|
|
while (h--) {
|
|
*(uint32 *)left = rectColor;
|
|
*(uint32 *)right = rectColor;
|
|
|
|
left += _hwScreen->pitch;
|
|
right += _hwScreen->pitch;
|
|
}
|
|
}
|
|
|
|
SDL_UnlockSurface(_hwScreen);
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// Finally, blit all our changes to the screen
|
|
if (!_displayDisabled) {
|
|
SDL_UpdateRects(_hwScreen, _numDirtyRects, _dirtyRectList);
|
|
}
|
|
}
|
|
|
|
_numDirtyRects = 0;
|
|
_forceRedraw = false;
|
|
_cursorNeedsRedraw = false;
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::saveScreenshot(const Common::String &filename) const {
|
|
assert(_hwScreen != NULL);
|
|
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
Common::DumpFile out;
|
|
if (!out.open(filename)) {
|
|
return false;
|
|
}
|
|
|
|
int result = SDL_LockSurface(_hwScreen);
|
|
if (result < 0) {
|
|
warning("Could not lock RGB surface");
|
|
return false;
|
|
}
|
|
|
|
Graphics::PixelFormat format = convertSDLPixelFormat(_hwScreen->format);
|
|
Graphics::Surface data;
|
|
data.init(_hwScreen->w, _hwScreen->h, _hwScreen->pitch, _hwScreen->pixels, format);
|
|
#ifdef USE_PNG
|
|
const bool success = Image::writePNG(out, data);
|
|
#else
|
|
const bool success = Image::writeBMP(out, data);
|
|
#endif
|
|
|
|
SDL_UnlockSurface(_hwScreen);
|
|
|
|
return success;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setFullscreenMode(bool enable) {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
if (!g_system->hasFeature(OSystem::kFeatureFullscreenMode))
|
|
return;
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.fullscreen == enable)
|
|
return;
|
|
|
|
if (_transactionMode == kTransactionActive) {
|
|
_videoMode.fullscreen = enable;
|
|
_transactionDetails.needHotswap = true;
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setAspectRatioCorrection(bool enable) {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.aspectRatioCorrection == enable)
|
|
return;
|
|
|
|
if (_transactionMode == kTransactionActive) {
|
|
_videoMode.aspectRatioCorrection = enable;
|
|
_transactionDetails.needHotswap = true;
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setFilteringMode(bool enable) {
|
|
Common::StackLock lock(_graphicsMutex);
|
|
|
|
if (_oldVideoMode.setup && _oldVideoMode.filtering == enable)
|
|
return;
|
|
|
|
if (_transactionMode == kTransactionActive) {
|
|
_videoMode.filtering = enable;
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
_transactionDetails.needTextureUpdate = true;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::copyRectToScreen(const void *buf, int pitch, int x, int y, int w, int h) {
|
|
assert(_transactionMode == kTransactionNone);
|
|
assert(buf);
|
|
|
|
if (_screen == NULL) {
|
|
warning("SurfaceSdlGraphicsManager::copyRectToScreen: _screen == NULL");
|
|
return;
|
|
}
|
|
|
|
Common::StackLock lock(_graphicsMutex); // Lock the mutex until this function ends
|
|
|
|
assert(x >= 0 && x < _videoMode.screenWidth);
|
|
assert(y >= 0 && y < _videoMode.screenHeight);
|
|
assert(h > 0 && y + h <= _videoMode.screenHeight);
|
|
assert(w > 0 && x + w <= _videoMode.screenWidth);
|
|
|
|
addDirtyRect(x, y, w, h);
|
|
|
|
// Try to lock the screen surface
|
|
if (SDL_LockSurface(_screen) == -1)
|
|
error("SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
byte *dst = (byte *)_screen->pixels + y * _screen->pitch + x * _screenFormat.bytesPerPixel;
|
|
if (_videoMode.screenWidth == w && pitch == _screen->pitch) {
|
|
memcpy(dst, buf, h*pitch);
|
|
} else {
|
|
const byte *src = (const byte *)buf;
|
|
do {
|
|
memcpy(dst, src, w * _screenFormat.bytesPerPixel);
|
|
src += pitch;
|
|
dst += _screen->pitch;
|
|
} while (--h);
|
|
}
|
|
|
|
// Unlock the screen surface
|
|
SDL_UnlockSurface(_screen);
|
|
}
|
|
|
|
Graphics::Surface *SurfaceSdlGraphicsManager::lockScreen() {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
// Lock the graphics mutex
|
|
_graphicsMutex.lock();
|
|
|
|
// paranoia check
|
|
assert(!_screenIsLocked);
|
|
_screenIsLocked = true;
|
|
|
|
// Try to lock the screen surface
|
|
if (SDL_LockSurface(_screen) == -1)
|
|
error("SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
_framebuffer.init(_screen->w, _screen->h, _screen->pitch, _screen->pixels, _screenFormat);
|
|
|
|
return &_framebuffer;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::unlockScreen() {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
// paranoia check
|
|
assert(_screenIsLocked);
|
|
_screenIsLocked = false;
|
|
|
|
// Unlock the screen surface
|
|
SDL_UnlockSurface(_screen);
|
|
|
|
// Trigger a full screen update
|
|
_forceRedraw = true;
|
|
|
|
// Finally unlock the graphics mutex
|
|
_graphicsMutex.unlock();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::fillScreen(uint32 col) {
|
|
Graphics::Surface *screen = lockScreen();
|
|
if (screen)
|
|
screen->fillRect(Common::Rect(screen->w, screen->h), col);
|
|
unlockScreen();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::addDirtyRect(int x, int y, int w, int h, bool realCoordinates) {
|
|
if (_forceRedraw)
|
|
return;
|
|
|
|
if (_numDirtyRects == NUM_DIRTY_RECT) {
|
|
_forceRedraw = true;
|
|
return;
|
|
}
|
|
|
|
int height, width;
|
|
|
|
if (!_overlayVisible && !realCoordinates) {
|
|
width = _videoMode.screenWidth;
|
|
height = _videoMode.screenHeight;
|
|
} else {
|
|
width = _videoMode.overlayWidth;
|
|
height = _videoMode.overlayHeight;
|
|
}
|
|
|
|
// Extend the dirty region by 1 pixel for scalers
|
|
// that "smear" the screen, e.g. 2xSAI
|
|
if (!realCoordinates) {
|
|
x--;
|
|
y--;
|
|
w += 2;
|
|
h += 2;
|
|
}
|
|
|
|
// clip
|
|
if (x < 0) {
|
|
w += x;
|
|
x = 0;
|
|
}
|
|
|
|
if (y < 0) {
|
|
h += y;
|
|
y = 0;
|
|
}
|
|
|
|
if (w > width - x) {
|
|
w = width - x;
|
|
}
|
|
|
|
if (h > height - y) {
|
|
h = height - y;
|
|
}
|
|
|
|
#ifdef USE_SCALERS
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible && !realCoordinates)
|
|
makeRectStretchable(x, y, w, h, _videoMode.filtering);
|
|
#endif
|
|
|
|
if (w == width && h == height) {
|
|
_forceRedraw = true;
|
|
return;
|
|
}
|
|
|
|
if (w > 0 && h > 0) {
|
|
SDL_Rect *r = &_dirtyRectList[_numDirtyRects++];
|
|
|
|
r->x = x;
|
|
r->y = y;
|
|
r->w = w;
|
|
r->h = h;
|
|
}
|
|
}
|
|
|
|
int16 SurfaceSdlGraphicsManager::getHeight() const {
|
|
return _videoMode.screenHeight;
|
|
}
|
|
|
|
int16 SurfaceSdlGraphicsManager::getWidth() const {
|
|
return _videoMode.screenWidth;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setPalette(const byte *colors, uint start, uint num) {
|
|
assert(colors);
|
|
assert(_screenFormat.bytesPerPixel == 1);
|
|
|
|
// Setting the palette before _screen is created is allowed - for now -
|
|
// since we don't actually set the palette until the screen is updated.
|
|
// But it could indicate a programming error, so let's warn about it.
|
|
|
|
if (!_screen)
|
|
warning("SurfaceSdlGraphicsManager::setPalette: _screen == NULL");
|
|
|
|
const byte *b = colors;
|
|
uint i;
|
|
SDL_Color *base = _currentPalette + start;
|
|
for (i = 0; i < num; i++, b += 3) {
|
|
base[i].r = b[0];
|
|
base[i].g = b[1];
|
|
base[i].b = b[2];
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
base[i].a = 255;
|
|
#endif
|
|
}
|
|
|
|
if (start < _paletteDirtyStart)
|
|
_paletteDirtyStart = start;
|
|
|
|
if (start + num > _paletteDirtyEnd)
|
|
_paletteDirtyEnd = start + num;
|
|
|
|
// Some games blink cursors with palette
|
|
if (_cursorPaletteDisabled)
|
|
blitCursor();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::grabPalette(byte *colors, uint start, uint num) const {
|
|
assert(colors);
|
|
assert(_screenFormat.bytesPerPixel == 1);
|
|
|
|
const SDL_Color *base = _currentPalette + start;
|
|
|
|
for (uint i = 0; i < num; ++i) {
|
|
colors[i * 3] = base[i].r;
|
|
colors[i * 3 + 1] = base[i].g;
|
|
colors[i * 3 + 2] = base[i].b;
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setCursorPalette(const byte *colors, uint start, uint num) {
|
|
assert(colors);
|
|
const byte *b = colors;
|
|
uint i;
|
|
SDL_Color *base = _cursorPalette + start;
|
|
for (i = 0; i < num; i++, b += 3) {
|
|
base[i].r = b[0];
|
|
base[i].g = b[1];
|
|
base[i].b = b[2];
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
base[i].a = 255;
|
|
#endif
|
|
}
|
|
|
|
_cursorPaletteDisabled = false;
|
|
blitCursor();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::setFocusRectangle(const Common::Rect &rect) {
|
|
#ifdef USE_SDL_DEBUG_FOCUSRECT
|
|
// Only enable focus rectangle debug code, when the user wants it
|
|
if (!_enableFocusRectDebugCode)
|
|
return;
|
|
|
|
_enableFocusRect = true;
|
|
_focusRect = rect;
|
|
|
|
if (rect.left < 0 || rect.top < 0 || rect.right > _videoMode.screenWidth || rect.bottom > _videoMode.screenHeight)
|
|
warning("SurfaceSdlGraphicsManager::setFocusRectangle: Got a rect which does not fit inside the screen bounds: %d,%d,%d,%d", rect.left, rect.top, rect.right, rect.bottom);
|
|
|
|
// It's gross but we actually sometimes get rects, which are not inside the screen bounds,
|
|
// thus we need to clip the rect here...
|
|
_focusRect.clip(_videoMode.screenWidth, _videoMode.screenHeight);
|
|
|
|
// We just fake this as a dirty rect for now, to easily force an screen update whenever
|
|
// the rect changes.
|
|
addDirtyRect(_focusRect.left, _focusRect.top, _focusRect.width(), _focusRect.height());
|
|
#endif
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::clearFocusRectangle() {
|
|
#ifdef USE_SDL_DEBUG_FOCUSRECT
|
|
// Only enable focus rectangle debug code, when the user wants it
|
|
if (!_enableFocusRectDebugCode)
|
|
return;
|
|
|
|
_enableFocusRect = false;
|
|
|
|
// We just fake this as a dirty rect for now, to easily force an screen update whenever
|
|
// the rect changes.
|
|
addDirtyRect(_focusRect.left, _focusRect.top, _focusRect.width(), _focusRect.height());
|
|
#endif
|
|
}
|
|
|
|
#pragma mark -
|
|
#pragma mark --- Overlays ---
|
|
#pragma mark -
|
|
|
|
void SurfaceSdlGraphicsManager::clearOverlay() {
|
|
Common::StackLock lock(_graphicsMutex); // Lock the mutex until this function ends
|
|
|
|
if (!_overlayVisible)
|
|
return;
|
|
|
|
// Clear the overlay by making the game screen "look through" everywhere.
|
|
SDL_Rect src, dst;
|
|
src.x = src.y = 0;
|
|
dst.x = dst.y = 1;
|
|
src.w = dst.w = _videoMode.screenWidth;
|
|
src.h = dst.h = _videoMode.screenHeight;
|
|
if (SDL_BlitSurface(_screen, &src, _tmpscreen, &dst) != 0)
|
|
error("SDL_BlitSurface failed: %s", SDL_GetError());
|
|
|
|
SDL_LockSurface(_tmpscreen);
|
|
SDL_LockSurface(_overlayscreen);
|
|
_scalerProc((byte *)(_tmpscreen->pixels) + _tmpscreen->pitch + 2, _tmpscreen->pitch,
|
|
(byte *)_overlayscreen->pixels, _overlayscreen->pitch, _videoMode.screenWidth, _videoMode.screenHeight);
|
|
|
|
#ifdef USE_SCALERS
|
|
if (_videoMode.aspectRatioCorrection)
|
|
stretch200To240((uint8 *)_overlayscreen->pixels, _overlayscreen->pitch,
|
|
_videoMode.overlayWidth, _videoMode.screenHeight * _videoMode.scaleFactor, 0, 0, 0,
|
|
_videoMode.filtering);
|
|
#endif
|
|
SDL_UnlockSurface(_tmpscreen);
|
|
SDL_UnlockSurface(_overlayscreen);
|
|
|
|
_forceRedraw = true;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::grabOverlay(void *buf, int pitch) const {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
if (_overlayscreen == NULL)
|
|
return;
|
|
|
|
if (SDL_LockSurface(_overlayscreen) == -1)
|
|
error("SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
byte *src = (byte *)_overlayscreen->pixels;
|
|
byte *dst = (byte *)buf;
|
|
int h = _videoMode.overlayHeight;
|
|
do {
|
|
memcpy(dst, src, _videoMode.overlayWidth * 2);
|
|
src += _overlayscreen->pitch;
|
|
dst += pitch;
|
|
} while (--h);
|
|
|
|
SDL_UnlockSurface(_overlayscreen);
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::copyRectToOverlay(const void *buf, int pitch, int x, int y, int w, int h) {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
if (_overlayscreen == NULL)
|
|
return;
|
|
|
|
const byte *src = (const byte *)buf;
|
|
|
|
// Clip the coordinates
|
|
if (x < 0) {
|
|
w += x;
|
|
src -= x * 2;
|
|
x = 0;
|
|
}
|
|
|
|
if (y < 0) {
|
|
h += y;
|
|
src -= y * pitch;
|
|
y = 0;
|
|
}
|
|
|
|
if (w > _videoMode.overlayWidth - x) {
|
|
w = _videoMode.overlayWidth - x;
|
|
}
|
|
|
|
if (h > _videoMode.overlayHeight - y) {
|
|
h = _videoMode.overlayHeight - y;
|
|
}
|
|
|
|
if (w <= 0 || h <= 0)
|
|
return;
|
|
|
|
// Mark the modified region as dirty
|
|
addDirtyRect(x, y, w, h);
|
|
|
|
if (SDL_LockSurface(_overlayscreen) == -1)
|
|
error("SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
byte *dst = (byte *)_overlayscreen->pixels + y * _overlayscreen->pitch + x * 2;
|
|
do {
|
|
memcpy(dst, src, w * 2);
|
|
dst += _overlayscreen->pitch;
|
|
src += pitch;
|
|
} while (--h);
|
|
|
|
SDL_UnlockSurface(_overlayscreen);
|
|
}
|
|
|
|
|
|
#pragma mark -
|
|
#pragma mark --- Mouse ---
|
|
#pragma mark -
|
|
|
|
void SurfaceSdlGraphicsManager::setMouseCursor(const void *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keyColor, bool dontScale, const Graphics::PixelFormat *format) {
|
|
bool formatChanged = false;
|
|
|
|
if (format) {
|
|
#ifndef USE_RGB_COLOR
|
|
assert(format->bytesPerPixel == 1);
|
|
#endif
|
|
if (format->bytesPerPixel != _cursorFormat.bytesPerPixel) {
|
|
formatChanged = true;
|
|
}
|
|
_cursorFormat = *format;
|
|
} else {
|
|
if (_cursorFormat.bytesPerPixel != 1) {
|
|
formatChanged = true;
|
|
}
|
|
_cursorFormat = Graphics::PixelFormat::createFormatCLUT8();
|
|
}
|
|
|
|
if (_cursorFormat.bytesPerPixel < 4) {
|
|
assert(keyColor < 1U << (_cursorFormat.bytesPerPixel * 8));
|
|
}
|
|
|
|
_mouseCurState.hotX = hotspotX;
|
|
_mouseCurState.hotY = hotspotY;
|
|
|
|
_mouseKeyColor = keyColor;
|
|
|
|
_cursorDontScale = dontScale;
|
|
|
|
if (_mouseCurState.w != (int)w || _mouseCurState.h != (int)h || formatChanged) {
|
|
_mouseCurState.w = w;
|
|
_mouseCurState.h = h;
|
|
|
|
if (_mouseOrigSurface) {
|
|
SDL_FreeSurface(_mouseOrigSurface);
|
|
|
|
if (_mouseSurface == _mouseOrigSurface) {
|
|
_mouseSurface = nullptr;
|
|
}
|
|
|
|
_mouseOrigSurface = nullptr;
|
|
}
|
|
|
|
if ((formatChanged || _cursorFormat.bytesPerPixel == 4) && _mouseSurface) {
|
|
SDL_FreeSurface(_mouseSurface);
|
|
_mouseSurface = nullptr;
|
|
}
|
|
|
|
if (!w || !h) {
|
|
return;
|
|
}
|
|
|
|
if (_cursorFormat.bytesPerPixel == 4) {
|
|
assert(!_mouseSurface);
|
|
assert(!_mouseOrigSurface);
|
|
|
|
const Uint32 rMask = ((0xFF >> format->rLoss) << format->rShift);
|
|
const Uint32 gMask = ((0xFF >> format->gLoss) << format->gShift);
|
|
const Uint32 bMask = ((0xFF >> format->bLoss) << format->bShift);
|
|
const Uint32 aMask = ((0xFF >> format->aLoss) << format->aShift);
|
|
_mouseSurface = _mouseOrigSurface = SDL_CreateRGBSurfaceFrom(const_cast<void *>(buf), w, h, format->bytesPerPixel * 8, w * format->bytesPerPixel, rMask, gMask, bMask, aMask);
|
|
} else {
|
|
assert(!_mouseOrigSurface);
|
|
|
|
// Allocate bigger surface because AdvMame2x adds black pixel at [0,0]
|
|
_mouseOrigSurface = SDL_CreateRGBSurface(SDL_SWSURFACE | SDL_RLEACCEL | SDL_SRCCOLORKEY | SDL_SRCALPHA,
|
|
_mouseCurState.w + 2,
|
|
_mouseCurState.h + 2,
|
|
16,
|
|
_hwScreen->format->Rmask,
|
|
_hwScreen->format->Gmask,
|
|
_hwScreen->format->Bmask,
|
|
_hwScreen->format->Amask);
|
|
}
|
|
|
|
if (_mouseOrigSurface == nullptr) {
|
|
error("Allocating _mouseOrigSurface failed");
|
|
}
|
|
|
|
if (_cursorFormat.bytesPerPixel == 4) {
|
|
SDL_SetColorKey(_mouseOrigSurface, SDL_SRCCOLORKEY | SDL_SRCALPHA, _mouseKeyColor);
|
|
} else {
|
|
SDL_SetColorKey(_mouseOrigSurface, SDL_RLEACCEL | SDL_SRCCOLORKEY | SDL_SRCALPHA, kMouseColorKey);
|
|
}
|
|
}
|
|
|
|
delete[] _mouseData;
|
|
if (_cursorFormat.bytesPerPixel == 4) {
|
|
_mouseData = nullptr;
|
|
} else {
|
|
_mouseData = new byte[w * h * _cursorFormat.bytesPerPixel];
|
|
assert(_mouseData);
|
|
memcpy(_mouseData, buf, w * h * _cursorFormat.bytesPerPixel);
|
|
}
|
|
|
|
blitCursor();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::blitCursor() {
|
|
const int w = _mouseCurState.w;
|
|
const int h = _mouseCurState.h;
|
|
|
|
if (!w || !h || !_mouseOrigSurface) {
|
|
return;
|
|
}
|
|
|
|
if (_cursorFormat.bytesPerPixel != 4 && !_mouseData) {
|
|
return;
|
|
}
|
|
|
|
_cursorNeedsRedraw = true;
|
|
|
|
int cursorScale;
|
|
if (_cursorDontScale) {
|
|
// Don't scale the cursor at all if the user requests this behavior.
|
|
cursorScale = 1;
|
|
} else {
|
|
// Scale the cursor with the game screen scale factor.
|
|
cursorScale = _videoMode.scaleFactor;
|
|
}
|
|
|
|
// Adapt the real hotspot according to the scale factor.
|
|
int rW = w * cursorScale;
|
|
int rH = h * cursorScale;
|
|
_mouseCurState.rHotX = _mouseCurState.hotX * cursorScale;
|
|
_mouseCurState.rHotY = _mouseCurState.hotY * cursorScale;
|
|
|
|
// The virtual dimensions will be the same as the original.
|
|
|
|
_mouseCurState.vW = w;
|
|
_mouseCurState.vH = h;
|
|
_mouseCurState.vHotX = _mouseCurState.hotX;
|
|
_mouseCurState.vHotY = _mouseCurState.hotY;
|
|
|
|
#ifdef USE_SCALERS
|
|
// store original to pass to aspect-correction function later
|
|
const int rH1 = rH;
|
|
#endif
|
|
|
|
if (!_cursorDontScale && _videoMode.aspectRatioCorrection) {
|
|
rH = real2Aspect(rH - 1) + 1;
|
|
_mouseCurState.rHotY = real2Aspect(_mouseCurState.rHotY);
|
|
}
|
|
|
|
bool sizeChanged = false;
|
|
if (_mouseCurState.rW != rW || _mouseCurState.rH != rH) {
|
|
_mouseCurState.rW = rW;
|
|
_mouseCurState.rH = rH;
|
|
sizeChanged = true;
|
|
}
|
|
|
|
if (_cursorFormat.bytesPerPixel == 4) {
|
|
if (_mouseSurface != _mouseOrigSurface) {
|
|
SDL_FreeSurface(_mouseSurface);
|
|
}
|
|
|
|
if (cursorScale == 1) {
|
|
_mouseSurface = _mouseOrigSurface;
|
|
return;
|
|
}
|
|
|
|
SDL_PixelFormat *format = _mouseOrigSurface->format;
|
|
_mouseSurface = SDL_CreateRGBSurface(SDL_SWSURFACE | SDL_SRCCOLORKEY | SDL_SRCALPHA,
|
|
rW, rH,
|
|
format->BitsPerPixel,
|
|
format->Rmask,
|
|
format->Gmask,
|
|
format->Bmask,
|
|
format->Amask);
|
|
|
|
SDL_SetColorKey(_mouseSurface, SDL_SRCCOLORKEY | SDL_SRCALPHA, _mouseKeyColor);
|
|
|
|
// At least SDL 2.0.4 on Windows apparently has a broken SDL_BlitScaled
|
|
// implementation, and SDL 1 has no such API at all, and our other
|
|
// scalers operate exclusively at 16bpp, so here is a scrappy 32bpp
|
|
// point scaler
|
|
SDL_LockSurface(_mouseOrigSurface);
|
|
SDL_LockSurface(_mouseSurface);
|
|
|
|
const byte *src = (const byte *)_mouseOrigSurface->pixels;
|
|
byte *dst = (byte *)_mouseSurface->pixels;
|
|
for (int y = 0; y < _mouseOrigSurface->h; ++y) {
|
|
uint32 *rowDst = (uint32 *)dst;
|
|
const uint32 *rowSrc = (const uint32 *)src;
|
|
for (int x = 0; x < _mouseOrigSurface->w; ++x) {
|
|
for (int scaleX = 0; scaleX < cursorScale; ++scaleX) {
|
|
*rowDst++ = *rowSrc;
|
|
}
|
|
++rowSrc;
|
|
}
|
|
for (int scaleY = 0; scaleY < cursorScale - 1; ++scaleY) {
|
|
memcpy(dst + _mouseSurface->pitch, dst, _mouseSurface->pitch);
|
|
dst += _mouseSurface->pitch;
|
|
}
|
|
dst += _mouseSurface->pitch;
|
|
src += _mouseOrigSurface->pitch;
|
|
}
|
|
|
|
SDL_UnlockSurface(_mouseSurface);
|
|
SDL_UnlockSurface(_mouseOrigSurface);
|
|
return;
|
|
}
|
|
|
|
SDL_LockSurface(_mouseOrigSurface);
|
|
|
|
byte *dstPtr;
|
|
const byte *srcPtr = _mouseData;
|
|
uint32 color;
|
|
|
|
// Make whole surface transparent
|
|
for (int i = 0; i < h + 2; i++) {
|
|
dstPtr = (byte *)_mouseOrigSurface->pixels + _mouseOrigSurface->pitch * i;
|
|
for (int j = 0; j < w + 2; j++) {
|
|
*(uint16 *)dstPtr = kMouseColorKey;
|
|
dstPtr += 2;
|
|
}
|
|
}
|
|
|
|
// Draw from [1,1] since AdvMame2x adds artefact at 0,0
|
|
dstPtr = (byte *)_mouseOrigSurface->pixels + _mouseOrigSurface->pitch + 2;
|
|
|
|
SDL_Color *palette;
|
|
|
|
if (_cursorPaletteDisabled)
|
|
palette = _currentPalette;
|
|
else
|
|
palette = _cursorPalette;
|
|
|
|
for (int i = 0; i < h; i++) {
|
|
for (int j = 0; j < w; j++) {
|
|
if (_cursorFormat.bytesPerPixel == 2) {
|
|
color = *(const uint16 *)srcPtr;
|
|
if (color != _mouseKeyColor) {
|
|
uint8 r, g, b;
|
|
_cursorFormat.colorToRGB(color, r, g, b);
|
|
*(uint16 *)dstPtr = SDL_MapRGB(_mouseOrigSurface->format, r, g, b);
|
|
}
|
|
dstPtr += 2;
|
|
srcPtr += _cursorFormat.bytesPerPixel;
|
|
} else {
|
|
color = *srcPtr;
|
|
if (color != _mouseKeyColor) {
|
|
*(uint16 *)dstPtr = SDL_MapRGB(_mouseOrigSurface->format,
|
|
palette[color].r, palette[color].g, palette[color].b);
|
|
}
|
|
dstPtr += 2;
|
|
srcPtr++;
|
|
}
|
|
}
|
|
dstPtr += _mouseOrigSurface->pitch - w * 2;
|
|
}
|
|
|
|
if (sizeChanged || !_mouseSurface) {
|
|
if (_mouseSurface)
|
|
SDL_FreeSurface(_mouseSurface);
|
|
|
|
_mouseSurface = SDL_CreateRGBSurface(SDL_SWSURFACE | SDL_RLEACCEL | SDL_SRCCOLORKEY | SDL_SRCALPHA,
|
|
_mouseCurState.rW,
|
|
_mouseCurState.rH,
|
|
16,
|
|
_hwScreen->format->Rmask,
|
|
_hwScreen->format->Gmask,
|
|
_hwScreen->format->Bmask,
|
|
_hwScreen->format->Amask);
|
|
|
|
if (_mouseSurface == nullptr)
|
|
error("Allocating _mouseSurface failed");
|
|
|
|
SDL_SetColorKey(_mouseSurface, SDL_RLEACCEL | SDL_SRCCOLORKEY | SDL_SRCALPHA, kMouseColorKey);
|
|
}
|
|
|
|
SDL_LockSurface(_mouseSurface);
|
|
|
|
ScalerProc *scalerProc;
|
|
|
|
// Only apply scaling, when the user allows it.
|
|
if (!_cursorDontScale) {
|
|
// If possible, use the same scaler for the cursor as for the rest of
|
|
// the game. This only works well with the non-blurring scalers so we
|
|
// actually only use the 1x, 2x and AdvMame scalers.
|
|
if (_videoMode.mode == GFX_DOUBLESIZE || _videoMode.mode == GFX_TRIPLESIZE)
|
|
scalerProc = _scalerProc;
|
|
else
|
|
scalerProc = scalersMagn[_videoMode.scaleFactor - 1];
|
|
} else {
|
|
scalerProc = Normal1x;
|
|
}
|
|
|
|
scalerProc((byte *)_mouseOrigSurface->pixels + _mouseOrigSurface->pitch + 2,
|
|
_mouseOrigSurface->pitch, (byte *)_mouseSurface->pixels, _mouseSurface->pitch,
|
|
_mouseCurState.w, _mouseCurState.h);
|
|
|
|
#ifdef USE_SCALERS
|
|
if (!_cursorDontScale && _videoMode.aspectRatioCorrection)
|
|
stretch200To240Nearest((uint8 *)_mouseSurface->pixels, _mouseSurface->pitch, rW, rH1, 0, 0, 0);
|
|
#endif
|
|
|
|
SDL_UnlockSurface(_mouseSurface);
|
|
SDL_UnlockSurface(_mouseOrigSurface);
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::undrawMouse() {
|
|
const int x = _mouseBackup.x;
|
|
const int y = _mouseBackup.y;
|
|
|
|
// When we switch bigger overlay off mouse jumps. Argh!
|
|
// This is intended to prevent undrawing offscreen mouse
|
|
if (!_overlayVisible && (x >= _videoMode.screenWidth || y >= _videoMode.screenHeight))
|
|
return;
|
|
|
|
if (_mouseBackup.w != 0 && _mouseBackup.h != 0)
|
|
addDirtyRect(x, y, _mouseBackup.w, _mouseBackup.h);
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::drawMouse() {
|
|
if (!_cursorVisible || !_mouseSurface || !_mouseCurState.w || !_mouseCurState.h) {
|
|
_mouseBackup.x = _mouseBackup.y = _mouseBackup.w = _mouseBackup.h = 0;
|
|
return;
|
|
}
|
|
|
|
SDL_Rect dst;
|
|
int scale;
|
|
int hotX, hotY;
|
|
|
|
const Common::Point virtualCursor = convertWindowToVirtual(_cursorX, _cursorY);
|
|
|
|
dst.x = virtualCursor.x;
|
|
dst.y = virtualCursor.y;
|
|
|
|
if (!_overlayVisible) {
|
|
scale = _videoMode.scaleFactor;
|
|
dst.w = _mouseCurState.vW;
|
|
dst.h = _mouseCurState.vH;
|
|
hotX = _mouseCurState.vHotX;
|
|
hotY = _mouseCurState.vHotY;
|
|
} else {
|
|
scale = 1;
|
|
dst.w = _mouseCurState.rW;
|
|
dst.h = _mouseCurState.rH;
|
|
hotX = _mouseCurState.rHotX;
|
|
hotY = _mouseCurState.rHotY;
|
|
}
|
|
|
|
// The mouse is undrawn using virtual coordinates, i.e. they may be
|
|
// scaled and aspect-ratio corrected.
|
|
|
|
_mouseBackup.x = dst.x - hotX;
|
|
_mouseBackup.y = dst.y - hotY;
|
|
_mouseBackup.w = dst.w;
|
|
_mouseBackup.h = dst.h;
|
|
|
|
// We draw the pre-scaled cursor image, so now we need to adjust for
|
|
// scaling, shake position and aspect ratio correction manually.
|
|
|
|
dst.x += _currentShakeXOffset;
|
|
dst.y += _currentShakeYOffset;
|
|
|
|
if (_videoMode.aspectRatioCorrection && !_overlayVisible)
|
|
dst.y = real2Aspect(dst.y);
|
|
|
|
dst.x = scale * dst.x - _mouseCurState.rHotX;
|
|
dst.y = scale * dst.y - _mouseCurState.rHotY;
|
|
dst.w = _mouseCurState.rW;
|
|
dst.h = _mouseCurState.rH;
|
|
|
|
// Note that SDL_BlitSurface() and addDirtyRect() will both perform any
|
|
// clipping necessary
|
|
|
|
if (SDL_BlitSurface(_mouseSurface, nullptr, _hwScreen, &dst) != 0)
|
|
error("SDL_BlitSurface failed: %s", SDL_GetError());
|
|
|
|
// The screen will be updated using real surface coordinates, i.e.
|
|
// they will not be scaled or aspect-ratio corrected.
|
|
|
|
addDirtyRect(dst.x, dst.y, dst.w, dst.h, true);
|
|
}
|
|
|
|
#pragma mark -
|
|
#pragma mark --- On Screen Display ---
|
|
#pragma mark -
|
|
|
|
#ifdef USE_OSD
|
|
void SurfaceSdlGraphicsManager::displayMessageOnOSD(const Common::U32String &msg) {
|
|
assert(_transactionMode == kTransactionNone);
|
|
assert(!msg.empty());
|
|
#ifdef USE_TTS
|
|
Common::U32String textToSay = msg;
|
|
#endif // USE_TTS
|
|
|
|
Common::StackLock lock(_graphicsMutex); // Lock the mutex until this function ends
|
|
|
|
removeOSDMessage();
|
|
|
|
// The font we are going to use:
|
|
const Graphics::Font *font = FontMan.getFontByUsage(Graphics::FontManager::kLocalizedFont);
|
|
|
|
// Split the message into separate lines.
|
|
Common::Array<Common::U32String> lines;
|
|
Common::U32String::const_iterator strLineItrBegin = msg.begin();
|
|
|
|
for (Common::U32String::const_iterator itr = msg.begin(); itr != msg.end(); itr++) {
|
|
if (*itr == '\n') {
|
|
lines.push_back(Common::U32String(strLineItrBegin, itr));
|
|
strLineItrBegin = itr + 1;
|
|
}
|
|
}
|
|
if (strLineItrBegin != msg.end())
|
|
lines.push_back(Common::U32String(strLineItrBegin, msg.end()));
|
|
|
|
// Determine a rect which would contain the message string (clipped to the
|
|
// screen dimensions).
|
|
const int vOffset = 6;
|
|
const int lineSpacing = 1;
|
|
const int lineHeight = font->getFontHeight() + 2 * lineSpacing;
|
|
int width = 0;
|
|
int height = lineHeight * lines.size() + 2 * vOffset;
|
|
uint i;
|
|
for (i = 0; i < lines.size(); i++) {
|
|
width = MAX(width, font->getStringWidth(lines[i]) + 14);
|
|
}
|
|
|
|
// Clip the rect
|
|
if (width > _hwScreen->w)
|
|
width = _hwScreen->w;
|
|
if (height > _hwScreen->h)
|
|
height = _hwScreen->h;
|
|
|
|
_osdMessageSurface = SDL_CreateRGBSurface(
|
|
SDL_SWSURFACE | SDL_RLEACCEL | SDL_SRCALPHA,
|
|
width, height, 16, _hwScreen->format->Rmask, _hwScreen->format->Gmask, _hwScreen->format->Bmask, _hwScreen->format->Amask
|
|
);
|
|
|
|
// Lock the surface
|
|
if (SDL_LockSurface(_osdMessageSurface))
|
|
error("displayMessageOnOSD: SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
// Draw a dark gray rect
|
|
// TODO: Rounded corners ? Border?
|
|
SDL_FillRect(_osdMessageSurface, nullptr, SDL_MapRGB(_osdMessageSurface->format, 64, 64, 64));
|
|
|
|
Graphics::Surface dst;
|
|
dst.init(_osdMessageSurface->w, _osdMessageSurface->h, _osdMessageSurface->pitch, _osdMessageSurface->pixels,
|
|
convertSDLPixelFormat(_osdMessageSurface->format));
|
|
|
|
// Render the message, centered, and in white
|
|
for (i = 0; i < lines.size(); i++) {
|
|
font->drawString(&dst, lines[i],
|
|
0, 0 + i * lineHeight + vOffset + lineSpacing, width,
|
|
SDL_MapRGB(_osdMessageSurface->format, 255, 255, 255),
|
|
Graphics::kTextAlignCenter);
|
|
}
|
|
|
|
// Finished drawing, so unlock the OSD message surface
|
|
SDL_UnlockSurface(_osdMessageSurface);
|
|
|
|
// Init the OSD display parameters, and the fade out
|
|
_osdMessageAlpha = SDL_ALPHA_TRANSPARENT + kOSDInitialAlpha * (SDL_ALPHA_OPAQUE - SDL_ALPHA_TRANSPARENT) / 100;
|
|
_osdMessageFadeStartTime = SDL_GetTicks() + kOSDFadeOutDelay;
|
|
// Enable alpha blending
|
|
SDL_SetAlpha(_osdMessageSurface, SDL_RLEACCEL | SDL_SRCALPHA, _osdMessageAlpha);
|
|
|
|
// Ensure a full redraw takes place next time the screen is updated
|
|
_forceRedraw = true;
|
|
#ifdef USE_TTS
|
|
if (ConfMan.hasKey("tts_enabled", "scummvm") &&
|
|
ConfMan.getBool("tts_enabled", "scummvm")) {
|
|
Common::TextToSpeechManager *ttsMan = g_system->getTextToSpeechManager();
|
|
if (ttsMan)
|
|
ttsMan->say(textToSay);
|
|
}
|
|
#endif // USE_TTS
|
|
}
|
|
|
|
SDL_Rect SurfaceSdlGraphicsManager::getOSDMessageRect() const {
|
|
SDL_Rect rect;
|
|
rect.x = (_hwScreen->w - _osdMessageSurface->w) / 2;
|
|
rect.y = (_hwScreen->h - _osdMessageSurface->h) / 2;
|
|
rect.w = _osdMessageSurface->w;
|
|
rect.h = _osdMessageSurface->h;
|
|
return rect;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::displayActivityIconOnOSD(const Graphics::Surface *icon) {
|
|
assert(_transactionMode == kTransactionNone);
|
|
|
|
Common::StackLock lock(_graphicsMutex); // Lock the mutex until this function ends
|
|
|
|
if (_osdIconSurface && !icon) {
|
|
// Force a redraw to clear the icon on the next update
|
|
_forceRedraw = true;
|
|
}
|
|
|
|
if (_osdIconSurface) {
|
|
SDL_FreeSurface(_osdIconSurface);
|
|
_osdIconSurface = nullptr;
|
|
}
|
|
|
|
if (icon) {
|
|
const Graphics::PixelFormat &iconFormat = icon->format;
|
|
|
|
_osdIconSurface = SDL_CreateRGBSurface(
|
|
SDL_SWSURFACE | SDL_RLEACCEL | SDL_SRCALPHA,
|
|
icon->w, icon->h, iconFormat.bytesPerPixel * 8,
|
|
((0xFF >> iconFormat.rLoss) << iconFormat.rShift),
|
|
((0xFF >> iconFormat.gLoss) << iconFormat.gShift),
|
|
((0xFF >> iconFormat.bLoss) << iconFormat.bShift),
|
|
((0xFF >> iconFormat.aLoss) << iconFormat.aShift)
|
|
);
|
|
|
|
// Lock the surface
|
|
if (SDL_LockSurface(_osdIconSurface))
|
|
error("displayActivityIconOnOSD: SDL_LockSurface failed: %s", SDL_GetError());
|
|
|
|
byte *dst = (byte *) _osdIconSurface->pixels;
|
|
const byte *src = (const byte *) icon->getPixels();
|
|
for (uint y = 0; y < icon->h; y++) {
|
|
memcpy(dst, src, icon->w * iconFormat.bytesPerPixel);
|
|
src += icon->pitch;
|
|
dst += _osdIconSurface->pitch;
|
|
}
|
|
|
|
// Finished drawing, so unlock the OSD icon surface
|
|
SDL_UnlockSurface(_osdIconSurface);
|
|
}
|
|
}
|
|
|
|
SDL_Rect SurfaceSdlGraphicsManager::getOSDIconRect() const {
|
|
SDL_Rect dstRect;
|
|
dstRect.x = _hwScreen->w - _osdIconSurface->w - 10;
|
|
dstRect.y = 10;
|
|
dstRect.w = _osdIconSurface->w;
|
|
dstRect.h = _osdIconSurface->h;
|
|
return dstRect;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::removeOSDMessage() {
|
|
// Remove the previous message
|
|
if (_osdMessageSurface) {
|
|
SDL_FreeSurface(_osdMessageSurface);
|
|
_forceRedraw = true;
|
|
}
|
|
|
|
_osdMessageSurface = NULL;
|
|
_osdMessageAlpha = SDL_ALPHA_TRANSPARENT;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::updateOSD() {
|
|
// OSD message visible (i.e. non-transparent)?
|
|
if (_osdMessageAlpha != SDL_ALPHA_TRANSPARENT) {
|
|
// Updated alpha value
|
|
const int diff = SDL_GetTicks() - _osdMessageFadeStartTime;
|
|
if (diff > 0) {
|
|
if (diff >= kOSDFadeOutDuration) {
|
|
// Back to full transparency
|
|
_osdMessageAlpha = SDL_ALPHA_TRANSPARENT;
|
|
} else {
|
|
// Do a linear fade out...
|
|
const int startAlpha = SDL_ALPHA_TRANSPARENT + kOSDInitialAlpha * (SDL_ALPHA_OPAQUE - SDL_ALPHA_TRANSPARENT) / 100;
|
|
_osdMessageAlpha = startAlpha + diff * (SDL_ALPHA_TRANSPARENT - startAlpha) / kOSDFadeOutDuration;
|
|
}
|
|
SDL_SetAlpha(_osdMessageSurface, SDL_RLEACCEL | SDL_SRCALPHA, _osdMessageAlpha);
|
|
}
|
|
|
|
if (_osdMessageAlpha == SDL_ALPHA_TRANSPARENT) {
|
|
removeOSDMessage();
|
|
}
|
|
}
|
|
|
|
if (_osdIconSurface || _osdMessageSurface) {
|
|
// Redraw the area below the icon and message for the transparent blit to give correct results.
|
|
_forceRedraw = true;
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::drawOSD() {
|
|
if (_osdMessageSurface) {
|
|
SDL_Rect dstRect = getOSDMessageRect();
|
|
SDL_BlitSurface(_osdMessageSurface, 0, _hwScreen, &dstRect);
|
|
}
|
|
|
|
if (_osdIconSurface) {
|
|
SDL_Rect dstRect = getOSDIconRect();
|
|
SDL_BlitSurface(_osdIconSurface, 0, _hwScreen, &dstRect);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
void SurfaceSdlGraphicsManager::handleResizeImpl(const int width, const int height, const int xdpi, const int ydpi) {
|
|
SdlGraphicsManager::handleResizeImpl(width, height, xdpi, ydpi);
|
|
recalculateDisplayAreas();
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::handleScalerHotkeys(int scalefactor, int scalerType) {
|
|
assert(scalerType >= 0 && scalerType < ARRAYSIZE(s_gfxModeSwitchTable));
|
|
|
|
int factor = CLIP(scalefactor - 1, 0, 4);
|
|
|
|
while (s_gfxModeSwitchTable[scalerType][factor] < 0) {
|
|
assert(factor > 0);
|
|
factor--;
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
bool sizeChanged = _videoMode.scaleFactor != factor;
|
|
#endif
|
|
|
|
int newMode = s_gfxModeSwitchTable[scalerType][factor];
|
|
if (newMode >= 0) {
|
|
_scalerType = scalerType;
|
|
|
|
beginGFXTransaction();
|
|
setGraphicsMode(newMode);
|
|
endGFXTransaction();
|
|
#ifdef USE_OSD
|
|
const char *newScalerName = 0;
|
|
const OSystem::GraphicsMode *g = getSupportedGraphicsModes();
|
|
while (g->name) {
|
|
if (g->id == _videoMode.mode) {
|
|
newScalerName = g->description;
|
|
break;
|
|
}
|
|
g++;
|
|
}
|
|
if (newScalerName) {
|
|
const Common::U32String message = Common::U32String::format(
|
|
"%S %s\n%d x %d -> %d x %d",
|
|
_("Active graphics filter:").c_str(),
|
|
newScalerName,
|
|
_videoMode.screenWidth, _videoMode.screenHeight,
|
|
_hwScreen->w, _hwScreen->h);
|
|
displayMessageOnOSD(message);
|
|
}
|
|
#endif
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
if (sizeChanged) {
|
|
// Forcibly resizing the window here since a user switching scaler
|
|
// size will not normally cause the window to update
|
|
_window->createOrUpdateWindow(_hwScreen->w, _hwScreen->h, _lastFlags);
|
|
}
|
|
#endif
|
|
|
|
internUpdateScreen();
|
|
}
|
|
}
|
|
|
|
bool SurfaceSdlGraphicsManager::notifyEvent(const Common::Event &event) {
|
|
if (event.type != Common::EVENT_CUSTOM_BACKEND_ACTION_START) {
|
|
return SdlGraphicsManager::notifyEvent(event);
|
|
}
|
|
|
|
switch ((CustomEventAction) event.customType) {
|
|
case kActionToggleAspectRatioCorrection: {
|
|
beginGFXTransaction();
|
|
setFeatureState(OSystem::kFeatureAspectRatioCorrection, !_videoMode.aspectRatioCorrection);
|
|
endGFXTransaction();
|
|
#ifdef USE_OSD
|
|
Common::U32String message;
|
|
if (_videoMode.aspectRatioCorrection)
|
|
message = Common::U32String::format("%S\n%d x %d -> %d x %d",
|
|
_("Enabled aspect ratio correction").c_str(),
|
|
_videoMode.screenWidth, _videoMode.screenHeight,
|
|
_hwScreen->w, _hwScreen->h
|
|
);
|
|
else
|
|
message = Common::U32String::format("%S\n%d x %d -> %d x %d",
|
|
_("Disabled aspect ratio correction").c_str(),
|
|
_videoMode.screenWidth, _videoMode.screenHeight,
|
|
_hwScreen->w, _hwScreen->h
|
|
);
|
|
displayMessageOnOSD(message);
|
|
#endif
|
|
internUpdateScreen();
|
|
return true;
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
case kActionToggleFilteredScaling:
|
|
beginGFXTransaction();
|
|
setFeatureState(OSystem::kFeatureFilteringMode, !_videoMode.filtering);
|
|
endGFXTransaction();
|
|
#ifdef USE_OSD
|
|
if (getFeatureState(OSystem::kFeatureFilteringMode)) {
|
|
displayMessageOnOSD(_("Filtering enabled"));
|
|
} else {
|
|
displayMessageOnOSD(_("Filtering disabled"));
|
|
}
|
|
#endif
|
|
_forceRedraw = true;
|
|
internUpdateScreen();
|
|
return true;
|
|
#endif
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
case kActionCycleStretchMode: {
|
|
int index = 0;
|
|
const OSystem::GraphicsMode *sm = s_supportedStretchModes;
|
|
while (sm->name) {
|
|
if (sm->id == _videoMode.stretchMode)
|
|
break;
|
|
sm++;
|
|
index++;
|
|
}
|
|
index++;
|
|
if (!s_supportedStretchModes[index].name)
|
|
index = 0;
|
|
|
|
beginGFXTransaction();
|
|
setStretchMode(s_supportedStretchModes[index].id);
|
|
endGFXTransaction();
|
|
|
|
#ifdef USE_OSD
|
|
Common::U32String message = Common::U32String::format("%S: %S",
|
|
_("Stretch mode").c_str(),
|
|
_(s_supportedStretchModes[index].description).c_str()
|
|
);
|
|
displayMessageOnOSD(message);
|
|
#endif
|
|
_forceRedraw = true;
|
|
internUpdateScreen();
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
case kActionIncreaseScaleFactor:
|
|
handleScalerHotkeys(_videoMode.scaleFactor + 1, _scalerType);
|
|
return true;
|
|
|
|
case kActionDecreaseScaleFactor:
|
|
handleScalerHotkeys(_videoMode.scaleFactor - 1, _scalerType);
|
|
return true;
|
|
|
|
case kActionSetScaleFilter1:
|
|
case kActionSetScaleFilter2:
|
|
case kActionSetScaleFilter3:
|
|
case kActionSetScaleFilter4:
|
|
case kActionSetScaleFilter5:
|
|
case kActionSetScaleFilter6:
|
|
case kActionSetScaleFilter7:
|
|
case kActionSetScaleFilter8:
|
|
handleScalerHotkeys(_videoMode.scaleFactor, event.customType - kActionSetScaleFilter1);
|
|
return true;
|
|
|
|
default:
|
|
return SdlGraphicsManager::notifyEvent(event);
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::notifyVideoExpose() {
|
|
_forceRedraw = true;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::notifyResize(const int width, const int height) {
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
handleResize(width, height, _xdpi, _ydpi);
|
|
#endif
|
|
}
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
void SurfaceSdlGraphicsManager::deinitializeRenderer() {
|
|
if (_screenTexture)
|
|
SDL_DestroyTexture(_screenTexture);
|
|
_screenTexture = nullptr;
|
|
|
|
if (_renderer)
|
|
SDL_DestroyRenderer(_renderer);
|
|
_renderer = nullptr;
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::recreateScreenTexture() {
|
|
if (!_renderer)
|
|
return;
|
|
|
|
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, _videoMode.filtering ? "linear" : "nearest");
|
|
|
|
SDL_Texture *oldTexture = _screenTexture;
|
|
_screenTexture = SDL_CreateTexture(_renderer, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STREAMING, _videoMode.hardwareWidth, _videoMode.hardwareHeight);
|
|
if (_screenTexture)
|
|
SDL_DestroyTexture(oldTexture);
|
|
else
|
|
_screenTexture = oldTexture;
|
|
}
|
|
|
|
SDL_Surface *SurfaceSdlGraphicsManager::SDL_SetVideoMode(int width, int height, int bpp, Uint32 flags) {
|
|
deinitializeRenderer();
|
|
|
|
uint32 createWindowFlags = SDL_WINDOW_RESIZABLE;
|
|
if ((flags & SDL_FULLSCREEN) != 0) {
|
|
createWindowFlags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
|
|
}
|
|
|
|
if (!createOrUpdateWindow(width, height, createWindowFlags)) {
|
|
return nullptr;
|
|
}
|
|
|
|
_renderer = SDL_CreateRenderer(_window->getSDLWindow(), -1, 0);
|
|
if (!_renderer) {
|
|
deinitializeRenderer();
|
|
return nullptr;
|
|
}
|
|
|
|
// TODO: Implement high DPI support
|
|
getWindowSizeFromSdl(&_windowWidth, &_windowHeight);
|
|
handleResize(_windowWidth, _windowHeight, 90, 90);
|
|
|
|
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, _videoMode.filtering ? "linear" : "nearest");
|
|
|
|
_screenTexture = SDL_CreateTexture(_renderer, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STREAMING, width, height);
|
|
if (!_screenTexture) {
|
|
deinitializeRenderer();
|
|
return nullptr;
|
|
}
|
|
|
|
SDL_Surface *screen = SDL_CreateRGBSurface(0, width, height, 16, 0xF800, 0x7E0, 0x1F, 0);
|
|
if (!screen) {
|
|
deinitializeRenderer();
|
|
return nullptr;
|
|
} else {
|
|
return screen;
|
|
}
|
|
}
|
|
|
|
void SurfaceSdlGraphicsManager::SDL_UpdateRects(SDL_Surface *screen, int numrects, SDL_Rect *rects) {
|
|
SDL_UpdateTexture(_screenTexture, nullptr, screen->pixels, screen->pitch);
|
|
|
|
SDL_Rect viewport;
|
|
viewport.x = _activeArea.drawRect.left;
|
|
viewport.y = _activeArea.drawRect.top;
|
|
viewport.w = _activeArea.drawRect.width();
|
|
viewport.h = _activeArea.drawRect.height();
|
|
|
|
SDL_RenderClear(_renderer);
|
|
SDL_RenderCopy(_renderer, _screenTexture, NULL, &viewport);
|
|
SDL_RenderPresent(_renderer);
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::SDL_SetColors(SDL_Surface *surface, SDL_Color *colors, int firstcolor, int ncolors) {
|
|
if (surface->format->palette) {
|
|
return !SDL_SetPaletteColors(surface->format->palette, colors, firstcolor, ncolors) ? 1 : 0;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha) {
|
|
if (SDL_SetSurfaceAlphaMod(surface, alpha)) {
|
|
return -1;
|
|
}
|
|
|
|
if (alpha == 255 || !flag) {
|
|
if (SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_NONE)) {
|
|
return -1;
|
|
}
|
|
} else {
|
|
if (SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND)) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int SurfaceSdlGraphicsManager::SDL_SetColorKey(SDL_Surface *surface, Uint32 flag, Uint32 key) {
|
|
return ::SDL_SetColorKey(surface, SDL_TRUE, key) ? -1 : 0;
|
|
}
|
|
|
|
#endif // SDL_VERSION_ATLEAST(2, 0, 0)
|
|
|
|
#endif
|