2024-01-24 21:16:29 -05:00
|
|
|
#include "skateboard.h"
|
2023-10-07 11:30:04 -04:00
|
|
|
|
2023-09-10 08:01:39 -04:00
|
|
|
#include "decomp.h"
|
2024-04-28 07:23:29 -04:00
|
|
|
#include "isle_actions.h"
|
|
|
|
#include "legoutils.h"
|
|
|
|
#include "misc.h"
|
2024-03-09 15:07:52 -05:00
|
|
|
#include "mxmisc.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "mxnotificationmanager.h"
|
2024-04-28 07:23:29 -04:00
|
|
|
#include "pizza.h"
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
DECOMP_SIZE_ASSERT(SkateBoard, 0x168)
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000fd40
|
2023-06-29 04:10:08 -04:00
|
|
|
SkateBoard::SkateBoard()
|
|
|
|
{
|
2024-04-28 07:23:29 -04:00
|
|
|
m_unk0x160 = 0;
|
|
|
|
m_unk0x13c = 15.0;
|
|
|
|
m_unk0x150 = 3.5;
|
|
|
|
m_unk0x148 = 1;
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
NotificationManager()->Register(this);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-04-28 07:23:29 -04:00
|
|
|
// FUNCTION: LEGO1 0x1000ff80
|
|
|
|
SkateBoard::~SkateBoard()
|
|
|
|
{
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
NotificationManager()->Unregister(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10010000
|
2024-01-20 18:04:46 -05:00
|
|
|
MxResult SkateBoard::Create(MxDSAction& p_dsAction)
|
|
|
|
{
|
2024-04-28 07:23:29 -04:00
|
|
|
MxResult result = IslePathActor::Create(p_dsAction);
|
|
|
|
|
|
|
|
if (result == SUCCESS) {
|
|
|
|
m_world = CurrentWorld();
|
|
|
|
m_world->Add(this);
|
|
|
|
// The type `Pizza` is an educated guesss, inferred from VTable0xe4() below
|
|
|
|
Pizza* findResult = (Pizza*) CurrentWorld()->Find(*g_isleScript, IsleScript::c_Pizza_Actor);
|
|
|
|
if (findResult) {
|
|
|
|
findResult->SetUnknown0x84((undefined*) this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-04-28 07:23:29 -04:00
|
|
|
// FUNCTION: LEGO1 0x10010050
|
2024-01-20 18:04:46 -05:00
|
|
|
void SkateBoard::VTable0xe4()
|
|
|
|
{
|
2024-04-28 07:23:29 -04:00
|
|
|
// TODO: Work out what kind of structure this points to
|
|
|
|
if (*(int*) (m_unk0x164 + 0x18) == 3) {
|
|
|
|
Pizza* pizza = (Pizza*) CurrentWorld()->Find(*g_isleScript, IsleScript::c_Pizza_Actor);
|
|
|
|
pizza->FUN_10038380();
|
|
|
|
pizza->FUN_100382b0();
|
|
|
|
m_unk0x160 = 0;
|
|
|
|
}
|
|
|
|
IslePathActor::VTable0xe4();
|
|
|
|
GameState()->m_currentArea = LegoGameState::Area::e_skateboard;
|
|
|
|
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_SkateArms_Ctl);
|
|
|
|
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_SkatePizza_Bitmap);
|
|
|
|
ControlManager()->Unregister(this);
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100100e0
|
|
|
|
MxU32 SkateBoard::VTable0xcc()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-04-28 07:23:29 -04:00
|
|
|
// FUNCTION: LEGO1 0x10010230
|
2024-01-28 16:09:33 -05:00
|
|
|
MxU32 SkateBoard::VTable0xd4(LegoControlManagerEvent& p_param)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
2024-04-28 07:23:29 -04:00
|
|
|
MxU32 result = 0;
|
|
|
|
|
|
|
|
if (p_param.GetUnknown0x28() == 1 && p_param.GetClickedObjectId() == 0xc3) {
|
|
|
|
VTable0xe4();
|
|
|
|
GameState()->m_currentArea = LegoGameState::Area::e_unk66;
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100104f0
|
|
|
|
MxU32 SkateBoard::VTable0xd0()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
2024-03-17 13:01:47 -04:00
|
|
|
|
|
|
|
// STUB: LEGO1 0x10010510
|
|
|
|
void SkateBoard::FUN_10010510()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|