2014-02-16 20:22:57 +00: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.
|
|
|
|
|
|
|
|
* 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-channels.h"
|
|
|
|
#include "common/events.h"
|
2014-02-19 01:08:58 +00:00
|
|
|
#include "engines/util.h"
|
|
|
|
#include "mads/mads.h"
|
2014-04-24 13:12:09 +00:00
|
|
|
#include "mads/game.h"
|
2014-03-14 02:25:16 +00:00
|
|
|
#include "mads/screen.h"
|
2014-03-05 03:33:27 +00:00
|
|
|
#include "mads/msurface.h"
|
2014-02-19 01:08:58 +00:00
|
|
|
#include "mads/resources.h"
|
|
|
|
#include "mads/sound.h"
|
2014-03-05 03:33:27 +00:00
|
|
|
#include "mads/sprites.h"
|
2014-02-16 20:22:57 +00:00
|
|
|
|
|
|
|
namespace MADS {
|
|
|
|
|
|
|
|
MADSEngine::MADSEngine(OSystem *syst, const MADSGameDescription *gameDesc) :
|
2014-02-19 01:08:58 +00:00
|
|
|
_gameDescription(gameDesc), Engine(syst), _randomSource("MADS") {
|
2014-05-08 08:43:23 +00:00
|
|
|
|
2014-02-19 01:08:58 +00:00
|
|
|
// Initialise fields
|
|
|
|
_easyMouse = true;
|
2014-03-18 03:14:54 +00:00
|
|
|
_invObjectsAnimated = true;
|
2014-02-19 01:08:58 +00:00
|
|
|
_textWindowStill = false;
|
2014-03-10 04:00:39 +00:00
|
|
|
_screenFade = SCREEN_FADE_SMOOTH;
|
2014-05-14 13:19:54 +00:00
|
|
|
_musicFlag = true;
|
2014-04-08 02:37:22 +00:00
|
|
|
_dithering = false;
|
2014-02-19 04:43:06 +00:00
|
|
|
|
2014-02-22 22:25:30 +00:00
|
|
|
_debugger = nullptr;
|
2014-02-24 05:20:53 +00:00
|
|
|
_dialogs = nullptr;
|
2014-02-19 04:43:06 +00:00
|
|
|
_events = nullptr;
|
|
|
|
_font = nullptr;
|
2014-02-20 04:17:57 +00:00
|
|
|
_game = nullptr;
|
2014-02-19 01:08:58 +00:00
|
|
|
_palette = nullptr;
|
|
|
|
_resources = nullptr;
|
|
|
|
_sound = nullptr;
|
2014-02-16 20:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MADSEngine::~MADSEngine() {
|
2014-02-22 22:25:30 +00:00
|
|
|
delete _debugger;
|
2014-02-24 05:20:53 +00:00
|
|
|
delete _dialogs;
|
2014-02-19 01:08:58 +00:00
|
|
|
delete _events;
|
2014-02-19 04:43:06 +00:00
|
|
|
delete _font;
|
2014-03-17 04:00:22 +00:00
|
|
|
Font::deinit();
|
2014-02-20 04:17:57 +00:00
|
|
|
delete _game;
|
2014-02-19 04:43:06 +00:00
|
|
|
delete _palette;
|
2014-02-19 01:08:58 +00:00
|
|
|
delete _resources;
|
|
|
|
delete _sound;
|
2014-02-16 20:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MADSEngine::initialise() {
|
2014-02-19 01:08:58 +00:00
|
|
|
// Set up debug channels
|
|
|
|
DebugMan.addDebugChannel(kDebugPath, "Path", "Pathfinding debug level");
|
|
|
|
DebugMan.addDebugChannel(kDebugScripts, "scripts", "Game scripts");
|
2014-02-22 17:17:37 +00:00
|
|
|
DebugMan.addDebugChannel(kDebugGraphics, "graphics", "Graphics handling");
|
2014-02-19 01:08:58 +00:00
|
|
|
|
|
|
|
// Initial sub-system engine references
|
|
|
|
MSurface::setVm(this);
|
|
|
|
MSprite::setVm(this);
|
|
|
|
|
2014-02-25 01:05:35 +00:00
|
|
|
Resources::init(this);
|
2014-04-21 01:32:29 +00:00
|
|
|
Conversation::init(this);
|
2014-02-22 22:25:30 +00:00
|
|
|
_debugger = new Debugger(this);
|
2014-02-24 05:20:53 +00:00
|
|
|
_dialogs = Dialogs::init(this);
|
2014-02-19 01:08:58 +00:00
|
|
|
_events = new EventsManager(this);
|
2014-02-22 05:24:39 +00:00
|
|
|
_palette = new Palette(this);
|
2014-03-17 03:40:21 +00:00
|
|
|
Font::init(this);
|
|
|
|
_font = new Font();
|
2014-03-05 12:27:39 +00:00
|
|
|
_screen.init();
|
2014-02-19 01:08:58 +00:00
|
|
|
_sound = new SoundManager(this, _mixer);
|
2014-04-27 19:56:15 +00:00
|
|
|
_audio = new AudioPlayer(_mixer, getGameID());
|
2014-02-20 04:17:57 +00:00
|
|
|
_game = Game::init(this);
|
2014-02-19 04:43:06 +00:00
|
|
|
|
2014-03-05 03:33:27 +00:00
|
|
|
_screen.empty();
|
2014-02-16 20:22:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Common::Error MADSEngine::run() {
|
2014-02-19 04:43:06 +00:00
|
|
|
initGraphics(MADS_SCREEN_WIDTH, MADS_SCREEN_HEIGHT, false);
|
2014-02-16 20:22:57 +00:00
|
|
|
initialise();
|
|
|
|
|
2014-02-20 04:17:57 +00:00
|
|
|
// Run the game
|
|
|
|
_game->run();
|
|
|
|
|
|
|
|
// Dummy loop to keep application active
|
2014-02-22 22:25:30 +00:00
|
|
|
_events->delay(9999);
|
2014-02-16 20:22:57 +00:00
|
|
|
|
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MADSEngine::getRandomNumber(int maxNumber) {
|
|
|
|
return _randomSource.getRandomNumber(maxNumber);
|
|
|
|
}
|
|
|
|
|
2014-03-22 21:02:52 +00:00
|
|
|
int MADSEngine::getRandomNumber(int minNumber, int maxNumber) {
|
|
|
|
int range = maxNumber - minNumber;
|
|
|
|
|
|
|
|
return minNumber + _randomSource.getRandomNumber(range);
|
|
|
|
}
|
|
|
|
|
2014-03-22 03:36:56 +00:00
|
|
|
int MADSEngine::hypotenuse(int xv, int yv) {
|
|
|
|
return (int)sqrt((double)(xv * xv + yv * yv));
|
|
|
|
}
|
|
|
|
|
2014-04-24 13:12:09 +00:00
|
|
|
bool MADSEngine::canLoadGameStateCurrently() {
|
2014-05-08 08:43:23 +00:00
|
|
|
return !_game->_winStatus && !_game->globals()[5]
|
2014-05-03 01:29:33 +00:00
|
|
|
&& _dialogs->_pendingDialog == DIALOG_NONE
|
2014-05-03 15:09:28 +00:00
|
|
|
&& _events->_cursorId != CURSOR_WAIT;
|
2014-04-24 13:12:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MADSEngine::canSaveGameStateCurrently() {
|
|
|
|
return !_game->_winStatus && !_game->globals()[5]
|
2014-05-03 01:29:33 +00:00
|
|
|
&& _dialogs->_pendingDialog == DIALOG_NONE
|
2014-05-03 15:09:28 +00:00
|
|
|
&& _events->_cursorId != CURSOR_WAIT;
|
2014-04-24 13:12:09 +00:00
|
|
|
}
|
|
|
|
|
2014-04-26 13:08:46 +00:00
|
|
|
/**
|
|
|
|
* Support method that generates a savegame name
|
|
|
|
* @param slot Slot number
|
|
|
|
*/
|
|
|
|
Common::String MADSEngine::generateSaveName(int slot) {
|
|
|
|
return Common::String::format("%s.%03d", _targetName.c_str(), slot);
|
|
|
|
}
|
|
|
|
|
2014-04-26 15:01:21 +00:00
|
|
|
Common::Error MADSEngine::loadGameState(int slot) {
|
2014-05-03 15:09:28 +00:00
|
|
|
_game->_loadGameSlot = slot;
|
|
|
|
_game->_scene._currentSceneId = -1;
|
|
|
|
_game->_currentSectionNumber = -1;
|
2014-04-26 15:01:21 +00:00
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
|
|
|
Common::Error MADSEngine::saveGameState(int slot, const Common::String &desc) {
|
|
|
|
_game->saveGame(slot, desc);
|
|
|
|
return Common::kNoError;
|
|
|
|
}
|
|
|
|
|
2014-02-16 20:22:57 +00:00
|
|
|
} // End of namespace MADS
|