2005-01-09 16:06:29 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2004-2005 The ScummVM project
|
2004-04-09 12:36:06 +00:00
|
|
|
*
|
|
|
|
* 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
|
2004-10-15 06:06:47 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2004-04-09 12:36:06 +00:00
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2004-04-09 12:36:06 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
#include "backends/fs/fs.h"
|
|
|
|
|
2004-04-09 12:36:06 +00:00
|
|
|
#include "base/gameDetector.h"
|
|
|
|
#include "base/plugins.h"
|
|
|
|
|
|
|
|
#include "common/config-manager.h"
|
2005-08-19 22:12:09 +00:00
|
|
|
#include "common/file.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
|
|
|
|
#include "sound/mixer.h"
|
2004-11-11 13:37:35 +00:00
|
|
|
#include "sound/mididrv.h"
|
2004-04-09 12:36:06 +00:00
|
|
|
|
2005-06-24 16:01:42 +00:00
|
|
|
#include "kyra/kyra.h"
|
|
|
|
#include "kyra/resource.h"
|
2005-08-19 22:12:09 +00:00
|
|
|
#include "kyra/screen.h"
|
2005-06-24 16:01:42 +00:00
|
|
|
#include "kyra/script.h"
|
|
|
|
#include "kyra/sound.h"
|
2005-08-19 22:12:09 +00:00
|
|
|
#include "kyra/wsamovie.h"
|
|
|
|
|
|
|
|
using namespace Kyra;
|
2004-10-15 06:06:47 +00:00
|
|
|
|
|
|
|
struct KyraGameSettings {
|
2004-10-16 22:28:29 +00:00
|
|
|
const char *name;
|
|
|
|
const char *description;
|
|
|
|
uint32 features;
|
|
|
|
const char *detectName;
|
|
|
|
GameSettings toGameSettings() const {
|
|
|
|
GameSettings dummy = { name, description, features };
|
|
|
|
return dummy;
|
|
|
|
}
|
2004-10-15 06:06:47 +00:00
|
|
|
};
|
|
|
|
|
2004-11-11 13:37:35 +00:00
|
|
|
static const KyraGameSettings kyra_settings[] = {
|
2005-08-19 22:12:09 +00:00
|
|
|
{ "kyra1", "Legend of Kyrandia (Floppy)", GF_FLOPPY | GF_KYRA1, "INTRO.SND" },
|
|
|
|
{ "kyra1cd", "Legend of Kyrandia (CD)", GF_TALKIE | GF_KYRA1, "CHAPTER1.VRM" },
|
2005-09-10 06:40:20 +00:00
|
|
|
{ "kyra1demo", "Legend of Kyrandia (Demo)", GF_DEMO | GF_FLOPPY | GF_KYRA1, "DEMO1.WSA" },
|
2005-08-19 22:12:09 +00:00
|
|
|
// { "kyra2", "Hand of Fate (Floppy)", GF_FLOPPY | GF_KYRA2, 0 },
|
|
|
|
// { "kyra2cd", "Hand of Fate (CD)", GF_TALKIE | GF_KYRA2, "AUDIO.PAK" },
|
|
|
|
// { "kyra3", "Malcolm's Revenge", GF_TALKIE | GF_KYRA3, "K3INTRO0.VQA" },
|
|
|
|
{ 0, 0, 0, 0 }
|
2004-10-15 06:06:47 +00:00
|
|
|
};
|
2004-04-09 12:36:06 +00:00
|
|
|
|
|
|
|
GameList Engine_KYRA_gameList() {
|
2004-10-16 22:28:29 +00:00
|
|
|
GameList games;
|
|
|
|
const KyraGameSettings *g = kyra_settings;
|
|
|
|
while (g->name) {
|
|
|
|
games.push_back(g->toGameSettings());
|
|
|
|
g++;
|
|
|
|
}
|
|
|
|
return games;
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DetectedGameList Engine_KYRA_detectGames(const FSList &fslist) {
|
2004-10-15 06:06:47 +00:00
|
|
|
const KyraGameSettings *game;
|
2004-04-09 12:36:06 +00:00
|
|
|
DetectedGameList detectedGames;
|
2004-10-15 06:06:47 +00:00
|
|
|
|
|
|
|
for (game = kyra_settings; game->name; ++game) {
|
|
|
|
if (game->detectName == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) {
|
2004-12-09 15:06:49 +00:00
|
|
|
if (!file->isDirectory()) {
|
|
|
|
const char *name = file->displayName().c_str();
|
|
|
|
if ((!scumm_stricmp(game->detectName, name))) {
|
|
|
|
detectedGames.push_back(game->toGameSettings());
|
|
|
|
break;
|
|
|
|
}
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-16 22:28:29 +00:00
|
|
|
return detectedGames;
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
Engine *Engine_KYRA_create(GameDetector *detector, OSystem *system) {
|
|
|
|
return new KyraEngine(detector, system);
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
2005-03-25 17:55:57 +00:00
|
|
|
REGISTER_PLUGIN(KYRA, "Legend of Kyrandia Engine")
|
2004-04-09 12:36:06 +00:00
|
|
|
|
|
|
|
namespace Kyra {
|
2005-08-19 22:12:09 +00:00
|
|
|
|
|
|
|
KyraEngine::KyraEngine(GameDetector *detector, OSystem *system)
|
|
|
|
: Engine(system) {
|
2004-04-09 12:36:06 +00:00
|
|
|
|
|
|
|
// Setup mixer
|
|
|
|
if (!_mixer->isReady()) {
|
|
|
|
warning("Sound initialization failed.");
|
|
|
|
}
|
|
|
|
|
2005-05-11 01:02:33 +00:00
|
|
|
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));
|
|
|
|
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume"));
|
2004-04-09 12:36:06 +00:00
|
|
|
|
2004-11-11 13:37:35 +00:00
|
|
|
// gets the game
|
|
|
|
if (detector->_game.features & GF_KYRA1) {
|
2005-09-10 06:40:20 +00:00
|
|
|
if (detector->_game.features & GF_DEMO) {
|
|
|
|
_game = KYRA1DEMO;
|
|
|
|
} else if (detector->_game.features & GF_FLOPPY) {
|
2004-11-11 13:37:35 +00:00
|
|
|
_game = KYRA1;
|
2005-08-19 22:12:09 +00:00
|
|
|
} else {
|
2004-11-11 13:37:35 +00:00
|
|
|
_game = KYRA1CD;
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2004-11-11 13:37:35 +00:00
|
|
|
} else if (detector->_game.features & GF_KYRA2) {
|
2005-08-19 22:12:09 +00:00
|
|
|
if (detector->_game.features & GF_FLOPPY) {
|
2004-11-11 13:37:35 +00:00
|
|
|
_game = KYRA2;
|
2005-08-19 22:12:09 +00:00
|
|
|
} else {
|
2004-11-11 13:37:35 +00:00
|
|
|
_game = KYRA2CD;
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2004-11-11 13:37:35 +00:00
|
|
|
} else if (detector->_game.features & GF_KYRA3) {
|
|
|
|
_game = KYRA3;
|
|
|
|
} else {
|
|
|
|
error("unknown game");
|
|
|
|
}
|
2004-11-23 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
2004-11-24 00:14:21 +00:00
|
|
|
int KyraEngine::init(GameDetector &detector) {
|
|
|
|
_system->beginGFXTransaction();
|
|
|
|
initCommonGFX(detector);
|
|
|
|
_system->initSize(320, 200);
|
|
|
|
_system->endGFXTransaction();
|
|
|
|
|
2004-12-02 08:21:49 +00:00
|
|
|
int midiDrv = MidiDriver::detectMusicDriver(MDT_NATIVE | MDT_ADLIB | MDT_PREFER_NATIVE);
|
2004-11-14 14:11:54 +00:00
|
|
|
bool native_mt32 = (ConfMan.getBool("native_mt32") || (midiDrv == MD_MT32));
|
|
|
|
|
2004-12-02 08:21:49 +00:00
|
|
|
MidiDriver *driver = MidiDriver::createMidi(midiDrv);
|
2004-11-14 14:11:54 +00:00
|
|
|
if (!driver) {
|
|
|
|
// In this case we should play the Adlib tracks, but for now
|
|
|
|
// the automagic MIDI-to-Adlib conversion will do.
|
|
|
|
driver = MidiDriver_ADLIB_create(_mixer);
|
2005-08-19 22:12:09 +00:00
|
|
|
} else if (native_mt32) {
|
2004-11-14 14:11:54 +00:00
|
|
|
driver->property(MidiDriver::PROP_CHANNEL_MASK, 0x03FE);
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2004-11-14 14:11:54 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
_midi = new MusicPlayer(driver, this);
|
|
|
|
assert(_midi);
|
|
|
|
_midi->hasNativeMT32(native_mt32);
|
|
|
|
_midi->setVolume(255);
|
2004-11-11 13:37:35 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
_res = new Resource(this);
|
|
|
|
assert(_res);
|
|
|
|
_screen = new Screen(this, _system);
|
|
|
|
assert(_screen);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
_fastMode = false;
|
|
|
|
_talkCoords.y = 0x88;
|
|
|
|
_talkCoords.x = 0;
|
|
|
|
_talkCoords.w = 0;
|
2005-08-31 20:14:20 +00:00
|
|
|
_talkMessageY = 0xC;
|
|
|
|
_talkMessageH = 0;
|
|
|
|
_talkMessagePrinted = false;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-11-23 00:03:25 +00:00
|
|
|
return 0;
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
KyraEngine::~KyraEngine() {
|
2005-08-19 22:12:09 +00:00
|
|
|
delete _screen;
|
|
|
|
delete _res;
|
|
|
|
delete _midi;
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::errorString(const char *buf1, char *buf2) {
|
|
|
|
strcpy(buf2, buf1);
|
|
|
|
}
|
|
|
|
|
2004-11-23 00:03:25 +00:00
|
|
|
int KyraEngine::go() {
|
2005-08-19 22:12:09 +00:00
|
|
|
_quitFlag = false;
|
2005-09-08 19:09:52 +00:00
|
|
|
uint32 sz;
|
2005-09-10 06:48:34 +00:00
|
|
|
|
|
|
|
if (_game != KYRA1DEMO) {
|
|
|
|
_screen->loadFont(Screen::FID_6_FNT, _res->fileData("6.FNT", &sz));
|
|
|
|
}
|
2005-09-08 19:09:52 +00:00
|
|
|
_screen->loadFont(Screen::FID_8_FNT, _res->fileData("8FAT.FNT", &sz));
|
2005-09-02 11:12:09 +00:00
|
|
|
_screen->setScreenDim(0);
|
2005-09-10 06:40:20 +00:00
|
|
|
|
|
|
|
if (_game == KYRA1DEMO) {
|
|
|
|
seq_demo();
|
|
|
|
} else {
|
|
|
|
seq_intro();
|
|
|
|
startup();
|
|
|
|
mainLoop();
|
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2004-11-11 13:37:35 +00:00
|
|
|
|
2005-09-10 00:15:40 +00:00
|
|
|
void KyraEngine::startup() {
|
|
|
|
debug(9, "KyraEngine::startup()");
|
|
|
|
static const uint8 colorMap[] = { 0, 0, 0, 0, 12, 12, 12, 0, 0, 0, 0, 0 };
|
|
|
|
_screen->setTextColorMap(colorMap);
|
|
|
|
_screen->setFont(Screen::FID_6_FNT);
|
|
|
|
_screen->setAnimBlockPtr(3750);
|
|
|
|
memset(_flagsTable, 0, sizeof(_flagsTable));
|
|
|
|
// XXX
|
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::mainLoop() {
|
|
|
|
debug(9, "KyraEngine::mainLoop()");
|
|
|
|
// XXX
|
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::loadBitmap(const char *filename, int tempPage, int dstPage, uint8 *palData) {
|
|
|
|
debug(9, "KyraEngine::copyBitmap('%s', %d, %d, 0x%X)", filename, tempPage, dstPage, palData);
|
|
|
|
uint32 fileSize;
|
|
|
|
uint8 *srcData = _res->fileData(filename, &fileSize);
|
|
|
|
uint8 compType = srcData[2];
|
|
|
|
uint32 imgSize = READ_LE_UINT32(srcData + 4);
|
|
|
|
uint16 palSize = READ_LE_UINT16(srcData + 8);
|
|
|
|
if (palData && palSize) {
|
|
|
|
memcpy(palData, srcData + 10, palSize);
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
2005-08-22 15:39:07 +00:00
|
|
|
uint8 *srcPtr = srcData + 10 + palSize;
|
2005-08-19 22:12:09 +00:00
|
|
|
uint8 *dstData = _screen->getPagePtr(dstPage);
|
|
|
|
switch (compType) {
|
|
|
|
case 0:
|
2005-08-22 15:39:07 +00:00
|
|
|
memcpy(dstData, srcPtr, imgSize);
|
2005-08-19 22:12:09 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2005-08-22 15:39:07 +00:00
|
|
|
Screen::decodeFrame3(srcPtr, dstData, imgSize);
|
2005-08-19 22:12:09 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2005-08-22 15:39:07 +00:00
|
|
|
Screen::decodeFrame4(srcPtr, dstData, imgSize);
|
2005-08-19 22:12:09 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Unhandled bitmap compression %d", compType);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
delete[] srcData;
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-08-31 20:14:20 +00:00
|
|
|
void KyraEngine::setTalkCoords(uint16 y) {
|
|
|
|
debug(9, "KyraEngine::setTalkCoords(%d)", y);
|
|
|
|
_talkCoords.y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
int KyraEngine::getCenterStringX(const char *str, int x1, int x2) {
|
|
|
|
debug(9, "KyraEngine::getCenterStringX('%s', %d, %d)", str, x1, x2);
|
2005-09-08 19:09:52 +00:00
|
|
|
_screen->_charWidth = -2;
|
|
|
|
Screen::FontId curFont = _screen->setFont(Screen::FID_8_FNT);
|
|
|
|
int strWidth = _screen->getTextWidth(str);
|
|
|
|
_screen->setFont(curFont);
|
|
|
|
_screen->_charWidth = 0;
|
|
|
|
int w = x2 - x1 + 1;
|
|
|
|
return x1 + (w - strWidth) / 2;
|
2005-08-31 20:14:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int KyraEngine::getCharLength(const char *str, int len) {
|
2005-09-08 19:09:52 +00:00
|
|
|
debug(9, "KyraEngine::getCharLength('%s', %d)", str, len);
|
|
|
|
int charsCount = 0;
|
|
|
|
if (*str) {
|
|
|
|
_screen->_charWidth = -2;
|
|
|
|
Screen::FontId curFont = _screen->setFont(Screen::FID_8_FNT);
|
|
|
|
int i = 0;
|
|
|
|
while (i <= len && *str) {
|
|
|
|
i += _screen->getCharWidth(*str++);
|
|
|
|
++charsCount;
|
|
|
|
}
|
|
|
|
_screen->setFont(curFont);
|
|
|
|
_screen->_charWidth = 0;
|
|
|
|
}
|
|
|
|
return charsCount;
|
2005-08-31 20:14:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int KyraEngine::dropCRIntoString(char *str, int offs) {
|
|
|
|
debug(9, "KyraEngine::dropCRIntoString('%s', %d)", str, offs);
|
|
|
|
int pos = 0;
|
2005-09-10 00:15:40 +00:00
|
|
|
str += offs;
|
2005-09-02 11:12:09 +00:00
|
|
|
while (*str) {
|
2005-09-08 19:09:52 +00:00
|
|
|
if (*str == ' ') {
|
2005-09-10 00:15:40 +00:00
|
|
|
*str = '\r';
|
2005-08-31 20:14:20 +00:00
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
++str;
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *KyraEngine::preprocessString(const char *str) {
|
|
|
|
debug(9, "KyraEngine::preprocessString('%s')", str);
|
2005-09-08 19:09:52 +00:00
|
|
|
assert(strlen(str) < sizeof(_talkBuffer) - 1);
|
|
|
|
strcpy(_talkBuffer, str);
|
|
|
|
char *p = _talkBuffer;
|
|
|
|
while (*p) {
|
2005-09-10 00:15:40 +00:00
|
|
|
if (*p == '\r') {
|
2005-09-08 19:09:52 +00:00
|
|
|
return _talkBuffer;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
p = _talkBuffer;
|
|
|
|
Screen::FontId curFont = _screen->setFont(Screen::FID_8_FNT);
|
|
|
|
_screen->_charWidth = -2;
|
|
|
|
int textWidth = _screen->getTextWidth(p);
|
|
|
|
_screen->_charWidth = 0;
|
|
|
|
if (textWidth > 176) {
|
|
|
|
if (textWidth > 352) {
|
|
|
|
int count = getCharLength(p, textWidth / 3);
|
|
|
|
int offs = dropCRIntoString(p, count);
|
|
|
|
p += count + offs;
|
|
|
|
_screen->_charWidth = -2;
|
|
|
|
textWidth = _screen->getTextWidth(p);
|
|
|
|
_screen->_charWidth = 0;
|
|
|
|
count = getCharLength(p, textWidth / 2);
|
|
|
|
dropCRIntoString(p, count);
|
|
|
|
} else {
|
|
|
|
int count = getCharLength(p, textWidth / 2);
|
|
|
|
dropCRIntoString(p, count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_screen->setFont(curFont);
|
|
|
|
return _talkBuffer;
|
2005-08-31 20:14:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int KyraEngine::buildMessageSubstrings(const char *str) {
|
|
|
|
debug(9, "KyraEngine::buildMessageSubstrings('%s')", str);
|
|
|
|
int currentLine = 0;
|
|
|
|
int pos = 0;
|
|
|
|
while (*str) {
|
2005-09-10 00:15:40 +00:00
|
|
|
if (*str == '\r') {
|
2005-09-08 19:09:52 +00:00
|
|
|
assert(currentLine < TALK_SUBSTRING_NUM);
|
2005-09-10 00:15:40 +00:00
|
|
|
_talkSubstrings[currentLine * TALK_SUBSTRING_LEN + pos] = '\0';
|
2005-08-31 20:14:20 +00:00
|
|
|
++currentLine;
|
|
|
|
pos = 0;
|
|
|
|
} else {
|
2005-09-08 19:09:52 +00:00
|
|
|
_talkSubstrings[currentLine * TALK_SUBSTRING_LEN + pos] = *str;
|
2005-08-31 20:14:20 +00:00
|
|
|
++pos;
|
2005-09-08 19:09:52 +00:00
|
|
|
if (pos > TALK_SUBSTRING_LEN - 2) {
|
|
|
|
pos = TALK_SUBSTRING_LEN - 2;
|
2005-08-31 20:14:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
++str;
|
|
|
|
}
|
2005-09-08 19:09:52 +00:00
|
|
|
_talkSubstrings[currentLine * TALK_SUBSTRING_LEN + pos] = '\0';
|
2005-08-31 20:14:20 +00:00
|
|
|
return currentLine + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int KyraEngine::getWidestLineWidth(int linesCount) {
|
|
|
|
debug(9, "KyraEngine::getWidestLineWidth(%d)", linesCount);
|
2005-09-08 19:09:52 +00:00
|
|
|
int maxWidth = 0;
|
|
|
|
Screen::FontId curFont = _screen->setFont(Screen::FID_8_FNT);
|
|
|
|
_screen->_charWidth = -2;
|
|
|
|
for (int l = 0; l < linesCount; ++l) {
|
|
|
|
int w = _screen->getTextWidth(&_talkSubstrings[l * TALK_SUBSTRING_LEN]);
|
|
|
|
if (maxWidth < w) {
|
|
|
|
maxWidth = w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_screen->setFont(curFont);
|
|
|
|
_screen->_charWidth = 0;
|
|
|
|
return maxWidth;
|
2005-08-31 20:14:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::calcWidestLineBounds(int &x1, int &x2, int w, int cx) {
|
|
|
|
debug(9, "KyraEngine::calcWidestLineBounds(%d, %d)", w, cx);
|
|
|
|
x1 = cx - w / 2;
|
|
|
|
if (x1 + w >= Screen::SCREEN_W - 12) {
|
|
|
|
x1 = Screen::SCREEN_W - 12 - w - 1;
|
|
|
|
} else if (x1 < 12) {
|
|
|
|
x1 = 12;
|
|
|
|
}
|
|
|
|
x2 = x1 + w + 1;
|
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::restoreTalkTextMessageBkgd(int srcPage, int dstPage) {
|
2005-08-31 20:14:20 +00:00
|
|
|
debug(9, "KyraEngine::restoreTalkTextMessageBkgd(%d, %d)", srcPage, dstPage);
|
|
|
|
if (_talkMessagePrinted) {
|
|
|
|
_talkMessagePrinted = false;
|
|
|
|
_screen->copyRegion(_talkCoords.x, _talkCoords.y, _talkCoords.x, _talkMessageY, _talkCoords.w, _talkMessageH, srcPage, dstPage);
|
|
|
|
}
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2004-11-11 13:37:35 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::printTalkTextMessage(const char *text, int x, int y, uint8 color, int srcPage, int dstPage) {
|
|
|
|
debug(9, "KyraEngine::printTalkTextMessage('%s', %d, %d, %d, %d, %d)", text, x, y, color, srcPage, dstPage);
|
2005-09-08 19:09:52 +00:00
|
|
|
char *str = preprocessString(text);
|
|
|
|
int lineCount = buildMessageSubstrings(str);
|
|
|
|
int top = y - lineCount * 10;
|
|
|
|
if (top < 0) {
|
|
|
|
top = 0;
|
|
|
|
}
|
|
|
|
_talkMessageY = top;
|
|
|
|
_talkMessageH = lineCount * 10;
|
|
|
|
int w = getWidestLineWidth(lineCount);
|
|
|
|
int x1, x2;
|
|
|
|
calcWidestLineBounds(x1, x2, w, x);
|
|
|
|
_talkCoords.x = x1;
|
|
|
|
_talkCoords.w = w + 2;
|
|
|
|
_screen->copyRegion(_talkCoords.x, _talkMessageY, _talkCoords.x, _talkCoords.y, _talkCoords.w, _talkMessageH, srcPage, dstPage);
|
|
|
|
int curPage = _screen->_curPage;
|
|
|
|
_screen->_curPage = srcPage;
|
|
|
|
for (int i = 0; i < lineCount; ++i) {
|
|
|
|
top = i * 10 + _talkMessageY;
|
|
|
|
char *msg = &_talkSubstrings[i * TALK_SUBSTRING_LEN];
|
|
|
|
int left = getCenterStringX(msg, x1, x2);
|
|
|
|
printText(msg, left, top, color, 0xC, 0);
|
|
|
|
}
|
|
|
|
_screen->_curPage = curPage;
|
2005-08-31 20:14:20 +00:00
|
|
|
_talkMessagePrinted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::printText(const char *str, int x, int y, uint8 c0, uint8 c1, uint8 c2) {
|
|
|
|
uint8 colorMap[] = { 0, 15, 12, 12 };
|
|
|
|
colorMap[3] = c1;
|
|
|
|
_screen->setTextColor(colorMap, 0, 3);
|
2005-09-08 19:09:52 +00:00
|
|
|
Screen::FontId curFont = _screen->setFont(Screen::FID_8_FNT);
|
2005-08-31 20:14:20 +00:00
|
|
|
_screen->_charWidth = -2;
|
|
|
|
_screen->printText(str, x, y, c0, c2);
|
|
|
|
_screen->_charWidth = 0;
|
2005-09-08 19:09:52 +00:00
|
|
|
_screen->setFont(curFont);
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::waitTicks(int ticks) {
|
|
|
|
debug(9, "KyraEngine::waitTicks(%d)", ticks);
|
|
|
|
const uint32 end = _system->getMillis() + ticks * 1000 / 60;
|
|
|
|
do {
|
|
|
|
OSystem::Event event;
|
|
|
|
while (_system->pollEvent(event)) {
|
2004-12-05 17:42:20 +00:00
|
|
|
switch (event.type) {
|
2005-08-19 22:12:09 +00:00
|
|
|
case OSystem::EVENT_QUIT:
|
|
|
|
_quitFlag = true;
|
|
|
|
break;
|
|
|
|
case OSystem::EVENT_KEYDOWN:
|
|
|
|
if (event.kbd.flags == OSystem::KBD_CTRL) {
|
|
|
|
if (event.kbd.keycode == 'f') {
|
|
|
|
_fastMode = !_fastMode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_system->delayMillis(10);
|
2005-08-19 22:12:09 +00:00
|
|
|
} while (!_fastMode && _system->getMillis() < end);
|
|
|
|
}
|
|
|
|
|
2005-09-10 06:40:20 +00:00
|
|
|
void KyraEngine::seq_demo() {
|
|
|
|
debug(9, "KyraEngine::seq_demo()");
|
|
|
|
|
|
|
|
// TODO: Display START.CPS
|
|
|
|
|
|
|
|
_screen->clearPage(0);
|
2005-09-10 07:46:18 +00:00
|
|
|
loadBitmap("TOP.CPS", 7, 7, NULL);
|
2005-09-10 06:40:20 +00:00
|
|
|
loadBitmap("BOTTOM.CPS", 5, 5, _screen->_currentPalette);
|
|
|
|
_screen->_curPage = 0;
|
|
|
|
_screen->copyRegion(0, 91, 0, 8, 320, 103, 6, 0);
|
|
|
|
_screen->copyRegion(0, 0, 0, 111, 320, 64, 6, 0);
|
2005-09-10 07:46:18 +00:00
|
|
|
_system->copyRectToScreen(_screen->getPagePtr(0), 320, 0, 0, 320, 200);
|
2005-09-10 06:40:20 +00:00
|
|
|
_screen->fadeFromBlack();
|
|
|
|
|
|
|
|
seq_playSpecialSequence(_seq_demoData_WestwoodLogo, true);
|
|
|
|
waitTicks(60);
|
|
|
|
|
|
|
|
seq_playSpecialSequence(_seq_demoData_KyrandiaLogo, true);
|
|
|
|
|
|
|
|
_screen->fadeToBlack();
|
|
|
|
_screen->clearPage(2);
|
|
|
|
_screen->clearPage(0);
|
|
|
|
|
|
|
|
seq_playSpecialSequence(_seq_demoData_Demo1, true);
|
|
|
|
|
|
|
|
_screen->clearPage(0);
|
|
|
|
seq_playSpecialSequence(_seq_demoData_Demo2, true);
|
|
|
|
|
|
|
|
_screen->clearPage(0);
|
|
|
|
seq_playSpecialSequence(_seq_demoData_Demo3, true);
|
|
|
|
|
|
|
|
_screen->clearPage(0);
|
|
|
|
seq_playSpecialSequence(_seq_demoData_Demo4, true);
|
|
|
|
|
|
|
|
// TODO: Display FINAL.CPS
|
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::seq_intro() {
|
|
|
|
debug(9, "KyraEngine::seq_intro()");
|
2005-09-08 19:09:52 +00:00
|
|
|
static const IntroProc introProcTable[] = {
|
|
|
|
&KyraEngine::seq_introLogos,
|
|
|
|
// &KyraEngine::seq_introStory,
|
|
|
|
&KyraEngine::seq_introMalcomTree,
|
|
|
|
&KyraEngine::seq_introKallakWriting,
|
|
|
|
&KyraEngine::seq_introKallakMalcom
|
|
|
|
};
|
2005-08-19 22:12:09 +00:00
|
|
|
_skipIntroFlag = true; // only true if user already played the game once
|
2005-09-09 21:13:43 +00:00
|
|
|
_seq_copyViewOffs = true;
|
2005-09-08 19:09:52 +00:00
|
|
|
_screen->setFont(Screen::FID_8_FNT);
|
2005-08-19 22:12:09 +00:00
|
|
|
// snd_kyraPlayTheme(0);
|
2005-09-09 21:13:43 +00:00
|
|
|
setTalkCoords(144);
|
2005-09-08 19:09:52 +00:00
|
|
|
for (int i = 0; i < ARRAYSIZE(introProcTable) && !seq_skipSequence(); ++i) {
|
|
|
|
(this->*introProcTable[i])();
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
2005-09-09 21:13:43 +00:00
|
|
|
setTalkCoords(136);
|
2005-09-08 19:09:52 +00:00
|
|
|
waitTicks(0x1E);
|
2005-09-09 21:13:43 +00:00
|
|
|
_seq_copyViewOffs = false;
|
2005-08-19 22:12:09 +00:00
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::seq_introLogos() {
|
|
|
|
debug(9, "KyraEngine::seq_introLogos()");
|
|
|
|
_screen->clearPage(0);
|
2005-09-10 07:46:18 +00:00
|
|
|
loadBitmap("TOP.CPS", 7, 7, NULL);
|
2005-09-08 19:09:52 +00:00
|
|
|
loadBitmap("BOTTOM.CPS", 5, 5, _screen->_currentPalette);
|
2005-08-19 22:12:09 +00:00
|
|
|
_screen->_curPage = 0;
|
|
|
|
_screen->copyRegion(0, 91, 0, 8, 320, 103, 6, 0);
|
|
|
|
_screen->copyRegion(0, 0, 0, 111, 320, 64, 6, 0);
|
2005-09-10 07:46:18 +00:00
|
|
|
_system->copyRectToScreen(_screen->getPagePtr(0), 320, 0, 0, 320, 200);
|
2005-08-19 22:12:09 +00:00
|
|
|
_screen->fadeFromBlack();
|
|
|
|
|
2005-09-10 07:46:18 +00:00
|
|
|
if (seq_playSpecialSequence(_seq_floppyData_WestwoodLogo, _skipIntroFlag)) {
|
2005-08-19 22:12:09 +00:00
|
|
|
_screen->fadeToBlack();
|
|
|
|
_screen->clearPage(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
waitTicks(60);
|
2005-09-10 07:46:18 +00:00
|
|
|
if (seq_playSpecialSequence(_seq_floppyData_KyrandiaLogo, _skipIntroFlag)) {
|
2005-08-19 22:12:09 +00:00
|
|
|
_screen->fadeToBlack();
|
|
|
|
_screen->clearPage(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_screen->fillRect(0, 179, 319, 199, 0);
|
|
|
|
|
|
|
|
int y1 = 8;
|
|
|
|
int h1 = 175;
|
|
|
|
int y2 = 176;
|
|
|
|
int h2 = 0;
|
|
|
|
_screen->copyRegion(0, 91, 0, 8, 320, 103, 6, 2);
|
|
|
|
_screen->copyRegion(0, 0, 0, 111, 320, 64, 6, 2);
|
|
|
|
do {
|
|
|
|
if (h1 > 0) {
|
|
|
|
_screen->copyRegion(0, y1, 0, 8, 320, h1, 2, 0);
|
|
|
|
}
|
|
|
|
++y1;
|
|
|
|
--h1;
|
|
|
|
if (h2 > 0) {
|
|
|
|
_screen->copyRegion(0, 64, 0, y2, 320, h2, 4, 0);
|
|
|
|
}
|
|
|
|
--y2;
|
|
|
|
++h2;
|
|
|
|
_screen->updateScreen();
|
|
|
|
waitTicks(1);
|
|
|
|
} while (y2 >= 64);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-09-10 07:46:18 +00:00
|
|
|
seq_playSpecialSequence(_seq_floppyData_Forest, true);
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
|
|
|
|
2005-09-08 19:09:52 +00:00
|
|
|
void KyraEngine::seq_introStory() {
|
|
|
|
debug(9, "KyraEngine::seq_introStory()");
|
2005-09-09 21:13:43 +00:00
|
|
|
loadBitmap("MAIN_ENG.CPS", 3, 3, 0);
|
|
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 200, 2, 0);
|
2005-09-10 00:15:40 +00:00
|
|
|
// XXX wait 360 ticks
|
2005-09-08 19:09:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::seq_introMalcomTree() {
|
|
|
|
debug(9, "KyraEngine::seq_introMalcomTree()");
|
|
|
|
_screen->_curPage = 0;
|
|
|
|
_screen->clearPage(3);
|
2005-09-10 07:46:18 +00:00
|
|
|
seq_playSpecialSequence(_seq_floppyData_MalcomTree, true);
|
2005-09-08 19:09:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::seq_introKallakWriting() {
|
|
|
|
debug(9, "KyraEngine::seq_introKallakWriting()");
|
|
|
|
seq_makeHandShapes();
|
2005-09-10 00:15:40 +00:00
|
|
|
_screen->setAnimBlockPtr(5060);
|
2005-09-08 19:09:52 +00:00
|
|
|
_screen->_charWidth = -2;
|
|
|
|
_screen->clearPage(3);
|
2005-09-10 07:46:18 +00:00
|
|
|
seq_playSpecialSequence(_seq_floppyData_KallakWriting, true);
|
2005-09-08 19:09:52 +00:00
|
|
|
seq_freeHandShapes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KyraEngine::seq_introKallakMalcom() {
|
|
|
|
debug(9, "KyraEngine::seq_introKallakMalcom()");
|
|
|
|
_screen->clearPage(3);
|
2005-09-10 07:46:18 +00:00
|
|
|
seq_playSpecialSequence(_seq_floppyData_KallakMalcom, true);
|
2005-09-08 19:09:52 +00:00
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
uint8 *KyraEngine::seq_setPanPages(int pageNum, int shape) {
|
|
|
|
debug(9, "KyraEngine::seq_setPanPages(%d, %d)", pageNum, shape);
|
|
|
|
uint8 *panPage = 0;
|
|
|
|
const uint8 *data = _screen->getPagePtr(pageNum);
|
|
|
|
uint16 numShapes = READ_LE_UINT16(data);
|
|
|
|
if (shape < numShapes) {
|
2005-09-02 18:35:01 +00:00
|
|
|
uint32 offs = 0;
|
|
|
|
if (_game == KYRA1CD) {
|
|
|
|
offs = READ_LE_UINT32(data + 2 + shape * 4);
|
|
|
|
} else {
|
|
|
|
offs = READ_LE_UINT16(data + 2 + shape * 2);
|
|
|
|
}
|
2005-08-19 22:12:09 +00:00
|
|
|
if (offs != 0) {
|
|
|
|
data += offs;
|
|
|
|
uint16 sz = READ_LE_UINT16(data + 6);
|
|
|
|
panPage = (uint8 *)malloc(sz);
|
|
|
|
if (panPage) {
|
|
|
|
memcpy(panPage, data, sz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return panPage;
|
2004-04-09 12:36:06 +00:00
|
|
|
}
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::seq_makeHandShapes() {
|
|
|
|
debug(9, "KyraEngine::seq_makeHandShapes()");
|
|
|
|
loadBitmap("WRITING.CPS", 3, 3, 0);
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
_seq_handShapes[i] = seq_setPanPages(3, i);
|
|
|
|
}
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::seq_freeHandShapes() {
|
|
|
|
debug(9, "KyraEngine::seq_freeHandShapes()");
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
free(_seq_handShapes[i]);
|
|
|
|
_seq_handShapes[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2004-10-15 06:06:47 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
void KyraEngine::seq_copyView() {
|
|
|
|
debug(9, "KyraEngine::seq_copyView()");
|
|
|
|
int y = 128;
|
2005-09-09 21:13:43 +00:00
|
|
|
if (!_seq_copyViewOffs) {
|
2005-08-19 22:12:09 +00:00
|
|
|
y -= 8;
|
|
|
|
}
|
2005-09-09 21:13:43 +00:00
|
|
|
_screen->copyRegion(0, 16, 0, 16, 320, y, 2, 0);
|
2004-10-15 06:06:47 +00:00
|
|
|
}
|
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
bool KyraEngine::seq_skipSequence() const {
|
2005-08-31 20:14:20 +00:00
|
|
|
debug(9, "KyraEngine::seq_skipSequence()");
|
2005-08-19 22:12:09 +00:00
|
|
|
return _quitFlag;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KyraEngine::seq_playSpecialSequence(const uint8 *seqData, bool skipSeq) {
|
|
|
|
debug(9, "KyraEngine::seq_playSpecialSequence(0x%X, %d)", seqData, skipSeq);
|
|
|
|
WSAMovieV1 *wsaMovieTable[12];
|
|
|
|
uint32 displayedTextTimer = 0xFFFFFFFF;
|
|
|
|
bool displayTextFlag = false;
|
|
|
|
bool seqSkippedFlag = false;
|
|
|
|
uint16 displayedTextX = 0;
|
|
|
|
uint8 displayedText = 0;
|
|
|
|
uint8 displayedChar = 0;
|
|
|
|
int16 wsaCurFramesTable[12];
|
|
|
|
uint16 wsaYPosTable[12];
|
|
|
|
uint16 wsaXPosTable[12];
|
|
|
|
bool talkTextRestored = false;
|
|
|
|
bool talkTextPrinted = false;
|
|
|
|
int16 wsaNumFramesTable[12];
|
|
|
|
bool quitFlag = false;
|
|
|
|
uint16 wsaCurDecodePage = 0;
|
|
|
|
uint32 wsaDecodePage[12];
|
|
|
|
SeqLoop seqLoopTable[20];
|
|
|
|
|
|
|
|
for (int i = 0; i < 20; ++i) {
|
|
|
|
seqLoopTable[i].ptr = 0;
|
|
|
|
seqLoopTable[i].count = 0xFFFF;
|
|
|
|
}
|
|
|
|
memset(wsaMovieTable, 0, sizeof(wsaMovieTable));
|
|
|
|
|
|
|
|
_screen->_curPage = 0;
|
|
|
|
while (!quitFlag) {
|
|
|
|
if (skipSeq && seq_skipSequence()) {
|
|
|
|
while (1) {
|
|
|
|
uint8 code = *seqData;
|
|
|
|
if (code == 29 || code == 19) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
seqData += _seq_codeSizeTable[code] + 1;
|
|
|
|
}
|
|
|
|
skipSeq = false;
|
|
|
|
seqSkippedFlag = true;
|
|
|
|
}
|
|
|
|
// used in Kallak writing intro
|
|
|
|
if (displayTextFlag && displayedTextTimer != 0xFFFFFFFF) {
|
|
|
|
if (displayedTextTimer < _system->getMillis()) {
|
|
|
|
char charStr[2];
|
|
|
|
charStr[0] = _seq_textsTableEN[displayedText][displayedChar];
|
|
|
|
charStr[1] = '\0';
|
|
|
|
_screen->printText(charStr, displayedTextX, 180, 0xF, 0xC);
|
|
|
|
displayedTextX += _screen->getCharWidth(charStr[0]);
|
|
|
|
++displayedChar;
|
|
|
|
if (_seq_textsTableEN[displayedText][displayedChar] == '\0') {
|
|
|
|
displayedTextTimer = 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
displayedTextTimer = _system->getMillis() + 1000 / 60;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
uint8 seqCode = *seqData++;
|
|
|
|
debug(5, "seqCode = %d", seqCode);
|
|
|
|
switch (seqCode) {
|
|
|
|
case 0: {
|
|
|
|
uint8 wsaObj = *seqData++;
|
|
|
|
assert(wsaObj < 12);
|
|
|
|
uint8 offscreenDecode = *seqData++;
|
|
|
|
wsaCurDecodePage = wsaDecodePage[wsaObj] = (offscreenDecode == 0) ? 0 : 3;
|
2005-09-10 06:40:20 +00:00
|
|
|
if (_game == KYRA1DEMO) {
|
|
|
|
wsaMovieTable[wsaObj] = wsa_open(_seq_demo_WSATable[wsaObj], offscreenDecode, 0);
|
|
|
|
} else {
|
|
|
|
wsaMovieTable[wsaObj] = wsa_open(_seq_WSATable[wsaObj], offscreenDecode, 0);
|
|
|
|
}
|
2005-08-19 22:12:09 +00:00
|
|
|
wsaCurFramesTable[wsaObj] = 0;
|
|
|
|
wsaNumFramesTable[wsaObj] = wsa_getNumFrames(wsaMovieTable[wsaObj]) - 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1: {
|
|
|
|
uint8 wsaObj = *seqData++;
|
|
|
|
assert(wsaObj < 12);
|
|
|
|
if (wsaMovieTable[wsaObj]) {
|
|
|
|
wsa_close(wsaMovieTable[wsaObj]);
|
|
|
|
wsaMovieTable[wsaObj] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2: {
|
|
|
|
uint8 wsaObj = *seqData++;
|
|
|
|
assert(wsaObj < 12);
|
|
|
|
int16 frame = (int8)*seqData++;
|
|
|
|
wsaXPosTable[wsaObj] = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
wsaYPosTable[wsaObj] = *seqData++;
|
|
|
|
wsa_play(wsaMovieTable[wsaObj], frame, wsaXPosTable[wsaObj], wsaYPosTable[wsaObj], wsaDecodePage[wsaObj]);
|
|
|
|
wsaCurFramesTable[wsaObj] = frame;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3: {
|
|
|
|
uint8 wsaObj = *seqData++;
|
|
|
|
assert(wsaObj < 12);
|
|
|
|
++wsaCurFramesTable[wsaObj];
|
|
|
|
int16 frame = wsaCurFramesTable[wsaObj];
|
|
|
|
if (frame > wsaNumFramesTable[wsaObj]) {
|
|
|
|
frame = 0;
|
|
|
|
wsaCurFramesTable[wsaObj] = 0;
|
|
|
|
}
|
|
|
|
wsa_play(wsaMovieTable[wsaObj], frame, wsaXPosTable[wsaObj], wsaYPosTable[wsaObj], wsaDecodePage[wsaObj]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4: {
|
|
|
|
uint8 wsaObj = *seqData++;
|
|
|
|
assert(wsaObj < 12);
|
|
|
|
--wsaCurFramesTable[wsaObj];
|
|
|
|
int16 frame = wsaCurFramesTable[wsaObj];
|
|
|
|
if (wsaCurFramesTable[wsaObj] < 0) {
|
|
|
|
frame = wsaNumFramesTable[wsaObj];
|
|
|
|
wsaCurFramesTable[wsaObj] = wsaNumFramesTable[wsaObj];
|
|
|
|
} else {
|
|
|
|
wsa_play(wsaMovieTable[wsaObj], frame, wsaXPosTable[wsaObj], wsaYPosTable[wsaObj], wsaDecodePage[wsaObj]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5: {
|
|
|
|
uint8 shapeNum = *seqData++;
|
|
|
|
int x = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
int y = *seqData++;
|
|
|
|
_screen->drawShape(2, _seq_handShapes[shapeNum], x, y, 0, 0, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
case 7: {
|
|
|
|
if (seqCode == 7) {
|
|
|
|
seq_copyView();
|
|
|
|
}
|
|
|
|
uint16 ticks = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
waitTicks(ticks);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
2005-09-02 11:12:09 +00:00
|
|
|
_screen->shuffleScreen(0, 16, 320, 128, 2, 0, 0, false);
|
|
|
|
_screen->_curPage = 2;
|
2005-08-19 22:12:09 +00:00
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
seq_copyView();
|
|
|
|
break;
|
|
|
|
case 10: {
|
|
|
|
uint8 seqLoop = *seqData++;
|
|
|
|
if (seqLoop < 20) {
|
|
|
|
seqLoopTable[seqLoop].ptr = seqData;
|
|
|
|
} else {
|
|
|
|
quitFlag = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 11: {
|
|
|
|
uint8 seqLoop = *seqData++;
|
|
|
|
uint16 seqLoopCount = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
if (seqLoopTable[seqLoop].count == 0xFFFF) {
|
|
|
|
seqLoopTable[seqLoop].count = seqLoopCount - 1;
|
|
|
|
seqData = seqLoopTable[seqLoop].ptr;
|
|
|
|
} else if (seqLoopTable[seqLoop].count == 0) {
|
|
|
|
seqLoopTable[seqLoop].count = 0xFFFF;
|
|
|
|
seqLoopTable[seqLoop].ptr = 0;
|
|
|
|
} else {
|
|
|
|
--seqLoopTable[seqLoop].count;
|
|
|
|
seqData = seqLoopTable[seqLoop].ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 12: {
|
|
|
|
uint8 colNum = *seqData++;
|
|
|
|
uint32 fileSize;
|
2005-09-10 06:40:20 +00:00
|
|
|
uint8 *srcData;
|
|
|
|
if (_game == KYRA1DEMO) {
|
|
|
|
srcData = _res->fileData(_seq_demo_COLTable[colNum], &fileSize);
|
|
|
|
} else {
|
|
|
|
srcData = _res->fileData(_seq_COLTable[colNum], &fileSize);
|
|
|
|
}
|
2005-09-08 19:09:52 +00:00
|
|
|
memcpy(_screen->_currentPalette, srcData, fileSize);
|
2005-08-19 22:12:09 +00:00
|
|
|
delete[] srcData;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 13: {
|
|
|
|
uint8 cpsNum = *seqData++;
|
|
|
|
loadBitmap(_seq_CPSTable[cpsNum], 3, 3, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 14:
|
|
|
|
_screen->fadeToBlack();
|
|
|
|
break;
|
|
|
|
case 15: {
|
|
|
|
static const uint8 colorMap[] = { 0, 0, 0, 0, 12, 12, 12, 0, 0, 0, 0, 0 };
|
|
|
|
uint8 txt = *seqData++;
|
|
|
|
_screen->fillRect(0, 180, 319, 195, 12);
|
|
|
|
_screen->setTextColorMap(colorMap);
|
|
|
|
if (!displayTextFlag) {
|
|
|
|
const char *str = _seq_textsTableEN[txt];
|
|
|
|
int x = (Screen::SCREEN_W - _screen->getTextWidth(str)) / 2;
|
|
|
|
_screen->printText(str, x, 180, 0xF, 0xC);
|
|
|
|
} else {
|
|
|
|
displayedTextTimer = _system->getMillis() + 1000 / 60;
|
|
|
|
displayedText = txt;
|
|
|
|
displayedChar = 0;
|
|
|
|
const char *str = _seq_textsTableEN[displayedText];
|
|
|
|
displayedTextX = (Screen::SCREEN_W - _screen->getTextWidth(str)) / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 16: {
|
|
|
|
uint8 txt = *seqData++;
|
|
|
|
int x = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
int y = *seqData++;
|
|
|
|
uint8 fillColor = *seqData++;
|
|
|
|
int b;
|
|
|
|
if (talkTextPrinted && !talkTextRestored) {
|
2005-09-09 21:13:43 +00:00
|
|
|
if (wsaCurDecodePage != 0) {
|
2005-08-19 22:12:09 +00:00
|
|
|
b = 2;
|
|
|
|
} else {
|
|
|
|
b = 0;
|
|
|
|
}
|
|
|
|
restoreTalkTextMessageBkgd(2, b);
|
|
|
|
}
|
|
|
|
talkTextPrinted = true;
|
|
|
|
talkTextRestored = false;
|
2005-09-09 21:13:43 +00:00
|
|
|
if (wsaCurDecodePage != 0) {
|
2005-08-19 22:12:09 +00:00
|
|
|
b = 2;
|
|
|
|
} else {
|
|
|
|
b = 0;
|
|
|
|
}
|
|
|
|
printTalkTextMessage(_seq_textsTableEN[txt], x, y, fillColor, b, 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 17:
|
|
|
|
if (talkTextPrinted && !talkTextRestored) {
|
|
|
|
int b;
|
2005-09-09 21:13:43 +00:00
|
|
|
if (wsaCurDecodePage != 0) {
|
2005-08-19 22:12:09 +00:00
|
|
|
b = 2;
|
|
|
|
} else {
|
|
|
|
b = 0;
|
|
|
|
}
|
|
|
|
restoreTalkTextMessageBkgd(2, b);
|
|
|
|
talkTextRestored = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 18:
|
|
|
|
_screen->fillRect(10, 180, 319, 196, 0xC);
|
|
|
|
break;
|
|
|
|
case 19:
|
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
_screen->fadeFromBlack();
|
|
|
|
break;
|
|
|
|
case 21: {
|
|
|
|
uint8 srcPage = *seqData++;
|
|
|
|
uint8 dstPage = *seqData++;
|
|
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 200, srcPage, dstPage);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 22: {
|
|
|
|
uint8 so = *seqData++;
|
|
|
|
switch (so) {
|
|
|
|
case 0:
|
|
|
|
_screen->copyRegion(0, 0, 0, 47, 320, 77, 2, 0);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
_screen->copyRegion(0, 0, 0, 47, 320, 56, 2, 0);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
_screen->copyRegion(107, 72, 107, 72, 43, 87, 2, 0);
|
|
|
|
_screen->copyRegion(130, 159, 130, 159, 35, 17, 2, 0);
|
|
|
|
_screen->copyRegion(165, 105, 165, 105, 32, 9, 2, 0);
|
|
|
|
_screen->copyRegion(206, 83, 206, 83, 94, 93, 2, 0);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
_screen->copyRegion(152, 56, 152, 56, 48, 48, 2, 0);
|
|
|
|
break;
|
|
|
|
case 4: {
|
|
|
|
static const uint8 colorMap[] = { 0, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0 };
|
|
|
|
_screen->_charWidth = -2;
|
|
|
|
const char *copyStr = "Copyright (c) 1992 Westwood Studios";
|
|
|
|
_screen->setTextColorMap(colorMap);
|
|
|
|
const int x = (Screen::SCREEN_W - _screen->getTextWidth(copyStr)) / 2;
|
|
|
|
const int y = 179;
|
|
|
|
_screen->printText(copyStr, x + 1, y + 1, 0xB, 0xC);
|
|
|
|
_screen->printText(copyStr, x, y, 0xF, 0xC);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
_screen->_curPage = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Invalid subopcode %d for sequence opcode 22", so);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 23: {
|
|
|
|
int x1 = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
int y1 = *seqData++;
|
|
|
|
int x2 = READ_LE_UINT16(seqData); seqData += 2;
|
|
|
|
int y2 = *seqData++;
|
|
|
|
uint8 color = *seqData++;
|
|
|
|
uint8 page = *seqData++;
|
|
|
|
_screen->fillRect(x1, y1, x2, y2, color, page);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 24: { // sound related
|
|
|
|
seqData++;
|
|
|
|
warning("Sequence opcode 24 skipped");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 25: { // sound related
|
|
|
|
seqData++;
|
|
|
|
warning("Sequence opcode 25 skipped");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 26:
|
2005-09-10 06:40:20 +00:00
|
|
|
if (_game == KYRA1DEMO) {
|
|
|
|
quitFlag = true;
|
|
|
|
} else {
|
|
|
|
// allocate offscreen buffer, not needed
|
|
|
|
}
|
2005-08-19 22:12:09 +00:00
|
|
|
break;
|
|
|
|
case 27:
|
|
|
|
displayTextFlag = true;
|
|
|
|
break;
|
|
|
|
case 28:
|
|
|
|
displayTextFlag = false;
|
|
|
|
break;
|
|
|
|
case 29:
|
|
|
|
quitFlag = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("Invalid sequence opcode %d", seqCode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_screen->updateScreen();
|
|
|
|
}
|
|
|
|
return seqSkippedFlag;
|
|
|
|
}
|
2004-04-09 12:36:06 +00:00
|
|
|
|
2005-08-19 22:12:09 +00:00
|
|
|
} // End of namespace Kyra
|