2020-10-06 21:16:17 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", TranslateModel, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", RotateModel, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", ScaleModel, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
ApiStatus GetModelIndex(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode modelID = get_variable(script, *thisPos++);
|
|
|
|
Bytecode index = *thisPos++;
|
|
|
|
|
|
|
|
set_variable(script, index, get_model_list_index_from_tree_index(modelID));
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus func_802C8EE4(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode modelID = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(get_model_list_index_from_tree_index(modelID));
|
|
|
|
|
|
|
|
model->flags &= ~0x400;
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus CloneModel(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode srcModelID = get_variable(script, *thisPos++);
|
|
|
|
Bytecode newModelID = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
clone_model(srcModelID, newModelID);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GetModelCenter(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
f32 centerX;
|
|
|
|
f32 centerY;
|
|
|
|
f32 centerZ;
|
|
|
|
f32 sizeX;
|
|
|
|
f32 sizeY;
|
|
|
|
f32 sizeZ;
|
|
|
|
|
|
|
|
get_model_center_and_size(get_variable(script, *thisPos++) & 0xFFFF, ¢erX, ¢erY, ¢erZ, &sizeX, &sizeY,
|
|
|
|
&sizeZ);
|
|
|
|
script->varTable[0] = centerX;
|
|
|
|
script->varTable[1] = centerY;
|
|
|
|
script->varTable[2] = centerZ;
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus SetTexPanner(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 treeIndex = get_variable(script, *thisPos++);
|
|
|
|
s32 var2 = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex));
|
|
|
|
|
|
|
|
set_tex_panner(model, var2);
|
|
|
|
model->flags |= 0x800;
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus SetModelFlag10(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode treeIndex = get_variable(script, *thisPos++);
|
|
|
|
Bytecode var2 = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex));
|
|
|
|
|
|
|
|
if (var2 != 0) {
|
|
|
|
model->flags |= 0x10;
|
|
|
|
} else {
|
|
|
|
model->flags &= ~0x10;
|
|
|
|
}
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NON_MATCHING
|
|
|
|
ApiStatus func_802C90FC(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 treeIndex = get_variable(script, *thisPos++);
|
|
|
|
s32 var2 = get_variable(script, *thisPos++);
|
|
|
|
s32 var3 = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex));
|
|
|
|
|
|
|
|
func_8011BC7C(model, var2, var3);
|
|
|
|
if (var2 != -1) {
|
|
|
|
model->flags |= 0x10;
|
|
|
|
}
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", func_802C90FC);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ApiStatus func_802C91A4(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode treeIndex = get_variable(script, *thisPos++);
|
|
|
|
Bytecode var2 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex))->unk_A9 = var2;
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus EnableTexPanning(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 treeIndex = get_variable(script, *thisPos++);
|
|
|
|
s32 flag = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex));
|
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
model->flags |= 0x800;
|
|
|
|
} else {
|
|
|
|
model->flags &= ~0x800;
|
|
|
|
}
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus EnableModel(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 listIndex = get_model_list_index_from_tree_index(get_variable(script, *thisPos++));
|
|
|
|
Bytecode flag = get_variable(script, *thisPos++);
|
|
|
|
Model* model = get_model_from_list_index(listIndex);
|
|
|
|
|
|
|
|
if (flag != 0) {
|
|
|
|
model->flags &= ~0x2;
|
|
|
|
} else {
|
|
|
|
model->flags |= 0x2;
|
|
|
|
}
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus SetGroupEnabled(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
Bytecode var1 = get_variable(script, *thisPos++);
|
|
|
|
Bytecode var2 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
func_8011B7C0(var1, 2, var2);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", SetTexPanOffset, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
ApiStatus func_802C9428(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 var1 = get_variable(script, *thisPos++);
|
|
|
|
s32 var2 = get_variable(script, *thisPos++);
|
|
|
|
s32 var3 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
func_8011BCB4(var1, var2, var3);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus func_802C94A0(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 var1 = get_variable(script, *thisPos++);
|
|
|
|
s32 var2 = get_variable(script, *thisPos++);
|
|
|
|
s32 var3 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
func_8011BCD0(var1, var2, var3);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NON_MATCHING
|
2020-10-08 23:45:26 +02:00
|
|
|
ApiStatus SetModelFlags(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* args = script->ptrReadPos;
|
|
|
|
s32 treeIndex = get_variable(script, *args++);
|
|
|
|
s32 listIndex = get_model_list_index_from_tree_index(treeIndex);
|
|
|
|
s32 a1 = *args++;
|
|
|
|
s32 var2;
|
2020-10-06 21:16:17 +02:00
|
|
|
Model* model;
|
|
|
|
|
2020-10-08 23:45:26 +02:00
|
|
|
var2 = get_variable(script, *args);
|
2020-10-06 21:16:17 +02:00
|
|
|
model = get_model_from_list_index(listIndex);
|
|
|
|
|
2020-10-08 23:45:26 +02:00
|
|
|
if (var2 != 0) {
|
|
|
|
model->flags |= a1;
|
2020-10-06 21:16:17 +02:00
|
|
|
} else {
|
2020-10-08 23:45:26 +02:00
|
|
|
model->flags &= ~a1;
|
2020-10-06 21:16:17 +02:00
|
|
|
}
|
2020-10-09 20:26:17 +02:00
|
|
|
|
2020-10-06 21:16:17 +02:00
|
|
|
return ApiStatus_DONE2;
|
2020-10-08 23:45:26 +02:00
|
|
|
}
|
2020-10-06 21:16:17 +02:00
|
|
|
#else
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", SetModelFlags, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", func_802C95A0);
|
|
|
|
|
|
|
|
ApiStatus func_802C971C(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
func_8011B37C((u16)get_variable(script, *script->ptrReadPos));
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus func_802C9748(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
u16 var1 = get_variable(script, *thisPos++);
|
|
|
|
s32 var2 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
if (var2 != 0) {
|
|
|
|
func_8011B5D0(var1);
|
|
|
|
} else {
|
|
|
|
func_8011B660(var1);
|
|
|
|
}
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", TranslateGroup, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", RotateGroup, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", ScaleGroup, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
ApiStatus func_802C9B40(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 var1 = get_variable(script, *thisPos++);
|
|
|
|
Bytecode var2 = *thisPos++;
|
|
|
|
|
|
|
|
set_variable(script, var2, func_8011B090(var1));
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", EnableGroup, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
ApiStatus func_802C9C70(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 var1 = get_variable(script, *thisPos++);
|
|
|
|
u16 var2 = get_variable(script, *thisPos++);
|
|
|
|
s32 var3 = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
func_8011C164(var1, var2, var3);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", modify_collider_family_flags);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", ModifyColliderFlags, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", ResetFromLava, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", func_802C9FD4);
|
|
|
|
|
|
|
|
ApiStatus GetColliderCenter(ScriptInstance* script, s32 initialCall) {
|
|
|
|
f32 x;
|
|
|
|
f32 y;
|
|
|
|
f32 z;
|
|
|
|
|
|
|
|
get_collider_center(get_variable(script, *script->ptrReadPos), &x, &y, &z);
|
|
|
|
|
|
|
|
script->varTable[0] = x;
|
|
|
|
script->varTable[1] = y;
|
|
|
|
script->varTable[2] = z;
|
|
|
|
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus ParentColliderToModel(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s16 colliderID = get_variable(script, *thisPos++);
|
|
|
|
s32 treeIndex = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
parent_collider_to_model(colliderID, get_model_list_index_from_tree_index(treeIndex));
|
|
|
|
update_collider_transform(colliderID);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus UpdateColliderTransform(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
update_collider_transform(get_variable(script, *script->ptrReadPos));
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", set_zone_enabled);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", SetZoneEnabled);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", goto_map);
|
|
|
|
|
|
|
|
ApiStatus GotoMap(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
goto_map(script, 0);
|
|
|
|
return ApiStatus_DONE1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GotoMapSpecial(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
goto_map(script, 1);
|
|
|
|
return ApiStatus_DONE1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GotoMapByID(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
goto_map(script, 2);
|
|
|
|
return ApiStatus_DONE1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GetEntryID(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
set_variable(script, *script->ptrReadPos, GAME_STATUS->entryID);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GetMapID(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
set_variable(script, *script->ptrReadPos, GAME_STATUS->mapID);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus GetLoadType(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
set_variable(script, *script->ptrReadPos, GAME_STATUS->loadType != 0);
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiStatus SetRenderMode(ScriptInstance* script, s32 isInitialCall) {
|
|
|
|
Bytecode* thisPos = script->ptrReadPos;
|
|
|
|
s32 treeIndex = get_variable(script, *thisPos++);
|
|
|
|
s8 renderMode = get_variable(script, *thisPos++);
|
|
|
|
|
|
|
|
get_model_from_list_index(get_model_list_index_from_tree_index(treeIndex))->renderMode = renderMode;
|
|
|
|
|
|
|
|
return ApiStatus_DONE2;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", PlaySoundAtModel, ScriptInstance* script, s32 isInitialCall);
|
|
|
|
|
|
|
|
INCLUDE_ASM(s32, "code_ED510", PlaySoundAtCollider, ScriptInstance* script, s32 isInitialCall);
|