2014-02-16 15:22:57 -05:00
|
|
|
/* 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.
|
2015-05-09 15:56:27 +02:00
|
|
|
*
|
2014-02-16 15:22:57 -05:00
|
|
|
* 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.
|
2015-05-09 15:56:27 +02:00
|
|
|
*
|
2014-02-16 15:22:57 -05:00
|
|
|
* 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-channels.h"
|
|
|
|
#include "common/events.h"
|
2014-02-18 20:08:58 -05:00
|
|
|
#include "engines/util.h"
|
|
|
|
#include "mads/mads.h"
|
2014-04-24 09:12:09 -04:00
|
|
|
#include "mads/game.h"
|
2014-03-13 22:25:16 -04:00
|
|
|
#include "mads/screen.h"
|
2014-03-04 22:33:27 -05:00
|
|
|
#include "mads/msurface.h"
|
2014-02-18 20:08:58 -05:00
|
|
|
#include "mads/resources.h"
|
|
|
|
#include "mads/sound.h"
|
2014-03-04 22:33:27 -05:00
|
|
|
#include "mads/sprites.h"
|
2014-02-16 15:22:57 -05:00
|
|
|
|
|
|
|
namespace MADS {
|
|
|
|
|
|
|
|
MADSEngine::MADSEngine(OSystem *syst, const MADSGameDescription *gameDesc) :
|
2014-02-18 20:08:58 -05:00
|
|
|
_gameDescription(gameDesc), Engine(syst), _randomSource("MADS") {
|
2014-05-08 11:43:23 +03:00
|
|
|
|
2015-03-15 04:05:06 +02:00
|
|
|
// Initialize game/engine options
|
2014-02-18 20:08:58 -05:00
|
|
|
_easyMouse = true;
|
2014-03-17 23:14:54 -04:00
|
|
|
_invObjectsAnimated = true;
|
2014-02-18 20:08:58 -05:00
|
|
|
_textWindowStill = false;
|
2014-03-10 00:00:39 -04:00
|
|
|
_screenFade = SCREEN_FADE_SMOOTH;
|
2014-05-14 09:19:54 -04:00
|
|
|
_musicFlag = true;
|
2015-03-14 19:09:44 -04:00
|
|
|
_soundFlag = true;
|
2014-04-07 22:37:22 -04:00
|
|
|
_dithering = false;
|
2015-10-10 17:32:51 +02:00
|
|
|
_disableFastwalk = false;
|
2014-02-18 23:43:06 -05:00
|
|
|
|
2014-02-24 00:20:53 -05:00
|
|
|
_dialogs = nullptr;
|
2014-02-18 23:43:06 -05:00
|
|
|
_events = nullptr;
|
|
|
|
_font = nullptr;
|
2014-02-19 23:17:57 -05:00
|
|
|
_game = nullptr;
|
2015-10-10 17:32:51 +02:00
|
|
|
_gameConv = nullptr;
|
2014-02-18 20:08:58 -05:00
|
|
|
_palette = nullptr;
|
|
|
|
_resources = nullptr;
|
|
|
|
_sound = nullptr;
|
2014-05-27 07:22:25 +02:00
|
|
|
_audio = nullptr;
|
2016-05-02 17:39:20 +02:00
|
|
|
_screen = nullptr;
|
2014-02-16 15:22:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
MADSEngine::~MADSEngine() {
|
2014-02-24 00:20:53 -05:00
|
|
|
delete _dialogs;
|
2014-02-18 20:08:58 -05:00
|
|
|
delete _events;
|
2014-02-18 23:43:06 -05:00
|
|
|
delete _font;
|
2014-03-17 00:00:22 -04:00
|
|
|
Font::deinit();
|
2014-02-19 23:17:57 -05:00
|
|
|
delete _game;
|
2015-10-10 17:32:51 +02:00
|
|
|
delete _gameConv;
|
2014-02-18 23:43:06 -05:00
|
|
|
delete _palette;
|
2014-02-18 20:08:58 -05:00
|
|
|
delete _resources;
|
|
|
|
delete _sound;
|
2014-06-03 22:27:05 -04:00
|
|
|
delete _audio;
|
2020-02-08 22:14:55 -08:00
|
|
|
//_debugger Debugger is deleted by Engine
|
2014-09-05 22:21:24 -04:00
|
|
|
|
2014-09-07 13:23:28 -04:00
|
|
|
_mixer->stopAll();
|
2014-02-16 15:22:57 -05:00
|
|
|
}
|
|
|
|
|
2014-05-27 00:58:25 +02:00
|
|
|
void MADSEngine::initialize() {
|
2014-02-18 20:08:58 -05:00
|
|
|
// Initial sub-system engine references
|
|
|
|
MSurface::setVm(this);
|
|
|
|
MSprite::setVm(this);
|
|
|
|
|
2014-02-24 20:05:35 -05:00
|
|
|
Resources::init(this);
|
2014-04-20 21:32:29 -04:00
|
|
|
Conversation::init(this);
|
2014-02-22 17:25:30 -05:00
|
|
|
_debugger = new Debugger(this);
|
2020-02-08 22:14:55 -08:00
|
|
|
setDebugger(_debugger);
|
2014-02-24 00:20:53 -05:00
|
|
|
_dialogs = Dialogs::init(this);
|
2014-02-18 20:08:58 -05:00
|
|
|
_events = new EventsManager(this);
|
2014-02-22 00:24:39 -05:00
|
|
|
_palette = new Palette(this);
|
2014-03-16 23:40:21 -04:00
|
|
|
Font::init(this);
|
|
|
|
_font = new Font();
|
2016-03-10 21:51:23 -05:00
|
|
|
_screen = new Screen();
|
2014-10-12 16:54:40 -04:00
|
|
|
_sound = new SoundManager(this, _mixer);
|
2014-04-27 22:56:15 +03:00
|
|
|
_audio = new AudioPlayer(_mixer, getGameID());
|
2014-02-19 23:17:57 -05:00
|
|
|
_game = Game::init(this);
|
2016-02-06 15:28:13 -05:00
|
|
|
_gameConv = new GameConversations(this);
|
2015-10-10 17:32:51 +02:00
|
|
|
|
2015-03-15 04:05:06 +02:00
|
|
|
loadOptions();
|
|
|
|
|
2016-03-10 21:51:23 -05:00
|
|
|
_screen->clear();
|
2014-02-16 15:22:57 -05:00
|
|
|
}
|
|
|
|
|
2015-03-14 11:57:28 -04:00
|
|
|
void MADSEngine::loadOptions() {
|
|
|
|
if (ConfMan.hasKey("EasyMouse"))
|
|
|
|
_easyMouse = ConfMan.getBool("EasyMouse");
|
2015-03-14 19:09:44 -04:00
|
|
|
|
|
|
|
if (ConfMan.hasKey("mute") && ConfMan.getBool("mute")) {
|
|
|
|
_soundFlag = false;
|
|
|
|
_musicFlag = false;
|
|
|
|
} else {
|
|
|
|
_soundFlag = !ConfMan.hasKey("sfx_mute") || !ConfMan.getBool("sfx_mute");
|
|
|
|
_musicFlag = !ConfMan.hasGameDomain("music_mute") || !ConfMan.getBool("music_mute");
|
|
|
|
}
|
2015-03-15 04:05:06 +02:00
|
|
|
|
|
|
|
if (ConfMan.hasKey("ScreenFade"))
|
|
|
|
_screenFade = (ScreenFade)ConfMan.getInt("ScreenFade");
|
|
|
|
//if (ConfMan.hasKey("GraphicsDithering"))
|
|
|
|
// _dithering = ConfMan.getBool("GraphicsDithering");
|
|
|
|
|
|
|
|
if (getGameID() == GType_RexNebular) {
|
|
|
|
if (ConfMan.hasKey("InvObjectsAnimated"))
|
|
|
|
_invObjectsAnimated = ConfMan.getBool("InvObjectsAnimated");
|
|
|
|
if (ConfMan.hasKey("TextWindowStill"))
|
|
|
|
_textWindowStill = !ConfMan.getBool("TextWindowAnimated");
|
|
|
|
if (ConfMan.hasKey("NaughtyMode"))
|
|
|
|
_game->setNaughtyMode(ConfMan.getBool("NaughtyMode"));
|
|
|
|
}
|
2015-03-18 20:29:50 -04:00
|
|
|
|
|
|
|
// Note: MADS is weird in that sfx and music are handled by the same driver,
|
|
|
|
// and the game scripts themselves check for music being enabled before playing
|
|
|
|
// a "music" sound. Which means we can independantly mute music in ScummVM, but
|
|
|
|
// otherwise all sound, music and sfx, is controlled by the SFX volume slider.
|
|
|
|
int soundVolume = MIN(255, ConfMan.getInt("sfx_volume"));
|
|
|
|
_sound->setVolume(soundVolume);
|
2015-03-14 11:57:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MADSEngine::saveOptions() {
|
|
|
|
ConfMan.setBool("EasyMouse", _easyMouse);
|
2015-03-15 04:05:06 +02:00
|
|
|
ConfMan.setInt("ScreenFade", (int)_screenFade);
|
|
|
|
//ConfMan.setBool("GraphicsDithering", _dithering);
|
|
|
|
|
2015-03-14 19:09:44 -04:00
|
|
|
ConfMan.setBool("mute", !_soundFlag && !_musicFlag);
|
|
|
|
ConfMan.setBool("sfx_mute", !_soundFlag && _musicFlag);
|
|
|
|
ConfMan.setBool("music_mute", _soundFlag && !_musicFlag);
|
2015-03-14 11:57:28 -04:00
|
|
|
|
2015-03-15 04:05:06 +02:00
|
|
|
if (getGameID() == GType_RexNebular) {
|
|
|
|
ConfMan.setBool("InvObjectsAnimated", _invObjectsAnimated);
|
|
|
|
ConfMan.setBool("TextWindowAnimated", !_textWindowStill);
|
|
|
|
ConfMan.setBool("NaughtyMode", _game->getNaughtyMode());
|
|
|
|
}
|
|
|
|
|
2015-03-14 11:57:28 -04:00
|
|
|
ConfMan.flushToDisk();
|
|
|
|
}
|
|
|
|
|
2014-02-16 15:22:57 -05:00
|
|
|
Common::Error MADSEngine::run() {
|
2017-10-01 00:56:01 -05:00
|
|
|
initGraphics(MADS_SCREEN_WIDTH, MADS_SCREEN_HEIGHT);
|
2014-05-27 00:58:25 +02:00
|
|
|
initialize();
|
2014-02-16 15:22:57 -05:00
|
|
|
|
2014-02-19 23:17:57 -05:00
|
|
|
// Run the game
|
|
|
|
_game->run();
|
|
|
|
|
2014-02-16 15:22:57 -05:00
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MADSEngine::getRandomNumber(int maxNumber) {
|
|
|
|
return _randomSource.getRandomNumber(maxNumber);
|
|
|
|
}
|
|
|
|
|
2014-03-22 22:02:52 +01:00
|
|
|
int MADSEngine::getRandomNumber(int minNumber, int maxNumber) {
|
|
|
|
int range = maxNumber - minNumber;
|
|
|
|
|
|
|
|
return minNumber + _randomSource.getRandomNumber(range);
|
|
|
|
}
|
|
|
|
|
2014-04-24 09:12:09 -04:00
|
|
|
bool MADSEngine::canLoadGameStateCurrently() {
|
2014-05-08 11:43:23 +03:00
|
|
|
return !_game->_winStatus && !_game->globals()[5]
|
2014-05-02 21:29:33 -04:00
|
|
|
&& _dialogs->_pendingDialog == DIALOG_NONE
|
2014-05-03 11:09:28 -04:00
|
|
|
&& _events->_cursorId != CURSOR_WAIT;
|
2014-04-24 09:12:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MADSEngine::canSaveGameStateCurrently() {
|
|
|
|
return !_game->_winStatus && !_game->globals()[5]
|
2014-05-02 21:29:33 -04:00
|
|
|
&& _dialogs->_pendingDialog == DIALOG_NONE
|
2014-05-03 11:09:28 -04:00
|
|
|
&& _events->_cursorId != CURSOR_WAIT;
|
2014-04-24 09:12:09 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 19:09:44 -04:00
|
|
|
void MADSEngine::syncSoundSettings() {
|
|
|
|
Engine::syncSoundSettings();
|
|
|
|
|
|
|
|
loadOptions();
|
|
|
|
}
|
|
|
|
|
2014-04-26 11:01:21 -04:00
|
|
|
Common::Error MADSEngine::loadGameState(int slot) {
|
2014-05-03 11:09:28 -04:00
|
|
|
_game->_loadGameSlot = slot;
|
|
|
|
_game->_scene._currentSceneId = -1;
|
|
|
|
_game->_currentSectionNumber = -1;
|
2014-04-26 11:01:21 -04:00
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
2020-02-04 22:13:33 -08:00
|
|
|
Common::Error MADSEngine::saveGameState(int slot, const Common::String &desc, bool isAutosave) {
|
2014-04-26 11:01:21 -04:00
|
|
|
_game->saveGame(slot, desc);
|
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
2014-02-16 15:22:57 -05:00
|
|
|
} // End of namespace MADS
|