spidey-decomp/trig.cpp

728 lines
14 KiB
C++
Raw Permalink Normal View History

2024-05-12 17:44:36 +00:00
#include "trig.h"
2024-05-22 14:49:57 +00:00
#include "validate.h"
#include "mem.h"
2024-07-17 15:24:33 +00:00
#include "utils.h"
2024-07-17 15:39:02 +00:00
#include "spidey.h"
#include "baddy.h"
#include "spool.h"
#include "exp.h"
2024-05-22 14:49:57 +00:00
2024-10-01 15:16:01 +00:00
i32 gRunCinemaRelated;
2024-09-14 17:25:56 +00:00
i32 gLevelStatus;
EXPORT void* gTrigFile;
2024-07-18 16:57:06 +00:00
EXPORT i16 **gTrigNodes;
2024-07-17 15:24:33 +00:00
EXPORT i32 NumNodes;
const i32 MAXPENDING = 16;
EXPORT PendingListEntry PendingListArray[MAXPENDING];
EXPORT SCommandPoint* CommandPoints;
EXPORT SCommandPoint* HashTable[256];
static int gTrigMenu[40];
static int gRestartPoints;
EXPORT i32 Restart;
2024-08-28 11:13:52 +00:00
i32 RestartNode;
2024-09-14 17:25:56 +00:00
i32 gReStartDeathRelated;
2024-07-17 15:58:37 +00:00
EXPORT i32 EndLevelNode;
extern CSpecialDisplay *SpecialDisplayList;
2024-07-17 15:58:37 +00:00
extern i32 JoelJewCheatCode;
2024-07-17 15:24:33 +00:00
2024-07-17 15:39:02 +00:00
extern CPlayer* MechList;
2024-08-05 15:19:04 +00:00
extern CBody* ControlBaddyList;
extern CBaddy* BaddyList;
extern CBody* EnvironmentalObjectList;
extern CBody* PowerUpList;
2024-07-17 15:39:02 +00:00
2024-07-17 15:24:33 +00:00
//@IGNORE
void trigLog(const char*, ...)
{
printf("trigLog!");
}
// @NotOk
// SpecialDisplayList shitty ass polymorphism
// need to understand what's type 9
void SendKillFromNode(i32 Node, i32 How)
{
print_if_false(Node >= 0 && Node < NumNodes, "Bad node sent to SendKillFromNode");
u16 *pLinkInfo = Trig_GetLinksPointer(Node);
u16 NumLinks = *pLinkInfo;
u16* nodeIndexPtr = pLinkInfo + 1;
for (i32 i = 0; i < NumLinks; i++)
{
u16 nodeIndex = nodeIndexPtr[i];
2024-07-18 16:57:06 +00:00
i16 *node = reinterpret_cast<i16*>(gTrigNodes[nodeIndex]);
switch (*node)
{
case 1:
if (node[1] == 409)
{
for (
CSpecialDisplay *cur = SpecialDisplayList;
cur;
cur = reinterpret_cast<CSpecialDisplay*>(cur->mNext))
{
if (cur->mType == 9)
{
2024-07-18 16:57:06 +00:00
if (*reinterpret_cast<i16*>(reinterpret_cast<u8*>(cur)+0x6A) == nodeIndex)
{
cur->Die();
}
}
}
}
else
{
KillInList(nodeIndex, BaddyList, How);
KillInList(nodeIndex, ControlBaddyList, How);
KillInList(nodeIndex, EnvironmentalObjectList, How);
}
break;
case 2:
case 9:
u32 v20;
CItem* EnviroItem;
2024-07-18 16:57:06 +00:00
v20 = reinterpret_cast<u32>(&node[node[1] + 2]);
if (v20 & 2)
v20 += 2;
EnviroItem = Spool_FindEnviroItem(v20);
if (EnviroItem)
{
if (How == 1)
{
Exp_HitEnvItem(EnviroItem, 0, 0xFFFF);
}
else
{
EnviroItem->mFlags |= 1;
}
}
break;
case 4:
case 20:
KillInList(nodeIndex, PowerUpList, How);
break;
default:
break;
}
}
}
// @Ok
void SendSuspendOrActivate(u16* pLinkInfo, i32 signalType)
{
switch(signalType)
{
case 4:
case 5:
break;
default:
print_if_false(0, "Bad signalType");
break;
}
print_if_false(*pLinkInfo !=0, "Node sending an activate or \n suspen is not lined\n to anything");
u16 numIters = *pLinkInfo;
u16* nodeIndexPtr = pLinkInfo + 1;
for (i32 i = 0; i < numIters; i++)
{
2024-07-18 16:57:06 +00:00
u16 *node = reinterpret_cast<u16*>(gTrigNodes[nodeIndexPtr[i]]);
switch(*node)
{
case 1:
case 7:
if (signalType == 5)
{
SendSuspend(reinterpret_cast<CBody**>(&BaddyList), nodeIndexPtr[i]);
SendSuspend(reinterpret_cast<CBody**>(&ControlBaddyList), nodeIndexPtr[i]);
SendSuspend(reinterpret_cast<CBody**>(&EnvironmentalObjectList), nodeIndexPtr[i]);
}
else
{
SendUnSuspend(BaddyList, nodeIndexPtr[i]);
SendUnSuspend(ControlBaddyList, nodeIndexPtr[i]);
SendUnSuspend(EnvironmentalObjectList, nodeIndexPtr[i]);
}
break;
}
}
}
2024-07-17 16:56:21 +00:00
// @Ok
void SendUnSuspend(CBody* pList, i32 NodeIndex)
{
for (CBody* cur = pList; cur; cur = reinterpret_cast<CBody*>(cur->field_20))
{
if (cur->field_DE == NodeIndex)
cur->UnSuspend();
}
}
2024-07-17 16:53:59 +00:00
// @Ok
void SendSignalToNode(CBody* pBody, i32 NodeIndex)
{
for (CBody* cur = pBody; cur; cur = reinterpret_cast<CBody*>(cur->field_20))
{
if (cur->field_DE == NodeIndex)
cur->field_44 |= 1;
}
}
2024-07-17 16:51:10 +00:00
// @Ok
INLINE void SendSuspend(CBody** ppList, i32 NodeIndex)
{
for (CBody* cur = *ppList; cur; cur = reinterpret_cast<CBody*>(cur->field_20))
{
if (cur->field_DE == NodeIndex)
cur->Suspend(ppList);
}
}
2024-07-17 16:46:02 +00:00
// @Ok
void KillInList(i32 Node, CBody* pList, i32 How)
{
for (CBody *cur = pList; cur; cur = reinterpret_cast<CBody*>(cur->field_20))
{
if (cur->field_DE == Node)
{
switch (How)
{
case 0:
cur->Die();
break;
case 1:
SHitInfo hitInfo;
hitInfo.field_8 = cur->field_E2;
hitInfo.field_C.vx = 0;
hitInfo.field_C.vy = 0;
hitInfo.field_C.vz = 0;
hitInfo.field_0 = 4;
cur->Hit(&hitInfo);
break;
}
}
}
}
2024-07-17 16:18:24 +00:00
// @BIGTODO
void Trig_CreateObject(i32)
{
printf("Trig_CreateObject");
}
2024-07-17 15:58:37 +00:00
// @Ok
void Trig_ExecuteAutoexec(void)
{
print_if_false(gTrigFile != 0, "No trigger file");
EndLevelNode = 0xFFFF;
if (JoelJewCheatCode)
{
for (i32 curNode = 0; curNode < NumNodes; curNode++)
{
2024-07-17 16:18:24 +00:00
u16 *v5 = reinterpret_cast<u16*>(gTrigNodes[curNode]);
2024-07-17 15:58:37 +00:00
if (*v5 == 15)
{
trigLog("*** Executing AUTOEXEC2 Node %i ***", curNode);
ExecuteCommandList(v5 + 1, curNode, 1);
return;
}
}
}
for (i32 curNode = 0; curNode < NumNodes; curNode++)
{
2024-07-17 16:18:24 +00:00
u16 *v5 = reinterpret_cast<u16*>(gTrigNodes[curNode]);
2024-07-17 15:58:37 +00:00
if (*v5 == 4)
{
trigLog("*** Executing AUTOEXEC Node %i ***", curNode);
ExecuteCommandList(v5 + 1, curNode, 1);
}
}
}
2024-07-17 15:39:02 +00:00
// @Ok
void Trig_ExecuteRestart(void)
{
print_if_false(RestartNode != 0xFFFF, "Tried to execute a restart with no restart node set");
print_if_false(*gTrigNodes[RestartNode] == 8, "Eh? Restart node isn't a restart node!");
print_if_false(MechList != 0, "Tried to execute a restart with a NULL MechList");
CVector v7;
v7.vx = 0;
v7.vy = 0;
v7.vz = 0;
CSVector *Position = reinterpret_cast<CSVector*>(Trig_GetPosition(&v7, RestartNode));
MechList->mPos = v7;
MechList->SetStartOrientation(Position);
char *v3 = reinterpret_cast<char*>(&Position[1]);
trigLog("*** Executing Restart Node: %s ***", v3);
v3 = SkipString(v3);
Trig_ZeroPendingList();
ExecuteCommandList(reinterpret_cast<u16*>(v3), RestartNode, 1);
}
2024-07-17 15:24:33 +00:00
// @Ok
void Trig_SetRestart(char *pName)
{
RestartNode = 0xFFFF;
for (i32 curNode = 0; curNode < NumNodes; curNode++)
{
if (*gTrigNodes[curNode] == 8)
{
CVector v3;
v3.vx = 0;
v3.vy = 0;
v3.vz = 0;
u16* Position = Trig_GetPosition(&v3, curNode);
if (Utils_CompareStrings(reinterpret_cast<char*>(&Position[3]), pName))
{
RestartNode = curNode;
trigLog("Set RestartNode = %i", curNode);
if (!Utils_CompareStrings(pName, "re_start_death"))
gReStartDeathRelated = 1;
return;
}
}
}
print_if_false(0, "Restart point ");
}
2024-07-17 15:02:28 +00:00
// @Ok
INLINE char *SkipString(char *pText)
{
while(*pText)
pText++;
pText++;
return &pText[reinterpret_cast<u32>(pText) & 1];
}
// @Ok
void Trig_DeleteTrigFile(void)
{
if (gTrigFile)
{
Mem_Delete(reinterpret_cast<void*>(gTrigFile));
gTrigFile = 0;
}
Restart = 0;
Trig_ZeroPendingList();
}
// @BIGTODO
void ExecuteCommandList(u16*, i32, i32)
{
printf("ExecuteCommandList");
}
// @Ok
void Trig_DoPendingCommandLists(void)
{
for (i32 i = 0; i<MAXPENDING && PendingListArray[i].pCommands; i++)
{
ExecuteCommandList(
PendingListArray[i].pCommands,
PendingListArray[i].NodeIndex,
0);
}
Trig_ZeroPendingList();
}
// @Ok
INLINE void Trig_AddCommandListToPending(u16 nodeIndex, u16* pCommands)
{
i32 i;
for(i = 0; i < MAXPENDING && PendingListArray[i].pCommands; i++);
print_if_false(i < 16, "Pending command list overflow, increase MAXPENDING in trig.cpp");
PendingListArray[i].NodeIndex = nodeIndex;
PendingListArray[i].pCommands = pCommands;
}
// @Ok
SCommandPoint* Trig_TriggerCommandPoint(u32 checksum, bool assert)
{
for (SCommandPoint *pSearch = HashTable[(checksum)&0xFF]; pSearch; pSearch = pSearch->pNextSimilar)
{
if (pSearch->Checksum == checksum)
{
pSearch->Collision = 1;
if (!pSearch->Executed)
{
trigLog("\tCommandPoint Triggered: node %i", pSearch->NodeIndex);
Trig_AddCommandListToPending(pSearch->NodeIndex, pSearch->pCommands);
pSearch->Executed = 1;
return pSearch;
}
}
}
return 0;
}
2024-07-16 16:19:29 +00:00
// @Ok
2024-07-17 16:18:24 +00:00
INLINE SCommandPoint* GetCommandPoint(i32 Node)
2024-07-16 16:19:29 +00:00
{
if (Node != 0xFFF && *gTrigNodes[Node] == 6)
{
for (SCommandPoint *cur = CommandPoints; cur; cur = cur->pNext)
{
if (cur->NodeIndex == Node)
return cur;
}
}
return 0;
}
2024-07-16 16:06:17 +00:00
// @Ok
SCommandPoint* CreateCommandPoint(u32 checksum, u16 node, u16* pCommands)
{
SCommandPoint* result = static_cast<SCommandPoint*>(DCMem_New(sizeof(SCommandPoint), 0, 1, 0, 1));
result->pNext = CommandPoints;
CommandPoints = result;
u32 index = (checksum) & 0xFF;
2024-07-16 16:06:17 +00:00
result->pNextSimilar = HashTable[index];
HashTable[index] = result;
result->Collision = 0;
result->Executed = 0;
result->NodeIndex = node;
result->pCommands = pCommands;
result->Checksum = checksum;
result->PulsesReceived = 0;
result->NumPulsesSet = 0;
result->NumPulses = 0;
return result;
}
// @Ok
void Trig_DeleteCommandPoints(void)
{
for (i32 i = 0; i<256; i++)
HashTable[i] = 0;
for (SCommandPoint *cur = CommandPoints; cur; )
{
SCommandPoint *next = cur->pNext;
Mem_Delete(reinterpret_cast<void*>(cur));
cur = next;
}
CommandPoints = 0;
Trig_ZeroPendingList();
}
// @Ok
INLINE void Trig_ZeroPendingList(void)
{
for (i32 i = 0; i<MAXPENDING; i++)
{
PendingListArray[i].NodeIndex = 0;
PendingListArray[i].pCommands = 0;
}
}
2024-05-12 17:44:36 +00:00
2024-07-16 15:16:40 +00:00
// @Ok
void Trig_ResetCPExecutedFlags(void)
{
for(SCommandPoint *cur = CommandPoints; cur; cur = cur->pNext)
{
if (cur->Executed && !cur->Collision)
cur->Executed = 0;
}
}
2024-07-14 13:22:45 +00:00
// @Ok
void* Trig_GetLinkInfoList(
i32 a1,
SLinkInfo* pLink,
i32 count)
2024-07-13 16:30:41 +00:00
{
2024-07-14 13:22:45 +00:00
i32 result = 0;
u16* linksPtr = reinterpret_cast<u16*>(Trig_GetLinksPointer(a1));
if (*linksPtr)
{
u16 *v8 = linksPtr + 1;
result = *linksPtr;
if (result)
{
for (i32 i = 0; i<result && i < count; i++, v8++)
{
2024-07-17 16:18:24 +00:00
u16 *v11 = reinterpret_cast<u16*>(gTrigNodes[*v8]);
2024-07-14 13:22:45 +00:00
pLink[i].field_0 = *v8;
pLink[i].field_4 = *v11;
if (*v11 == 1002)
pLink[i].field_8 = v11[1];
else
pLink[i].field_8 = 0;
pLink[i].field_C = 0;
}
}
}
if (result <= count)
{
return reinterpret_cast<void*>(result);
}
return reinterpret_cast<void*>(count);
2024-07-13 16:30:41 +00:00
}
// @MEDIUMTODO
2024-05-12 17:44:36 +00:00
int Trig_GetLevelId(void)
{
return 0x686868;
}
// @BIGTODO
2024-07-13 13:42:05 +00:00
u16* Trig_GetPosition(CVector*, int)
{
return reinterpret_cast<u16*>(0x13072024);
}
2024-05-12 17:44:36 +00:00
2024-07-14 12:50:33 +00:00
// @Ok
INLINE u16* Trig_GetLinksPointer(int node)
2024-05-12 17:44:36 +00:00
{
2024-07-16 16:19:29 +00:00
print_if_false(node >= 0 && node < NumNodes, "Bad node sent to Trig_GetLinksPointer");
2024-07-14 12:50:33 +00:00
2024-07-18 16:57:06 +00:00
u16* trigNodePtr = reinterpret_cast<u16*>(gTrigNodes[node]);
i32 trigNodeValue = *reinterpret_cast<u16*>(trigNodePtr);
2024-07-14 12:50:33 +00:00
if (trigNodeValue <= 0xD)
2024-07-14 12:50:33 +00:00
{
if (trigNodeValue < 0xC)
2024-07-14 12:50:33 +00:00
{
switch (trigNodeValue)
2024-07-14 12:50:33 +00:00
{
case 1:
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 3);
2024-07-14 12:50:33 +00:00
case 2:
case 3:
case 6:
case 8:
case 9:
case 10:
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 1);
2024-07-14 12:50:33 +00:00
case 5:
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 2);
2024-07-14 12:50:33 +00:00
default:
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
return 0;
}
}
else
{
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 1);
2024-07-14 12:50:33 +00:00
}
}
else if (trigNodeValue <= 0x3E9)
2024-07-14 12:50:33 +00:00
{
if (trigNodeValue < 0x3E8)
2024-07-14 12:50:33 +00:00
{
if (trigNodeValue != 0x14)
2024-07-14 12:50:33 +00:00
{
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
return 0;
}
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 2);
2024-07-14 12:50:33 +00:00
}
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 1);
2024-07-14 12:50:33 +00:00
}
else if (trigNodeValue != 0x3EA)
2024-07-14 12:50:33 +00:00
{
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
print_if_false(0, "Unrecognized node type in\n Trig_GetLinksPointer");
return 0;
}
2024-07-14 13:22:45 +00:00
return reinterpret_cast<u16*>(trigNodePtr + 2);
2024-05-12 17:44:36 +00:00
}
2024-05-14 18:19:05 +00:00
2024-07-17 16:29:58 +00:00
// @Ok
void Trig_SendPulse(u16* pLinkInfo)
{
u16 NumLinks = pLinkInfo[0];
u16* pLink = &pLinkInfo[1];
for (i32 curLink = 0; curLink < NumLinks; curLink++)
{
Trig_SendPulseToNode(pLink[curLink]);
}
}
2024-05-22 14:49:57 +00:00
2024-07-18 16:57:06 +00:00
// @Ok
void Trig_SendSignalToLinks(u16* pLinkInfo)
{
print_if_false(*pLinkInfo != 0, "Node sending signal is not linked\n to anything");
u16 NumLinks = *pLinkInfo;
u16 *pLink = pLinkInfo+1;
for (i32 i = 0; i < NumLinks; i++)
{
u32 nodeIndex = pLink[i];
switch (*gTrigNodes[nodeIndex])
{
case 1:
case 7:
SendSignalToNode(BaddyList, nodeIndex);
SendSignalToNode(ControlBaddyList, nodeIndex);
SendSignalToNode(EnvironmentalObjectList, nodeIndex);
break;
}
}
}
2024-05-25 17:19:27 +00:00
// @Ok
2024-05-26 14:32:38 +00:00
void Trig_ClearTrigMenu(void)
{
for (int i = 0; i<40; i++)
{
gTrigMenu[i] = 0;
}
gRestartPoints = 0;
}
2024-05-26 15:26:37 +00:00
// @Ok
2024-07-16 15:16:40 +00:00
unsigned char* SkipFlags(unsigned char* pFlags)
2024-05-26 15:26:37 +00:00
{
2024-07-16 15:16:40 +00:00
while(*pFlags != 0xFF)
pFlags++;
2024-05-26 15:26:37 +00:00
2024-07-16 15:16:40 +00:00
return pFlags+1;
2024-05-26 15:26:37 +00:00
}
2024-05-28 17:12:31 +00:00
// @Ok
2024-05-28 17:12:31 +00:00
void Trig_ResetCPCollisionFlags(void)
{
for(SCommandPoint *cur = CommandPoints; cur; cur = cur->pNext)
2024-05-28 17:12:31 +00:00
{
cur->Collision = 0;
2024-05-28 17:12:31 +00:00
}
}
2024-05-29 18:14:35 +00:00
// @NotOk
// check inline later
2024-07-16 15:16:40 +00:00
INLINE u8 GetFlag(unsigned char flag, unsigned char *pFlags)
2024-05-29 18:14:35 +00:00
{
2024-07-16 15:16:40 +00:00
while (*pFlags != 0xFF)
2024-05-29 18:14:35 +00:00
{
2024-07-16 15:16:40 +00:00
if (*pFlags == flag)
2024-05-29 18:14:35 +00:00
{
return 1;
}
}
return 0;
}
2024-07-17 16:18:24 +00:00
// @Ok
void Trig_SendPulseToNode(i32 NodeIndex)
{
print_if_false(NodeIndex >= 0 && NodeIndex < NumNodes, "Bad node sent to Trig_SendPulseToNode");
trigLog("\tSending pulse to node %i", NodeIndex);
SCommandPoint *pCommand;
switch(*gTrigNodes[NodeIndex])
{
case 1:
case 5:
case 7:
case 20:
Trig_CreateObject(NodeIndex);
break;
case 6:
pCommand = GetCommandPoint(NodeIndex);
print_if_false(pCommand != 0, "Sent pulse to command point node before command point was created");
pCommand->PulsesReceived++;
Trig_AddCommandListToPending(NodeIndex, pCommand->pCommands);
break;
default:
return;
}
}
2024-05-31 17:49:29 +00:00
2024-05-22 14:49:57 +00:00
void validate_SLinkInfo(void)
{
2024-07-13 16:30:41 +00:00
VALIDATE_SIZE(SLinkInfo, 0x10);
2024-05-22 14:49:57 +00:00
VALIDATE(SLinkInfo, field_0, 0x0);
VALIDATE(SLinkInfo, field_4, 0x4);
VALIDATE(SLinkInfo, field_8, 0x8);
2024-07-13 16:30:41 +00:00
VALIDATE(SLinkInfo, field_C, 0xC);
2024-05-22 14:49:57 +00:00
}
2024-05-26 14:32:38 +00:00
void validate_SCommandPoint(void)
{
VALIDATE_SIZE(SCommandPoint, 0x18);
VALIDATE(SCommandPoint, pCommands, 0x0);
VALIDATE(SCommandPoint, Collision, 0x4);
2024-07-16 15:16:40 +00:00
VALIDATE(SCommandPoint, Executed, 0x5);
VALIDATE(SCommandPoint, NumPulsesSet, 0x6);
VALIDATE(SCommandPoint, PulsesReceived, 0x7);
VALIDATE(SCommandPoint, NumPulses, 0x8);
VALIDATE(SCommandPoint, NodeIndex, 0xA);
VALIDATE(SCommandPoint, Checksum, 0xC);
VALIDATE(SCommandPoint, pNextSimilar, 0x10);
VALIDATE(SCommandPoint, pNext, 0x14);
}
void validate_PendingListEntry(void)
{
VALIDATE_SIZE(PendingListEntry, 0x8);
VALIDATE(PendingListEntry, NodeIndex, 0x0);
VALIDATE(PendingListEntry, field_2, 0x2);
VALIDATE(PendingListEntry, pCommands, 0x4);
}