2022-04-02 04:50:42 +02:00
|
|
|
#include "dynos.cpp.h"
|
2022-04-03 00:14:04 +02:00
|
|
|
extern "C" {
|
|
|
|
#include "behavior_table.h"
|
2022-04-03 12:30:47 +02:00
|
|
|
#include "levels/scripts.h"
|
2022-04-03 00:14:04 +02:00
|
|
|
}
|
2022-04-03 12:30:47 +02:00
|
|
|
|
|
|
|
#define define_pointer(ptr) (const void *) #ptr, (const void *) ptr
|
|
|
|
static const void *sDynosPointers[] = {
|
|
|
|
define_pointer(level_main_scripts_entry),
|
|
|
|
define_pointer(script_func_global_1),
|
|
|
|
define_pointer(script_func_global_2),
|
|
|
|
define_pointer(script_func_global_3),
|
|
|
|
define_pointer(script_func_global_4),
|
|
|
|
define_pointer(script_func_global_5),
|
|
|
|
define_pointer(script_func_global_6),
|
|
|
|
define_pointer(script_func_global_7),
|
|
|
|
define_pointer(script_func_global_8),
|
|
|
|
define_pointer(script_func_global_9),
|
|
|
|
define_pointer(script_func_global_10),
|
|
|
|
define_pointer(script_func_global_11),
|
|
|
|
define_pointer(script_func_global_12),
|
|
|
|
define_pointer(script_func_global_13),
|
|
|
|
define_pointer(script_func_global_14),
|
|
|
|
define_pointer(script_func_global_15),
|
|
|
|
define_pointer(script_func_global_16),
|
|
|
|
define_pointer(script_func_global_17),
|
|
|
|
define_pointer(script_func_global_18),
|
|
|
|
};
|
|
|
|
|
2022-04-02 04:50:42 +02:00
|
|
|
/////////////
|
|
|
|
// Writing //
|
|
|
|
/////////////
|
|
|
|
|
|
|
|
typedef Pair<String, u32> PointerData;
|
|
|
|
static PointerData GetDataFromPointer(const void* aPtr, GfxData* aGfxData) {
|
|
|
|
// Lights
|
|
|
|
for (auto& _Node : aGfxData->mLights) {
|
|
|
|
if (&_Node->mData->l[0] == aPtr) { // Light *, not Lights1 *
|
|
|
|
return { _Node->mName, 1 };
|
|
|
|
}
|
|
|
|
if (&_Node->mData->a == aPtr) { // Ambient *, not Lights1 *
|
|
|
|
return { _Node->mName, 2 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Textures
|
|
|
|
for (auto& _Node : aGfxData->mTextures) {
|
|
|
|
if (_Node == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display lists
|
|
|
|
for (auto& _Node : aGfxData->mDisplayLists) {
|
|
|
|
if (_Node == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Geo layouts
|
|
|
|
for (auto& _Node : aGfxData->mGeoLayouts) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collisions
|
|
|
|
for (auto& _Node : aGfxData->mCollisions) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Level scripts
|
|
|
|
for (auto& _Node : aGfxData->mLevelScripts) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Macro objects
|
|
|
|
for (auto& _Node : aGfxData->mMacroObjects) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 01:08:19 +02:00
|
|
|
// Trajectories
|
|
|
|
for (auto& _Node : aGfxData->mTrajectories) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 07:12:17 +02:00
|
|
|
// Movtexs
|
|
|
|
for (auto& _Node : aGfxData->mMovtexs) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MovtexQCs
|
|
|
|
for (auto& _Node : aGfxData->mMovtexQCs) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 08:42:25 +02:00
|
|
|
// Rooms
|
|
|
|
for (auto& _Node : aGfxData->mRooms) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 00:14:04 +02:00
|
|
|
// Behaviors
|
|
|
|
enum BehaviorId id = get_id_from_vanilla_behavior((const BehaviorScript*) aPtr);
|
|
|
|
if (id >= 0 && id < id_bhv_max_count) {
|
|
|
|
return { get_behavior_name_from_id(id), 0 };
|
|
|
|
}
|
|
|
|
|
2022-04-03 12:30:47 +02:00
|
|
|
// Vanilla Geos
|
|
|
|
s32 actorCount = DynOS_Geo_GetActorCount();
|
|
|
|
for (s32 i = 0; i < actorCount; i++) {
|
|
|
|
if (DynOS_Geo_IsCustomActor(i)) { break; }
|
|
|
|
if (aPtr == DynOS_Geo_GetActorLayout(i)) {
|
|
|
|
return { DynOS_Geo_GetActorName(i), 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vanilla Pointers
|
|
|
|
s32 pointerCount = (s32) (sizeof(sDynosPointers) / (2 * sizeof(sDynosPointers[0])));
|
|
|
|
for (s32 i = 0; i < pointerCount; i++) {
|
|
|
|
const char* ptrName = (const char*)sDynosPointers[i * 2 + 0];
|
|
|
|
const void* ptr = sDynosPointers[i * 2 + 1];
|
|
|
|
if (ptr == aPtr) {
|
|
|
|
return { ptrName, 0 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 04:50:42 +02:00
|
|
|
// Vertices
|
|
|
|
String _VtxArrayName = "";
|
|
|
|
uintptr_t _VtxArrayStart = 0;
|
|
|
|
for (auto& _Node : aGfxData->mVertices) {
|
|
|
|
if (_Node->mData == aPtr) {
|
|
|
|
return { _Node->mName, 0 };
|
|
|
|
}
|
|
|
|
if ((uintptr_t)_Node->mData <= (uintptr_t)aPtr &&
|
|
|
|
(uintptr_t)_Node->mData >= _VtxArrayStart) {
|
|
|
|
_VtxArrayName = _Node->mName;
|
|
|
|
_VtxArrayStart = (uintptr_t)_Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return { _VtxArrayName, (u32)((const Vtx*)aPtr - (const Vtx*)_VtxArrayStart) };
|
|
|
|
}
|
|
|
|
|
|
|
|
void DynOS_Pointer_Write(FILE* aFile, const void* aPtr, GfxData* aGfxData) {
|
|
|
|
|
|
|
|
// NULL
|
|
|
|
if (!aPtr) {
|
|
|
|
WriteBytes<u32>(aFile, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Geo function
|
|
|
|
s32 _GeoFunctionIndex = DynOS_Geo_GetFunctionIndex(aPtr);
|
|
|
|
if (_GeoFunctionIndex != -1) {
|
|
|
|
WriteBytes<u32>(aFile, FUNCTION_CODE);
|
|
|
|
WriteBytes<s32>(aFile, _GeoFunctionIndex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-03 00:14:04 +02:00
|
|
|
// Lvl function
|
|
|
|
s32 _LvlFunctionIndex = DynOS_Lvl_GetFunctionIndex(aPtr);
|
|
|
|
if (_LvlFunctionIndex != -1) {
|
|
|
|
WriteBytes<u32>(aFile, FUNCTION_CODE);
|
|
|
|
WriteBytes<s32>(aFile, _LvlFunctionIndex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-05 03:16:36 +02:00
|
|
|
// Lua variable
|
|
|
|
for (s32 i = 0; i < aGfxData->mPointerTokenList.Count(); i++) {
|
|
|
|
if (aPtr == aGfxData->mPointerTokenList[i].begin()) {
|
|
|
|
String& token = aGfxData->mPointerTokenList[i];
|
|
|
|
WriteBytes<u32>(aFile, LUA_VAR_CODE);
|
|
|
|
token.Write(aFile);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 04:50:42 +02:00
|
|
|
// Pointer
|
|
|
|
PointerData _PtrData = GetDataFromPointer(aPtr, aGfxData);
|
2022-04-03 12:30:47 +02:00
|
|
|
if (strlen(_PtrData.first.begin()) == 0) {
|
2022-04-04 07:12:17 +02:00
|
|
|
_PtrData = _PtrData; // DO NOT COMMIT
|
2022-04-03 12:30:47 +02:00
|
|
|
}
|
2022-04-02 04:50:42 +02:00
|
|
|
WriteBytes<u32>(aFile, POINTER_CODE);
|
|
|
|
_PtrData.first.Write(aFile);
|
|
|
|
WriteBytes<u32>(aFile, _PtrData.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////
|
|
|
|
// Reading //
|
|
|
|
/////////////
|
|
|
|
|
|
|
|
static void *GetPointerFromData(GfxData *aGfxData, const String &aPtrName, u32 aPtrData) {
|
|
|
|
|
|
|
|
// Lights
|
|
|
|
for (auto& _Node : aGfxData->mLights) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
if (aPtrData == 1) {
|
|
|
|
return (void *) &_Node->mData->l[0];
|
|
|
|
}
|
|
|
|
if (aPtrData == 2) {
|
|
|
|
return (void *) &_Node->mData->a;
|
|
|
|
}
|
|
|
|
sys_fatal("Unknown Light type: %u", aPtrData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Textures
|
|
|
|
for (auto& _Node : aGfxData->mTextures) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display lists
|
|
|
|
for (auto &_Node : aGfxData->mDisplayLists) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Geo layouts
|
|
|
|
for (auto &_Node : aGfxData->mGeoLayouts) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vertices
|
|
|
|
for (auto &_Node : aGfxData->mVertices) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) (_Node->mData + aPtrData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collisions
|
|
|
|
for (auto &_Node : aGfxData->mCollisions) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Level scripts
|
|
|
|
for (auto &_Node : aGfxData->mLevelScripts) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Macro objects
|
|
|
|
for (auto &_Node : aGfxData->mMacroObjects) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 01:08:19 +02:00
|
|
|
// Trajectories
|
|
|
|
for (auto &_Node : aGfxData->mTrajectories) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 07:12:17 +02:00
|
|
|
// Movtexs
|
|
|
|
for (auto &_Node : aGfxData->mMovtexs) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MovtexQCs
|
|
|
|
for (auto &_Node : aGfxData->mMovtexQCs) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 08:42:25 +02:00
|
|
|
// Rooms
|
|
|
|
for (auto &_Node : aGfxData->mRooms) {
|
|
|
|
if (_Node->mName == aPtrName) {
|
|
|
|
return (void *) _Node->mData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 00:14:04 +02:00
|
|
|
// Behaviors
|
|
|
|
enum BehaviorId id = get_id_from_behavior_name(aPtrName.begin());
|
|
|
|
if (id >= 0 && id < id_bhv_max_count) {
|
|
|
|
return (void*)get_behavior_from_id(id);
|
|
|
|
}
|
|
|
|
|
2022-04-03 12:30:47 +02:00
|
|
|
// Vanilla Geos
|
|
|
|
s32 actorCount = DynOS_Geo_GetActorCount();
|
|
|
|
for (s32 i = 0; i < actorCount; i++) {
|
|
|
|
if (DynOS_Geo_IsCustomActor(i)) { break; }
|
|
|
|
if (!strcmp(aPtrName.begin(), DynOS_Geo_GetActorName(i))) {
|
|
|
|
return (void*)DynOS_Geo_GetActorLayout(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vanilla Pointers
|
|
|
|
s32 pointerCount = (s32) (sizeof(sDynosPointers) / (2 * sizeof(sDynosPointers[0])));
|
|
|
|
for (s32 i = 0; i < pointerCount; i++) {
|
|
|
|
const char* ptrName = (const char*)sDynosPointers[i * 2 + 0];
|
|
|
|
const void* ptr = sDynosPointers[i * 2 + 1];
|
|
|
|
if (!strcmp(aPtrName.begin(), ptrName)) {
|
|
|
|
return (void*)ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 04:50:42 +02:00
|
|
|
// Error
|
|
|
|
sys_fatal("Pointer not found: %s", aPtrName.begin());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-04-03 00:14:04 +02:00
|
|
|
void *DynOS_Pointer_Load(FILE *aFile, GfxData *aGfxData, u32 aValue, bool isLvl) {
|
2022-04-02 04:50:42 +02:00
|
|
|
|
|
|
|
// FUNC
|
|
|
|
if (aValue == FUNCTION_CODE) {
|
2022-04-03 00:14:04 +02:00
|
|
|
s32 _FunctionIndex = ReadBytes<s32>(aFile);
|
|
|
|
return isLvl
|
|
|
|
? DynOS_Lvl_GetFunctionPointerFromIndex(_FunctionIndex)
|
|
|
|
: DynOS_Geo_GetFunctionPointerFromIndex(_FunctionIndex);
|
2022-04-02 04:50:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-05 03:16:36 +02:00
|
|
|
// LUAV
|
|
|
|
if (aValue == LUA_VAR_CODE) {
|
|
|
|
String token; token.Read(aFile);
|
|
|
|
u32 index = aGfxData->mPointerTokenList.Count();
|
|
|
|
aGfxData->mPointerTokenList.Add(token);
|
|
|
|
return aGfxData->mPointerTokenList[index].begin();
|
|
|
|
}
|
|
|
|
|
2022-04-02 04:50:42 +02:00
|
|
|
// PNTR
|
|
|
|
if (aValue == POINTER_CODE) {
|
|
|
|
String _PtrName; _PtrName.Read(aFile);
|
|
|
|
u32 _PtrData = ReadBytes<u32>(aFile);
|
|
|
|
return GetPointerFromData(aGfxData, _PtrName, _PtrData);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not a pointer
|
|
|
|
return NULL;
|
|
|
|
}
|