2014-10-06 14:50:05 +02: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on Labyrinth of Time code with assistance of
|
|
|
|
*
|
|
|
|
* Copyright (c) 1993 Terra Nova Development
|
|
|
|
* Copyright (c) 2004 The Wyrmkeep Entertainment Co.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-04-14 16:10:21 +03:00
|
|
|
#include "common/file.h"
|
|
|
|
|
2014-12-27 14:18:40 +01:00
|
|
|
#include "lab/lab.h"
|
2015-12-08 21:10:54 +01:00
|
|
|
|
2015-12-08 21:35:31 +01:00
|
|
|
#include "lab/anim.h"
|
2015-12-08 21:19:41 +01:00
|
|
|
#include "lab/dispman.h"
|
2015-12-13 14:04:00 +01:00
|
|
|
#include "lab/eventman.h"
|
2015-11-20 20:17:30 +01:00
|
|
|
#include "lab/intro.h"
|
2015-12-08 20:36:05 +01:00
|
|
|
#include "lab/music.h"
|
2015-12-08 21:10:54 +01:00
|
|
|
#include "lab/resource.h"
|
2015-12-12 19:38:00 +01:00
|
|
|
#include "lab/utils.h"
|
2014-10-06 14:50:05 +02:00
|
|
|
|
|
|
|
namespace Lab {
|
2015-12-09 06:07:34 +01:00
|
|
|
|
2015-12-02 23:10:41 +01:00
|
|
|
Intro::Intro(LabEngine *vm) : _vm(vm) {
|
2015-11-20 20:17:30 +01:00
|
|
|
_quitIntro = false;
|
2015-12-24 02:03:00 +01:00
|
|
|
_font = _vm->_resource->getFont("F:Map.fon");
|
|
|
|
}
|
|
|
|
|
|
|
|
Intro::~Intro() {
|
2015-12-24 18:30:54 +02:00
|
|
|
_vm->_graphics->freeFont(&_font);
|
2015-11-20 20:17:30 +01:00
|
|
|
}
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
void Intro::introEatMessages() {
|
2014-10-06 14:50:05 +02:00
|
|
|
while (1) {
|
2015-12-13 15:37:39 +02:00
|
|
|
IntuiMessage *msg = _vm->_event->getMsg();
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-24 01:21:40 +01:00
|
|
|
if (_vm->shouldQuit()) {
|
2015-11-20 20:17:30 +01:00
|
|
|
_quitIntro = true;
|
2015-02-26 01:15:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-14 15:27:14 +01:00
|
|
|
if (!msg)
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
2015-12-14 15:27:14 +01:00
|
|
|
|
2015-12-18 00:41:24 +02:00
|
|
|
if ((msg->_msgClass == kMessageRightClick)
|
|
|
|
|| ((msg->_msgClass == kMessageRawKey) && (msg->_code == Common::KEYCODE_ESCAPE)))
|
2015-12-14 15:27:14 +01:00
|
|
|
_quitIntro = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-24 01:42:21 +01:00
|
|
|
void Intro::doPictText(const Common::String filename, bool isScreen) {
|
2015-12-19 17:32:23 +01:00
|
|
|
Common::String path = Common::String("Lab:rooms/Intro/") + filename;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-13 04:53:12 +02:00
|
|
|
uint timeDelay = (isScreen) ? 35 : 7;
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro)
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
|
2015-12-13 04:53:12 +02:00
|
|
|
uint32 lastMillis = 0;
|
2015-12-14 21:44:06 +01:00
|
|
|
bool drawNextText = true;
|
|
|
|
bool doneFl = false;
|
|
|
|
bool begin = true;
|
2015-12-02 23:10:41 +01:00
|
|
|
|
2015-12-20 16:02:35 +01:00
|
|
|
Common::File *textFile = _vm->_resource->openDataFile(path);
|
2015-12-27 13:52:34 +01:00
|
|
|
char *textBuffer = new char[textFile->size()];
|
2015-12-04 21:18:41 +02:00
|
|
|
textFile->read(textBuffer, textFile->size());
|
|
|
|
delete textFile;
|
2015-12-27 13:52:34 +01:00
|
|
|
const char *curText = textBuffer;
|
2015-12-04 21:18:41 +02:00
|
|
|
|
2014-10-06 14:50:05 +02:00
|
|
|
while (1) {
|
2015-11-20 20:17:30 +01:00
|
|
|
if (drawNextText) {
|
2015-12-04 21:18:41 +02:00
|
|
|
if (begin)
|
2015-11-20 20:17:30 +01:00
|
|
|
begin = false;
|
2015-12-04 21:18:41 +02:00
|
|
|
else if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen) {
|
2015-12-24 12:08:51 +02:00
|
|
|
_vm->_graphics->rectFillScaled(10, 10, 310, 190, 7);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-27 13:52:34 +01:00
|
|
|
curText += _vm->_graphics->flowText(_font, _vm->_isHiRes ? 0 : -1, 5, 7, false, false, true, true, _vm->_utils->vgaRectScale(14, 11, 306, 189), curText);
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(true);
|
2015-12-14 21:44:06 +01:00
|
|
|
} else
|
2015-12-27 13:52:34 +01:00
|
|
|
curText += _vm->_graphics->longDrawMessage(Common::String(curText), false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-14 21:44:06 +01:00
|
|
|
doneFl = (*curText == 0);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
drawNextText = false;
|
2014-10-06 14:50:05 +02:00
|
|
|
introEatMessages();
|
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro) {
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-23 18:56:35 +01:00
|
|
|
lastMillis = _vm->_system->getMillis();
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
2015-12-14 21:44:06 +01:00
|
|
|
IntuiMessage *msg = _vm->_event->getMsg();
|
2015-12-24 01:21:40 +01:00
|
|
|
if (_vm->shouldQuit()) {
|
2015-12-16 00:07:31 +01:00
|
|
|
_quitIntro = true;
|
|
|
|
return;
|
|
|
|
}
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-16 00:07:31 +01:00
|
|
|
if (!msg) {
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2015-12-02 23:10:41 +01:00
|
|
|
_vm->_anim->diffNextFrame();
|
2015-12-13 04:12:29 +02:00
|
|
|
|
2015-12-23 18:56:35 +01:00
|
|
|
uint32 elapsedSeconds = (_vm->_system->getMillis() - lastMillis) / 1000;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-13 04:53:12 +02:00
|
|
|
if (elapsedSeconds > timeDelay) {
|
2015-12-14 21:44:06 +01:00
|
|
|
if (doneFl) {
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
} else {
|
2015-11-20 20:17:30 +01:00
|
|
|
drawNextText = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-02 23:10:41 +01:00
|
|
|
_vm->waitTOF();
|
2014-10-06 14:50:05 +02:00
|
|
|
} else {
|
2015-12-14 21:44:06 +01:00
|
|
|
uint32 msgClass = msg->_msgClass;
|
|
|
|
uint16 code = msg->_code;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-18 00:41:24 +02:00
|
|
|
if ((msgClass == kMessageRightClick) ||
|
|
|
|
((msgClass == kMessageRawKey) && (code == Common::KEYCODE_ESCAPE))) {
|
2015-11-20 20:17:30 +01:00
|
|
|
_quitIntro = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
2015-12-18 00:41:24 +02:00
|
|
|
} else if ((msgClass == kMessageLeftClick) || (msgClass == kMessageRightClick)) {
|
|
|
|
if (msgClass == kMessageLeftClick) {
|
2015-12-14 21:44:06 +01:00
|
|
|
if (doneFl) {
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
} else
|
2015-11-20 20:17:30 +01:00
|
|
|
drawNextText = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
introEatMessages();
|
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro) {
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-14 21:44:06 +01:00
|
|
|
if (doneFl) {
|
2015-12-02 23:10:41 +01:00
|
|
|
if (isScreen)
|
2015-12-24 00:41:53 +02:00
|
|
|
_vm->_graphics->fade(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 21:18:41 +02:00
|
|
|
delete[] textBuffer;
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
} else
|
2015-11-20 20:17:30 +01:00
|
|
|
drawNextText = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
2015-12-04 21:18:41 +02:00
|
|
|
} // while(1)
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
void Intro::nReadPict(const Common::String filename, bool playOnce, bool noPalChange, bool doBlack, int wait) {
|
2015-11-20 20:17:30 +01:00
|
|
|
Common::String finalFileName = Common::String("P:Intro/") + filename;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2015-02-25 00:37:07 +02:00
|
|
|
introEatMessages();
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro)
|
2014-10-06 14:50:05 +02:00
|
|
|
return;
|
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
if (noPalChange)
|
|
|
|
_vm->_anim->_noPalChange = true;
|
|
|
|
|
|
|
|
_vm->_anim->_doBlack = doBlack;
|
2015-12-02 23:10:41 +01:00
|
|
|
_vm->_anim->stopDiffEnd();
|
2015-12-20 16:46:45 +01:00
|
|
|
_vm->_graphics->readPict(finalFileName, playOnce);
|
2016-01-05 21:46:53 +02:00
|
|
|
|
|
|
|
if (wait) {
|
|
|
|
for (int i = 0; i < wait / 10; i++) {
|
|
|
|
_vm->updateEvents();
|
|
|
|
introEatMessages();
|
|
|
|
if (_quitIntro)
|
|
|
|
break;
|
|
|
|
_vm->_system->delayMillis(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (noPalChange)
|
|
|
|
_vm->_anim->_noPalChange = false;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
2015-12-24 01:47:53 +01:00
|
|
|
void Intro::play() {
|
2015-11-20 20:17:30 +01:00
|
|
|
uint16 palette[16] = {
|
|
|
|
0x0000, 0x0855, 0x0FF9, 0x0EE7,
|
|
|
|
0x0ED5, 0x0DB4, 0x0CA2, 0x0C91,
|
|
|
|
0x0B80, 0x0B80, 0x0B91, 0x0CA2,
|
|
|
|
0x0CB3, 0x0DC4, 0x0DD6, 0x0EE7
|
2015-07-21 22:01:50 +03:00
|
|
|
};
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-18 14:06:07 +02:00
|
|
|
if (_vm->getPlatform() == Common::kPlatformDOS) {
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("EA0");
|
|
|
|
nReadPict("EA1");
|
|
|
|
nReadPict("EA2");
|
|
|
|
nReadPict("EA3");
|
2015-12-18 14:06:07 +02:00
|
|
|
} else if (_vm->getPlatform() == Common::kPlatformWindows) {
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("WYRMKEEP", true, false, false, 4000);
|
2014-12-27 14:18:40 +01:00
|
|
|
}
|
|
|
|
|
2015-12-04 13:32:08 +01:00
|
|
|
_vm->_graphics->blackAllScreen();
|
2016-01-14 00:31:37 +02:00
|
|
|
_vm->_music->resetMusic(false);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-18 14:06:07 +02:00
|
|
|
if (_vm->getPlatform() == Common::kPlatformDOS)
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("TNDcycle.pic", true, true);
|
2015-07-17 10:39:44 +03:00
|
|
|
else
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("TNDcycle2.pic", true, true);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-14 08:59:16 +01:00
|
|
|
_vm->_graphics->_fadePalette = palette;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-23 21:44:48 +02:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2015-12-02 23:10:41 +01:00
|
|
|
palette[i] = ((_vm->_anim->_diffPalette[i * 3] >> 2) << 8) +
|
2015-12-08 09:19:00 +01:00
|
|
|
((_vm->_anim->_diffPalette[i * 3 + 1] >> 2) << 4) +
|
|
|
|
(_vm->_anim->_diffPalette[i * 3 + 2] >> 2);
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
2016-01-05 21:46:53 +02:00
|
|
|
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2016-01-05 21:46:53 +02:00
|
|
|
introEatMessages();
|
2015-12-26 23:11:04 +01:00
|
|
|
if (!_quitIntro)
|
|
|
|
_vm->_graphics->fade(true);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
|
|
|
for (int times = 0; times < 150; times++) {
|
2016-01-05 21:46:53 +02:00
|
|
|
_vm->updateEvents();
|
2015-12-27 15:20:10 +01:00
|
|
|
introEatMessages();
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro)
|
2015-02-25 00:37:07 +02:00
|
|
|
break;
|
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
uint16 temp = palette[2];
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-23 21:44:48 +02:00
|
|
|
for (int i = 2; i < 15; i++)
|
2015-11-27 23:18:15 +01:00
|
|
|
palette[i] = palette[i + 1];
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
palette[15] = temp;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-23 22:04:03 +02:00
|
|
|
_vm->_graphics->setAmigaPal(palette);
|
2015-12-02 23:10:41 +01:00
|
|
|
_vm->waitTOF();
|
2016-01-14 01:31:27 +02:00
|
|
|
_vm->waitTOF();
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
2015-12-26 23:11:04 +01:00
|
|
|
if (!_quitIntro) {
|
|
|
|
_vm->_graphics->fade(false);
|
|
|
|
_vm->_graphics->blackAllScreen();
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2016-01-05 21:46:53 +02:00
|
|
|
introEatMessages();
|
2015-12-26 23:11:04 +01:00
|
|
|
}
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Title.A");
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("AB", true, false, false, 1000);
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("BA");
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("AC", true, false, false, 1000);
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("CA");
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("AD", true, false, false, 1000);
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("DA");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 13:32:08 +01:00
|
|
|
_vm->_graphics->blackAllScreen();
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2016-01-05 21:46:53 +02:00
|
|
|
introEatMessages();
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Intro.1", true, true);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-23 21:44:48 +02:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2015-12-02 23:10:41 +01:00
|
|
|
palette[i] = ((_vm->_anim->_diffPalette[i * 3] >> 2) << 8) +
|
2015-12-08 09:19:00 +01:00
|
|
|
((_vm->_anim->_diffPalette[i * 3 + 1] >> 2) << 4) +
|
|
|
|
(_vm->_anim->_diffPalette[i * 3 + 2] >> 2);
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.1", true);
|
2015-12-18 04:21:22 +02:00
|
|
|
if (_vm->getPlatform() == Common::kPlatformWindows) {
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.2A", true);
|
|
|
|
doPictText("i.2B", true);
|
2015-12-18 04:21:22 +02:00
|
|
|
}
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-04 13:32:08 +01:00
|
|
|
_vm->_graphics->blackAllScreen();
|
2015-12-27 21:12:41 +02:00
|
|
|
_vm->updateEvents();
|
2016-01-05 21:46:53 +02:00
|
|
|
introEatMessages();
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Station1", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.3");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Station2", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.4");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Stiles4", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.5");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Stiles3", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.6");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-18 04:21:22 +02:00
|
|
|
if (_vm->getPlatform() == Common::kPlatformWindows)
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Platform2", true, false, true);
|
2015-12-18 04:21:22 +02:00
|
|
|
else
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Platform", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.7");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Subway.1", true, false, true);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.8");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
nReadPict("Subway.2", true, false, true);
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.9");
|
|
|
|
doPictText("i.10");
|
|
|
|
doPictText("i.11");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
for (int i = 0; i < 50; i++) {
|
|
|
|
_vm->updateEvents();
|
|
|
|
introEatMessages();
|
|
|
|
if (_quitIntro)
|
|
|
|
break;
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2016-01-05 21:46:53 +02:00
|
|
|
for (int idx = (8 * 3); idx < (255 * 3); idx++)
|
|
|
|
_vm->_anim->_diffPalette[idx] = 255 - _vm->_anim->_diffPalette[idx];
|
|
|
|
|
|
|
|
_vm->waitTOF();
|
|
|
|
_vm->_graphics->setPalette(_vm->_anim->_diffPalette, 256);
|
|
|
|
_vm->waitTOF();
|
|
|
|
_vm->waitTOF();
|
|
|
|
}
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.12");
|
|
|
|
doPictText("i.13");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed0");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.14");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed1");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.15");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed2");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.16");
|
|
|
|
doPictText("i.17");
|
|
|
|
doPictText("i.18");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed3");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.19");
|
|
|
|
doPictText("i.20");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed4");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.21");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed5");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.22");
|
|
|
|
doPictText("i.23");
|
|
|
|
doPictText("i.24");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed6");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.25");
|
|
|
|
doPictText("i.26");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
nReadPict("Daed7", false);
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.27");
|
|
|
|
doPictText("i.28");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed8");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.29");
|
|
|
|
doPictText("i.30");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed9");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.31");
|
|
|
|
doPictText("i.32");
|
|
|
|
doPictText("i.33");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("Daed9a");
|
|
|
|
nReadPict("Daed10");
|
2015-12-24 01:42:21 +01:00
|
|
|
doPictText("i.34");
|
|
|
|
doPictText("i.35");
|
|
|
|
doPictText("i.36");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-12-20 16:46:45 +01:00
|
|
|
nReadPict("SubX");
|
2014-10-06 14:50:05 +02:00
|
|
|
|
2015-11-20 20:17:30 +01:00
|
|
|
if (_quitIntro) {
|
2015-12-24 12:08:51 +02:00
|
|
|
_vm->_graphics->rectFill(0, 0, _vm->_graphics->_screenWidth - 1, _vm->_graphics->_screenHeight - 1, 0);
|
2015-12-02 23:10:41 +01:00
|
|
|
_vm->_anim->_doBlack = true;
|
2014-10-06 14:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Lab
|