From 0bbb62771a820cec774fecb605869d4664b2e83a Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Fri, 13 Nov 2009 00:37:53 +0000 Subject: rename sdl.*->samsungtv.* svn-id: r45878 --- backends/platform/samsungtv/samsungtv.cpp | 70 ++++++++++++++++++++++++++ backends/platform/samsungtv/samsungtv.h | 84 +++++++++++++++++++++++++++++++ backends/platform/samsungtv/sdl.cpp | 70 -------------------------- backends/platform/samsungtv/sdl.h | 84 ------------------------------- 4 files changed, 154 insertions(+), 154 deletions(-) create mode 100644 backends/platform/samsungtv/samsungtv.cpp create mode 100644 backends/platform/samsungtv/samsungtv.h delete mode 100644 backends/platform/samsungtv/sdl.cpp delete mode 100644 backends/platform/samsungtv/sdl.h (limited to 'backends/platform/samsungtv') diff --git a/backends/platform/samsungtv/samsungtv.cpp b/backends/platform/samsungtv/samsungtv.cpp new file mode 100644 index 0000000000..6b383688cd --- /dev/null +++ b/backends/platform/samsungtv/samsungtv.cpp @@ -0,0 +1,70 @@ +/* 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. + * + * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/backends/platform/sdl/sdl.cpp $ + * $Id: sdl.cpp 44793 2009-10-08 19:41:38Z fingolfin $ + * + */ + +#include "backends/platform/samsungtv/sdl.h" +#include "backends/fs/posix/posix-fs-factory.h" + +#if defined(SAMSUNGTV) + +OSystem_SDL_SamsungTV::OSystem_SDL_SamsungTV() : OSystem_SDL(), + _prehwscreen(0) { +} + +bool OSystem_SDL_SamsungTV::hasFeature(Feature f) { + return + (f == kFeatureAutoComputeDirtyRects) || + (f == kFeatureCursorHasPalette); +} + +void OSystem_SDL_SamsungTV::setFeatureState(Feature f, bool enable) { + switch (f) { + case kFeatureAspectRatioCorrection: + setAspectRatioCorrection(enable); + break; + case kFeatureAutoComputeDirtyRects: + if (enable) + _modeFlags |= DF_WANT_RECT_OPTIM; + else + _modeFlags &= ~DF_WANT_RECT_OPTIM; + break; + default: + break; + } +} + +bool OSystem_SDL_SamsungTV::getFeatureState(Feature f) { + assert (_transactionMode == kTransactionNone); + + switch (f) { + case kFeatureAspectRatioCorrection: + return _videoMode.aspectRatioCorrection; + case kFeatureAutoComputeDirtyRects: + return _modeFlags & DF_WANT_RECT_OPTIM; + default: + return false; + } +} + +#endif diff --git a/backends/platform/samsungtv/samsungtv.h b/backends/platform/samsungtv/samsungtv.h new file mode 100644 index 0000000000..ac8a938315 --- /dev/null +++ b/backends/platform/samsungtv/samsungtv.h @@ -0,0 +1,84 @@ +/* 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. + * + * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/backends/platform/sdl/sdl.h $ + * $Id: sdl.h 44793 2009-10-08 19:41:38Z fingolfin $ + * + */ + +#ifndef SDL_SAMSUNGTV_COMMON_H +#define SDL_SAMSUNGTV_COMMON_H + +#include + +#include "backends/base-backend.h" +#include "backends/platform/sdl/sdl.h" + +#if defined(SAMSUNGTV) + +namespace Audio { + class MixerImpl; +} + +class OSystem_SDL_SamsungTV : public OSystem_SDL { +public: + OSystem_SDL_SamsungTV(); + + // Highest supported + virtual Common::List getSupportedFormats(); + + // Warp the mouse cursor. Where set_mouse_pos() only informs the + // backend of the mouse cursor's current position, this function + // actually moves the cursor to the specified position. + virtual void warpMouse(int x, int y); + + // Set the bitmap that's used when drawing the cursor. + virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format); // overloaded by CE backend (FIXME) + + // Get the next event. + // Returns true if an event was retrieved. + virtual bool pollEvent(Common::Event &event); + + virtual bool hasFeature(Feature f); + virtual void setFeatureState(Feature f, bool enable); + virtual bool getFeatureState(Feature f); + +protected: + + SDL_Surface *_prehwscreen; + + virtual void drawMouse(); // overloaded by CE backend + virtual void blitCursor(); // overloaded by CE backend (FIXME) + + virtual void internUpdateScreen(); // overloaded by CE backend + + virtual bool loadGFXMode(); // overloaded by CE backend + virtual void unloadGFXMode(); // overloaded by CE backend + virtual bool hotswapGFXMode(); // overloaded by CE backend + + void handleKbdMouse(); + void generateMouseMoveEvent(int x, int y); + + virtual bool remapKey(SDL_Event &ev, Common::Event &event); +}; + +#endif + +#endif diff --git a/backends/platform/samsungtv/sdl.cpp b/backends/platform/samsungtv/sdl.cpp deleted file mode 100644 index 6b383688cd..0000000000 --- a/backends/platform/samsungtv/sdl.cpp +++ /dev/null @@ -1,70 +0,0 @@ -/* 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. - * - * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/backends/platform/sdl/sdl.cpp $ - * $Id: sdl.cpp 44793 2009-10-08 19:41:38Z fingolfin $ - * - */ - -#include "backends/platform/samsungtv/sdl.h" -#include "backends/fs/posix/posix-fs-factory.h" - -#if defined(SAMSUNGTV) - -OSystem_SDL_SamsungTV::OSystem_SDL_SamsungTV() : OSystem_SDL(), - _prehwscreen(0) { -} - -bool OSystem_SDL_SamsungTV::hasFeature(Feature f) { - return - (f == kFeatureAutoComputeDirtyRects) || - (f == kFeatureCursorHasPalette); -} - -void OSystem_SDL_SamsungTV::setFeatureState(Feature f, bool enable) { - switch (f) { - case kFeatureAspectRatioCorrection: - setAspectRatioCorrection(enable); - break; - case kFeatureAutoComputeDirtyRects: - if (enable) - _modeFlags |= DF_WANT_RECT_OPTIM; - else - _modeFlags &= ~DF_WANT_RECT_OPTIM; - break; - default: - break; - } -} - -bool OSystem_SDL_SamsungTV::getFeatureState(Feature f) { - assert (_transactionMode == kTransactionNone); - - switch (f) { - case kFeatureAspectRatioCorrection: - return _videoMode.aspectRatioCorrection; - case kFeatureAutoComputeDirtyRects: - return _modeFlags & DF_WANT_RECT_OPTIM; - default: - return false; - } -} - -#endif diff --git a/backends/platform/samsungtv/sdl.h b/backends/platform/samsungtv/sdl.h deleted file mode 100644 index ac8a938315..0000000000 --- a/backends/platform/samsungtv/sdl.h +++ /dev/null @@ -1,84 +0,0 @@ -/* 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. - * - * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/backends/platform/sdl/sdl.h $ - * $Id: sdl.h 44793 2009-10-08 19:41:38Z fingolfin $ - * - */ - -#ifndef SDL_SAMSUNGTV_COMMON_H -#define SDL_SAMSUNGTV_COMMON_H - -#include - -#include "backends/base-backend.h" -#include "backends/platform/sdl/sdl.h" - -#if defined(SAMSUNGTV) - -namespace Audio { - class MixerImpl; -} - -class OSystem_SDL_SamsungTV : public OSystem_SDL { -public: - OSystem_SDL_SamsungTV(); - - // Highest supported - virtual Common::List getSupportedFormats(); - - // Warp the mouse cursor. Where set_mouse_pos() only informs the - // backend of the mouse cursor's current position, this function - // actually moves the cursor to the specified position. - virtual void warpMouse(int x, int y); - - // Set the bitmap that's used when drawing the cursor. - virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y, uint32 keycolor, int cursorTargetScale, const Graphics::PixelFormat *format); // overloaded by CE backend (FIXME) - - // Get the next event. - // Returns true if an event was retrieved. - virtual bool pollEvent(Common::Event &event); - - virtual bool hasFeature(Feature f); - virtual void setFeatureState(Feature f, bool enable); - virtual bool getFeatureState(Feature f); - -protected: - - SDL_Surface *_prehwscreen; - - virtual void drawMouse(); // overloaded by CE backend - virtual void blitCursor(); // overloaded by CE backend (FIXME) - - virtual void internUpdateScreen(); // overloaded by CE backend - - virtual bool loadGFXMode(); // overloaded by CE backend - virtual void unloadGFXMode(); // overloaded by CE backend - virtual bool hotswapGFXMode(); // overloaded by CE backend - - void handleKbdMouse(); - void generateMouseMoveEvent(int x, int y); - - virtual bool remapKey(SDL_Event &ev, Common::Event &event); -}; - -#endif - -#endif -- cgit v1.2.3