mirror of
https://github.com/pmret/papermario.git
synced 2024-11-18 08:52:40 +01:00
Some tidying and more functions
This commit is contained in:
parent
6aa628f3ac
commit
a2f9747112
@ -31,18 +31,38 @@ void* kill_script_by_ID(s32 id) {
|
|||||||
script_context* scriptContextPtr;
|
script_context* scriptContextPtr;
|
||||||
|
|
||||||
for (i=0; i < 128; i++) {
|
for (i=0; i < 128; i++) {
|
||||||
if (gCurrentScriptList[i] != 0) {
|
|
||||||
scriptContextPtr = (script_context*) gCurrentScriptList[i];
|
scriptContextPtr = (script_context*) gCurrentScriptList[i];
|
||||||
if (scriptContextPtr->uniqueID == id) {
|
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
|
||||||
kill_script(scriptContextPtr);
|
kill_script(scriptContextPtr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, kill_all_scripts);
|
s32 kill_all_scripts(void) {
|
||||||
|
s32 i;
|
||||||
|
script_context* scriptContextPtr;
|
||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, does_script_exist);
|
for(i=0; i < 128; i++) {
|
||||||
|
scriptContextPtr = (script_context*) gCurrentScriptList[i];
|
||||||
|
if (scriptContextPtr != NULL) {
|
||||||
|
kill_script(scriptContextPtr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 does_script_exist(s32 id) {
|
||||||
|
s32 i;
|
||||||
|
script_context* scriptContextPtr;
|
||||||
|
|
||||||
|
for(i=0; i < 128; i++) {
|
||||||
|
scriptContextPtr = (script_context*) gCurrentScriptList[i];
|
||||||
|
if (scriptContextPtr != NULL && scriptContextPtr->uniqueID == id) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, does_script_exist_by_ref);
|
INCLUDE_ASM(code_e79b0_len_1920, does_script_exist_by_ref);
|
||||||
|
|
||||||
@ -80,11 +100,11 @@ INCLUDE_ASM(code_e79b0_len_1920, suspend_group_others);
|
|||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, resume_group_others);
|
INCLUDE_ASM(code_e79b0_len_1920, resume_group_others);
|
||||||
|
|
||||||
s32 get_script_by_index(s32 index) {
|
script_context* get_script_by_index(s32 index) {
|
||||||
return gCurrentScriptList[index];
|
return gCurrentScriptList[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
void* get_script_by_id(s32 id) {
|
script_context* get_script_by_id(s32 id) {
|
||||||
s32 i;
|
s32 i;
|
||||||
script_context* scriptContextPtr;
|
script_context* scriptContextPtr;
|
||||||
|
|
||||||
@ -99,6 +119,7 @@ void* get_script_by_id(s32 id) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, set_script_flags);
|
INCLUDE_ASM(code_e79b0_len_1920, set_script_flags);
|
||||||
|
|
||||||
INCLUDE_ASM(code_e79b0_len_1920, clear_script_flags);
|
INCLUDE_ASM(code_e79b0_len_1920, clear_script_flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user