scummvm/engines/adl/hires2.cpp

166 lines
5.1 KiB
C++
Raw Normal View History

2016-03-10 10:46:06 +01: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/system.h"
#include "common/debug.h"
#include "common/error.h"
#include "common/file.h"
#include "common/stream.h"
#include "adl/adl_v2.h"
2016-03-10 10:46:06 +01:00
#include "adl/display.h"
2016-03-13 11:43:48 +01:00
#include "adl/graphics.h"
2016-03-23 11:14:51 +01:00
#include "adl/disk.h"
2016-03-10 10:46:06 +01:00
namespace Adl {
#define IDS_HR2_DISK_IMAGE "WIZARD.DSK"
#define IDI_HR2_NUM_ROOMS 135
#define IDI_HR2_NUM_MESSAGES 255
#define IDI_HR2_NUM_VARS 40
#define IDI_HR2_NUM_ITEM_PICS 38
#define IDI_HR2_NUM_ITEM_OFFSETS 16
// Messages used outside of scripts
#define IDI_HR2_MSG_CANT_GO_THERE 123
#define IDI_HR2_MSG_DONT_UNDERSTAND 19
#define IDI_HR2_MSG_ITEM_DOESNT_MOVE 242
#define IDI_HR2_MSG_ITEM_NOT_HERE 4
#define IDI_HR2_MSG_THANKS_FOR_PLAYING 239
class HiRes2Engine : public AdlEngine_v2 {
public:
HiRes2Engine(OSystem *syst, const AdlGameDescription *gd) : AdlEngine_v2(syst, gd) { }
private:
// AdlEngine
2016-12-11 13:35:15 +01:00
void runIntro();
void init();
void initGameState();
};
2016-12-11 13:35:15 +01:00
void HiRes2Engine::runIntro() {
2016-08-19 15:45:44 +02:00
// This only works for the 16-sector re-release. The original
// release is not supported at this time, because we don't have
// access to it.
_disk->setSectorLimit(0);
2016-04-03 12:26:26 +02:00
StreamPtr stream(_disk->createReadStream(0x00, 0xd, 0x17, 1));
2016-03-10 12:09:59 +01:00
_display->setMode(DISPLAY_MODE_TEXT);
2016-03-23 11:14:51 +01:00
Common::String str = readString(*stream);
2016-03-10 12:09:59 +01:00
2016-03-23 11:14:51 +01:00
if (stream->eos() || stream->err())
2016-03-10 12:09:59 +01:00
error("Error reading disk image");
_display->printString(str);
delay(2000);
2016-08-19 15:45:44 +02:00
_disk->setSectorLimit(13);
2016-03-10 10:46:06 +01:00
}
void HiRes2Engine::init() {
_graphics = new GraphicsMan_v2(*_display);
2016-08-19 15:45:44 +02:00
_disk = new DiskImage();
2016-04-03 12:26:26 +02:00
if (!_disk->open(IDS_HR2_DISK_IMAGE))
2016-03-23 11:14:51 +01:00
error("Failed to open disk image '" IDS_HR2_DISK_IMAGE "'");
2016-03-11 00:24:31 +01:00
_disk->setSectorLimit(13);
2016-08-19 15:45:44 +02:00
2016-04-09 17:00:49 +02:00
StreamPtr stream(_disk->createReadStream(0x1f, 0x2, 0x00, 4));
2016-08-28 13:13:00 +02:00
loadMessages(*stream, IDI_HR2_NUM_MESSAGES);
2016-03-11 00:24:31 +01:00
2016-03-23 11:14:51 +01:00
// Read parser messages
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1a, 0x1));
2016-03-23 11:14:51 +01:00
_strings.verbError = readStringAt(*stream, 0x4f);
_strings.nounError = readStringAt(*stream, 0x8e);
_strings.enterCommand = readStringAt(*stream, 0xbc);
// Read time string
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x19, 0x7, 0xd7));
2016-03-23 11:14:51 +01:00
_strings_v2.time = readString(*stream, 0xff);
2016-04-03 13:45:31 +02:00
// Read line feeds
stream.reset(_disk->createReadStream(0x19, 0xb, 0xf8, 1));
_strings.lineFeeds = readString(*stream);
2016-03-23 11:14:51 +01:00
// Read opcode strings
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1a, 0x6, 0x00, 2));
2016-03-23 11:14:51 +01:00
_strings_v2.saveInsert = readStringAt(*stream, 0x5f);
_strings_v2.saveReplace = readStringAt(*stream, 0xe5);
_strings_v2.restoreInsert = readStringAt(*stream, 0x132);
_strings_v2.restoreReplace = readStringAt(*stream, 0x1c2);
_strings.playAgain = readStringAt(*stream, 0x225);
_strings.pressReturn = readStringAt(*stream, 0x25f);
2016-03-11 00:24:31 +01:00
_messageIds.cantGoThere = IDI_HR2_MSG_CANT_GO_THERE;
_messageIds.dontUnderstand = IDI_HR2_MSG_DONT_UNDERSTAND;
_messageIds.itemDoesntMove = IDI_HR2_MSG_ITEM_DOESNT_MOVE;
_messageIds.itemNotHere = IDI_HR2_MSG_ITEM_NOT_HERE;
_messageIds.thanksForPlaying = IDI_HR2_MSG_THANKS_FOR_PLAYING;
2016-03-26 17:56:55 +01:00
// Load global picture data
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x19, 0xa, 0x80, 0));
2016-08-28 13:46:11 +02:00
loadPictures(*stream);
2016-03-26 17:56:55 +01:00
2016-03-16 23:12:31 +01:00
// Load item picture data
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1e, 0x9, 0x05));
loadItemPictures(*stream, IDI_HR2_NUM_ITEM_PICS);
2016-03-16 23:12:31 +01:00
2016-03-16 11:04:34 +01:00
// Load commands from executable
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1d, 0x7, 0x00, 4));
2016-03-23 11:14:51 +01:00
readCommands(*stream, _roomCommands);
2016-03-16 11:04:34 +01:00
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1f, 0x7, 0x00, 2));
2016-03-23 11:14:51 +01:00
readCommands(*stream, _globalCommands);
2016-03-16 11:04:34 +01:00
2016-03-17 10:46:53 +01:00
// Load dropped item offsets
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x1b, 0x4, 0x15));
2016-08-28 20:29:11 +02:00
loadDroppedItemOffsets(*stream, IDI_HR2_NUM_ITEM_OFFSETS);
2016-03-17 10:46:53 +01:00
2016-03-23 11:14:51 +01:00
// Load verbs
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x19, 0x0, 0x00, 3));
loadWords(*stream, _verbs, _priVerbs);
2016-03-10 16:55:40 +01:00
2016-03-23 11:14:51 +01:00
// Load nouns
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x22, 0x2, 0x00, 7));
loadWords(*stream, _nouns, _priNouns);
2016-03-10 10:46:06 +01:00
}
2016-04-10 15:20:17 +02:00
void HiRes2Engine::initGameState() {
2016-03-16 11:04:34 +01:00
_state.vars.resize(IDI_HR2_NUM_VARS);
2016-04-03 12:26:26 +02:00
StreamPtr stream(_disk->createReadStream(0x21, 0x5, 0x0e, 7));
2016-08-28 01:13:15 +02:00
loadRooms(*stream, IDI_HR2_NUM_ROOMS);
2016-03-16 17:23:52 +01:00
2016-04-03 12:26:26 +02:00
stream.reset(_disk->createReadStream(0x21, 0x0, 0x00, 2));
loadItems(*stream);
2016-03-14 15:39:19 +01:00
}
2016-03-10 10:46:06 +01:00
Engine *HiRes2Engine_create(OSystem *syst, const AdlGameDescription *gd) {
return new HiRes2Engine(syst, gd);
}
} // End of namespace Adl