2015-03-15 20:52:55 +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.
|
2015-05-09 16:04:13 +00:00
|
|
|
*
|
2015-03-15 20:52:55 +00: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 16:04:13 +00:00
|
|
|
*
|
2015-03-15 20:52:55 +00: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-07-25 01:47:05 +00:00
|
|
|
#include "common/config-manager.h"
|
2015-05-13 02:02:59 +00:00
|
|
|
#include "engines/util.h"
|
2015-06-04 23:37:59 +00:00
|
|
|
#include "sherlock/tattoo/tattoo.h"
|
2015-06-28 17:29:32 +00:00
|
|
|
#include "sherlock/tattoo/tattoo_fixed_text.h"
|
2015-06-06 21:50:57 +00:00
|
|
|
#include "sherlock/tattoo/tattoo_resources.h"
|
2015-06-04 23:37:59 +00:00
|
|
|
#include "sherlock/tattoo/tattoo_scene.h"
|
2015-07-22 02:03:29 +00:00
|
|
|
#include "sherlock/tattoo/tattoo_user_interface.h"
|
2015-06-21 12:46:38 +00:00
|
|
|
#include "sherlock/tattoo/widget_base.h"
|
2015-06-06 21:50:57 +00:00
|
|
|
#include "sherlock/people.h"
|
2015-03-15 20:52:55 +00:00
|
|
|
|
|
|
|
namespace Sherlock {
|
|
|
|
|
|
|
|
namespace Tattoo {
|
|
|
|
|
2015-05-28 00:26:40 +00:00
|
|
|
TattooEngine::TattooEngine(OSystem *syst, const SherlockGameDescription *gameDesc) :
|
2015-07-23 00:26:28 +00:00
|
|
|
SherlockEngine(syst, gameDesc), _darts(this), _hangmanWidget(this) {
|
2015-06-13 03:23:16 +00:00
|
|
|
_runningProlog = false;
|
2015-06-13 15:38:12 +00:00
|
|
|
_fastMode = false;
|
|
|
|
_allowFastMode = true;
|
2015-06-21 18:44:32 +00:00
|
|
|
_transparentMenus = true;
|
2015-07-24 01:47:18 +00:00
|
|
|
_textWindowsOn = true;
|
2015-05-28 00:26:40 +00:00
|
|
|
}
|
|
|
|
|
2015-06-21 12:46:38 +00:00
|
|
|
TattooEngine::~TattooEngine() {
|
|
|
|
}
|
|
|
|
|
2015-03-15 22:42:24 +00:00
|
|
|
void TattooEngine::showOpening() {
|
2015-07-21 23:55:34 +00:00
|
|
|
// No implementation - opening is done using in-game scenes
|
2015-03-15 22:42:24 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 02:02:59 +00:00
|
|
|
void TattooEngine::initialize() {
|
|
|
|
initGraphics(640, 480, true);
|
|
|
|
|
|
|
|
// Initialize the base engine
|
|
|
|
SherlockEngine::initialize();
|
|
|
|
|
2015-06-13 01:07:43 +00:00
|
|
|
// Initialise the global flags
|
2015-06-12 01:07:19 +00:00
|
|
|
_flags.resize(3200);
|
2015-06-13 01:07:43 +00:00
|
|
|
_flags[1] = _flags[4] = _flags[76] = true;
|
2015-06-13 03:23:16 +00:00
|
|
|
_runningProlog = true;
|
2015-05-13 02:02:59 +00:00
|
|
|
|
|
|
|
// Add some more files to the cache
|
|
|
|
_res->addToCache("walk.lib");
|
2015-06-06 21:50:57 +00:00
|
|
|
|
|
|
|
// Set up list of people
|
|
|
|
for (int idx = 0; idx < TATTOO_MAX_PEOPLE; ++idx) {
|
|
|
|
_people->_characters.push_back(PersonData(
|
|
|
|
getLanguage() == Common::FR_FRA ? FRENCH_NAMES[idx] : ENGLISH_NAMES[idx],
|
|
|
|
PORTRAITS[idx], nullptr, nullptr));
|
|
|
|
}
|
2015-05-13 02:02:59 +00:00
|
|
|
|
2015-06-28 17:29:32 +00:00
|
|
|
// Load the inventory
|
|
|
|
loadInventory();
|
|
|
|
|
2015-05-13 02:02:59 +00:00
|
|
|
// Starting scene
|
2015-06-04 23:37:59 +00:00
|
|
|
_scene->_goToScene = STARTING_INTRO_SCENE;
|
2015-05-24 11:46:25 +00:00
|
|
|
|
|
|
|
// Load an initial palette
|
|
|
|
loadInitialPalette();
|
2015-05-13 02:02:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TattooEngine::startScene() {
|
2015-07-22 02:03:29 +00:00
|
|
|
TattooUserInterface &ui = *(TattooUserInterface *)_ui;
|
|
|
|
|
2015-07-11 00:11:19 +00:00
|
|
|
switch (_scene->_goToScene) {
|
2015-07-22 02:03:29 +00:00
|
|
|
case 7:
|
|
|
|
case 8:
|
|
|
|
case 18:
|
|
|
|
case 53:
|
|
|
|
case 68:
|
|
|
|
// Load overlay mask(s) for the scene
|
2015-07-23 01:02:29 +00:00
|
|
|
ui._mask = _res->load(Common::String::format("res%02d.msk", _scene->_goToScene));
|
2015-07-22 02:03:29 +00:00
|
|
|
if (_scene->_goToScene == 8)
|
2015-07-23 01:02:29 +00:00
|
|
|
ui._mask1 = _res->load("res08a.msk");
|
2015-07-22 02:03:29 +00:00
|
|
|
else if (_scene->_goToScene == 18 || _scene->_goToScene == 68)
|
2015-07-23 01:02:29 +00:00
|
|
|
ui._mask1 = _res->load("res08a.msk");
|
2015-07-22 02:03:29 +00:00
|
|
|
break;
|
|
|
|
|
2015-07-11 00:11:19 +00:00
|
|
|
case OVERHEAD_MAP:
|
|
|
|
case OVERHEAD_MAP2:
|
2015-06-08 03:29:36 +00:00
|
|
|
// Show the map
|
|
|
|
_scene->_currentScene = OVERHEAD_MAP;
|
|
|
|
_scene->_goToScene = _map->show();
|
|
|
|
|
2015-07-03 00:53:40 +00:00
|
|
|
_people->_savedPos = Common::Point(-1, -1);
|
|
|
|
_people->_savedPos._facing = -1;
|
2015-07-11 00:11:19 +00:00
|
|
|
break;
|
2015-06-08 03:29:36 +00:00
|
|
|
|
2015-07-11 00:11:19 +00:00
|
|
|
case 101:
|
|
|
|
// Darts Board minigame
|
|
|
|
_darts.playDarts(GAME_CRICKET);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 102:
|
|
|
|
// Darts Board minigame
|
|
|
|
_darts.playDarts(GAME_301);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 103:
|
|
|
|
// Darts Board minigame
|
|
|
|
_darts.playDarts(GAME_501);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-07-10 23:07:30 +00:00
|
|
|
|
|
|
|
_events->setCursor(ARROW);
|
2015-05-13 02:02:59 +00:00
|
|
|
}
|
|
|
|
|
2015-05-24 11:46:25 +00:00
|
|
|
void TattooEngine::loadInitialPalette() {
|
|
|
|
byte palette[768];
|
|
|
|
Common::SeekableReadStream *stream = _res->load("room.pal");
|
|
|
|
stream->read(palette, PALETTE_SIZE);
|
|
|
|
_screen->translatePalette(palette);
|
|
|
|
_screen->setPalette(palette);
|
|
|
|
|
|
|
|
delete stream;
|
|
|
|
}
|
2015-05-13 02:02:59 +00:00
|
|
|
|
2015-06-28 17:29:32 +00:00
|
|
|
void TattooEngine::loadInventory() {
|
|
|
|
Inventory &inv = *_inventory;
|
|
|
|
|
|
|
|
Common::String inv1 = _fixedText->getText(kFixedText_Inv1);
|
|
|
|
Common::String inv2 = _fixedText->getText(kFixedText_Inv2);
|
|
|
|
Common::String inv3 = _fixedText->getText(kFixedText_Inv3);
|
|
|
|
Common::String inv4 = _fixedText->getText(kFixedText_Inv4);
|
|
|
|
Common::String inv5 = _fixedText->getText(kFixedText_Inv5);
|
|
|
|
Common::String inv6 = _fixedText->getText(kFixedText_Inv6);
|
|
|
|
Common::String inv7 = _fixedText->getText(kFixedText_Inv7);
|
|
|
|
Common::String inv8 = _fixedText->getText(kFixedText_Inv8);
|
|
|
|
Common::String invDesc1 = _fixedText->getText(kFixedText_InvDesc1);
|
|
|
|
Common::String invDesc2 = _fixedText->getText(kFixedText_InvDesc2);
|
|
|
|
Common::String invDesc3 = _fixedText->getText(kFixedText_InvDesc3);
|
|
|
|
Common::String invDesc4 = _fixedText->getText(kFixedText_InvDesc4);
|
|
|
|
Common::String invDesc5 = _fixedText->getText(kFixedText_InvDesc5);
|
|
|
|
Common::String invDesc6 = _fixedText->getText(kFixedText_InvDesc6);
|
|
|
|
Common::String invDesc7 = _fixedText->getText(kFixedText_InvDesc7);
|
|
|
|
Common::String invDesc8 = _fixedText->getText(kFixedText_InvDesc8);
|
|
|
|
Common::String solve = _fixedText->getText(kFixedText_Solve);
|
|
|
|
|
|
|
|
// Initial inventory
|
|
|
|
inv._holdings = 5;
|
|
|
|
inv.push_back(InventoryItem(0, inv1, invDesc1, "_ITEM01A"));
|
|
|
|
inv.push_back(InventoryItem(0, inv2, invDesc2, "_ITEM02A"));
|
|
|
|
inv.push_back(InventoryItem(0, inv3, invDesc3, "_ITEM03A"));
|
|
|
|
inv.push_back(InventoryItem(0, inv4, invDesc4, "_ITEM04A"));
|
|
|
|
inv.push_back(InventoryItem(0, inv5, invDesc5, "_ITEM05A"));
|
|
|
|
|
|
|
|
// Hidden items
|
|
|
|
inv.push_back(InventoryItem(0, inv6, invDesc6, "_PAP212D", solve));
|
|
|
|
inv.push_back(InventoryItem(0, inv7, invDesc7, "_PAP212I"));
|
|
|
|
inv.push_back(InventoryItem(0, inv8, invDesc8, "_LANT02I"));
|
|
|
|
}
|
|
|
|
|
2015-06-21 12:46:38 +00:00
|
|
|
void TattooEngine::doHangManPuzzle() {
|
2015-07-23 00:26:28 +00:00
|
|
|
_hangmanWidget.show();
|
2015-06-21 12:46:38 +00:00
|
|
|
}
|
|
|
|
|
2015-07-25 01:47:05 +00:00
|
|
|
void TattooEngine::loadConfig() {
|
|
|
|
SherlockEngine::loadConfig();
|
|
|
|
|
|
|
|
_transparentMenus = ConfMan.getBool("transparent_windows");
|
|
|
|
_textWindowsOn = ConfMan.getBool("text_windows");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TattooEngine::saveConfig() {
|
|
|
|
SherlockEngine::saveConfig();
|
|
|
|
|
|
|
|
ConfMan.setBool("transparent_windows", _transparentMenus);
|
|
|
|
ConfMan.setBool("text_windows", _textWindowsOn);
|
|
|
|
ConfMan.flushToDisk();
|
|
|
|
}
|
|
|
|
|
2015-03-15 20:52:55 +00:00
|
|
|
} // End of namespace Tattoo
|
|
|
|
|
2015-06-01 01:19:54 +00:00
|
|
|
} // End of namespace Sherlock
|