mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
implement RegistrationBook::Notify (#559)
* implement RegistrationBook::Notify * Update registrationbook.cpp * Fixes * Change type --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
parent
5bba81c0ca
commit
6d3ce3b5cb
2 changed files with 84 additions and 3 deletions
|
@ -4,11 +4,30 @@
|
||||||
#include "legoworld.h"
|
#include "legoworld.h"
|
||||||
|
|
||||||
class InfocenterState;
|
class InfocenterState;
|
||||||
|
class MxEndActionNotificationParam;
|
||||||
|
class LegoControlManagerEvent;
|
||||||
|
|
||||||
// VTABLE: LEGO1 0x100d9928
|
// VTABLE: LEGO1 0x100d9928
|
||||||
// SIZE 0x2d0
|
// SIZE 0x2d0
|
||||||
class RegistrationBook : public LegoWorld {
|
class RegistrationBook : public LegoWorld {
|
||||||
public:
|
public:
|
||||||
|
enum RegistrationBookScript {
|
||||||
|
c_alphabetCtl = 5,
|
||||||
|
c_aBitmap = 6,
|
||||||
|
c_backgroundBitmap = 36,
|
||||||
|
c_checkHiLiteBitmap = 37,
|
||||||
|
c_check0ctl = 68,
|
||||||
|
c_check1ctl = 71,
|
||||||
|
c_check2ctl = 74,
|
||||||
|
c_check3ctl = 77,
|
||||||
|
c_check4ctl = 80,
|
||||||
|
c_check5ctl = 83,
|
||||||
|
c_check6ctl = 86,
|
||||||
|
c_check7ctl = 89,
|
||||||
|
c_check8ctl = 92,
|
||||||
|
c_check9ctl = 95,
|
||||||
|
};
|
||||||
|
|
||||||
RegistrationBook();
|
RegistrationBook();
|
||||||
~RegistrationBook() override; // vtable+0x00
|
~RegistrationBook() override; // vtable+0x00
|
||||||
|
|
||||||
|
@ -56,6 +75,11 @@ class RegistrationBook : public LegoWorld {
|
||||||
undefined4 m_unk0x2c4; // 0x2c4
|
undefined4 m_unk0x2c4; // 0x2c4
|
||||||
undefined4 m_unk0x2c8; // 0x2c8
|
undefined4 m_unk0x2c8; // 0x2c8
|
||||||
undefined4 m_unk0x2cc; // 0x2cc
|
undefined4 m_unk0x2cc; // 0x2cc
|
||||||
|
|
||||||
|
MxLong HandleEndAction(MxEndActionNotificationParam& p_param);
|
||||||
|
MxLong HandleKeyPress(MxS8 p_key);
|
||||||
|
MxLong HandleClick(LegoControlManagerEvent& p_param);
|
||||||
|
MxLong HandleNotification19(MxParam& p_param);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // REGISTRATIONBOOK_H
|
#endif // REGISTRATIONBOOK_H
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
#include "legogamestate.h"
|
#include "legogamestate.h"
|
||||||
#include "legoinputmanager.h"
|
#include "legoinputmanager.h"
|
||||||
#include "legoomni.h"
|
#include "legoomni.h"
|
||||||
|
#include "mxactionnotificationparam.h"
|
||||||
#include "mxnotificationmanager.h"
|
#include "mxnotificationmanager.h"
|
||||||
|
#include "mxtimer.h"
|
||||||
|
|
||||||
DECOMP_SIZE_ASSERT(RegistrationBook, 0x2d0)
|
DECOMP_SIZE_ASSERT(RegistrationBook, 0x2d0)
|
||||||
|
|
||||||
|
@ -56,11 +58,54 @@ MxResult RegistrationBook::Create(MxDSAction& p_dsAction)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// STUB: LEGO1 0x100770e0
|
// FUNCTION: LEGO1 0x100770e0
|
||||||
MxLong RegistrationBook::Notify(MxParam& p_param)
|
MxLong RegistrationBook::Notify(MxParam& p_param)
|
||||||
{
|
{
|
||||||
// TODO
|
MxLong result = 0;
|
||||||
|
LegoWorld::Notify(p_param);
|
||||||
|
|
||||||
|
if (m_worldStarted) {
|
||||||
|
switch (((MxNotificationParam&) p_param).GetType()) {
|
||||||
|
case c_notificationEndAction:
|
||||||
|
result = HandleEndAction((MxEndActionNotificationParam&) p_param);
|
||||||
|
break;
|
||||||
|
case c_notificationKeyPress:
|
||||||
|
m_unk0xf8 = Timer()->GetTime();
|
||||||
|
result = HandleKeyPress(((LegoEventNotificationParam&) p_param).GetKey());
|
||||||
|
break;
|
||||||
|
case c_notificationButtonDown:
|
||||||
|
m_unk0xf8 = Timer()->GetTime();
|
||||||
|
break;
|
||||||
|
case c_notificationClick:
|
||||||
|
result = HandleClick((LegoControlManagerEvent&) p_param);
|
||||||
|
break;
|
||||||
|
case c_notificationType19:
|
||||||
|
result = HandleNotification19(p_param);
|
||||||
|
break;
|
||||||
|
case c_notificationTransitioned:
|
||||||
|
GameState()->SwitchArea(LegoGameState::e_infomain);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// STUB: LEGO1 0x10077210
|
||||||
|
MxLong RegistrationBook::HandleEndAction(MxEndActionNotificationParam& p_param)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// STUB: LEGO1 0x100772d0
|
||||||
|
MxLong RegistrationBook::HandleKeyPress(MxS8 p_key)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// STUB: LEGO1 0x100774a0
|
||||||
|
MxLong RegistrationBook::HandleClick(LegoControlManagerEvent& p_param)
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,7 +118,13 @@ void RegistrationBook::ReadyWorld()
|
||||||
// STUB: LEGO1 0x10077fd0
|
// STUB: LEGO1 0x10077fd0
|
||||||
MxResult RegistrationBook::Tickle()
|
MxResult RegistrationBook::Tickle()
|
||||||
{
|
{
|
||||||
// TODO
|
if (!m_worldStarted) {
|
||||||
|
LegoWorld::Tickle();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,6 +144,12 @@ void RegistrationBook::Enable(MxBool p_enable)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// STUB: LEGO1 0x100781d0
|
||||||
|
MxLong RegistrationBook::HandleNotification19(MxParam& p_param)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x100783e0
|
// FUNCTION: LEGO1 0x100783e0
|
||||||
MxBool RegistrationBook::VTable0x64()
|
MxBool RegistrationBook::VTable0x64()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue