2011-07-07 17:26:22 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "neverhood/klayman.h"
|
2011-07-08 19:09:33 +00:00
|
|
|
#include "neverhood/collisionman.h"
|
2011-07-07 17:26:22 +00:00
|
|
|
#include "neverhood/resourceman.h"
|
2011-07-08 19:09:33 +00:00
|
|
|
#include "neverhood/staticdata.h"
|
2011-07-07 17:26:22 +00:00
|
|
|
|
|
|
|
namespace Neverhood {
|
|
|
|
|
|
|
|
static const KlaymanTableItem klaymanTable1[] = {
|
|
|
|
{1, &Klayman::sub41FD30},
|
|
|
|
{1, &Klayman::sub41FDA0},
|
|
|
|
{1, &Klayman::sub41FDF0},
|
|
|
|
{1, &Klayman::sub41FE60},
|
|
|
|
{1, &Klayman::sub41FEB0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const KlaymanTableItem klaymanTable2[] = {
|
|
|
|
{1, &Klayman::sub41FD30},
|
|
|
|
{1, &Klayman::sub41FDA0},
|
|
|
|
{1, &Klayman::sub41FE60},
|
|
|
|
{1, &Klayman::sub41FEB0}
|
|
|
|
};
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static const KlaymanTableItem klaymanTable3[] = {
|
|
|
|
{1, &Klayman::sub421430},
|
|
|
|
{1, &Klayman::sub421480}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2011-07-11 18:47:03 +00:00
|
|
|
// Klayman
|
|
|
|
|
2011-07-07 17:26:22 +00:00
|
|
|
Klayman::Klayman(NeverhoodEngine *vm, Entity *parentScene, int16 x, int16 y, int surfacePriority, int objectPriority)
|
|
|
|
: AnimatedSprite(vm, objectPriority), _soundResource1(vm), _soundResource2(vm),
|
|
|
|
_counterMax(0), _counter(0), _flagE4(false), _counter3Max(0), _flagF8(false), _counter1(0),
|
|
|
|
_counter2(0), /*_field118(0), */_status2(0), _flagE5(true), _attachedSprite(NULL), _flagE1(false),
|
2011-07-09 18:45:51 +00:00
|
|
|
_status3(1), _parentScene(parentScene), _flagE2(false), _flagE3(false), _flagF6(false), _flagF7(false),
|
2011-07-08 19:09:33 +00:00
|
|
|
_flagFA(false), _statusE0(0), _field114(0), _resourceHandle(-1), _soundFlag(false) {
|
2011-07-07 17:26:22 +00:00
|
|
|
|
2011-07-13 18:38:40 +00:00
|
|
|
// TODO DirtySurface
|
2011-07-07 17:26:22 +00:00
|
|
|
createSurface(surfacePriority, 320, 200);
|
|
|
|
_x = x;
|
|
|
|
_y = y;
|
|
|
|
_x4 = x;
|
|
|
|
_y4 = y;
|
|
|
|
_flags = 2;
|
|
|
|
setKlaymanTable1();
|
|
|
|
sub41FC80();
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::xUpdate() {
|
2011-07-07 20:26:12 +00:00
|
|
|
// Empty
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::xHandleMessage(int messageNum, const MessageParam ¶m) {
|
2011-07-07 20:26:12 +00:00
|
|
|
switch (messageNum) {
|
|
|
|
case 0x4001:
|
|
|
|
case 0x4800:
|
2011-07-08 19:09:33 +00:00
|
|
|
sub41C930(param.asPoint().x, false);
|
2011-07-07 20:26:12 +00:00
|
|
|
break;
|
|
|
|
case 0x4004:
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FC80));
|
2011-07-07 20:26:12 +00:00
|
|
|
break;
|
|
|
|
case 0x4818:
|
2011-07-13 18:38:40 +00:00
|
|
|
debug("TODO sub41C930");
|
2011-07-08 19:09:33 +00:00
|
|
|
// TODO sub41C930(_rectResource.getRectangle1(param.asInteger()).x, false);
|
2011-07-07 20:26:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-07-07 17:26:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::update() {
|
2011-07-07 17:28:51 +00:00
|
|
|
AnimatedSprite::update();
|
|
|
|
xUpdate();
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::setKlaymanTable(const KlaymanTableItem *table, int tableCount) {
|
|
|
|
_table = table;
|
|
|
|
_tableCount = tableCount;
|
|
|
|
_tableMaxValue = 0;
|
|
|
|
for (int i = 0; i < tableCount; i++) {
|
|
|
|
_tableMaxValue += table[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::setKlaymanTable1() {
|
|
|
|
setKlaymanTable(klaymanTable1, ARRAYSIZE(klaymanTable1));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::setKlaymanTable2() {
|
|
|
|
setKlaymanTable(klaymanTable2, ARRAYSIZE(klaymanTable2));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::setKlaymanTable3() {
|
|
|
|
// TODO setKlaymanTable(klaymanTable3, ARRAYSIZE(klaymanTable3));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FD30() {
|
|
|
|
sub41D320(0x5B20C814, AnimationCallback(&Klayman::sub41FD40));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FD40() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x5B20C814, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EB10);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FD90));
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EB10(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0x04DBC02C) {
|
|
|
|
_soundResource1.play(0x44528AA1);
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FD90() {
|
|
|
|
// TODO _soundResource1.stop(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FDA0() {
|
|
|
|
sub41D320(0xD122C137, AnimationCallback(&Klayman::sub41FDB0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FDB0() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0xD122C137, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E980);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E980(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0x808A0008) {
|
|
|
|
_soundResource1.play(0xD948A340);
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FDF0() {
|
|
|
|
sub41D320(0x543CD054, AnimationCallback(&Klayman::sub41FE00));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FE00() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x543CD054, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E9E0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FE50));
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FE50() {
|
|
|
|
// TODO _soundResource1.stop(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E9E0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0x5A0F0104) {
|
|
|
|
_soundResource1.play(0x7970A100);
|
|
|
|
} else if (param.asInteger() == 0x9A9A0109) {
|
|
|
|
_soundResource1.play(0xD170CF04);
|
|
|
|
} else if (param.asInteger() == 0x989A2169) {
|
|
|
|
_soundResource1.play(0xD073CF14);
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FE60() {
|
|
|
|
sub41D320(0x40A0C034, AnimationCallback(&Klayman::sub41FE70));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FE70() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x40A0C034, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EF80);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EF80(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0x0D2A0288) {
|
|
|
|
_soundResource1.play(0xD192A368);
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FEB0() {
|
|
|
|
sub41D320(0x5120E137, AnimationCallback(&Klayman::sub41FEC0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FEC0() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x5120E137, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EFE0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EFE0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0xC006000C) {
|
|
|
|
_soundResource1.play(0x9D406340);
|
|
|
|
} else if (param.asInteger() == 0x2E4A2940) {
|
|
|
|
_soundResource1.play(0x53A4A1D4);
|
|
|
|
} else if (param.asInteger() == 0xAA0A0860) {
|
|
|
|
_soundResource1.play(0x5BE0A3C6);
|
|
|
|
} else if (param.asInteger() == 0xC0180260) {
|
|
|
|
_soundResource1.play(0x5D418366);
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void Klayman::sub41D320(uint32 fileHash, AnimationCb callback) {
|
|
|
|
_resourceHandle = _vm->_res->useResource(fileHash);
|
|
|
|
if (_resourceHandle != -1) {
|
|
|
|
// TODO _vm->_res->moveToFront(_resourceHandle);
|
|
|
|
SetAnimationCallback3(callback);
|
|
|
|
SetUpdateHandler(&Klayman::update41D2B0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::update41D2B0() {
|
|
|
|
// TODO Check if this odd stuff is needed or just some cache optimization
|
|
|
|
if (_vm->_res->isResourceDataValid(_resourceHandle)) {
|
|
|
|
sub41C7B0();
|
|
|
|
// TODO _vm->_res->moveToBack(_resourceHandle);
|
|
|
|
_vm->_res->unuseResource(_resourceHandle);
|
|
|
|
_resourceHandle = -1;
|
|
|
|
} else {
|
|
|
|
// TODO _vm->_res->moveToFront(_resourceHandle);
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Klayman::sub41CF10(AnimationCb callback) {
|
2011-07-09 18:45:51 +00:00
|
|
|
if (_status2 == 2) {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x9A7020B8, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41F140);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(callback);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
2011-07-13 18:38:40 +00:00
|
|
|
void Klayman::sub41C7B0() {
|
|
|
|
debug("Klayman::sub41C7B0()");
|
2011-07-07 17:26:22 +00:00
|
|
|
if (_callback1Cb) {
|
2011-07-09 18:45:51 +00:00
|
|
|
AnimationCb cb = _callback1Cb;
|
2011-07-07 17:26:22 +00:00
|
|
|
_callback1Cb = NULL;
|
2011-07-09 18:45:51 +00:00
|
|
|
(this->*cb)();
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
if (_callback3Cb) {
|
|
|
|
AnimationCb cb = _callback3Cb;
|
|
|
|
_callback3Cb = NULL;
|
|
|
|
(this->*cb)();
|
|
|
|
#if 0 // TODO
|
|
|
|
} else if (_callbackList) {
|
|
|
|
removeCallbackList();
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
_parentScene->sendMessage(0x1006, 0, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41C770() {
|
|
|
|
_flagFA = false;
|
2011-07-09 18:45:51 +00:00
|
|
|
_status3 = 1;
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41C790() {
|
|
|
|
if (_flagFA)
|
2011-07-09 18:45:51 +00:00
|
|
|
_status3 = 0;
|
2011-07-07 17:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FC80() {
|
2011-07-13 18:38:40 +00:00
|
|
|
//ok
|
2011-07-07 17:26:22 +00:00
|
|
|
if (!sub41CF10(AnimationCallback(&Klayman::sub41FC80))) {
|
2011-07-09 18:45:51 +00:00
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
2011-07-07 17:26:22 +00:00
|
|
|
setFileHash(0x5420E254, 0, -1);
|
|
|
|
_counter = 0;
|
|
|
|
_counter3 = 0;
|
|
|
|
_counter3Max = _vm->_rnd->getRandomNumber(64) + 24;
|
|
|
|
SetUpdateHandler(&Klayman::update41D0F0);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::update41D0F0() {
|
|
|
|
update();
|
|
|
|
_counter++;
|
|
|
|
if (_counter >= 720) {
|
|
|
|
_counter = 0;
|
|
|
|
if (_table) {
|
|
|
|
int randomValue = _vm->_rnd->getRandomNumber(_tableMaxValue);
|
|
|
|
for (int i = 0; i < _tableCount; i++) {
|
|
|
|
if (randomValue < _table[_tableCount].value) {
|
|
|
|
(this->*(_table[_tableCount].callback))();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
randomValue -= _table[_tableCount].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_counter3++;
|
|
|
|
if (_counter3 >= _counter3Max) {
|
|
|
|
_counter3 = 0;
|
|
|
|
_counter3Max = _vm->_rnd->getRandomNumber(64) + 24;
|
|
|
|
sub41FF00();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41D360(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-08 19:09:33 +00:00
|
|
|
debug("Klayman::handleMessage41D360(%04X)", messageNum);
|
2011-07-07 17:26:22 +00:00
|
|
|
Sprite::handleMessage(messageNum, param, sender);
|
|
|
|
uint32 messageResult = xHandleMessage(messageNum, param);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x1008:
|
|
|
|
messageResult = _flagE5;
|
|
|
|
break;
|
|
|
|
case 0x1014:
|
2011-07-08 19:09:33 +00:00
|
|
|
_attachedSprite = param.asEntity();
|
2011-07-07 17:26:22 +00:00
|
|
|
break;
|
|
|
|
case 0x1019:
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
case 0x101C:
|
|
|
|
sub41C770();
|
|
|
|
break;
|
|
|
|
case 0x1021:
|
|
|
|
sub41C790();
|
|
|
|
break;
|
|
|
|
case 0x481C:
|
2011-07-09 18:45:51 +00:00
|
|
|
_status3 = param.asInteger();
|
2011-07-07 17:26:22 +00:00
|
|
|
_flagFA = true;
|
|
|
|
messageResult = 1;
|
|
|
|
break;
|
|
|
|
case 0x482C:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() != 0) {
|
|
|
|
// TODO _rectResource.getRectangle2(param.asInteger(), &_field118, &_field114,);
|
2011-07-07 17:26:22 +00:00
|
|
|
} else {
|
|
|
|
// TODO _field114 = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FF00() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
2011-07-08 19:09:33 +00:00
|
|
|
setFileHash(0x5900C41E, 0, -1);
|
2011-07-07 17:26:22 +00:00
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FCF0);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41D480(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41D480(%04X)", messageNum);
|
2011-07-07 17:26:22 +00:00
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x3002:
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FCF0() {
|
2011-07-13 18:38:40 +00:00
|
|
|
//ok
|
2011-07-07 17:26:22 +00:00
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x5420E254, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update41D0F0);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
2011-07-07 20:26:12 +00:00
|
|
|
uint32 Klayman::handleMessage41F140(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41F140(%04X)", messageNum);
|
2011-07-07 20:26:12 +00:00
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
2011-07-08 19:09:33 +00:00
|
|
|
if (param.asInteger() == 0x271AA210) {
|
|
|
|
_soundResource1.play(0x4924AAC4);
|
|
|
|
} else if (param.asInteger() == 0x2B22AA81) {
|
|
|
|
_soundResource1.play(0x0A2AA8E0);
|
2011-07-07 20:26:12 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Klayman::sub41C930(int16 x, bool flag) {
|
2011-07-08 19:09:33 +00:00
|
|
|
debug("Klayman::sub41C930(%d, %d)", x, flag);
|
2011-07-07 20:26:12 +00:00
|
|
|
int16 xdiff = ABS(x - _x);
|
2011-07-09 18:45:51 +00:00
|
|
|
if (x == _x) {
|
2011-07-07 20:26:12 +00:00
|
|
|
_x4 = x;
|
2011-07-09 18:45:51 +00:00
|
|
|
if (!_flagE1 && !_flagE2 && !_flagE3) {
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback2(NULL);
|
2011-07-07 20:26:12 +00:00
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
} else if (xdiff <= 36 && !_flagE1 && !_flagE2 && !_flagE3) {
|
|
|
|
_x4 = x;
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback2(NULL);
|
2011-07-07 20:26:12 +00:00
|
|
|
sub41C7B0();
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (xdiff <= 42 && _status3 != 3) {
|
2011-07-07 20:26:12 +00:00
|
|
|
if (_flagE2 && ((!_doDeltaX && x - _x > 0) || (_doDeltaX && x - _x < 0)) && ABS(_x4 - _x) > xdiff) {
|
|
|
|
_x4 = x;
|
|
|
|
} else {
|
|
|
|
_x4 = x;
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FB40));
|
2011-07-07 20:26:12 +00:00
|
|
|
}
|
|
|
|
} else if (_flagE1 && ((!_doDeltaX && x - _x > 0) || (_doDeltaX && x - _x < 0))) {
|
|
|
|
_x4 = x;
|
|
|
|
} else if (flag) {
|
|
|
|
_x4 = x;
|
2011-07-10 18:21:48 +00:00
|
|
|
error("// TODO AnimatedSprite_setCallback2(AnimationCallback(&Klayman::sub421550));");
|
2011-07-07 20:26:12 +00:00
|
|
|
// TODO AnimatedSprite_setCallback2(AnimationCallback(&Klayman::sub421550));
|
|
|
|
} else {
|
|
|
|
_x4 = x;
|
2011-07-08 19:09:33 +00:00
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41F950));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4211F0() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x527AC970, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4211B0() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x5A38C110, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E920);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E920(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-13 18:38:40 +00:00
|
|
|
//ok
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41E920(%04X)", messageNum);
|
2011-07-08 19:09:33 +00:00
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x03060012) {
|
|
|
|
_soundResource1.play(0xC0238244);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Klayman::sub41CEB0(AnimationCb callback3) {
|
|
|
|
if (_status2 == 1) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x5C7080D4, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41F140);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F250);
|
|
|
|
SetAnimationCallback3(callback3);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
_x = _x4;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F250() {
|
|
|
|
debug("Klayman::spriteUpdate41F250()");
|
2011-07-09 18:45:51 +00:00
|
|
|
|
|
|
|
int16 xdiff = _x4 - _x;
|
|
|
|
|
|
|
|
if (_doDeltaX) {
|
|
|
|
_x -= _deltaX;
|
|
|
|
} else {
|
|
|
|
_x += _deltaX;
|
|
|
|
}
|
|
|
|
_deltaX = 0;
|
|
|
|
|
|
|
|
if (_doDeltaY) {
|
|
|
|
_y -= _deltaY;
|
|
|
|
} else {
|
|
|
|
_y += _deltaY;
|
|
|
|
}
|
|
|
|
_deltaY = 0;
|
|
|
|
|
|
|
|
if (_flag) {
|
|
|
|
if (xdiff > 6)
|
|
|
|
_x += 6;
|
|
|
|
else if (xdiff < -6)
|
|
|
|
_x -= 6;
|
|
|
|
else
|
|
|
|
_x = _x4;
|
|
|
|
}
|
|
|
|
|
|
|
|
processDelta();
|
|
|
|
|
2011-07-08 19:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F5F0() {
|
|
|
|
debug("Klayman::spriteUpdate41F5F0()");
|
2011-07-09 18:45:51 +00:00
|
|
|
|
|
|
|
int16 xdiff = _x4 - _x;
|
|
|
|
|
|
|
|
if (_frameIndex == 9) {
|
|
|
|
if (xdiff > 26)
|
|
|
|
_deltaX += xdiff - 26;
|
|
|
|
else if (xdiff < -26)
|
|
|
|
_deltaX -= xdiff + 26;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xdiff > _deltaX)
|
|
|
|
xdiff = _deltaX;
|
|
|
|
else if (xdiff < -_deltaX)
|
|
|
|
xdiff = -_deltaX;
|
|
|
|
_deltaX = 0;
|
|
|
|
|
|
|
|
if (_x4 != _x) {
|
|
|
|
HitRect *hitRectPrev = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
_x += xdiff;
|
|
|
|
if (_field114) {
|
2011-07-13 18:38:40 +00:00
|
|
|
error("// TODO Klayman_sub_41CF70");
|
|
|
|
// TODO Klayman_sub_41CF70
|
2011-07-09 18:45:51 +00:00
|
|
|
} else {
|
|
|
|
HitRect *hitRectNext = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
if (hitRectNext->type == 0x5002) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (hitRectNext->rect.x2 - _x) / 2);
|
|
|
|
} else if (hitRectNext->type == 0x5003) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (_x - hitRectNext->rect.x1) / 2);
|
|
|
|
} else if (hitRectPrev->type == 0x5002) {
|
|
|
|
if (xdiff > 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
} else if (hitRectPrev->type == 0x5003) {
|
|
|
|
if (xdiff < 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
processDelta();
|
|
|
|
}
|
|
|
|
|
2011-07-08 19:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FB40() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE2 = true;
|
|
|
|
_flagE5 = true;
|
|
|
|
setDoDeltaX(_x4 < _x);
|
|
|
|
setFileHash(0x5C48C506, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DD80);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F5F0);
|
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FBB0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FBB0() {
|
|
|
|
_flagE2 = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41DD80(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41DD80(%04X)", messageNum);
|
2011-07-08 19:09:33 +00:00
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x4924AAC4);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0A2AA8E0);
|
|
|
|
} else if (param.asInteger() == 0x32188010) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x48498E46);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x02A2909C) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x50399F64);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x3002:
|
|
|
|
_x = _x4;
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
2011-07-07 20:26:12 +00:00
|
|
|
}
|
2011-07-08 19:09:33 +00:00
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41CD70(int16 x) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::sub41CD70(%d)", x);
|
2011-07-08 19:09:33 +00:00
|
|
|
if (x > _x) {
|
|
|
|
if (ABS(x - _x) <= 105) {
|
2011-07-10 18:21:48 +00:00
|
|
|
sub41CAC0(x);
|
2011-07-08 19:09:33 +00:00
|
|
|
} else {
|
|
|
|
sub41C930(x, false);
|
|
|
|
}
|
|
|
|
} else if (x == _x) {
|
|
|
|
_x4 = x;
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
} else {
|
|
|
|
sub41C930(x, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41F950() {
|
|
|
|
if (!sub41CF10(AnimationCallback(&Klayman::sub41F950))) {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE1 = true;
|
|
|
|
_flagE5 = true;
|
|
|
|
setDoDeltaX(_x4 < _x);
|
|
|
|
setFileHash(0x242C0198, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EC70);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F320);
|
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FB30));
|
|
|
|
SetAnimationCallback3(&Klayman::sub41F9E0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FB30() {
|
|
|
|
_flagE1 = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EC70(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41EC70(%04X)", messageNum);
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
2011-07-08 19:09:33 +00:00
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x48498E46);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x50399F64);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41F9E0() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE1 = true;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x1A249001, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EB70);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F300);
|
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FB30));
|
|
|
|
SetAnimationCallback3(&Klayman::sub41FA40);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F300() {
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F320);
|
|
|
|
_deltaX = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EB70(int messageNum, const MessageParam ¶m, Entity *sender) {
|
2011-07-09 18:45:51 +00:00
|
|
|
debug("Klayman::handleMessage41EB70(%04X)", messageNum);
|
2011-07-08 19:09:33 +00:00
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x48498E46);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x50399F64);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FA40() {
|
2011-07-09 18:45:51 +00:00
|
|
|
if (_status3 == 2) {
|
2011-07-08 19:09:33 +00:00
|
|
|
sub41C7B0();
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (_status3 == 3) {
|
2011-07-10 18:21:48 +00:00
|
|
|
error("// TODO sub420F20();");
|
2011-07-08 19:09:33 +00:00
|
|
|
// TODO sub420F20();
|
|
|
|
} else {
|
|
|
|
_flagE2 = true;
|
2011-07-09 18:45:51 +00:00
|
|
|
_flagE5 = true;
|
2011-07-08 19:09:33 +00:00
|
|
|
if (ABS(_x4 - _x) <= 42 && _frameIndex >= 5 && _frameIndex <= 11) {
|
2011-07-09 18:45:51 +00:00
|
|
|
if (_status3 == 0) {
|
2011-07-08 19:09:33 +00:00
|
|
|
_status2 = 1;
|
|
|
|
setFileHash(0xF234EE31, 0, -1);
|
|
|
|
} else {
|
|
|
|
_status2 = 2;
|
|
|
|
setFileHash(0xF135CC21, 0, -1);
|
|
|
|
}
|
|
|
|
} else if (ABS(_x4 - _x) <= 10 && (_frameIndex >= 12 || _frameIndex <= 4)) {
|
2011-07-09 18:45:51 +00:00
|
|
|
if (_status3 == 0) {
|
2011-07-08 19:09:33 +00:00
|
|
|
_status2 = 1;
|
|
|
|
setFileHash(0x8604A152, 0, -1);
|
|
|
|
} else {
|
|
|
|
_status2 = 2;
|
|
|
|
setFileHash(0xA246A132, 0, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DD80);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F5F0);
|
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FBB0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F320() {
|
|
|
|
int16 xdiff = ABS(_x4 - _x);
|
|
|
|
int16 xdelta = _x4 - _x;
|
|
|
|
|
|
|
|
if (xdelta > _deltaX)
|
|
|
|
xdelta = _deltaX;
|
2011-07-09 18:45:51 +00:00
|
|
|
else if (xdelta < -_deltaX)
|
2011-07-08 19:09:33 +00:00
|
|
|
xdelta = -_deltaX;
|
|
|
|
|
|
|
|
_deltaX = 0;
|
|
|
|
|
|
|
|
if (xdiff == 0) {
|
|
|
|
sendMessage(0x1019, 0, this);
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (_status3 != 2 && _status3 != 3 && xdiff <= 42 && _frameIndex >= 5 && _frameIndex <= 11) {
|
2011-07-08 19:09:33 +00:00
|
|
|
sendMessage(0x1019, 0, this);
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (_status3 != 2 && _status3 != 3 && xdiff <= 10 && (_frameIndex >= 12 || _frameIndex <= 4)) {
|
2011-07-08 19:09:33 +00:00
|
|
|
sendMessage(0x1019, 0, this);
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (_status3 == 3 && xdiff < 30) {
|
2011-07-08 19:09:33 +00:00
|
|
|
sendMessage(0x1019, 0, this);
|
2011-07-09 18:45:51 +00:00
|
|
|
} else if (_status3 == 3 && xdiff < 150 && _frameIndex >= 6) {
|
2011-07-08 19:09:33 +00:00
|
|
|
sendMessage(0x1019, 0, this);
|
|
|
|
} else {
|
|
|
|
HitRect *hitRectPrev = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
_x += xdelta;
|
|
|
|
if (_field114) {
|
|
|
|
debug("_field114");
|
2011-07-13 18:38:40 +00:00
|
|
|
// TODO Klayman_sub_41CF70
|
2011-07-08 19:09:33 +00:00
|
|
|
} else {
|
|
|
|
HitRect *hitRectNext = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
if (hitRectNext->type == 0x5002) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (hitRectNext->rect.x2 - _x) / 2);
|
|
|
|
} else if (hitRectNext->type == 0x5003) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (_x - hitRectNext->rect.x1) / 2);
|
|
|
|
} else if (hitRectPrev->type == 0x5002) {
|
|
|
|
if (xdelta > 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
} else if (hitRectPrev->type == 0x5003) {
|
|
|
|
if (xdelta < 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
} else if (_flagF6 && xdelta != 0) {
|
|
|
|
if (hitRectNext->type == 0x5000) {
|
|
|
|
_y++;
|
|
|
|
} else if (hitRectNext->type == 0x5001 && _y > hitRectNext->rect.y1) {
|
|
|
|
_y--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
processDelta();
|
|
|
|
}
|
|
|
|
|
2011-07-07 20:26:12 +00:00
|
|
|
}
|
2011-07-07 17:26:22 +00:00
|
|
|
|
2011-07-09 18:45:51 +00:00
|
|
|
uint32 Klayman::handleMessage41E210(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
2011-07-10 18:21:48 +00:00
|
|
|
void Klayman::sub41FF80() {
|
|
|
|
setDoDeltaX(((Sprite*)_attachedSprite)->getX() < _x);
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub41FF80))) {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x1C28C178, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D4C0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41D4C0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
debug("Klayman::handleMessage41D4C0(%04X)", messageNum);
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0xC1380080) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x4806, 0, this);
|
|
|
|
}
|
|
|
|
_soundResource1.play(0x40208200);
|
|
|
|
} else if (param.asInteger() == 0x02B20220) {
|
|
|
|
_soundResource1.play(0xC5408620);
|
|
|
|
} else if (param.asInteger() == 0x03020231) {
|
|
|
|
_soundResource1.play(0xD4C08010);
|
|
|
|
} else if (param.asInteger() == 0x67221A03) {
|
|
|
|
_soundResource1.play(0x44051000);
|
|
|
|
} else if (param.asInteger() == 0x2EAE0303) {
|
|
|
|
_soundResource1.play(0x03630300);
|
|
|
|
} else if (param.asInteger() == 0x61CE4467) {
|
|
|
|
_soundResource1.play(0x03630300);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420120() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420120))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x1C02B03D, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DAD0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41DAD0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
debug("Klayman::handleMessage41DAD0(%04X)", messageNum);
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x0D01B294) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x480B, 0, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x4924AAC4);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0A2AA8E0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420170() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420170))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x1C16B033, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DAD0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4200D0() {
|
|
|
|
if (!sub41CF10(AnimationCallback(&Klayman::sub4200D0))) {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x1CD89029, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DAD0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F250);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41CD00(int16 x) {
|
|
|
|
if (_x > x) {
|
|
|
|
if (_x - x <= 105) {
|
|
|
|
sub41CAC0(x);
|
|
|
|
} else {
|
|
|
|
sub41C930(x, false);
|
|
|
|
}
|
|
|
|
} else if (_x < x) {
|
|
|
|
sub41C930(x, false);
|
|
|
|
} else {
|
|
|
|
_x4 = x;
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41CC40(int16 x1, int16 x2) {
|
|
|
|
if (_x > x1) {
|
|
|
|
if (_x == x1 + x2) {
|
|
|
|
_x4 = x1 + x2;
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
} else if (_x < x1 + x2) {
|
|
|
|
sub41CAC0(x1 + x2);
|
|
|
|
} else {
|
|
|
|
sub41C930(x1 + x2, false);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_x == x1 - x2) {
|
|
|
|
_x4 = x1 - x2;
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
} else if (_x > x1 - x2) {
|
|
|
|
sub41CAC0(x1 - x2);
|
|
|
|
} else {
|
|
|
|
sub41C930(x1 - x2, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41CAC0(int16 x) {
|
|
|
|
debug("Klayman::sub41CAC0(%d)", x);
|
|
|
|
int16 xdiff = ABS(x - _x);
|
|
|
|
if (x == _x) {
|
|
|
|
_x4 = x;
|
|
|
|
if (!_flagE1 && !_flagE2 && !_flagE3) {
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
} else if (xdiff <= 36 && !_flagE1 && !_flagE2 && !_flagE3) {
|
|
|
|
_x4 = x;
|
|
|
|
setCallback2(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
} else if (xdiff <= 42 && _status3 != 3) {
|
|
|
|
if (_flagE2 && ((!_doDeltaX && x - _x > 0) || (_doDeltaX && x - _x < 0)) && ABS(_x4 - _x) > xdiff) {
|
|
|
|
_x4 = x;
|
|
|
|
} else {
|
|
|
|
_x4 = x;
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FB40));
|
|
|
|
}
|
|
|
|
} else if (_flagE3 && ((!_doDeltaX && x - _x > 0) || (_doDeltaX && x - _x < 0))) {
|
|
|
|
_x4 = x;
|
|
|
|
} else {
|
|
|
|
_x4 = x;
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FBC0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FBC0() {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE3 = true;
|
|
|
|
_flagE5 = true;
|
|
|
|
setDoDeltaX(_x4 >= _x);
|
|
|
|
setFileHash(0x08B28116, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DF10);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F780);
|
|
|
|
setCallback1(AnimationCallback(&Klayman::sub41FC30));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41FC30() {
|
|
|
|
_flagE3 = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F780() {
|
|
|
|
int16 xdiff = _x4 - _x;
|
|
|
|
|
|
|
|
if (_doDeltaX) {
|
|
|
|
_deltaX = -_deltaX;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_frameIndex == 7) {
|
|
|
|
_deltaX = xdiff;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((xdiff > 0 && xdiff > _deltaX) || (xdiff < 0 && xdiff < _deltaX))
|
|
|
|
xdiff = _deltaX;
|
|
|
|
|
|
|
|
_deltaX = 0;
|
|
|
|
|
|
|
|
if (_x != _x4) {
|
|
|
|
HitRect *hitRectPrev = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
_x += xdiff;
|
|
|
|
if (_field114) {
|
2011-07-13 18:38:40 +00:00
|
|
|
error("// TODO Klayman_sub_41CF70();");
|
|
|
|
// TODO Klayman_sub_41CF70();
|
2011-07-10 18:21:48 +00:00
|
|
|
} else {
|
|
|
|
HitRect *hitRectNext = _vm->_collisionMan->findHitRectAtPos(_x, _y);
|
|
|
|
if (hitRectNext->type == 0x5002) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (hitRectNext->rect.x2 - _x) / 2);
|
|
|
|
} else if (hitRectNext->type == 0x5003) {
|
|
|
|
_y = MAX<int16>(hitRectNext->rect.y1, hitRectNext->rect.y2 - (_x - hitRectNext->rect.x1) / 2);
|
|
|
|
} else if (hitRectPrev->type == 0x5002) {
|
|
|
|
if (xdiff > 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
} else if (hitRectPrev->type == 0x5003) {
|
|
|
|
if (xdiff < 0) {
|
|
|
|
_y = hitRectPrev->rect.y2;
|
|
|
|
} else {
|
|
|
|
_y = hitRectPrev->rect.y1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
processDelta();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41DF10(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
debug("Klayman::handleMessage41DF10(%04X)", messageNum);
|
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x4924AAC4);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0A2AA8E0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x3002:
|
|
|
|
_x = _x4;
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
2011-07-11 09:37:00 +00:00
|
|
|
void Klayman::sub420870() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0xD820A114, 0, 10);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4208B0() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0xD820A114, 30, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4208F0() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x9B250AD2, 0, 7);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EEF0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41EEF0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
debug("Klayman::handleMessage41EEF0(%04X)", messageNum);
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x4924AAC4);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0A2AA8E0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420930() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x98F88391, 4, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41EEF0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420830() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0xD820A114, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
2011-07-13 18:38:40 +00:00
|
|
|
void Klayman::sub41FC40() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0xAC20C012, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E3C0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E3C0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x1008:
|
|
|
|
debug("case 0x1008");
|
|
|
|
#if 0 // TODO
|
|
|
|
if (_frameIndex < getHashListIndexByString("SpeedUp")) {
|
|
|
|
setFileHash(0xAC20C012, getHashListIndexByString("SpeedUp"), -1)
|
|
|
|
_y = 435;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return handleMessage41D480(messageNum, param, sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420210() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420210))) {
|
|
|
|
_status2 = 0;
|
|
|
|
setFileHash(0xD82890BA, 0, -1);
|
|
|
|
sub4201C0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4201C0() {
|
|
|
|
_flagE5 = false;
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D790);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
SetAnimationCallback3(&Klayman::sub420340);
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41D790(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x168050A0) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x4806, 0, this);
|
|
|
|
}
|
|
|
|
_flagE5 = true;
|
|
|
|
} else if (param.asInteger() == 0x320AC306) {
|
|
|
|
_soundResource1.play(0x5860C640);
|
|
|
|
} else if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::spriteUpdate41F230() {
|
|
|
|
AnimatedSprite::updateDeltaXY();
|
|
|
|
_x4 = _x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420340() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x4829E0B8, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420250() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420250))) {
|
|
|
|
_status2 = 0;
|
|
|
|
setFileHash(0x900980B2, 0, -1);
|
|
|
|
sub4201C0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420290() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420290))) {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0xBA1910B2, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D880);
|
|
|
|
SetAnimationCallback3(&Klayman::sub420380);
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41D880(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x168050A0) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x4806, 0, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x320AC306) {
|
|
|
|
_soundResource1.play(0x5860C640);
|
|
|
|
} else if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420380() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x4A293FB0, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DAA0);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41DAA0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
if (messageNum == 0x1008) {
|
|
|
|
sub4203C0();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return handleMessage41D360(messageNum, param, sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4203C0() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x4807, 0, this);
|
|
|
|
_attachedSprite = NULL;
|
|
|
|
}
|
|
|
|
setFileHash(0xB869A4B9, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420300() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420300))) {
|
|
|
|
_status2 = 0;
|
|
|
|
setFileHash(0xB8699832, 0, -1);
|
|
|
|
sub4201C0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub41CCE0(int16 x) {
|
|
|
|
sub41CC40(((Sprite*)_attachedSprite)->getX(), x);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420970() {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = true;
|
|
|
|
_statusE0 = 3;
|
|
|
|
setFileHash2(0x3A292504, 0x01084280, 0);
|
|
|
|
_fileHash4 = 0x01084280;
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4209D0() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub4209D0))) {
|
|
|
|
_status2 = 0;
|
|
|
|
if (_y4 < _y) {
|
|
|
|
if (_statusE0 == 1) {
|
|
|
|
_statusE0 = 2;
|
|
|
|
sub420BC0();
|
|
|
|
} else {
|
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
} else if (_statusE0 == 0) {
|
|
|
|
_statusE0 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x122D1505, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E0D0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else if (_statusE0 == 3) {
|
|
|
|
_statusE0 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash2(0x122D1505, 0x01084280, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E0D0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else if (_statusE0 == 1) {
|
|
|
|
_statusE0 = 2;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x122D1505, 29 - _frameIndex, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420BC0() {
|
|
|
|
_status2 = 2;
|
|
|
|
if (_statusE0 == 1) {
|
|
|
|
_statusE0 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash2(0x3A292504, 0x02421405, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DFD0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else if (_statusE0 == 1) {
|
|
|
|
_statusE0 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash2(0x122D1505, 0x02421405, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41DFD0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else {
|
|
|
|
sub41C7B0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41DFD0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x489B025C) {
|
|
|
|
_soundResource1.play(0x52C4C2D7);
|
|
|
|
} else if (param.asInteger() == 0x400A0E64) {
|
|
|
|
_soundResource1.play(0x50E081D9);
|
|
|
|
} else if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E0D0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x01084280) {
|
|
|
|
_flagE5 = true;
|
|
|
|
} else if (param.asInteger() == 0x489B025C) {
|
|
|
|
_soundResource1.play(0x52C4C2D7);
|
|
|
|
} else if (param.asInteger() == 0x400A0E64) {
|
|
|
|
_soundResource1.play(0x50E081D9);
|
|
|
|
} else if (param.asInteger() == 0x02421405) {
|
|
|
|
if (_statusE0 == 1) {
|
|
|
|
setFileHash2(0x3A292504, 0x01084280, 0);
|
|
|
|
} else {
|
|
|
|
setFileHash2(0x122D1505, 0x01084280, 0);
|
|
|
|
}
|
|
|
|
if (_statusE0 == 1) {
|
|
|
|
if (_y4 >= _y - 30) {
|
|
|
|
sendMessage(0x1019, 0, this);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_y4 <= _y) {
|
|
|
|
sendMessage(0x1019, 0, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420AD0() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420AD0))) {
|
|
|
|
_status2 = 0;
|
|
|
|
if (_y4 >= _y - 30) {
|
|
|
|
sub41C7B0();
|
|
|
|
} else if (_statusE0 == 0) {
|
|
|
|
_statusE0 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x3A292504, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E0D0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else if (_statusE0 == 3) {
|
|
|
|
_statusE0 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash2(0x3A292504, 0x01084280, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E0D0);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
} else if (_statusE0 == 2) {
|
|
|
|
_statusE0 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x3A292504, 29 - _frameIndex, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub421030() {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash2(0xF229C003, 0x14884392, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E490);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E490(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x80C110B5) {
|
|
|
|
_parentScene->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x110010D1) {
|
|
|
|
_parentScene->sendMessage(0x482B, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x32180101) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x48498E46);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
if (_soundFlag) {
|
|
|
|
_soundResource1.play(0x50399F64);
|
|
|
|
} else {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420FE0() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub420FE0))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0xF229C003, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E490);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub4210C0() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub4210C0))) {
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash2(0xCA221107, 0x8520108C, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E490);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub421070() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&Klayman::sub421070))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0xCA221107, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E490);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F230);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Klayman::sub420420() {
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash(0x18118554, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41E290);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Klayman::handleMessage41E290(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x320AC306) {
|
|
|
|
_soundResource1.play(0x5860C640);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
//##############################################################################
|
|
|
|
|
2011-07-11 18:47:03 +00:00
|
|
|
// KmScene1001
|
|
|
|
|
|
|
|
KmScene1001::KmScene1001(NeverhoodEngine *vm, Entity *parentScene, int16 x, int16 y)
|
|
|
|
: Klayman(vm, parentScene, x, y, 1000, 1000) {
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1001::xHandleMessage(int messageNum, const MessageParam ¶m) {
|
|
|
|
debug("KmScene1001::xHandleMessage() messageNum = %04X", messageNum);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x4001:
|
|
|
|
case 0x4800:
|
|
|
|
sub41C930(param.asPoint().x, false);
|
|
|
|
break;
|
|
|
|
case 0x4004:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FC80));
|
|
|
|
break;
|
|
|
|
case 0x4804:
|
|
|
|
if (param.asInteger() == 2) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4211B0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x480D:
|
|
|
|
setCallback2(AnimationCallback(&KmScene1001::sub44FA50));
|
|
|
|
break;
|
|
|
|
case 0x4812:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FF80));
|
|
|
|
break;
|
|
|
|
case 0x4816:
|
|
|
|
if (param.asInteger() == 1) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420120));
|
|
|
|
} else if (param.asInteger() == 2) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420170));
|
|
|
|
}else {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4200D0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x4817:
|
|
|
|
setDoDeltaX(param.asInteger());
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x481B:
|
|
|
|
// TODO: It's not really a point but an x1/x2 pair
|
|
|
|
if (param.asPoint().x != 0) {
|
|
|
|
sub41CC40(param.asPoint().x, param.asPoint().y);
|
|
|
|
} else {
|
2011-07-13 18:38:40 +00:00
|
|
|
sub41CCE0(param.asPoint().y);
|
2011-07-11 18:47:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x481F:
|
|
|
|
if (param.asInteger() == 0) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420870));
|
|
|
|
} else if (param.asInteger() == 1) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4208B0));
|
|
|
|
} else if (param.asInteger() == 3) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4208F0));
|
|
|
|
} else if (param.asInteger() == 4) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420930));
|
|
|
|
} else {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420830));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x482D:
|
|
|
|
setDoDeltaX(_x > (int16)param.asInteger());
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x4836:
|
|
|
|
if (param.asInteger() == 1) {
|
|
|
|
_parentScene->sendMessage(0x2002, 0, this);
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4211F0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x483F:
|
|
|
|
sub41CD00(param.asInteger());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x4840:
|
|
|
|
sub41CD70(param.asInteger());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1001::sub44FA50() {
|
|
|
|
if (!sub41CEB0(AnimationCallback(&KmScene1001::sub44FA50))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x00648953, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1001::handleMessage44FA00);
|
|
|
|
SetSpriteCallback(&AnimatedSprite::updateDeltaXY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1001::handleMessage44FA00(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
debug("KmScene1001::handleMessage44FA00(%04X)", messageNum);
|
|
|
|
uint32 messageResult = Klayman::handleMessage41E210(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x480F, 0, this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
2011-07-13 18:38:40 +00:00
|
|
|
// KmScene1002
|
|
|
|
|
|
|
|
KmScene1002::KmScene1002(NeverhoodEngine *vm, Entity *parentScene, Sprite *class599, Sprite *ssLadderArch, int16 x, int16 y)
|
|
|
|
: Klayman(vm, parentScene, x, y, 1000, 1000), _class599(class599), _ssLadderArch(ssLadderArch), _otherSprite(NULL),
|
|
|
|
_status(0) {
|
|
|
|
|
|
|
|
setKlaymanTable1();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::xUpdate() {
|
|
|
|
if (_x >= 250 && _x <= 435 && _y >= 420) {
|
|
|
|
if (_status == 0) {
|
|
|
|
// TODO setKlaymanTable(stru_4B44C8);
|
|
|
|
_status = 1;
|
|
|
|
}
|
|
|
|
} else if (_status == 1) {
|
|
|
|
setKlaymanTable1();
|
|
|
|
_status = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::xHandleMessage(int messageNum, const MessageParam ¶m) {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::xHandleMessage(%04X)", messageNum);
|
|
|
|
if (messageNum == 0x100D)
|
|
|
|
debug("-> %08X", param.asInteger());
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x2001:
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub449E90));
|
|
|
|
break;
|
|
|
|
case 0x2007:
|
|
|
|
_otherSprite = (Sprite*)param.asEntity();
|
|
|
|
break;
|
|
|
|
case 0x4001:
|
|
|
|
case 0x4800:
|
|
|
|
sub41C930(param.asPoint().x, false);
|
|
|
|
break;
|
|
|
|
case 0x4004:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FC80));
|
|
|
|
break;
|
|
|
|
case 0x4803:
|
|
|
|
if (param.asInteger() == 1) {
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub44A250));
|
|
|
|
} else if (param.asInteger() == 2) {
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub44A2C0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x4804:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub41FC40));
|
|
|
|
break;
|
|
|
|
case 0x4805:
|
|
|
|
switch (param.asInteger()) {
|
|
|
|
case 1:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420210));
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420250));
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420290));
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420300));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x480A:
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub44A3E0));
|
|
|
|
break;
|
|
|
|
case 0x480D:
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub449E20));
|
|
|
|
break;
|
|
|
|
case 0x4816:
|
|
|
|
if (param.asInteger() == 0) {
|
|
|
|
setCallback2(AnimationCallback(&KmScene1002::sub44A330));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x4817:
|
|
|
|
setDoDeltaX(param.asInteger());
|
|
|
|
sub41C7B0();
|
|
|
|
break;
|
|
|
|
case 0x481B:
|
|
|
|
sub41CCE0(param.asInteger());
|
|
|
|
break;
|
|
|
|
case 0x4820:
|
|
|
|
_parentScene->sendMessage(0x2005, 0, this);
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420970));
|
|
|
|
break;
|
|
|
|
case 0x4821:
|
|
|
|
_parentScene->sendMessage(0x2005, 0, this);
|
|
|
|
_y4 = param.asInteger();
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4209D0));
|
|
|
|
break;
|
|
|
|
case 0x4822:
|
|
|
|
_parentScene->sendMessage(0x2005, 0, this);
|
|
|
|
_y4 = param.asInteger();
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420AD0));
|
|
|
|
break;
|
|
|
|
case 0x4823:
|
|
|
|
_parentScene->sendMessage(0x2006, 0, this);
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420BC0));
|
|
|
|
break;
|
|
|
|
case 0x482E:
|
|
|
|
if (param.asInteger() == 1) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub421030));
|
|
|
|
} else {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub420FE0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x482F:
|
|
|
|
if (param.asInteger() == 1) {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub4210C0));
|
|
|
|
} else {
|
|
|
|
setCallback2(AnimationCallback(&Klayman::sub421070));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x483F:
|
|
|
|
sub41CD00(param.asInteger());
|
|
|
|
break;
|
|
|
|
case 0x4840:
|
|
|
|
sub41CD70(param.asInteger());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::update4497D0() {
|
|
|
|
debug("KmScene1002::update4497D0()");
|
|
|
|
Klayman::update();
|
|
|
|
if (_counter1 != 0 && (--_counter1 == 0)) {
|
|
|
|
_surface->setVisible(true);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449800(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x168050A0) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x480F, 0, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x586B0300) {
|
|
|
|
if (_otherSprite) {
|
|
|
|
_otherSprite->sendMessage(0x480E, 1, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x4AB28209) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage4498E0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x4811:
|
|
|
|
_soundResource1.play(0x5252A0E4);
|
|
|
|
setDoDeltaX(((Sprite*)sender)->isDoDeltaX() ? 1 : 0);
|
|
|
|
if (_doDeltaX) {
|
|
|
|
_x = ((Sprite*)sender)->getX() - 75;
|
|
|
|
} else {
|
|
|
|
_x = ((Sprite*)sender)->getX() + 75;
|
|
|
|
}
|
|
|
|
_y = ((Sprite*)sender)->getY() - 200;
|
|
|
|
|
|
|
|
debug("&&&&&&&&&&& param.asInteger() = %d", param.asInteger());
|
|
|
|
|
|
|
|
if (param.asInteger() == 0) {
|
|
|
|
sub449EF0();
|
|
|
|
} else if (param.asInteger() == 1) {
|
|
|
|
sub44A0D0();
|
|
|
|
} else if (param.asInteger() == 2) {
|
|
|
|
sub44A050();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449990(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x942D2081) {
|
|
|
|
_flagE5 = false;
|
|
|
|
_attachedSprite->sendMessage(0x2003, 0, this);
|
|
|
|
} else if (param.asInteger() == 0xDA600012) {
|
|
|
|
sub44A370();
|
|
|
|
} else if (param.asInteger() == 0x0D01B294) {
|
|
|
|
_flagE5 = false;
|
|
|
|
_attachedSprite->sendMessage(0x480B, 0, this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449A30(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x01084280) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_attachedSprite->sendMessage(0x480B, (uint32)_doDeltaX, this);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x02421405) {
|
|
|
|
if (_flagE4) {
|
|
|
|
if (_attachedSprite) {
|
|
|
|
if (_attachedSprite->sendMessage(0x480C, (uint32)_doDeltaX, this) != 0) {
|
|
|
|
sub44A460();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449BA0);
|
|
|
|
}
|
|
|
|
} else if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x480A:
|
|
|
|
_flagE4 = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return handleMessage41D480(messageNum, param, sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449BA0(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x4AB28209) {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x88001184) {
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
} else if (param.asInteger() == 0x32180101) {
|
|
|
|
_soundResource1.play(0x405002D8);
|
|
|
|
} else if (param.asInteger() == 0x0A2A9098) {
|
|
|
|
_soundResource1.play(0x0460E2FA);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449C90(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
uint32 messageResult = handleMessage41D480(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x1008:
|
|
|
|
debug("case 0x1008");
|
|
|
|
#if 0 // TODO
|
|
|
|
if (_frameIndex < getHashListIndexByString("SpeedUp")) {
|
|
|
|
setFileHash(0x35AA8059, getHashListIndexByString("SpeedUp"), -1)
|
|
|
|
_y = 435;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
messageResult = 0;
|
|
|
|
break;
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x1A1A0785) {
|
|
|
|
_soundResource1.play(0x40F0A342);
|
|
|
|
} else if (param.asInteger() == 0x60428026) {
|
|
|
|
_soundResource1.play(0x40608A59);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 KmScene1002::handleMessage449D60(int messageNum, const MessageParam ¶m, Entity *sender) {
|
|
|
|
//ok
|
|
|
|
uint32 messageResult = handleMessage41D360(messageNum, param, sender);
|
|
|
|
switch (messageNum) {
|
|
|
|
case 0x100D:
|
|
|
|
if (param.asInteger() == 0x1307050A) {
|
|
|
|
_soundResource1.play(0x40428A09);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return messageResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::spriteUpdate449DC0() {
|
|
|
|
debug("KmScene1002::spriteUpdate449DC0()");
|
|
|
|
AnimatedSprite::updateDeltaXY();
|
|
|
|
HitRect *hitRect = _vm->_collisionMan->findHitRectAtPos(_x, _y + 10);
|
|
|
|
debug("$$$ hitRect->type = %04X", hitRect->type);
|
|
|
|
if (hitRect->type == 0x5001) {
|
|
|
|
_y = hitRect->rect.y1;
|
|
|
|
processDelta();
|
|
|
|
sendMessage(0x1019, 0, this);
|
|
|
|
}
|
|
|
|
_vm->_collisionMan->checkCollision(this, 0xFFFF, 0x4810, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub449E20() {
|
|
|
|
debug("KmScene1002::sub449E20()");
|
|
|
|
if (!sub41CEB0(AnimationCallback(&KmScene1002::sub449E20))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x584984B4, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetSpriteCallback(&AnimatedSprite::updateDeltaXY);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449800);
|
|
|
|
SetAnimationCallback3(&Klayman::sub420420);
|
|
|
|
_attachedSprite->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub449E90() {
|
|
|
|
debug("KmScene1002::sub449E90()");
|
|
|
|
_soundResource1.play(0x56548280);
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
_surface->setVisible(false);
|
|
|
|
setFileHash(0x5420E254, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage4498E0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub449EF0() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub449EF0()");
|
|
|
|
_counter1 = 1;
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x000BAB02, 0, -1);
|
|
|
|
SetUpdateHandler(&KmScene1002::update4497D0);
|
|
|
|
|
|
|
|
// Weird stuff happening
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
//SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
|
|
|
|
SetSpriteCallback(&KmScene1002::spriteUpdate449DC0);
|
|
|
|
SetAnimationCallback3(&KmScene1002::sub449F70);
|
|
|
|
_class599->sendMessage(0x482A, 0, this);
|
|
|
|
_ssLadderArch->sendMessage(0x482A, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub449F70() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub449F70()");
|
|
|
|
_parentScene->sendMessage(0x1024, 1, this);
|
|
|
|
_soundResource1.play(0x41648271);
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
_flagE1 = false;
|
|
|
|
setFileHash2(0x000BAB02, 0x88003000, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage41D480);
|
|
|
|
SetAnimationCallback3(&KmScene1002::sub44A230);
|
|
|
|
_parentScene->sendMessage(0x2002, 0, this);
|
|
|
|
// TODO _callbackList = NULL;
|
|
|
|
_attachedSprite = NULL;
|
|
|
|
_class599->sendMessage(0x482B, 0, this);
|
|
|
|
_ssLadderArch->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A050() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A050()");
|
|
|
|
_counter1 = 1;
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x9308C132, 0, -1);
|
|
|
|
SetUpdateHandler(&KmScene1002::update4497D0);
|
|
|
|
SetSpriteCallback(&KmScene1002::spriteUpdate449DC0);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D480);
|
|
|
|
SetAnimationCallback3(&KmScene1002::sub449F70);
|
|
|
|
_class599->sendMessage(0x482A, 0, this);
|
|
|
|
_ssLadderArch->sendMessage(0x482A, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A0D0() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A0D0()");
|
|
|
|
_counter1 = 1;
|
|
|
|
_status2 = 0;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x0013A206, 0, -1);
|
|
|
|
SetUpdateHandler(&KmScene1002::update4497D0);
|
|
|
|
SetMessageHandler(&Klayman::handleMessage41D360);
|
|
|
|
SetSpriteCallback(&KmScene1002::spriteUpdate449DC0);
|
|
|
|
SetAnimationCallback3(&KmScene1002::sub44A150);
|
|
|
|
_class599->sendMessage(0x482A, 0, this);
|
|
|
|
_ssLadderArch->sendMessage(0x482A, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A150() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A150()");
|
|
|
|
_parentScene->sendMessage(0x1024, 1, this);
|
|
|
|
_soundResource1.play(0x41648271);
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
_flagE1 = false;
|
|
|
|
setFileHash2(0x0013A206, 0x88003000, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage41D480);
|
|
|
|
SetSpriteCallback(NULL);
|
|
|
|
SetAnimationCallback3(&KmScene1002::sub44A230);
|
|
|
|
_parentScene->sendMessage(0x2002, 0, this);
|
|
|
|
// TODO _callbackList = NULL;
|
|
|
|
_attachedSprite = NULL;
|
|
|
|
_class599->sendMessage(0x482B, 0, this);
|
|
|
|
_ssLadderArch->sendMessage(0x482B, 0, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A230() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A230()");
|
|
|
|
setDoDeltaX(2);
|
|
|
|
sub41FC80();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A250() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A250()");
|
|
|
|
if (!sub41CEB0(AnimationCallback(&KmScene1002::sub44A250))) {
|
|
|
|
_parentScene->sendMessage(0x1024, 3, this);
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0xB93AB151, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449D60);
|
|
|
|
SetSpriteCallback(&KmScene1002::spriteUpdate449DC0);
|
|
|
|
SetAnimationCallback3(&Klayman::sub420420);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A2C0() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A2C0()");
|
|
|
|
if (_attachedSprite) {
|
|
|
|
_x = ((Sprite*)_attachedSprite)->getX();
|
|
|
|
_attachedSprite->sendMessage(0x4807, 0, this);
|
|
|
|
_attachedSprite = NULL;
|
|
|
|
}
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x586984B1, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage41D360);
|
|
|
|
SetSpriteCallback(&KmScene1002::spriteUpdate449DC0);
|
|
|
|
SetAnimationCallback3(&Klayman::sub420420);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A330() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A330()");
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE5 = true;
|
|
|
|
setDoDeltaX(0);
|
|
|
|
setFileHash(0x1CD89029, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449990);
|
|
|
|
SetSpriteCallback(&Klayman::spriteUpdate41F250);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A370() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A370()");
|
|
|
|
_status2 = 1;
|
|
|
|
_flagE5 = false;
|
|
|
|
setFileHash(0x35AA8059, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449C90);
|
|
|
|
SetSpriteCallback(&AnimatedSprite::updateDeltaXY);
|
|
|
|
setCallback1(AnimationCallback(&KmScene1002::sub44A3C0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A3C0() {
|
|
|
|
debug("KmScene1002::sub44A3C0()");
|
|
|
|
_parentScene->sendMessage(0x1024, 1, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A3E0() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A3E0()");
|
|
|
|
if (!sub41CEB0(AnimationCallback(&KmScene1002::sub44A3E0))) {
|
|
|
|
_status2 = 2;
|
|
|
|
_flagE4 = false;
|
|
|
|
_flagE5 = true;
|
|
|
|
setDoDeltaX(((Sprite*)_attachedSprite)->getX() < _x ? 1 : 0);
|
|
|
|
setFileHash(0x5C01A870, 0, -1);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449A30);
|
|
|
|
SetSpriteCallback(&AnimatedSprite::updateDeltaXY);
|
|
|
|
setCallback1(AnimationCallback(&KmScene1002::sub44A4B0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A460() {
|
|
|
|
//ok
|
|
|
|
debug("KmScene1002::sub44A460()");
|
|
|
|
_flagE4 = false;
|
|
|
|
_flagE5 = true;
|
|
|
|
setFileHash2(0x5C01A870, 0x01084280, 0);
|
|
|
|
SetUpdateHandler(&Klayman::update);
|
|
|
|
SetMessageHandler(&KmScene1002::handleMessage449A30);
|
|
|
|
SetSpriteCallback(&AnimatedSprite::updateDeltaXY);
|
|
|
|
setCallback1(AnimationCallback(&KmScene1002::sub44A4B0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void KmScene1002::sub44A4B0() {
|
|
|
|
_attachedSprite->sendMessage(0x482A, 0, this);
|
|
|
|
}
|
2011-07-11 18:47:03 +00:00
|
|
|
|
2011-07-07 17:26:22 +00:00
|
|
|
} // End of namespace Neverhood
|