papermario/src/code_e79b0_len_1920.c

406 lines
11 KiB
C
Raw Normal View History

2020-08-04 08:49:11 +02:00
#include "common.h"
INCLUDE_ASM("code_e79b0_len_1920", sort_scripts);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", find_script_labels);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", clear_script_list);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", init_script_list);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", func_802C3390);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", start_script);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", start_script_in_group);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", start_child_script);
2020-08-04 08:49:11 +02:00
2020-09-18 22:07:15 +02:00
INCLUDE_ASM("code_e79b0_len_1920", func_802C39F8);
2020-08-22 09:43:30 +02:00
extern s32 gStaticScriptCounter;
extern s32 D_802D9CA4;
extern s32 gNumScripts;
extern s32 D_802DAC98;
2020-09-18 22:07:15 +02:00
/*ScriptInstance* func_802C39F8(ScriptInstance* parentScript, Bytecode* nextLine, s32 newState) {
2020-08-22 09:43:30 +02:00
ScriptInstance** curScript = gCurrentScriptListPtr;
ScriptInstance* child;
ScriptInstance** temp3;
s32* temp6;
s32 temp2;
s32 temp7;
s32 i;
for(i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++){
if (curScript[i] == NULL) {
break;
}
}
temp3 = gCurrentScriptListPtr;
ASSERT(i < ARRAY_COUNT(gCurrentScriptListPtr));
temp2 = i;
child = heap_malloc(sizeof(ScriptInstance));
temp3[temp2] = child;
temp7 = gNumScripts++;
ASSERT(child != NULL);
child->state = newState | 1;
child->ptrNextLine = nextLine;
child->ptrFirstLine = nextLine;
child->ptrCurrentLine = nextLine;
child->currentOpcode = 0;
child->deleted = 0;
child->blockingParent = NULL;
child->parentScript = parentScript;
child->childScript = NULL;
child->priority = parentScript->priority;
child->uniqueID = gStaticScriptCounter++;
child->ownerActorID = parentScript->ownerActorID;
child->ownerID = parentScript->ownerID;
child->loopDepth = -1;
child->switchDepth = -1;
child->groupFlags = parentScript->groupFlags;
child->ptrSavedPosition = NULL;
child->array = parentScript->array;
child->flagArray = parentScript->flagArray;
child->timeScale = gGlobalTimeSpace;
child->frameCounter = 0;
child->unk_158 = 0;
for(i = 0; i < ARRAY_COUNT(child->varTable); i++) {
child->varTable[i] = parentScript->varTable[i];
}
for(i = 0; i < ARRAY_COUNT(child->varFlags); i++){
child->varFlags[i] = parentScript->varFlags[i];
}
find_script_labels(child);
if (D_802D9CA4 != 0) {
temp7 = D_802DAC98++;
gScriptIndexList[temp7] = temp2;
gScriptIdList[temp7] = child->uniqueID;
}
temp6 = &gStaticScriptCounter;
if (*temp6 == 0) {
*temp6 = 1;
}
func_802C3390(child);
return child;
2020-09-18 22:07:15 +02:00
}*/
2020-08-22 09:43:30 +02:00
2020-09-18 22:07:15 +02:00
INCLUDE_ASM("code_e79b0_len_1920", func_802C3C10);
2020-08-04 08:49:11 +02:00
2020-08-16 08:55:51 +02:00
ScriptInstance* restart_script(ScriptInstance* script) {
2020-08-22 09:43:30 +02:00
Bytecode* temp;
script->loopDepth = -1;
script->switchDepth = -1;
script->currentOpcode = 0;
script->frameCounter = 0;
2020-08-22 09:43:30 +02:00
temp = script->ptrFirstLine;
script->ptrNextLine = temp;
script->ptrCurrentLine = temp;
script->timeScale = 1.0f;
script->frameCounter = 0;
script->unk_158 = 0;
script->timeScale = 1.0f;
script->timeScale = gGlobalTimeSpace;
find_script_labels();
func_802C3390(script);
return script;
}
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", update_scripts);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", func_802C3EE4);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", kill_script);
2020-08-04 08:49:11 +02:00
2020-08-19 02:21:04 +02:00
void kill_script_by_ID(s32 id) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
2020-08-15 04:55:54 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
2020-08-14 07:22:16 +02:00
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
kill_script(scriptContextPtr);
}
}
}
2020-08-19 02:21:04 +02:00
void kill_all_scripts(void) {
2020-08-14 07:22:16 +02:00
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
2020-08-14 07:22:16 +02:00
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
2020-08-14 07:22:16 +02:00
if (scriptContextPtr != NULL) {
kill_script(scriptContextPtr);
}
}
}
2020-08-04 08:49:11 +02:00
2020-08-14 07:22:16 +02:00
s32 does_script_exist(s32 id) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
2020-08-04 08:49:11 +02:00
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
2020-08-14 07:22:16 +02:00
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
return 1;
}
}
return 0;
}
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
s32 does_script_exist_by_ref(ScriptInstance* script) {
s32 i;
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
if (script == (*gCurrentScriptListPtr)[i]) {
return 1;
}
}
return 0;
}
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
void set_script_priority(ScriptInstance* script, s8 priority) {
script->priority = priority;
}
2020-08-04 08:49:11 +02:00
void set_script_timescale(ScriptInstance* script, f32 timescale) {
script->timeScale = timescale * gGlobalTimeSpace;
}
2020-08-04 08:49:11 +02:00
2020-08-19 03:45:26 +02:00
#ifdef NON_MATCHING
// TODO: figure out why compiler/assembler isn't putting SWC1 in delay slot
void set_global_timespace(f32 timeScale) {
2020-08-22 09:43:30 +02:00
gGlobalTimeSpace = timeScale;
}
2020-08-19 03:45:26 +02:00
#else
2020-08-20 18:02:57 +02:00
INCLUDE_ASM("code_e79b0_len_1920", set_global_timespace);
2020-08-19 03:45:26 +02:00
#endif
2020-08-04 08:49:11 +02:00
2020-08-19 03:45:26 +02:00
#ifdef NON_MATCHING
// TODO: figure out why compiler/assembler isn't putting LWC1 in delay slot
f32 get_global_timespace(void) {
2020-08-22 09:43:30 +02:00
return gGlobalTimeSpace;
}
2020-08-19 03:45:26 +02:00
#else
2020-08-20 18:02:57 +02:00
INCLUDE_ASM("code_e79b0_len_1920", get_global_timespace);
2020-08-19 03:45:26 +02:00
#endif
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
void set_script_group(ScriptInstance* script, s8 groupFlags) {
script->groupFlags = groupFlags;
}
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", bind_trigger);
2020-08-04 08:49:11 +02:00
INCLUDE_ASM("code_e79b0_len_1920", bind_trigger_1);
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
void suspend_group_script(ScriptInstance* script, s32 groupFlags) {
int i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
ScriptInstance* childScript = script->childScript;
2020-08-04 08:49:11 +02:00
if (childScript != NULL) {
suspend_group_script(childScript, groupFlags);
}
2020-08-04 08:49:11 +02:00
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->parentScript == script) {
suspend_group_script(scriptContextPtr, groupFlags);
}
}
2020-08-04 08:49:11 +02:00
if ((script->groupFlags & groupFlags) != 0) {
script->state |= 0x2;
}
}
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
void resume_group_script(ScriptInstance* script, s32 groupFlags) {
int i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
ScriptInstance* childScript = script->childScript;
2020-08-04 08:49:11 +02:00
if (childScript != NULL) {
resume_group_script(childScript, groupFlags);
}
2020-08-04 08:49:11 +02:00
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->parentScript == script) {
suspend_group_script(scriptContextPtr, groupFlags);
}
}
2020-08-04 08:49:11 +02:00
if ((script->groupFlags & groupFlags) != 0) {
script->state &= 0xFD;
}
}
2020-08-04 08:49:11 +02:00
s32 suspend_all_script(s32 id) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
suspend_group_script(scriptContextPtr, 0xEF);
}
}
}
2020-08-04 08:49:11 +02:00
s32 resume_all_script(s32 id) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
resume_group_script(scriptContextPtr, 0xEF);
}
}
}
void suspend_group_script_index(s32 id, s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
suspend_group_script(scriptContextPtr, groupFlags);
}
}
}
void resume_group_script_index(s32 id, s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
resume_group_script(scriptContextPtr, groupFlags);
}
}
}
s32 suspend_all_group(s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL) {
suspend_group_script(scriptContextPtr, groupFlags);
}
}
}
s32 resume_all_group(s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL) {
resume_group_script(scriptContextPtr, groupFlags);
}
}
}
2020-08-19 02:23:52 +02:00
void suspend_group_others(ScriptInstance* script, s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr != script) {
suspend_group_script(scriptContextPtr, groupFlags);
}
}
}
2020-08-19 02:23:52 +02:00
void resume_group_others(ScriptInstance* script, s32 groupFlags) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr != script) {
resume_group_script(scriptContextPtr, groupFlags);
}
}
}
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
ScriptInstance* get_script_by_index(s32 index) {
return (*gCurrentScriptListPtr)[index];
}
2020-08-16 07:13:03 +02:00
ScriptInstance* get_script_by_id(s32 id) {
s32 i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
if ((*gCurrentScriptListPtr)[i] != NULL) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr->uniqueID == id) {
return scriptContextPtr;
}
}
}
return 0;
}
2020-08-04 08:49:11 +02:00
2020-08-16 07:13:03 +02:00
void set_script_flags(ScriptInstance* script, s32 flags) {
int i;
2020-08-16 07:13:03 +02:00
ScriptInstance* scriptContextPtr;
ScriptInstance* childScript = script->childScript;
2020-08-14 07:22:16 +02:00
script->state |= flags;
if (childScript != NULL) {
set_script_flags(childScript, flags);
}
2020-08-19 02:16:12 +02:00
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->parentScript == script) {
set_script_flags(script->parentScript, flags);
}
}
}
2020-08-04 08:49:11 +02:00
2020-08-19 03:45:26 +02:00
#ifdef NON_MATCHING
// TODO: Really close but some weirdness is going on
2020-08-16 08:55:51 +02:00
void clear_script_flags(ScriptInstance* script, s32 flags) {
int i;
2020-08-16 08:55:51 +02:00
ScriptInstance* scriptContextPtr;
ScriptInstance* childScript = script->childScript;
script->state &= ~flags;
if (childScript != NULL) {
clear_script_flags(childScript, flags);
}
for (i = 0; i < ARRAY_COUNT(gCurrentScriptListPtr); i++) {
scriptContextPtr = (*gCurrentScriptListPtr)[i];
if (scriptContextPtr != NULL && scriptContextPtr->parentScript == script) {
clear_script_flags(script->parentScript, flags);
}
}
}
2020-08-19 03:45:26 +02:00
#else
2020-08-20 18:02:57 +02:00
INCLUDE_ASM("code_e79b0_len_1920", clear_script_flags);
2020-08-19 03:45:26 +02:00
#endif