mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
432fd522d2
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions.
86 lines
2.2 KiB
C++
86 lines
2.2 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"
|
|
|
|
#include "common/config-manager.h"
|
|
#include "common/debug.h"
|
|
#include "common/debug-channels.h"
|
|
#include "common/error.h"
|
|
#include "graphics/surface.h"
|
|
#include "graphics/screen.h"
|
|
#include "graphics/palette.h"
|
|
#include "common/system.h"
|
|
|
|
#include "engines/util.h"
|
|
|
|
#include "cryo/cryo.h"
|
|
#include "cryo/eden.h"
|
|
|
|
namespace Cryo {
|
|
|
|
CryoEngine *g_ed = nullptr;
|
|
|
|
CryoEngine::CryoEngine(OSystem *syst, const ADGameDescription *gameDesc) : Engine(syst), _gameDescription(gameDesc) {
|
|
_rnd = new Common::RandomSource("cryo");
|
|
_debugger = nullptr;
|
|
|
|
_game = nullptr;
|
|
_video = nullptr;
|
|
_screenView = nullptr;
|
|
|
|
_showHotspots = false;
|
|
_timerTicks = 0;
|
|
|
|
g_ed = this;
|
|
}
|
|
|
|
CryoEngine::~CryoEngine() {
|
|
delete _rnd;
|
|
delete _game;
|
|
delete _video;
|
|
delete _screenView;
|
|
delete _debugger;
|
|
|
|
DebugMan.clearAllDebugChannels();
|
|
}
|
|
|
|
Common::Error CryoEngine::run() {
|
|
_game = new EdenGame(this);
|
|
_video = new HnmPlayer(this);
|
|
_screenView = new View(320, 200);
|
|
_debugger = new Debugger(this);
|
|
|
|
///// CLTimer
|
|
_timerTicks = 0; // incremented in realtime
|
|
|
|
// Initialize graphics using following:
|
|
initGraphics(320, 200);
|
|
_screen.create(320, 200, Graphics::PixelFormat::createFormatCLUT8());
|
|
|
|
_game->run();
|
|
|
|
return Common::kNoError;
|
|
}
|
|
|
|
} // End of namespace Cryo
|