mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-24 18:56:33 +00:00
0d54aff632
(also add and fix several other things, like cone of cold vortex, drawShape issues, etc.)
1060 lines
32 KiB
C++
1060 lines
32 KiB
C++
/* 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.
|
|
*
|
|
*/
|
|
|
|
#ifdef ENABLE_EOB
|
|
|
|
#include "kyra/eob1.h"
|
|
#include "kyra/screen_eob.h"
|
|
#include "kyra/resource.h"
|
|
#include "kyra/sound.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "base/version.h"
|
|
|
|
namespace Kyra {
|
|
|
|
int EobEngine::mainMenu() {
|
|
int menuChoice = _menuChoiceInit;
|
|
_menuChoiceInit = 0;
|
|
|
|
Screen::FontId of = _screen->_currentFont;
|
|
|
|
while (menuChoice >= 0 && !shouldQuit()) {
|
|
switch (menuChoice) {
|
|
case 0:
|
|
_screen->loadPalette("EOBPAL.COL", _screen->getPalette(0));
|
|
_screen->loadEobBitmap("INTRO", 0, 5, 3, 2);
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
_screen->_curPage = 2;
|
|
of = _screen->setFont(Screen::FID_6_FNT);
|
|
_screen->printText(gScummVMVersion, 280 - strlen(gScummVMVersion) * 6, 153, _screen->getPagePixel(2, 0, 0), 0);
|
|
_screen->setFont(of);
|
|
_screen->fillRect(0, 159, 319, 199, _screen->getPagePixel(2, 0, 0));
|
|
gui_drawBox(77, 165, 173, 29, 13, 14, 12);
|
|
gui_drawBox(76, 164, 175, 31, 13, 14, -1);
|
|
_screen->_curPage = 0;
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 200, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
menuChoice = mainMenuLoop();
|
|
break;
|
|
|
|
case 1:
|
|
// load game in progress
|
|
//
|
|
menuChoice = -1;
|
|
break;
|
|
|
|
case 2:
|
|
// create new party
|
|
menuChoice = -2;
|
|
break;
|
|
|
|
case 3:
|
|
// quit
|
|
menuChoice = -5;
|
|
break;
|
|
|
|
case 4:
|
|
// intro
|
|
_sound->loadSoundFile("SOUND");
|
|
_screen->hideMouse();
|
|
seq_playOpeningCredits();
|
|
seq_playIntro();
|
|
_screen->showMouse();
|
|
_sound->loadSoundFile("ADLIB");
|
|
menuChoice = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return shouldQuit() ? -5 : menuChoice;
|
|
}
|
|
|
|
int EobEngine::mainMenuLoop() {
|
|
int sel = -1;
|
|
do {
|
|
_screen->setScreenDim(28);
|
|
_gui->simpleMenu_setup(8, 0, _mainMenuStrings, -1, 0, 0);
|
|
|
|
while (sel == -1 && !shouldQuit())
|
|
sel = _gui->simpleMenu_process(8, _mainMenuStrings, 0, -1, 0);
|
|
} while ((sel < 0 || sel > 5) && !shouldQuit());
|
|
|
|
return sel + 1;
|
|
}
|
|
|
|
void EobEngine::seq_playOpeningCredits() {
|
|
_allowSkip = true;
|
|
_screen->loadPalette(_introFilesOpening[5], _screen->getPalette(0));
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
|
|
_screen->loadBitmap(_introFilesOpening[4], 5, 3, 0);
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 200, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
|
|
_sound->playTrack(1);
|
|
delay(_introOpeningFrmDelay[0] * _tickLength);
|
|
|
|
for (int i = 0; i < 4 && !shouldQuit() && !skipFlag(); i++) {
|
|
_screen->loadBitmap(_introFilesOpening[i], 5, 3, 0);
|
|
uint32 nextFrameTimer = _system->getMillis() + _introOpeningFrmDelay[i + 1] * _tickLength;
|
|
_screen->crossFadeRegion(0, 50, 0, 50, 320, 102, 2, 0);
|
|
delayUntil(nextFrameTimer);
|
|
}
|
|
|
|
_allowSkip = false;
|
|
}
|
|
|
|
void EobEngine::seq_playIntro() {
|
|
_allowSkip = true;
|
|
|
|
if (!shouldQuit() && !skipFlag()) {
|
|
_sound->playTrack(2);
|
|
_screen->loadBitmap("TITLE-V.CMP", 5, 3, 0);
|
|
_screen->crossFadeRegion(0, 0, 0, 0, 320, 200, 2, 0);
|
|
delay(120 * _tickLength);
|
|
}
|
|
|
|
_screen->loadBitmap("TEXT.CMP", 3, 6, 0);
|
|
|
|
seq_tower();
|
|
seq_orb();
|
|
seq_waterdeepEntry();
|
|
seq_king();
|
|
seq_hands();
|
|
seq_waterdeepExit();
|
|
seq_tunnel();
|
|
|
|
whirlTransition();
|
|
_sound->haltTrack();
|
|
_allowSkip = false;
|
|
}
|
|
|
|
void EobEngine::seq_playFinale() {
|
|
Common::SeekableReadStream *s = _res->createReadStream("TEXT.DAT");
|
|
_screen->loadFileDataToPage(s, 5, 32000);
|
|
delete s;
|
|
|
|
snd_playSoundEffect(20);
|
|
|
|
_txt->resetPageBreakString();
|
|
_txt->setWaitButtonMode(1);
|
|
_txt->setupField(12, true);
|
|
gui_drawBox(0, 0, 176, 175, _color1_1, _color2_1, _bkgColor_1);
|
|
_txt->printDialogueText(51, _moreStrings[0]);
|
|
|
|
if (!checkScriptFlags(0x1ffe)) {
|
|
_screen->fadeToBlack();
|
|
return;
|
|
}
|
|
|
|
_txt->printDialogueText(_finBonusStrings[0]);
|
|
for (int i = 0; i < 6; i++) {
|
|
_txt->printDialogueText(_finBonusStrings[1]);
|
|
if (_characters[i].flags & 1)
|
|
_txt->printDialogueText(_characters[i].name);
|
|
}
|
|
|
|
uint32 password = 0;
|
|
for (int i = 0; i < 4; i++) {
|
|
if (!(_characters[i].flags & 1))
|
|
continue;
|
|
|
|
int len = strlen(_characters[i].name);
|
|
for (int ii = 0; ii < len; ii++) {
|
|
uint32 c = _characters[i].name[ii];
|
|
password += (c * c);
|
|
}
|
|
}
|
|
|
|
_txt->printDialogueText(Common::String::format(_finBonusStrings[2], password).c_str(), true);
|
|
_screen->fadeToBlack();
|
|
}
|
|
|
|
void EobEngine::seq_tower() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
_screen->loadPalette(_introFilesTower[0], _screen->getPalette(0));
|
|
_screen->loadBitmap(_introFilesTower[1], 5, 3, 0);
|
|
_screen->setCurPage(2);
|
|
uint8 *shp = _screen->encodeShape(0, 0, 16, 56, true);
|
|
_screen->copyPage(3, 4);
|
|
_screen->clearCurPage();
|
|
|
|
for (int i = 0; i < 200; i += 64)
|
|
_screen->copyRegion(128, 104, 96, i, 128, 64, 4, 2, Screen::CR_NO_P_CHECK);
|
|
|
|
_screen->fillRect(0, 184, 319, 199, 12);
|
|
int cp = _screen->setCurPage(0);
|
|
whirlTransition();
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
_screen->setCurPage(cp);
|
|
_screen->clearCurPage();
|
|
|
|
for (int i = 0; i < 200; i += 64)
|
|
_screen->copyRegion(128, 104, 0, i, 128, 64, 4, 2, Screen::CR_NO_P_CHECK);
|
|
|
|
_screen->setCurPage(0);
|
|
|
|
for (int i = 0; i < 64 && !shouldQuit() && !skipFlag(); i += 2) {
|
|
uint32 end = _system->getMillis() + 2 * _tickLength;
|
|
_screen->copyRegion(0, 142 - i, 96, 0, 128, i + 1, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 0, 96, i + 1, 128, 167 - i, 2, 0, Screen::CR_NO_P_CHECK);
|
|
if (!i)
|
|
_screen->copyRegion(0, 0, 0, 168, 320, 32, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
for (int i = 0; i < 24 && !shouldQuit() && !skipFlag(); i += 2) {
|
|
uint32 end = _system->getMillis() + 2 * _tickLength;
|
|
_screen->copyRegion(0, 79 - i, 96, 0, 24, 65 + i, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(104, 79 - i, 200, 0, 24, 65 + i, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(24, 110, 120, i + 31, 80, 34, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(152, 0, 120, 32, 80, i + 1, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 0, 96, 65 + i, 128, 103 - i, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
for (int i = 0; i < 56 && !shouldQuit() && !skipFlag(); i += 2) {
|
|
uint32 end = _system->getMillis() + 2 * _tickLength;
|
|
_screen->copyRegion(0, 56, 96, i, 24, 54, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(104, 56, 200, i, 24, 54, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 110, 96, 54 + i, 128, 34, 4, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
if (i < 32) {
|
|
_screen->fillRect(128, 0, 255, i + 1, 12, 2);
|
|
_screen->copyRegion(152, 0, 120, 32, 80, i + 25, 4, 0, Screen::CR_NO_P_CHECK);
|
|
} else {
|
|
_screen->fillRect(128, 0, 255, i + 1, 12, 2);
|
|
_screen->copyRegion(152, i + 1, 120, 32 + i + 1, 80, 23, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(152, 0, 152, 32, 80, i + 1, 4, 2, Screen::CR_NO_P_CHECK);
|
|
}
|
|
|
|
_screen->drawShape(2, shp, 128, i - 55, 0);
|
|
_screen->copyRegion(128, 0, 96, 0, 128, i + 1, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 0, 96, i + 89, 128, 79 - i, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 32, 0, 168, 320, 32, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(65 * _tickLength);
|
|
delete[] shp;
|
|
}
|
|
|
|
void EobEngine::seq_orb() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
uint8 *shp[5];
|
|
_screen->loadBitmap(_introFilesOrb[0], 5, 3, 0);
|
|
_screen->setCurPage(2);
|
|
shp[4] = _screen->encodeShape(0, 0, 20, 136, true);
|
|
_screen->loadBitmap(_introFilesOrb[1], 5, 3, 0);
|
|
shp[3] = _screen->encodeShape(16, 0, 16, 104, true);
|
|
|
|
_screen->fillRect(0, 0, 127, 103, 12);
|
|
for (int i = 1; i < 4; i++) {
|
|
copyBlurRegion(128, 0, 0, 0, 128, 104, i);
|
|
shp[3 - i] = _screen->encodeShape(0, 0, 16, 104, true);
|
|
}
|
|
|
|
_screen->fillRect(0, 0, 159, 135, 12);
|
|
_screen->setCurPage(0);
|
|
_screen->copyPage(3, 4);
|
|
_screen->clearCurPage();
|
|
|
|
_sound->playTrack(6);
|
|
|
|
for (int i = -1; i < 4 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
if (i >= 0)
|
|
_screen->drawShape(2, shp[i], 16, 16, 0);
|
|
_screen->drawShape(2, shp[4], 0, 0, 0);
|
|
_screen->copyRegion(0, 0, 80, 24, 160, 136, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 64, 0, 168, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(40 * _tickLength);
|
|
|
|
_sound->playTrack(6);
|
|
|
|
for (int i = 3; i > -2 && !shouldQuit() && !skipFlag(); i--) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
_screen->fillRect(16, 16, 143, 119, 12, 2);
|
|
if (i >= 0)
|
|
_screen->drawShape(2, shp[i], 16, 16, 0);
|
|
_screen->drawShape(2, shp[4], 0, 0, 0);
|
|
_screen->copyRegion(0, 0, 80, 24, 160, 136, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
delay(40 * _tickLength);
|
|
|
|
for (int i = 0; i < 5; i++)
|
|
delete[] shp[i];
|
|
}
|
|
|
|
void EobEngine::seq_waterdeepEntry() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
uint8 *shp[4];
|
|
uint8 *shp2[31];
|
|
uint8 *shp3[3];
|
|
|
|
_screen->loadPalette(_introFilesWdEntry[0], _screen->getPalette(0));
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
_screen->loadBitmap(_introFilesWdEntry[1], 5, 3, 0);
|
|
_screen->setCurPage(2);
|
|
shp[3] = _screen->encodeShape(0, 0, 20, 136, true);
|
|
for (int i = 1; i < 4; i++) {
|
|
copyBlurRegion(0, 0, 0, 0, 160, 136, i);
|
|
shp[3 - i] = _screen->encodeShape(0, 0, 20, 136, true);
|
|
}
|
|
_screen->setCurPage(0);
|
|
|
|
_screen->copyPage(3, 4);
|
|
_screen->fillRect(0, 168, 319, 199, 12, 0);
|
|
_sound->playTrack(6);
|
|
|
|
for (int i = 0; i < 4 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
_screen->drawShape(0, shp[i], 80, 24, 0);
|
|
delete[] shp[i];
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 80, 0, 168, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(50 * _tickLength);
|
|
|
|
_screen->setCurPage(2);
|
|
shp[0] = _screen->encodeShape(20, 0, 20, 136, true);
|
|
_screen->loadBitmap(_introFilesWdEntry[2], 5, 3, 0);
|
|
shp[1] = _screen->encodeShape(0, 0, 20, 136, true);
|
|
shp[2] = _screen->encodeShape(20, 0, 20, 136, true);
|
|
_screen->loadBitmap(_introFilesWdEntry[3], 5, 3, 0);
|
|
|
|
for (int i = 0; i < 31; i++)
|
|
shp2[i] = _screen->encodeShape(_introWdEncodeX[i], 136 + (_introWdEncodeY[i] << 3), _introWdEncodeWH[i], _introWdEncodeWH[i] << 3, true);
|
|
for (int i = 0; i < 3; i++)
|
|
shp3[i] = _screen->encodeShape(5 * i, 152, 5, 32, true);
|
|
|
|
_screen->copyPage(3, 4);
|
|
|
|
for (int i = 0; i < 3 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
_screen->fillRect(0, 0, 159, 135, 12, 2);
|
|
_screen->drawShape(2, shp[i], 0, 0, 0);
|
|
_screen->copyRegion(0, 0, 80, 24, 160, 136, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 0, 80, 24, 160, 136, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(4 * _tickLength);
|
|
_screen->copyRegion(160, 0, 80, 24, 160, 136, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->fillRect(0, 168, 319, 199, 12, 0);
|
|
_screen->updateScreen();
|
|
delay(4 * _tickLength);
|
|
_screen->copyRegion(0, 184, 40, 184, 232, 16, 4, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
int cx = 264;
|
|
int cy = 11;
|
|
|
|
for (int i = 0; i < 70 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
|
|
_screen->copyRegion(cx - 2, cy - 2, 0, 0, 48, 36, 4, 4, Screen::CR_NO_P_CHECK);
|
|
_screen->drawShape(4, shp3[((i & 3) == 3) ? 1 : (i & 3)], cx, cy, 0);
|
|
_screen->copyRegion(cx - 2, cy - 2, cx - 82, cy + 22, 48, 36, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 0, cx - 2, cy - 2, 48, 36, 4, 4, Screen::CR_NO_P_CHECK);
|
|
cx--;
|
|
cy++;
|
|
|
|
for (int ii = 0; ii < 5; ii++) {
|
|
int s = _rnd.getRandomNumber(255) % 31;
|
|
_screen->drawShape(0, shp2[s], _introWdDsX[s] - 80, _introWdDsY[s] + 24, 0);
|
|
}
|
|
|
|
if (!(_rnd.getRandomNumber(255) & 7))
|
|
_sound->playTrack(_rnd.getRandomBit() ? 5 : 14);
|
|
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
delete[] shp[i];
|
|
delete[] shp3[i];
|
|
}
|
|
|
|
for (int i = 0; i < 31; i++)
|
|
delete[] shp2[i];
|
|
}
|
|
|
|
void EobEngine::seq_king() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
_screen->loadBitmap(_introFilesKing[0], 5, 3, 0);
|
|
_screen->copyPage(3, 4);
|
|
|
|
int x = 15;
|
|
int y = 14;
|
|
int w = 1;
|
|
int h = 1;
|
|
|
|
for (int i = 0; i < 10 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(x << 3, y << 3, x << 3, y << 3, w << 3, h << 3, 4, 0, Screen::CR_NO_P_CHECK);
|
|
if (x > 6)
|
|
x --;
|
|
if (y > 0)
|
|
y -= 2;
|
|
w += 3;
|
|
if (x + w > 34)
|
|
w = 34 - x;
|
|
h += 3;
|
|
if (y + h > 23)
|
|
h = 23 - y;
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
delay(25 * _tickLength);
|
|
|
|
uint8 *shp[4];
|
|
int16 dy[4];
|
|
int16 stepY[4];
|
|
|
|
static const uint8 advEncX[] = { 0, 6, 12, 19 };
|
|
static const uint8 advEncW[] = { 6, 6, 7, 6 };
|
|
static const int8 modY[] = { -4, -8, -2, -2, 1, 0, 0, 0 };
|
|
|
|
_screen->loadBitmap(_introFilesKing[1], 5, 3, 0);
|
|
_screen->setCurPage(2);
|
|
for (int i = 0; i < 4; i++) {
|
|
shp[i] = _screen->encodeShape(advEncX[i], 0, advEncW[i], 98, true);
|
|
dy[i] = 180 + ((_rnd.getRandomNumber(255) & 3) << 3);
|
|
stepY[i] = (i * 5) & 3;
|
|
}
|
|
|
|
_screen->copyPage(0, 4);
|
|
|
|
for (bool runloop = true; runloop && !shouldQuit() && !skipFlag(); ) {
|
|
runloop = false;
|
|
uint32 end = _system->getMillis() + 2 * _tickLength;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
if (dy[i] <= 82)
|
|
continue;
|
|
stepY[i] = (stepY[i] + 1) & 7;
|
|
dy[i] += modY[stepY[i]];
|
|
|
|
if (dy[i] < 82)
|
|
dy[i] = 82;
|
|
|
|
if (dy[i] < 180) {
|
|
_screen->copyRegion((advEncX[i] + 8) << 3, dy[i] - 2, 0, dy[i] - 2, advEncW[i] << 3, 182 - dy[i], 4, 4, Screen::CR_NO_P_CHECK);
|
|
_screen->drawShape(4, shp[i], 0, dy[i], 0);
|
|
_screen->copyRegion(0, dy[i] - 2, (advEncX[i] + 8) << 3, dy[i] - 2, advEncW[i] << 3, 182 - dy[i], 4, 0, Screen::CR_NO_P_CHECK);
|
|
}
|
|
|
|
if (_rnd.getRandomNumber(255) & 3)
|
|
_sound->playTrack(7);
|
|
|
|
runloop = true;
|
|
}
|
|
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 96, 0, 160, 320, 32, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(70 * _tickLength);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
delete[] shp[i];
|
|
}
|
|
|
|
void EobEngine::seq_hands() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
_screen->setCurPage(2);
|
|
uint8 *shp1 = _screen->encodeShape(0, 140, 21, 60, true);
|
|
uint8 *shp2 = _screen->encodeShape(21, 140, 12, 60, true);
|
|
_screen->loadBitmap(_introFilesHands[0], 3, 5, 0);
|
|
|
|
_screen->fillRect(0, 160, 319, 199, 12, 0);
|
|
_screen->fillRect(0, 0, 191, 63, 157, 2);
|
|
_screen->drawShape(2, shp1, 0, 4, 0);
|
|
_screen->drawShape(2, shp2, 151, 4, 0);
|
|
boxMorphTransition(25, 8, 18, 4, 3, 0, 21, 8, 6, 0, 28, 23);
|
|
_screen->copyRegion(0, 128, 0, 176, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
_screen->updateScreen();
|
|
delay(15 * _tickLength);
|
|
_sound->playTrack(11);
|
|
|
|
for (int i = -22; i <= 20 && !shouldQuit() && !skipFlag(); i += 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 167, 63, 157);
|
|
_screen->drawShape(2, shp1, i, 4, 0);
|
|
_screen->drawShape(2, shp1, 105 - i, 4, 0);
|
|
_screen->copyRegion(0, 0, 144, 32, 168, 64, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_sound->playTrack(10);
|
|
|
|
delete[] shp1;
|
|
delete[] shp2;
|
|
delay(15 * _tickLength);
|
|
|
|
_screen->setCurPage(4);
|
|
shp1 = _screen->encodeShape(17, 0, 11, 120, true);
|
|
shp2 = _screen->encodeShape(28, 112, 1, 31, true);
|
|
uint8 *shp3 = _screen->encodeShape(9, 138, 14, 54, true);
|
|
|
|
_screen->setCurPage(2);
|
|
_screen->fillRect(0, 0, 135, 63, 157);
|
|
_screen->drawShape(2, shp1, 32, -80, 0);
|
|
_screen->drawShape(2, shp2, 40, -16, 0);
|
|
boxMorphTransition(18, 16, 10, 12, 0, 0, 17, 8, 17, 3, 25, 10);
|
|
delay(15 * _tickLength);
|
|
|
|
for (int i = -80; i <= 0 && !shouldQuit() && !skipFlag(); i += 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 135, 63, 157);
|
|
_screen->drawShape(2, shp1, 32, i, 0);
|
|
_screen->drawShape(2, shp2, 40, i + 64, 0);
|
|
_screen->copyRegion(0, 0, 80, 96, 136, 64, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_sound->playTrack(12);
|
|
delay(5 * _tickLength);
|
|
|
|
for (int i = 0; i > -54 && !shouldQuit() && !skipFlag(); i -= 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 135, 63, 157);
|
|
_screen->drawShape(2, shp3, 12, 64 + i, 0);
|
|
_screen->drawShape(2, shp1, 32, i, 0);
|
|
_screen->copyRegion(0, 0, 80, 96, 136, 64, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
delete[] shp1;
|
|
delete[] shp2;
|
|
delete[] shp3;
|
|
delay(15 * _tickLength);
|
|
|
|
_screen->setCurPage(4);
|
|
shp1 = _screen->encodeShape(0, 0, 17, 136, true);
|
|
shp2 = _screen->encodeShape(0, 136, 9, 48, true);
|
|
|
|
_screen->setCurPage(2);
|
|
_screen->fillRect(0, 0, 143, 95, 157);
|
|
_screen->drawShape(2, shp1, -56, -56, 0);
|
|
_screen->drawShape(2, shp2, 52, 49, 0);
|
|
boxMorphTransition(9, 6, 0, 0, 0, 0, 18, 12, 8, 11, 21, 10);
|
|
delay(15 * _tickLength);
|
|
_sound->playTrack(11);
|
|
|
|
for (int i = -56; i <= -8 && !shouldQuit() && !skipFlag(); i += 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 143, 95, 157);
|
|
_screen->drawShape(2, shp1, i, i, 0);
|
|
_screen->drawShape(2, shp2, (i == -8) ? 55 : 52, (i == -8) ? 52 : 49, 0);
|
|
_screen->copyRegion(0, 0, 0, 0, 144, 96, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_sound->playTrack(10);
|
|
delete[] shp1;
|
|
delete[] shp2;
|
|
delay(30 * _tickLength);
|
|
|
|
_screen->setCurPage(4);
|
|
shp1 = _screen->encodeShape(28, 0, 11, 40, true);
|
|
shp2 = _screen->encodeShape(28, 40, 10, 72, true);
|
|
|
|
_screen->setCurPage(2);
|
|
_screen->fillRect(0, 0, 87, 112, 157);
|
|
_screen->drawShape(2, shp2, 0, 90, 0);
|
|
boxMorphTransition(20, 13, 15, 6, 0, 0, 11, 14, 0, 0, 24, 16);
|
|
delay(15 * _tickLength);
|
|
|
|
int dy = 90;
|
|
for (int i = -40; i <= 0 && !shouldQuit() && !skipFlag(); i += 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 87, 112, 157);
|
|
_screen->drawShape(2, shp2, 0, dy, 0);
|
|
_screen->copyRegion(0, 0, 120, 48, 88, 112, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
dy -= 5;
|
|
}
|
|
|
|
_sound->playTrack(13);
|
|
|
|
for (int i = -40; i <= 0 && !shouldQuit() && !skipFlag(); i += 4) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->fillRect(0, 0, 87, 39, 157);
|
|
_screen->drawShape(2, shp1, 0, i, 0);
|
|
_screen->copyRegion(0, 0, 120, 48, 88, 112, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
delete[] shp1;
|
|
delete[] shp2;
|
|
delay(48 * _tickLength);
|
|
}
|
|
|
|
void EobEngine::seq_waterdeepExit() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
uint8 *shp2[31];
|
|
uint8 *shp3[3];
|
|
|
|
_screen->loadBitmap(_introFilesWdExit[0], 5, 3, 0);
|
|
_screen->setCurPage(2);
|
|
for (int i = 0; i < 31; i++)
|
|
shp2[i] = _screen->encodeShape(_introWdEncodeX[i], 136 + (_introWdEncodeY[i] << 3), _introWdEncodeWH[i], _introWdEncodeWH[i] << 3, true);
|
|
for (int i = 0; i < 3; i++)
|
|
shp3[i] = _screen->encodeShape(5 * i + 15, 152, 5, 32, true);
|
|
uint8 *shp1 = _screen->encodeShape(31, 136, 5, 32, true);
|
|
_screen->copyPage(3, 4);
|
|
_screen->copyRegion(0, 0, 0, 136, 48, 36, 4, 4, Screen::CR_NO_P_CHECK);
|
|
_screen->fillRect(0, 168, 319, 199, 12, 0);
|
|
_screen->copyRegion(160, 0, 80, 24, 160, 136, 4, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
int cx = 140;
|
|
int cy = 128;
|
|
|
|
for (int i = 0; i < 70 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 3 * _tickLength;
|
|
int fx = cx - 2;
|
|
if (fx < 160)
|
|
fx = 160;
|
|
int fy = cy - 2;
|
|
if (fy > 98)
|
|
fy = 98;
|
|
|
|
_screen->copyRegion(fx, fy, 0, 0, 48, 36, 4, 4, Screen::CR_NO_P_CHECK);
|
|
_screen->drawShape(4, shp3[((i & 3) == 3) ? 1 : (i & 3)], cx, cy, 0);
|
|
_screen->drawShape(4, shp1, 160, 104, 0);
|
|
_screen->copyRegion(fx, fy, fx - 80, fy + 24, 48, 36, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 0, fx, fy, 48, 36, 4, 4, Screen::CR_NO_P_CHECK);
|
|
cx++;
|
|
cy--;
|
|
|
|
for (int ii = 0; ii < 5; ii++) {
|
|
int s = _rnd.getRandomNumber(255) % 31;
|
|
_screen->drawShape(0, shp2[s], _introWdDsX[s] - 80, _introWdDsY[s] + 24, 0);
|
|
}
|
|
|
|
if (!(_rnd.getRandomNumber(255) & 7))
|
|
_sound->playTrack(_rnd.getRandomBit() ? 5 : 14);
|
|
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
delete[] shp3[i];
|
|
|
|
for (int i = 0; i < 31; i++)
|
|
delete[] shp2[i];
|
|
delete[] shp1;
|
|
|
|
_screen->setCurPage(0);
|
|
_screen->fillRect(0, 168, 319, 199, 12, 0);
|
|
_screen->copyRegion(0, 136, 0, 0, 48, 36, 0, 4, Screen::CR_NO_P_CHECK);
|
|
|
|
_screen->loadPalette(_introFilesWdExit[1], _screen->getPalette(0));
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
_screen->loadBitmap(_introFilesWdExit[2], 3, 5, 0);
|
|
_screen->copyPage(5, 2);
|
|
whirlTransition();
|
|
delay(6 * _tickLength);
|
|
|
|
_screen->copyRegion(0, 144, 0, 184, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
cx = 0;
|
|
cy = 136;
|
|
int dy = 0;
|
|
for (int i = 0; i < 19 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(cx, cy, 80, dy + 16, 160, 8, 2, 0, Screen::CR_NO_P_CHECK);
|
|
cy += 8;
|
|
dy += 8;
|
|
if (i == 6) {
|
|
cx = 160;
|
|
cy = 0;
|
|
}
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_sound->playTrack(3);
|
|
delay(60 * _tickLength);
|
|
|
|
for (int i = 0; i < 56 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(0, 136 + i, 80, 16, 160, 56 - i, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(160, 0, 80, 72 - i, 160, 96 + i, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
for (int i = 1; i < 48 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(160, i, 80, 16, 160, 152, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->loadBitmap(_introFilesWdExit[3], 3, 5, 0);
|
|
_screen->copyPage(5, 2);
|
|
delay(30 * _tickLength);
|
|
_screen->setCurPage(0);
|
|
_screen->fillRect(0, 16, 319, 31, 12);
|
|
_screen->fillRect(0, 136, 319, 199, 12);
|
|
_screen->copyRegion(0, 0, 80, 32, 160, 120, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->loadPalette(_introFilesWdExit[4], _screen->getPalette(0));
|
|
_screen->setScreenPalette(_screen->getPalette(0));
|
|
_screen->updateScreen();
|
|
delay(50 * _tickLength);
|
|
}
|
|
|
|
void EobEngine::seq_tunnel() {
|
|
if (shouldQuit() || skipFlag())
|
|
return;
|
|
|
|
_screen->setCurPage(4);
|
|
uint8 *shp2 = _screen->encodeShape(20, 0, 20, 120, true);
|
|
uint8 *shp1 = _screen->encodeShape(0, 0, 20, 120, true);
|
|
drawBlockObject(1, 4, shp2, 160, 0, 0);
|
|
drawBlockObject(1, 4, shp1, 0, 0, 0);
|
|
delete[] shp1;
|
|
delete[] shp2;
|
|
|
|
for (int i = 0; i < 3 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + 8 * _tickLength;
|
|
_screen->copyRegion(0, 0, 80, 32, 160, 120, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_sound->playTrack(7);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
_screen->copyRegion(0, 0, 80, 32, 160, 120, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_sound->playTrack(7);
|
|
end = _system->getMillis() + 8 * _tickLength;
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_screen->copyRegion(0, 160, 0, 184, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(18 * _tickLength);
|
|
_screen->copyRegion(160, 0, 80, 32, 160, 120, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(5 * _tickLength);
|
|
_screen->copyRegion(0, 122, 80, 32, 160, 60, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(160, 122, 80, 92, 160, 60, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(5 * _tickLength);
|
|
_screen->copyRegion(160, 0, 80, 32, 160, 120, 4, 0, Screen::CR_NO_P_CHECK);
|
|
for (int i = 0; i < 6; i++)
|
|
_screen->copyRegion(i * 48, 185, 56, (i << 3) + 24, 48, 8, 2, 2, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(5 * _tickLength);
|
|
_screen->copyRegion(0, 0, 80, 32, 160, 120, 2, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
_screen->loadBitmap(_introFilesTunnel[0], 5, 3, 0);
|
|
_screen->copyPage(3, 4);
|
|
_screen->updateScreen();
|
|
delay(40 * _tickLength);
|
|
|
|
_screen->copyRegion(264, 0, 136, 56, 48, 48, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_sound->playTrack(8);
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 184, 0, 2, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(16 * _tickLength);
|
|
_sound->playTrack(4);
|
|
|
|
for (int i = 0; i < 30 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
if (i == 0)
|
|
_screen->fillRect(0, 168, 319, 199, 12, 0);
|
|
_screen->copyRegion(80, 25 + (_rnd.getRandomNumber(255) & 7), 80, 24, 160, 144, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
|
|
_sound->playTrack(9);
|
|
|
|
for (int i = 0; i < 6 && !shouldQuit() && !skipFlag(); i++) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(_introTvlX1[i] << 3, _introTvlY1[i], _introTvlX2[i] << 3, _introTvlY2[i], _introTvlW[i] << 3, _introTvlH[i], 4, 2, Screen::CR_NO_P_CHECK);
|
|
for (int ii = 0; ii < 4 && !shouldQuit() && !skipFlag(); ii++) {
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(80, 25 + (_rnd.getRandomNumber(255) & 7), 80, 24, 160, 144, 2, 0, Screen::CR_NO_P_CHECK);
|
|
}
|
|
}
|
|
_screen->copyRegion(0, 0, 0, 0, 320, 168, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(40 * _tickLength);
|
|
|
|
_screen->loadBitmap(_introFilesTunnel[1], 5, 3, 0);
|
|
_screen->copyPage(3, 4);
|
|
_sound->playTrack(6);
|
|
_screen->copyRegion(0, 0, 80, 32, 160, 120, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(2 * _tickLength);
|
|
_screen->copyRegion(160, 0, 80, 32, 160, 120, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(2 * _tickLength);
|
|
_screen->copyRegion(0, 120, 80, 30, 160, 64, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(160, 120, 80, 94, 160, 64, 4, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->copyRegion(0, 176, 0, 184, 320, 16, 6, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->setCurPage(0);
|
|
_screen->updateScreen();
|
|
delay(50 * _tickLength);
|
|
}
|
|
|
|
void EobEngine::seq_xdeath() {
|
|
uint8 *shapes1[5];
|
|
uint8 *shapes2;
|
|
|
|
_screen->loadShapeSetBitmap("XDEATH2", 5, 3);
|
|
for (int i = 0; i < 4; i++)
|
|
shapes1[i] = _screen->encodeShape(i / 2 * 14, i / 2 * 88, 14, 88, true);
|
|
_screen->loadShapeSetBitmap("XDEATH3", 5, 3);
|
|
shapes2 = _screen->encodeShape(22, 0, 16, 95, true);
|
|
_screen->loadEobBitmap("XDEATH1", 0, 5, 3, -1);
|
|
_screen->setCurPage(0);
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
if (i == 2)
|
|
snd_playSoundEffect(72);
|
|
else if (i == 4 || i == 6)
|
|
snd_playSoundEffect(54);
|
|
else
|
|
snd_playSoundEffect(34);
|
|
|
|
if (i < 6) {
|
|
_screen->copyRegion((i % 3) * 104, i / 3 * 88, 32, 10, 104, 88, 2, 0, Screen::CR_NO_P_CHECK);
|
|
} else {
|
|
snd_playSoundEffect(42);
|
|
_screen->drawShape(0, shapes1[i - 6], 32, 10, 0);
|
|
}
|
|
|
|
_screen->updateScreen();
|
|
delay(4 * _tickLength);
|
|
}
|
|
|
|
const ScreenDim *dm = _screen->getScreenDim(5);
|
|
_screen->modifyScreenDim(5, dm->sx, 8, dm->w, dm->h);
|
|
_screen->copyRegion(0, 0, 0, 0, 176, 120, 0, 5, Screen::CR_NO_P_CHECK);
|
|
|
|
for (int i = 0; i < 19; i++) {
|
|
snd_playSoundEffect(119);
|
|
_screen->copyRegion(0, 0, 0, 0, 176, 120, 5, 2, Screen::CR_NO_P_CHECK);
|
|
_screen->drawShape(2, shapes2, 24, i * 5 - 90, 5);
|
|
_screen->copyRegion(0, 0, 0, 0, 176, 120, 2, 0, Screen::CR_NO_P_CHECK);
|
|
_screen->updateScreen();
|
|
delay(2 * _tickLength);
|
|
}
|
|
|
|
_screen->modifyScreenDim(5, dm->sx, 0, dm->w, dm->h);
|
|
|
|
snd_playSoundEffect(5);
|
|
delay(60 * _tickLength);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
delete[] shapes1[i];
|
|
delete[] shapes2;
|
|
}
|
|
|
|
void EobEngine::copyBlurRegion(int x1, int y1, int x2, int y2, int w, int h, int step) {
|
|
const uint8 *ptr2 = _screen->getCPagePtr(3) + y1 * 320 + x1;
|
|
|
|
if (step == 1) {
|
|
while (h > 0) {
|
|
int dx = x2;
|
|
for (int i = 0; i < w; i += 2) {
|
|
_screen->setPagePixel(3, dx++, y2, ptr2[i]);
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
}
|
|
dx = x2;
|
|
y2++;
|
|
ptr2 += 320;
|
|
for (int i = 0; i < w; i += 2) {
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
_screen->setPagePixel(3, dx++, y2, ptr2[i + 1]);
|
|
}
|
|
y2++;
|
|
ptr2 += 320;
|
|
h -= 2;
|
|
}
|
|
} else if (step == 2) {
|
|
while (h > 0) {
|
|
int dx = x2;
|
|
for (int i = 0; i < w; i += 2) {
|
|
_screen->setPagePixel(3, dx++, y2, ptr2[i]);
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
}
|
|
dx = x2;
|
|
y2++;
|
|
ptr2 += 320;
|
|
for (int i = 0; i < w; i++)
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
|
|
y2++;
|
|
ptr2 += 320;
|
|
h -= 2;
|
|
}
|
|
} else if (step == 3) {
|
|
for (int i = 0; i < h; i++) {
|
|
int dx = x2;
|
|
if ((i % 3) == 0) {
|
|
int ii = 0;
|
|
for (; ii < w - 3; ii += 3) {
|
|
_screen->setPagePixel(3, dx++, y2, ptr2[ii]);
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
}
|
|
for (; ii < w; ii++)
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
} else {
|
|
for (int ii = 0; ii < w; ii++)
|
|
_screen->setPagePixel(3, dx++, y2, 0);
|
|
}
|
|
y2++;
|
|
ptr2 += 320;
|
|
}
|
|
}
|
|
}
|
|
|
|
void EobEngine::boxMorphTransition(int targetDestX, int targetDestY, int targetFinalX, int targetFinalY, int targetSrcX, int targetSrcY, int targetFinalW, int targetFinalH, int originX1, int originY1, int originW, int originH) {
|
|
int originX2 = originX1 + originW;
|
|
int originY2 = originY1 + originH;
|
|
if (originY2 > 21)
|
|
originY2 = 21;
|
|
|
|
int w = 1;
|
|
int h = 1;
|
|
for (bool runloop = true; runloop && !shouldQuit() && !skipFlag(); ) {
|
|
uint32 end = _system->getMillis() + _tickLength;
|
|
_screen->copyRegion(targetSrcX << 3, targetSrcY << 3, targetDestX << 3, targetDestY << 3, w << 3, h << 3, 2, 0, Screen::CR_NO_P_CHECK);
|
|
if (originX1 < targetDestX)
|
|
_screen->copyRegion(312, 0, originX1 << 3, 0, 8, 176, 0, 0, Screen::CR_NO_P_CHECK);
|
|
if (originY1 < targetDestY)
|
|
_screen->copyRegion(0, 192, 0, originY1 << 3, 320, 8, 0, 0, Screen::CR_NO_P_CHECK);
|
|
if ((targetFinalX + targetFinalW) <= originX2)
|
|
_screen->copyRegion(312, 0, originX2 << 3, 0, 8, 176, 0, 0, Screen::CR_NO_P_CHECK);
|
|
if ((targetFinalY + targetFinalH) <= originY2)
|
|
_screen->copyRegion(0, 192, 0, originY2 << 3, 320, 8, 0, 0, Screen::CR_NO_P_CHECK);
|
|
|
|
if (!(targetDestX != targetFinalX || targetDestY != targetFinalY || w != targetFinalW || h != targetFinalH || originX1 < targetFinalX || originY1 < targetFinalY || (targetFinalX + targetFinalW) < originX2 || (targetFinalY + targetFinalH) < originY2))
|
|
runloop = false;
|
|
|
|
int v = targetFinalX - targetDestX;
|
|
v = (v < 0) ? -1 : ((v > 0) ? 1 : 0);
|
|
targetDestX += v;
|
|
v = targetFinalY - targetDestY;
|
|
v = (v < 0) ? -1 : ((v > 0) ? 1 : 0);
|
|
targetDestY += v;
|
|
|
|
if (w != targetFinalW)
|
|
w += 2;
|
|
if (w > targetFinalW)
|
|
w = targetFinalW;
|
|
|
|
if (h != targetFinalH)
|
|
h += 2;
|
|
if (h > targetFinalH)
|
|
h = targetFinalH;
|
|
|
|
if (++originX1 > targetFinalX)
|
|
originX1 = targetFinalX;
|
|
|
|
if (++originY1 > targetFinalY)
|
|
originY1 = targetFinalY;
|
|
|
|
if ((targetFinalX + targetFinalW) < originX2)
|
|
originX2--;
|
|
|
|
if ((targetFinalY + targetFinalH) < originY2)
|
|
originY2--;
|
|
|
|
_screen->updateScreen();
|
|
delayUntil(end);
|
|
}
|
|
}
|
|
|
|
void EobEngine::whirlTransition() {
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int ii = 0; ii < 8; ii++) {
|
|
uint32 e = _system->getMillis() + 3;
|
|
if (ii & 1) {
|
|
for (int iii = i + ii; iii < 320; iii += 8)
|
|
_screen->drawClippedLine(iii, 0, iii, 199, 12);
|
|
} else {
|
|
for (int iii = i + ii; iii < 200; iii += 8)
|
|
_screen->drawClippedLine(0, iii, 319, iii, 12);
|
|
}
|
|
_screen->updateScreen();
|
|
uint32 c = _system->getMillis();
|
|
if (e > c)
|
|
_system->delayMillis(e - c);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // End of namespace Kyra
|
|
|
|
#endif // ENABLE_EOB
|