mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
* Implement/match LegoPathActor::ParseAction (#946) * Implement/match LegoPathActor::ParseAction * Fix naming * Space * Implement/match Isle::UpdateGlobe (#947) * Implement/match Isle::UpdateGlobe * Change function access * Implement/match Isle::CreateState and related (#948) * Implement/match actor Create functions (#949) * Implement/match Isle::Escape (#950) * Implement/match Isle::FUN_10033350 (#951) * Implement/match Isle::HandleType19Notification (#952) * Implement/match Isle::HandleType19Notification * Fix * Implement/match LegoAnimationManager::FUN_10063b90 (#953) * Implement/match LegoAnimationManager::FUN_100648f0 (#954) * Implement LegoROI::FUN_100a9410 (#955) * WIP * WIP * Remove space * Fix * Implement/match LegoExtraActor::VTable0x6c (#956) * Match LegoUnknown::FUN_1009a1e0 (#957) * Fix extra actor collisions (#958) * Implement/match IslePathActor::FUN_1001b660 (#960) * Refactor MxBitmap (again) (#961) * Remove this * Starting list of beta addrs * Static for height-specific abs, fix StrechBits * MxBitmap refactor * Implement/match LegoPathBoundary::FUN_100586e0 and FUN_10057fe0 (#962) * Implement/match LegoAnimPresenter::FUN_1006b140 (#963) * Implement LegoMeterPresenter::DrawMeter (#964) * Implement LegoMeterPresenter::DrawMeter * New MxRect16 header, offsets and size annotations * Missing mxtypes include * Implement/match LegoAnimationManager::FUN_10063270 (#965) * Implement/match LegoAnimMMPresenter::FUN_1004b840 (#966) * Implement/match LegoAnimationManager::FUN_10062e20 (#967) * Beta match MxPalette (#968) * Beta match MxPalette * Modern compiler fix * Implement/match LegoCameraController::FUN_10012290 and FUN_10012320 (#969) * Implement/match LegoControlManager::FUN_100293c0 (#970) * Implement/match Pizzeria::HandleClick (#971) * Implement/match Lego3DWavePresenter::StartingTickle (#972) * Implement/match Lego3DWavePresenter::StartingTickle * Fix annotation * Add StreamingTickle * Rename * Add static HandlerClassName function (#973) * Add static HandlerClassName function * Use method in PresenterNameDispatch --------- Co-authored-by: disinvite@users.noreply.github.com <disinvite@users.noreply.github.com>
68 lines
2.1 KiB
C++
68 lines
2.1 KiB
C++
#ifndef MXNOTIFICATIONPARAM_H
|
|
#define MXNOTIFICATIONPARAM_H
|
|
|
|
#include "compat.h"
|
|
#include "mxparam.h"
|
|
#include "mxtypes.h"
|
|
|
|
class MxCore;
|
|
|
|
// Several of those should be defined in LegoOmni
|
|
enum NotificationId {
|
|
c_notificationType0 = 0,
|
|
c_notificationStartAction = 1, // 100dc210:100d8350
|
|
c_notificationEndAction = 2, // 100d8358:100d8350
|
|
c_notificationType4 = 4, // 100dc208:100d8350
|
|
c_notificationPresenter = 5,
|
|
c_notificationStreamer = 6, // 100dc760
|
|
c_notificationKeyPress = 7, // 100d6aa0
|
|
c_notificationButtonUp = 8, // 100d6aa0
|
|
c_notificationButtonDown = 9, // 100d6aa0
|
|
c_notificationMouseMove = 10, // 100d6aa0
|
|
c_notificationClick = 11, // 100d6aa0
|
|
c_notificationDragEnd = 12,
|
|
c_notificationDragStart = 13,
|
|
c_notificationDrag = 14,
|
|
c_notificationTimer = 15, // 100d6aa0
|
|
c_notificationControl = 17,
|
|
c_notificationEndAnim = 18, // 100d7e80
|
|
c_notificationType19 = 19, // 100d6230
|
|
c_notificationType20 = 20,
|
|
c_notificationNewPresenter = 21,
|
|
c_notificationType22 = 22,
|
|
c_notificationType23 = 23,
|
|
c_notificationTransitioned = 24
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d56e0
|
|
// SIZE 0x0c
|
|
class MxNotificationParam : public MxParam {
|
|
public:
|
|
inline MxNotificationParam() : m_type(c_notificationType0), m_sender(NULL) {}
|
|
inline MxNotificationParam(NotificationId p_type, MxCore* p_sender) : MxParam(), m_type(p_type), m_sender(p_sender)
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10010390
|
|
virtual MxNotificationParam* Clone() const { return new MxNotificationParam(m_type, m_sender); } // vtable+0x04
|
|
|
|
inline NotificationId GetNotification() const { return m_type; }
|
|
inline MxCore* GetSender() const { return m_sender; }
|
|
inline NotificationId GetType() const { return m_type; }
|
|
|
|
inline void SetType(NotificationId p_type) { m_type = p_type; }
|
|
inline void SetSender(MxCore* p_sender) { m_sender = p_sender; }
|
|
|
|
protected:
|
|
NotificationId m_type; // 0x04
|
|
MxCore* m_sender; // 0x08
|
|
};
|
|
|
|
// SYNTHETIC: LEGO1 0x10010430
|
|
// MxNotificationParam::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x100104a0
|
|
// MxNotificationParam::~MxNotificationParam
|
|
|
|
#endif // MXNOTIFICATIONPARAM_H
|