2023-04-27 22:19:39 -04:00
|
|
|
#ifndef LEGOANIMATIONMANAGER_H
|
|
|
|
#define LEGOANIMATIONMANAGER_H
|
|
|
|
|
2024-03-19 15:54:13 -04:00
|
|
|
#include "actionsfwd.h"
|
2024-01-12 17:27:07 -05:00
|
|
|
#include "decomp.h"
|
2024-03-15 20:43:45 -04:00
|
|
|
#include "legotraninfolist.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
#include "mxgeometry/mxgeometry3d.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-05-03 12:19:12 -04:00
|
|
|
class AnimState;
|
2024-04-23 04:03:10 -04:00
|
|
|
class LegoAnimPresenter;
|
2024-05-02 09:22:09 -04:00
|
|
|
class LegoEntity;
|
2024-05-03 12:19:12 -04:00
|
|
|
class LegoFile;
|
2024-05-02 09:22:09 -04:00
|
|
|
class LegoPathBoundary;
|
2024-04-23 04:03:10 -04:00
|
|
|
class LegoROIList;
|
2024-05-03 12:19:12 -04:00
|
|
|
struct ModelInfo;
|
2024-05-02 09:22:09 -04:00
|
|
|
class MxDSAction;
|
2024-04-23 04:03:10 -04:00
|
|
|
|
2024-03-15 20:43:45 -04:00
|
|
|
// SIZE 0x18
|
|
|
|
struct Character {
|
2024-03-28 14:15:39 -04:00
|
|
|
char* m_name; // 0x00
|
|
|
|
MxBool m_unk0x04; // 0x04
|
|
|
|
MxS8 m_vehicleId; // 0x05
|
|
|
|
undefined m_unk0x06; // 0x06 (unused?)
|
|
|
|
MxBool m_unk0x07; // 0x07
|
|
|
|
MxBool m_unk0x08; // 0x08
|
|
|
|
MxBool m_unk0x09; // 0x09
|
|
|
|
MxU32 m_unk0x0c; // 0x0c
|
|
|
|
MxU32 m_unk0x10; // 0x10
|
|
|
|
MxBool m_active; // 0x14
|
|
|
|
MxU8 m_unk0x15; // 0x15
|
|
|
|
MxU8 m_unk0x16; // 0x16
|
2024-03-23 10:09:20 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// SIZE 0x08
|
|
|
|
struct Vehicle {
|
|
|
|
char* m_name; // 0x00
|
|
|
|
undefined m_unk0x04; // 0x04
|
|
|
|
MxBool m_unk0x05; // 0x05
|
|
|
|
};
|
|
|
|
|
|
|
|
// SIZE 0x18
|
|
|
|
struct Unknown0x3c {
|
2024-05-02 09:22:09 -04:00
|
|
|
LegoROI* m_roi; // 0x00
|
|
|
|
MxS32 m_characterId; // 0x04
|
|
|
|
undefined4 m_unk0x08; // 0x08
|
|
|
|
undefined m_unk0x0c; // 0x0c
|
|
|
|
MxBool m_unk0x0d; // 0x0d
|
|
|
|
float m_unk0x10; // 0x10
|
|
|
|
MxBool m_unk0x14; // 0x14
|
2024-03-15 20:43:45 -04:00
|
|
|
};
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d8c18
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x500
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoAnimationManager : public MxCore {
|
2023-04-27 22:19:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
LegoAnimationManager();
|
2024-03-15 20:43:45 -04:00
|
|
|
~LegoAnimationManager() override;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxLong Notify(MxParam& p_param) override; // vtable+0x04
|
|
|
|
MxResult Tickle() override; // vtable+0x08
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005ec80
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f7508
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoAnimationManager";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005ec90
|
2024-02-01 15:42:10 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, ClassName()) || MxCore::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-04-27 10:31:50 -04:00
|
|
|
void Reset(MxBool p_und);
|
2024-04-30 04:27:57 -04:00
|
|
|
void Suspend();
|
|
|
|
void Resume();
|
2024-04-30 06:38:55 -04:00
|
|
|
void FUN_1005f6d0(MxBool p_unk0x400);
|
|
|
|
void FUN_1005f700(MxBool p_unk0x3a);
|
2024-03-15 20:43:45 -04:00
|
|
|
MxResult LoadScriptInfo(MxS32 p_scriptIndex);
|
2024-03-29 11:50:16 -04:00
|
|
|
MxBool FindVehicle(const char* p_name, MxU32& p_index);
|
2024-03-15 20:43:45 -04:00
|
|
|
MxResult ReadAnimInfo(LegoFile* p_file, AnimInfo* p_info);
|
|
|
|
MxResult ReadModelInfo(LegoFile* p_file, ModelInfo* p_info);
|
2024-05-07 10:54:06 -04:00
|
|
|
void FUN_10060570(MxBool p_unk0x1a);
|
2024-04-19 11:42:28 -04:00
|
|
|
MxResult StartEntityAction(MxDSAction& p_dsAction, LegoEntity* p_entity);
|
2024-04-26 11:37:07 -04:00
|
|
|
MxResult FUN_10060dc0(
|
|
|
|
IsleScript::Script p_objectId,
|
|
|
|
MxMatrix* p_matrix,
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool p_param3,
|
2024-05-01 07:36:58 -04:00
|
|
|
MxBool p_param4,
|
2024-04-30 10:02:58 -04:00
|
|
|
LegoROI* p_roi,
|
|
|
|
MxBool p_param6,
|
2024-04-26 11:37:07 -04:00
|
|
|
MxBool p_param7,
|
|
|
|
MxBool p_param8,
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool p_param9
|
2024-03-16 14:20:44 -04:00
|
|
|
);
|
2024-05-07 15:59:46 -04:00
|
|
|
void FUN_10061010(MxBool p_und);
|
2024-04-20 09:32:10 -04:00
|
|
|
LegoTranInfo* GetTranInfo(MxU32 p_index);
|
2024-04-19 11:42:28 -04:00
|
|
|
void FUN_10062770();
|
|
|
|
void FUN_100627d0(MxBool);
|
2024-03-16 14:20:44 -04:00
|
|
|
void FUN_100629b0(MxU32, MxBool);
|
2024-04-23 04:03:10 -04:00
|
|
|
void FUN_10063270(LegoROIList*, LegoAnimPresenter*);
|
2024-04-27 09:19:55 -04:00
|
|
|
void FUN_10063780(LegoROIList* p_list);
|
2024-05-01 07:36:58 -04:00
|
|
|
void FUN_10064670(Vector3*);
|
|
|
|
void FUN_10064740(Vector3*);
|
2023-10-24 08:37:02 -04:00
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
static void configureLegoAnimationManager(MxS32 p_legoAnimationManagerConfig);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x1005ed10
|
|
|
|
// LegoAnimationManager::`scalar deleting destructor'
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
private:
|
|
|
|
void Init();
|
2024-04-26 11:37:07 -04:00
|
|
|
MxResult FUN_100605e0(
|
|
|
|
MxU32 p_index,
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool p_unk0x0a,
|
2024-04-26 11:37:07 -04:00
|
|
|
MxMatrix* p_matrix,
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool p_bool1,
|
|
|
|
LegoROI* p_roi,
|
|
|
|
MxBool p_bool2,
|
|
|
|
MxBool p_bool3,
|
|
|
|
MxBool p_bool4,
|
|
|
|
MxBool p_bool5
|
2024-04-26 11:37:07 -04:00
|
|
|
);
|
|
|
|
MxResult FUN_100609f0(MxU32 p_objectId, MxMatrix* p_matrix, MxBool p_und1, MxBool p_und2);
|
2024-04-27 08:52:28 -04:00
|
|
|
void DeleteAnimations();
|
2024-05-02 09:22:09 -04:00
|
|
|
void FUN_10061530();
|
2024-05-09 10:30:34 -04:00
|
|
|
MxResult FUN_100617c0(MxS32 p_unk0x08, MxU16& p_unk0x0e, MxU16& p_unk0x10);
|
2024-05-02 09:22:09 -04:00
|
|
|
MxU16 FUN_10062110(
|
|
|
|
LegoROI* p_roi,
|
|
|
|
Vector3& p_direction,
|
|
|
|
Vector3& p_position,
|
|
|
|
LegoPathBoundary* p_boundary,
|
|
|
|
float p_speed,
|
2024-05-09 12:49:43 -04:00
|
|
|
MxU8 p_unk0x0c,
|
2024-05-02 09:22:09 -04:00
|
|
|
MxBool p_unk0x14
|
|
|
|
);
|
2024-04-27 09:59:00 -04:00
|
|
|
MxS8 GetCharacterIndex(const char* p_name);
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool FUN_100623a0(AnimInfo& p_info);
|
2024-05-09 15:33:48 -04:00
|
|
|
MxBool FUN_10062520(AnimInfo& p_info, const char*);
|
2024-04-30 10:02:58 -04:00
|
|
|
void FUN_10062580(AnimInfo& p_info);
|
2024-05-09 15:33:48 -04:00
|
|
|
MxBool FUN_10062650(Vector3&, float, LegoROI*);
|
2024-04-30 10:02:58 -04:00
|
|
|
MxBool FUN_10062710(AnimInfo& p_info);
|
2024-04-27 08:52:28 -04:00
|
|
|
void FUN_10063aa0();
|
2024-05-02 09:22:09 -04:00
|
|
|
void FUN_10063d10();
|
2024-04-30 10:02:58 -04:00
|
|
|
void FUN_100648f0(LegoTranInfo*, MxLong);
|
2024-05-02 09:22:09 -04:00
|
|
|
void FUN_10064b50(MxLong p_time);
|
2024-02-10 20:52:16 -05:00
|
|
|
|
2024-04-30 10:02:58 -04:00
|
|
|
MxS32 m_scriptIndex; // 0x08
|
2024-03-15 20:43:45 -04:00
|
|
|
MxU16 m_animCount; // 0x0c
|
|
|
|
MxU16 m_unk0x0e; // 0x0e
|
2024-04-27 09:07:28 -04:00
|
|
|
MxU16 m_unk0x10; // 0x10
|
2024-03-15 20:43:45 -04:00
|
|
|
AnimInfo* m_anims; // 0x14
|
2024-04-27 09:07:28 -04:00
|
|
|
undefined2 m_unk0x18; // 0x18
|
2024-05-01 09:00:42 -04:00
|
|
|
MxBool m_unk0x1a; // 0x1a
|
2024-04-19 11:42:28 -04:00
|
|
|
MxU32 m_unk0x1c; // 0x1c
|
2024-03-15 20:43:45 -04:00
|
|
|
LegoTranInfoList* m_tranInfoList; // 0x20
|
|
|
|
LegoTranInfoList* m_tranInfoList2; // 0x24
|
2024-04-20 09:52:10 -04:00
|
|
|
MxPresenter* m_unk0x28[2]; // 0x28
|
2024-04-20 11:52:46 -04:00
|
|
|
MxLong m_unk0x30[2]; // 0x30
|
2024-04-27 09:46:47 -04:00
|
|
|
MxBool m_unk0x38; // 0x38
|
2024-04-19 11:42:28 -04:00
|
|
|
MxBool m_unk0x39; // 0x39
|
2024-04-30 06:38:55 -04:00
|
|
|
MxBool m_unk0x3a; // 0x3a
|
2024-03-23 10:09:20 -04:00
|
|
|
Unknown0x3c m_unk0x3c[40]; // 0x3c
|
2024-03-15 20:43:45 -04:00
|
|
|
undefined4 m_unk0x3fc; // 0x3fc
|
2024-04-30 06:38:55 -04:00
|
|
|
MxBool m_unk0x400; // 0x400
|
2024-05-02 09:22:09 -04:00
|
|
|
MxBool m_unk0x401; // 0x401
|
|
|
|
MxBool m_unk0x402; // 0x402
|
2024-04-19 11:42:28 -04:00
|
|
|
MxLong m_unk0x404; // 0x404
|
2024-04-27 09:07:28 -04:00
|
|
|
MxLong m_unk0x408; // 0x408
|
|
|
|
MxLong m_unk0x40c; // 0x40c
|
2024-05-02 09:22:09 -04:00
|
|
|
MxLong m_unk0x410; // 0x410
|
2024-04-27 09:07:28 -04:00
|
|
|
undefined4 m_unk0x414; // 0x414
|
2024-05-02 10:51:41 -04:00
|
|
|
MxU32 m_numAllowedExtras; // 0x418
|
2024-04-27 09:07:28 -04:00
|
|
|
undefined4 m_unk0x41c; // 0x41c
|
2024-03-15 20:43:45 -04:00
|
|
|
AnimState* m_animState; // 0x420
|
2024-04-27 08:52:28 -04:00
|
|
|
LegoROIList* m_unk0x424; // 0x424
|
2024-04-30 06:38:55 -04:00
|
|
|
MxBool m_unk0x428; // 0x428
|
|
|
|
MxBool m_unk0x429; // 0x429
|
2024-05-02 09:22:09 -04:00
|
|
|
MxBool m_unk0x42a; // 0x42a
|
2024-04-30 04:27:57 -04:00
|
|
|
MxBool m_suspended; // 0x42b
|
2024-05-01 09:00:42 -04:00
|
|
|
LegoTranInfo* m_unk0x42c; // 0x42c
|
|
|
|
MxBool m_unk0x430; // 0x430
|
2024-04-27 08:52:28 -04:00
|
|
|
undefined4 m_unk0x434[2]; // 0x434
|
|
|
|
MxMatrix m_unk0x43c; // 0x43c
|
|
|
|
MxMatrix m_unk0x484; // 0x484
|
|
|
|
UnknownMx4DPointFloat m_unk0x4cc; // 0x4cc
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
2024-05-08 10:28:32 -04:00
|
|
|
// TEMPLATE: LEGO1 0x10061750
|
|
|
|
// MxListCursor<LegoTranInfo *>::MxListCursor<LegoTranInfo *>
|
|
|
|
|
2023-04-27 22:19:39 -04:00
|
|
|
#endif // LEGOANIMATIONMANAGER_H
|