2020-10-03 17:22:44 +02:00
|
|
|
#include "global.h"
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2021-08-30 03:24:32 +02:00
|
|
|
// Linker symbol declarations (used in the table below)
|
2022-06-06 21:51:03 +02:00
|
|
|
#define DEFINE_ACTOR(name, _1, _2, _3) DECLARE_OVERLAY_SEGMENT(name)
|
|
|
|
#define DEFINE_ACTOR_INTERNAL(_0, _1, _2, _3)
|
2021-08-30 03:24:32 +02:00
|
|
|
#define DEFINE_ACTOR_UNSET(_0)
|
|
|
|
|
|
|
|
#include "tables/actor_table.h"
|
|
|
|
|
|
|
|
#undef DEFINE_ACTOR
|
|
|
|
#undef DEFINE_ACTOR_INTERNAL
|
|
|
|
#undef DEFINE_ACTOR_UNSET
|
|
|
|
|
|
|
|
// Init Vars declarations (also used in the table below)
|
2022-06-06 21:51:03 +02:00
|
|
|
#define DEFINE_ACTOR(name, _1, _2, _3) extern ActorInit name##_InitVars;
|
|
|
|
#define DEFINE_ACTOR_INTERNAL(name, _1, _2, _3) extern ActorInit name##_InitVars;
|
2021-08-30 03:24:32 +02:00
|
|
|
#define DEFINE_ACTOR_UNSET(_0)
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2021-08-30 03:24:32 +02:00
|
|
|
#include "tables/actor_table.h"
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2021-08-30 03:24:32 +02:00
|
|
|
#undef DEFINE_ACTOR
|
|
|
|
#undef DEFINE_ACTOR_INTERNAL
|
|
|
|
#undef DEFINE_ACTOR_UNSET
|
|
|
|
|
|
|
|
// Actor Overlay Table definition
|
2022-06-06 21:51:03 +02:00
|
|
|
#define DEFINE_ACTOR(name, _1, allocType, nameString) \
|
2022-10-02 17:38:09 +02:00
|
|
|
{ (uintptr_t)_ovl_##name##SegmentRomStart, \
|
|
|
|
(uintptr_t)_ovl_##name##SegmentRomEnd, \
|
2022-06-06 21:51:03 +02:00
|
|
|
_ovl_##name##SegmentStart, \
|
|
|
|
_ovl_##name##SegmentEnd, \
|
|
|
|
NULL, \
|
|
|
|
&name##_InitVars, \
|
|
|
|
nameString, \
|
|
|
|
allocType, \
|
2021-08-30 03:24:32 +02:00
|
|
|
0 },
|
|
|
|
|
2022-06-06 21:51:03 +02:00
|
|
|
#define DEFINE_ACTOR_INTERNAL(name, _1, allocType, nameString) \
|
|
|
|
{ 0, 0, NULL, NULL, NULL, &name##_InitVars, nameString, allocType, 0 },
|
2021-08-30 03:24:32 +02:00
|
|
|
|
|
|
|
#define DEFINE_ACTOR_UNSET(_0) { 0 },
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2020-03-22 22:19:43 +01:00
|
|
|
ActorOverlay gActorOverlayTable[] = {
|
2021-08-30 03:24:32 +02:00
|
|
|
#include "tables/actor_table.h"
|
2020-03-17 00:31:30 -04:00
|
|
|
};
|
|
|
|
|
2021-08-30 03:24:32 +02:00
|
|
|
#undef DEFINE_ACTOR
|
|
|
|
#undef DEFINE_ACTOR_INTERNAL
|
|
|
|
#undef DEFINE_ACTOR_UNSET
|
|
|
|
|
2020-05-18 20:24:00 +02:00
|
|
|
s32 gMaxActorId = 0;
|
2020-03-17 00:31:30 -04:00
|
|
|
|
|
|
|
static FaultClient sFaultClient;
|
|
|
|
|
2020-03-22 22:19:43 +01:00
|
|
|
void ActorOverlayTable_LogPrint(void) {
|
2020-03-17 00:31:30 -04:00
|
|
|
ActorOverlay* overlayEntry;
|
|
|
|
u32 i;
|
|
|
|
|
2024-01-12 07:38:13 -08:00
|
|
|
PRINTF("actor_dlftbls %u\n", gMaxActorId);
|
|
|
|
PRINTF("RomStart RomEnd SegStart SegEnd allocp profile segname\n");
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2021-02-14 00:49:40 +00:00
|
|
|
for (i = 0, overlayEntry = &gActorOverlayTable[0]; i < (u32)gMaxActorId; i++, overlayEntry++) {
|
2024-01-12 07:38:13 -08:00
|
|
|
PRINTF("%08x %08x %08x %08x %08x %08x %s\n", overlayEntry->vromStart, overlayEntry->vromEnd,
|
|
|
|
overlayEntry->vramStart, overlayEntry->vramEnd, overlayEntry->loadedRamAddr, &overlayEntry->initInfo->id,
|
|
|
|
overlayEntry->name != NULL ? overlayEntry->name : "?");
|
2020-03-17 00:31:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 22:19:43 +01:00
|
|
|
void ActorOverlayTable_FaultPrint(void* arg0, void* arg1) {
|
2020-03-17 00:31:30 -04:00
|
|
|
ActorOverlay* overlayEntry;
|
|
|
|
u32 overlaySize;
|
|
|
|
s32 i;
|
|
|
|
|
|
|
|
FaultDrawer_SetCharPad(-2, 0);
|
|
|
|
|
2020-05-18 20:24:00 +02:00
|
|
|
FaultDrawer_Printf("actor_dlftbls %u\n", gMaxActorId);
|
2020-03-17 00:31:30 -04:00
|
|
|
FaultDrawer_Printf("No. RamStart- RamEnd cn Name\n");
|
|
|
|
|
2020-05-18 20:24:00 +02:00
|
|
|
for (i = 0, overlayEntry = &gActorOverlayTable[0]; i < gMaxActorId; i++, overlayEntry++) {
|
2023-07-10 21:03:01 +02:00
|
|
|
overlaySize = (uintptr_t)overlayEntry->vramEnd - (uintptr_t)overlayEntry->vramStart;
|
2020-03-22 22:19:43 +01:00
|
|
|
if (overlayEntry->loadedRamAddr != NULL) {
|
|
|
|
FaultDrawer_Printf("%3d %08x-%08x %3d %s\n", i, overlayEntry->loadedRamAddr,
|
2023-07-10 21:03:01 +02:00
|
|
|
(uintptr_t)overlayEntry->loadedRamAddr + overlaySize, overlayEntry->numLoaded,
|
2020-03-22 22:19:43 +01:00
|
|
|
overlayEntry->name != NULL ? overlayEntry->name : "");
|
2020-03-17 00:31:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 22:19:43 +01:00
|
|
|
void ActorOverlayTable_Init(void) {
|
2020-05-18 20:24:00 +02:00
|
|
|
gMaxActorId = ACTOR_ID_MAX;
|
2020-03-17 00:31:30 -04:00
|
|
|
Fault_AddClient(&sFaultClient, ActorOverlayTable_FaultPrint, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2020-03-22 22:19:43 +01:00
|
|
|
void ActorOverlayTable_Cleanup(void) {
|
2020-03-17 00:31:30 -04:00
|
|
|
Fault_RemoveClient(&sFaultClient);
|
2020-05-18 20:24:00 +02:00
|
|
|
gMaxActorId = 0;
|
2020-03-17 00:31:30 -04:00
|
|
|
}
|