2020-07-18 02:47:33 +02:00
|
|
|
#ifndef _FUNCTIONS_H_
|
|
|
|
#define _FUNCTIONS_H_
|
|
|
|
|
|
|
|
#include "ultra64.h"
|
2021-04-08 19:42:36 +02:00
|
|
|
#include "common.h"
|
|
|
|
#include "map.h"
|
2020-08-15 02:49:33 +02:00
|
|
|
#include "enums.h"
|
2021-09-30 01:01:31 +02:00
|
|
|
#include "stdlib/stdarg.h"
|
2020-07-18 02:47:33 +02:00
|
|
|
|
2021-03-29 02:05:56 +02:00
|
|
|
f32 fabsf(f32 f);
|
2022-01-14 19:09:45 +01:00
|
|
|
f64 fabs(f64 f);
|
2021-04-08 19:42:36 +02:00
|
|
|
f32 cosine(s16 arg0);
|
2020-12-25 00:39:47 +01:00
|
|
|
|
2021-07-08 17:53:00 +02:00
|
|
|
s32 strcmp(const char* str1, const char* str2);
|
|
|
|
|
2020-12-25 00:39:47 +01:00
|
|
|
void nuBoot(void);
|
|
|
|
void boot_idle(void);
|
|
|
|
void boot_main(void);
|
|
|
|
|
2022-03-20 11:12:30 +01:00
|
|
|
void is_debug_init(void);
|
|
|
|
|
2021-04-29 19:09:30 +02:00
|
|
|
f32 signF(f32 val);
|
2021-01-03 10:34:04 +01:00
|
|
|
|
2022-03-20 11:12:30 +01:00
|
|
|
void func_8002D160(void);
|
|
|
|
|
2021-04-24 20:56:22 +02:00
|
|
|
void* heap_malloc(s32 size);
|
2021-11-07 04:10:53 +01:00
|
|
|
void* _heap_malloc(HeapNode* head, u32 size);
|
2022-03-20 11:12:30 +01:00
|
|
|
void* _heap_malloc_tail(HeapNode* head, u32 size);
|
2021-11-07 17:58:57 +01:00
|
|
|
u32 _heap_free(HeapNode* heapNodeList, void* addrToFree);
|
2021-11-11 05:38:52 +01:00
|
|
|
void* _heap_realloc(HeapNode* heapNodeList, void* addr, u32 newSize);
|
2021-11-07 17:58:57 +01:00
|
|
|
HeapNode* _heap_create(HeapNode* addr, u32 size);
|
2021-04-24 20:56:22 +02:00
|
|
|
s32 dma_copy(Addr romStart, Addr romEnd, void* vramDest);
|
2022-03-30 14:07:13 +02:00
|
|
|
f32 rand_float(void);
|
2021-10-29 19:57:15 +02:00
|
|
|
void copy_matrix(Matrix4f src, Matrix4f dest);
|
2020-08-27 00:54:55 +02:00
|
|
|
|
2021-12-29 21:14:20 +01:00
|
|
|
s32 _Printf(PrintCallback pfn, char* arg, const char* fmt, va_list ap);
|
2021-09-30 01:01:31 +02:00
|
|
|
|
2020-09-22 05:10:53 +02:00
|
|
|
s32 get_global_byte(s32 index);
|
2020-09-19 17:16:02 +02:00
|
|
|
s32 get_global_flag(s32 index);
|
2020-09-22 05:10:53 +02:00
|
|
|
s32 get_area_byte(s32 index);
|
2020-09-19 17:16:02 +02:00
|
|
|
s32 get_area_flag(s32 index);
|
|
|
|
|
2020-09-25 23:18:09 +02:00
|
|
|
Shadow* get_shadow_by_index(s32 index);
|
2021-04-23 13:55:30 +02:00
|
|
|
s32 get_time_freeze_mode(void);
|
2021-08-25 14:34:03 +02:00
|
|
|
void render_player_model(void);
|
2021-04-26 19:47:38 +02:00
|
|
|
s16 get_game_mode(void);
|
2021-08-22 15:10:06 +02:00
|
|
|
s32 is_picking_up_item(void);
|
2020-09-25 23:18:09 +02:00
|
|
|
|
2020-10-03 22:04:49 +02:00
|
|
|
f32 integrate_gravity(void);
|
2021-09-27 03:00:51 +02:00
|
|
|
void gravity_use_fall_parms(void);
|
2020-12-20 04:47:09 +01:00
|
|
|
f32 get_clamped_angle_diff(f32, f32);
|
2022-02-19 15:39:34 +01:00
|
|
|
s32 intro_logos_fade_in(s16 subtractAlpha);
|
2021-07-22 20:48:30 +02:00
|
|
|
s32 intro_logos_fade_out(s16 addAlpha);
|
2022-02-19 15:39:34 +01:00
|
|
|
void intro_logos_update_fade(void);
|
2020-10-03 22:04:49 +02:00
|
|
|
|
2020-11-08 01:30:14 +01:00
|
|
|
u32 get_entity_type(s32 arg0);
|
2020-11-18 06:32:18 +01:00
|
|
|
Entity* get_entity_by_index(s32 index);
|
2022-01-16 14:28:09 +01:00
|
|
|
s32 create_entity(EntityBlueprint*, s32, s32, s32, s32, ...);
|
2021-06-30 04:27:12 +02:00
|
|
|
void entity_shattering_idle(Entity* entity);
|
2021-12-28 12:43:24 +01:00
|
|
|
void func_802666E4(Actor* actor, f32 x, f32 y, f32 z, s32 damage);
|
2020-11-18 06:32:18 +01:00
|
|
|
|
2022-03-30 14:07:13 +02:00
|
|
|
s32 entity_raycast_down(f32*, f32*, f32*, f32*, f32*, f32*);
|
|
|
|
|
2021-02-08 16:53:44 +01:00
|
|
|
void step_game_loop(void);
|
2021-02-08 19:02:14 +01:00
|
|
|
s32 resume_all_group(s32 groupFlags);
|
2021-04-29 19:38:02 +02:00
|
|
|
f32 length2D(f32 x, f32 y);
|
2021-06-30 04:27:12 +02:00
|
|
|
void player_input_to_move_vector(f32* angle, f32* magnitude);
|
2021-09-16 14:19:12 +02:00
|
|
|
void game_input_to_move_vector(f32* x, f32* y);
|
2021-06-16 11:52:15 +02:00
|
|
|
void exec_ShakeCamX(s32 arg0, s32 arg1, s32 arg2, f32 arg3);
|
2021-09-08 00:02:00 +02:00
|
|
|
void exec_ShakeCam1(s32 arg0, s32 arg1, s32 arg2);
|
2021-06-16 11:52:15 +02:00
|
|
|
f32 func_800E5348(void);
|
2021-04-29 19:38:02 +02:00
|
|
|
|
2022-04-05 11:52:06 +02:00
|
|
|
void draw_number(s32 value, s32 x, s32 y, s32 variableWidthChars, s32 palette, s32 opacity, s32 style);
|
2021-02-08 16:53:44 +01:00
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
void set_entity_model_render_command_list(s32 idx, u32* commandList);
|
|
|
|
void set_entity_model_flags(s32 idx, s32 newFlags);
|
|
|
|
void clear_entity_model_flags(s32 idx, s32 newFlags);
|
|
|
|
void exec_entity_model_commandlist(s32 idx);
|
|
|
|
s32 load_entity_model(s32* cmdList);
|
2021-09-22 13:17:46 +02:00
|
|
|
RenderTask* queue_render_task(RenderTask* task);
|
2021-07-31 16:32:19 +02:00
|
|
|
|
2021-09-02 13:17:40 +02:00
|
|
|
void setup_pause_menu_tab(MenuWindowBP* bpArray, s32 arraySize);
|
|
|
|
|
2021-11-12 13:23:43 +01:00
|
|
|
s32 draw_ci_image_with_clipping(s32* raster, s32 width, s32 height, s32 fmt, s32 bitDepth, s32* palette, s16 posX,
|
|
|
|
s16 posY, u16 clipULx, u16 clipULy, u16 clipLRx, u16 clipRLy, u8 opacity);
|
|
|
|
|
2022-02-19 15:39:34 +01:00
|
|
|
void render_frame(s32 flag);
|
|
|
|
void clear_windows(void);
|
2022-02-13 09:19:59 +01:00
|
|
|
void update_window_hierarchy(s32 windowIndex, u8 arg1);
|
2022-02-08 19:24:51 +01:00
|
|
|
void get_msg_properties(s32 msgID, s32* height, s32* width, s32* maxLineChars, s32* numLines,
|
|
|
|
s32* maxLinesPerPage, s32* arg6, s32 charset);
|
|
|
|
void replace_window_update(s32 idx, s8 arg1, WindowUpdateFunc pendingFunc);
|
|
|
|
void decode_yay0(void* src, void* dst);
|
|
|
|
|
2022-04-29 06:32:16 +02:00
|
|
|
s32 ai_check_player_dist(Enemy* enemy, s32 arg1, f32 arg2, f32 arg3);
|
2022-03-20 11:12:30 +01:00
|
|
|
|
2022-02-08 19:24:51 +01:00
|
|
|
//pause
|
|
|
|
void pause_init(void);
|
|
|
|
void pause_handle_input(s32 buttonsPressed, s32 buttonsHeld);
|
|
|
|
void pause_cleanup(void);
|
|
|
|
|
2021-12-13 10:27:28 +01:00
|
|
|
// file menu stuff
|
2022-04-05 14:53:40 +02:00
|
|
|
void func_80248170(s32 idx);
|
2022-03-10 10:55:38 +01:00
|
|
|
void filemenu_set_selected(MenuPanel* menu, s32 col, s32 row);
|
|
|
|
void filemenu_set_cursor_alpha(s32 arg0);
|
2021-12-13 10:27:28 +01:00
|
|
|
void filemenu_set_cursor_goal_pos(s32 windowIndex, s32 posX, s32 posY);
|
2022-03-10 10:55:38 +01:00
|
|
|
Message* filemenu_get_menu_message(s32 idx);
|
|
|
|
void filemenu_draw_message(Message*, s32 posX, s32 posY, s32 alpha, s32 color, s32 flags);
|
2021-12-13 10:27:28 +01:00
|
|
|
|
2022-03-20 11:12:30 +01:00
|
|
|
void gfx_task_background(void);
|
|
|
|
|
2022-01-14 19:54:45 +01:00
|
|
|
void update_enemy_shadows(void);
|
|
|
|
void update_hero_shadows(void);
|
|
|
|
|
2021-07-31 16:32:19 +02:00
|
|
|
// append gfx funcs
|
2022-01-14 19:54:45 +01:00
|
|
|
void func_80257B28(void*);
|
|
|
|
void func_8025595C(void*);
|
|
|
|
void func_80257B68(void*);
|
|
|
|
void func_80257B48(void*);
|
|
|
|
void func_8025599C(void*);
|
|
|
|
void func_80257B88(void*);
|
|
|
|
void func_80257DA4(void*);
|
2021-12-26 12:29:29 +01:00
|
|
|
void func_80254C50(Actor*);
|
2022-01-14 19:54:45 +01:00
|
|
|
void func_80258E14(void*);
|
2021-06-16 11:52:15 +02:00
|
|
|
|
2022-02-08 19:33:05 +01:00
|
|
|
void func_80254610(Actor*);
|
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
f32 func_800E34D8(void);
|
2021-09-27 03:00:51 +02:00
|
|
|
void func_800E4AD8(s32 arg0);
|
2021-06-30 04:27:12 +02:00
|
|
|
f32 player_check_collision_below(f32, s32* colliderID);
|
|
|
|
s32 can_trigger_loading_zone(void);
|
2021-12-28 12:43:24 +01:00
|
|
|
void func_80266684(void);
|
2021-06-16 11:52:15 +02:00
|
|
|
void func_802667F0(s32, Actor*, f32, f32, f32);
|
2021-12-26 12:29:29 +01:00
|
|
|
void func_802591EC(s32, ActorPart*, s32, Matrix4f*, s32);
|
2021-06-16 11:52:15 +02:00
|
|
|
|
2022-01-06 14:40:01 +01:00
|
|
|
HeapNode* general_heap_create(void);
|
2021-07-16 20:27:27 +02:00
|
|
|
void* general_heap_malloc(s32 size);
|
2021-12-13 10:27:28 +01:00
|
|
|
s32 general_heap_free(void* data);
|
|
|
|
|
|
|
|
s32 integer_log(s32 number, u32 base);
|
|
|
|
|
|
|
|
void set_battle_formation(s32);
|
|
|
|
void set_battle_stage(s32);
|
|
|
|
void load_battle(s32);
|
2021-07-16 20:27:27 +02:00
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
void entity_Shadow_init(Shadow* entity);
|
|
|
|
void entity_SaveBlock_idle(Entity* entity);
|
|
|
|
void entity_SaveBlock_pause_game(void);
|
|
|
|
void entity_SaveBlock_resume_game(void);
|
|
|
|
void entity_SaveBlock_save_data(void);
|
|
|
|
void entity_SaveBlock_show_tutorial_message(Entity* entity);
|
|
|
|
void entity_SaveBlock_wait_for_close_tutorial(Entity* entity);
|
|
|
|
void entity_SaveBlock_show_choice_message(void);
|
|
|
|
void entity_SaveBlock_show_result_message(void);
|
|
|
|
void entity_SaveBlock_wait_for_close_result(Entity* entity);
|
|
|
|
void entity_SaveBlock_wait_for_close_choice(Entity* entity);
|
|
|
|
void entity_SaveBlock_init(Entity* entity);
|
|
|
|
void entity_GreenStompSwitch_idle(Entity* entity);
|
|
|
|
void entity_GreenStompSwitch_retract(Entity* entity);
|
|
|
|
void entity_GreenStompSwitch_extend(Entity* entity);
|
|
|
|
void entity_HugeBlueSwitch_idle(Entity* entity);
|
|
|
|
void entity_small_switch_idle(Entity* entity);
|
|
|
|
void entity_RedSwitch_wait_and_reset(Entity* entity);
|
|
|
|
void entity_base_switch_anim_init(Entity* entity);
|
|
|
|
s32 entity_RedSwitch_animate_scale(Entity* entity);
|
|
|
|
void entity_base_switch_start_bound_script(Entity* entity);
|
|
|
|
void entity_base_switch_animate_scale(Entity* entity);
|
|
|
|
void entity_base_switch_init(Entity* entity);
|
|
|
|
f32 entity_block_hit_init_scale(Entity* entity);
|
|
|
|
void entity_block_hit_animate_scale(Entity* entity);
|
|
|
|
s32 entity_block_handle_collision(Entity* entity);
|
|
|
|
void entity_BlueSwitch_init(Entity* entity);
|
|
|
|
void entity_HugeBlueSwitch_init(Entity* entity);
|
|
|
|
|
2021-07-19 13:49:30 +02:00
|
|
|
s32 dispatch_damage_event_actor_0(Actor* actor, s32 damageAmount, s32 event);
|
|
|
|
|
2020-10-17 05:47:10 +02:00
|
|
|
// Text
|
2021-09-02 17:46:27 +02:00
|
|
|
MessagePrintState* msg_get_printer_for_msg(s32 msgID, s32* a1);
|
2022-03-22 22:27:22 +01:00
|
|
|
void msg_printer_set_origin_pos(MessagePrintState* msgPrintState, s32 x, s32 y);
|
2021-04-22 05:19:31 +02:00
|
|
|
|
2021-08-16 20:14:58 +02:00
|
|
|
void get_screen_coords(s32 camID, f32 x, f32 y, f32 z, s32* screenX, s32* screenY, s32* screenZ);
|
2020-10-17 05:47:10 +02:00
|
|
|
|
2022-01-08 11:11:20 +01:00
|
|
|
void parent_collider_to_model(s16 colliderID, s16 modelIndex);
|
2020-08-10 09:42:50 +02:00
|
|
|
void clone_model(u16 srcModelID, u16 newModelID);
|
2021-10-29 19:57:15 +02:00
|
|
|
struct Model* get_model_from_list_index(s32 listIndex);
|
2020-09-25 23:18:09 +02:00
|
|
|
s32 get_model_list_index_from_tree_index(s32 treeIndex);
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 get_transform_group_index(s32);
|
2021-05-08 07:34:57 +02:00
|
|
|
void get_model_center_and_size(u16 modelID, f32* centerX, f32* centerY, f32* centerZ, f32* sizeX, f32* sizeY,
|
2020-09-19 17:17:53 +02:00
|
|
|
f32* sizeZ);
|
2021-02-16 11:32:34 +01:00
|
|
|
s32 collision_main_above(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void collision_lava_reset_check_additional_overlaps(void);
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 player_test_lateral_overlap(s32, PlayerStatus*, f32*, f32*, f32*, f32, f32);
|
|
|
|
Npc* peach_make_disguise_npc(s32 peachDisguise);
|
2021-08-15 11:28:16 +02:00
|
|
|
void peach_set_disguise_anim(s32);
|
2020-09-18 03:28:34 +02:00
|
|
|
|
2022-02-13 09:19:59 +01:00
|
|
|
s32 draw_box(s32 flags, WindowStyle windowStyle, s32 posX, s32 posY, s32 posZ, s32 width, s32 height, u8 opacity,
|
2022-02-08 19:24:51 +01:00
|
|
|
u8 darkening, f32 scaleX, f32 scaleY, f32 rotX, f32 rotY, f32 rotZ, void (*fpDrawContents)(s32),
|
2022-02-13 09:19:59 +01:00
|
|
|
void* drawContentsArg0, Matrix4f rotScaleMtx, s32 translateX, s32 translateY, f32 (*outMtx)[4]);
|
2021-09-02 17:46:27 +02:00
|
|
|
s32 get_msg_width(s32 msgID, u16 charset);
|
2021-07-16 20:27:27 +02:00
|
|
|
|
2021-02-20 15:41:30 +01:00
|
|
|
s32 partner_player_can_pause(void);
|
2021-03-15 14:30:09 +01:00
|
|
|
s32 disable_player_static_collisions(void);
|
|
|
|
s32 disable_player_input(void);
|
2021-04-29 19:09:30 +02:00
|
|
|
void func_80027088(s32);
|
2021-04-22 05:19:31 +02:00
|
|
|
void set_time_freeze_mode(s32);
|
2020-11-23 19:48:34 +01:00
|
|
|
|
2021-06-21 06:30:57 +02:00
|
|
|
s32 get_map_IDs_by_name(const char* mapName, s16* areaID, s16* mapID);
|
|
|
|
|
2021-03-19 11:25:14 +01:00
|
|
|
void get_dpad_input_radial(f32* angle, f32* magnitude);
|
2021-04-29 19:09:30 +02:00
|
|
|
void transform_point(Matrix4f mtx, f32 inX, f32 inY, f32 inZ, f32 inS, f32* outX, f32* outY, f32* outZ, f32* outS);
|
2021-07-31 16:32:19 +02:00
|
|
|
void try_player_footstep_sounds(s32 arg0);
|
|
|
|
void phys_update_interact_collider(void);
|
2022-03-22 22:56:28 +01:00
|
|
|
s32 phys_adjust_cam_on_landing(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
s32 phys_should_player_be_sliding(void);
|
2021-08-25 14:34:03 +02:00
|
|
|
void phys_init_integrator_for_current_state(void);
|
|
|
|
void phys_player_land(void);
|
2021-09-27 03:00:51 +02:00
|
|
|
void phys_main_collision_below(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void phys_peach_update(void);
|
|
|
|
void check_input_spin(void);
|
2021-04-29 19:09:30 +02:00
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 npc_test_move_simple_without_slipping(s32, f32*, f32*, f32*, f32, f32, f32, f32);
|
2020-10-20 01:48:16 +02:00
|
|
|
|
2020-08-10 09:42:50 +02:00
|
|
|
void update_collider_transform(s16 colliderID);
|
2020-08-27 00:54:55 +02:00
|
|
|
void get_collider_center(s32 colliderID, f32* x, f32* y, f32* z);
|
|
|
|
|
2022-01-16 14:28:09 +01:00
|
|
|
s32 is_another_trigger_bound(Trigger*, EvtScript* script);
|
|
|
|
Trigger* create_trigger(TriggerBlueprint* def);
|
|
|
|
s32 evt_trigger_on_activate_exec_script(Trigger* trigger);
|
2020-11-23 20:19:13 +01:00
|
|
|
Trigger* get_trigger_by_id(s32 triggerID);
|
2020-09-06 17:53:48 +02:00
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
Actor* get_actor(s32 actorID);
|
2020-10-17 05:47:10 +02:00
|
|
|
ActorPart* get_actor_part(Actor* actor, s32 partIndex);
|
2021-02-04 12:28:01 +01:00
|
|
|
s32 add_coins(s32 amt);
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 is_partner_ability_active(s32);
|
2022-04-19 09:03:12 +02:00
|
|
|
s32 count_power_plus(s32);
|
2020-10-08 21:03:58 +02:00
|
|
|
|
2021-08-29 15:44:17 +02:00
|
|
|
s32 phys_can_player_interact(void);
|
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
void ai_enemy_play_sound(Npc* npc, s32 arg1, s32 arg2);
|
2020-10-08 21:03:58 +02:00
|
|
|
|
2022-01-14 19:09:45 +01:00
|
|
|
s32 player_test_move_without_slipping(PlayerStatus*, f32*, f32*, f32*, f32, f32, s32*);
|
2021-09-16 14:19:12 +02:00
|
|
|
s32 player_test_move_with_slipping(PlayerStatus* playerStatus, f32* posX, f32* posY, f32* posZ, f32 speed, f32 heading);
|
2021-02-18 12:54:07 +01:00
|
|
|
|
2021-08-29 18:51:56 +02:00
|
|
|
s32 evt_get_variable(Evt* script, Bytecode var);
|
|
|
|
s32 evt_set_variable(Evt* script, Bytecode var, s32 value);
|
|
|
|
f32 evt_get_float_variable(Evt* script, Bytecode var);
|
|
|
|
f32 evt_set_float_variable(Evt* script, Bytecode var, f32 value);
|
2021-08-22 23:50:10 +02:00
|
|
|
void set_script_timescale(Evt* script, f32 timescale);
|
2020-07-18 02:47:33 +02:00
|
|
|
f32 sin_deg(f32 x);
|
|
|
|
f32 cos_deg(f32 x);
|
2020-10-26 02:12:01 +01:00
|
|
|
f32 sin_rad(f32 x);
|
2021-01-20 16:42:05 +01:00
|
|
|
f32 cos_rad(f32 x);
|
|
|
|
s32 round(f32);
|
2020-08-15 06:27:01 +02:00
|
|
|
f32 atan2(f32 startX, f32 startZ, f32 endX, f32 endZ);
|
2020-08-15 16:26:43 +02:00
|
|
|
f32 clamp_angle(f32 theta);
|
2020-11-10 17:27:02 +01:00
|
|
|
s32 sign(s32 value);
|
2020-08-12 03:01:33 +02:00
|
|
|
s32 func_80055448(s32);
|
|
|
|
s32 func_80055464(s32, s32);
|
2021-12-20 16:59:25 +01:00
|
|
|
s32 func_800E0208(void);
|
2020-09-27 03:02:29 +02:00
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 battle_heap_create(void);
|
|
|
|
void filemenu_init(s32);
|
|
|
|
|
2021-08-16 20:14:58 +02:00
|
|
|
s32 test_ray_zones(f32 startX, f32 startY, f32 startZ, f32 dirX, f32 dirY, f32 dirZ, f32* hitX, f32* hitY, f32* hitZ,
|
|
|
|
f32* hitDepth, f32* nx, f32* ny, f32* nz);
|
2021-08-13 19:27:57 +02:00
|
|
|
s32 test_ray_colliders(s32 ignoreFlags, f32 startX, f32 startY, f32 startZ, f32 dirX, f32 dirY, f32 dirZ, f32* hitX,
|
|
|
|
f32* hitY, f32* hitZ, f32* hitDepth, f32* hitNx, f32* hitNy, f32* hitNz);
|
|
|
|
s32 test_ray_entities(f32 startX, f32 startY, f32 startZ, f32 dirX, f32 dirY, f32 dirZ, f32* hitX, f32* hitY, f32* hitZ,
|
|
|
|
f32* hitDepth, f32* hitNx, f32* hitNy, f32* hitNz);
|
2021-06-30 04:27:12 +02:00
|
|
|
|
2021-09-26 14:04:12 +02:00
|
|
|
void mem_clear(void* data, s32 numBytes);
|
2021-03-07 19:32:24 +01:00
|
|
|
|
2021-04-01 20:00:29 +02:00
|
|
|
void intro_logos_set_fade_color(s16 color);
|
|
|
|
void intro_logos_set_fade_alpha(s16 alpha);
|
|
|
|
|
|
|
|
void set_game_mode(s16 idx);
|
2020-10-28 07:42:14 +01:00
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
f32 get_xz_dist_to_player(f32, f32);
|
2020-12-22 15:58:31 +01:00
|
|
|
void func_800E06C0(s32);
|
2021-02-06 16:20:35 +01:00
|
|
|
void close_status_menu(void);
|
2021-08-29 15:44:17 +02:00
|
|
|
Evt* func_802C39F8(Evt* parentScript, Bytecode* nextLine, s32 newState);
|
2022-01-16 14:28:09 +01:00
|
|
|
Evt* start_child_script(Evt* parentScript, EvtScript* source, s32 initialState);
|
2021-08-29 15:44:17 +02:00
|
|
|
Evt* restart_script(Evt* script);
|
|
|
|
void clear_virtual_entity_list(void);
|
|
|
|
void reset_model_animators(void);
|
|
|
|
void init_virtual_entity_list(void);
|
|
|
|
void init_model_animators(void);
|
2022-04-21 18:07:22 +02:00
|
|
|
void play_model_animation(s32, s32);
|
2021-08-29 15:44:17 +02:00
|
|
|
s32 heap_free(void* ptr);
|
2022-01-14 19:54:45 +01:00
|
|
|
|
|
|
|
void btl_state_update_normal_start(void);
|
|
|
|
void btl_state_draw_normal_start(void);
|
|
|
|
void btl_state_update_begin_turn(void);
|
|
|
|
void btl_state_draw_begin_turn(void);
|
|
|
|
void btl_state_update_begin_player_turn(void);
|
|
|
|
void btl_state_draw_begin_player_turn(void);
|
|
|
|
void btl_state_update_switch_to_player(void);
|
|
|
|
void btl_state_draw_switch_to_player(void);
|
|
|
|
void btl_state_update_begin_partner_turn(void);
|
|
|
|
void btl_state_draw_begin_partner_turn(void);
|
2021-07-31 16:32:19 +02:00
|
|
|
void btl_state_update_switch_to_partner(void);
|
2022-01-14 19:54:45 +01:00
|
|
|
void btl_state_draw_switch_to_partner(void);
|
|
|
|
void func_80242FE0(void);
|
|
|
|
void func_80243910(void);
|
|
|
|
void btl_state_update_prepare_menu(void);
|
|
|
|
void btl_state_draw_prepare_menu(void);
|
|
|
|
void btl_state_update_end_turn(void);
|
|
|
|
void btl_state_draw_end_turn(void);
|
|
|
|
void btl_state_update_1C(void);
|
|
|
|
void btl_state_draw_1C(void);
|
|
|
|
void btl_state_update_victory(void);
|
|
|
|
void btl_state_draw_victory(void);
|
|
|
|
void btl_state_update_end_training_battle(void);
|
|
|
|
void btl_state_draw_end_training_battle(void);
|
|
|
|
void btl_state_update_end_battle(void);
|
|
|
|
void btl_state_draw_end_battle(void);
|
|
|
|
void btl_state_update_defend(void);
|
|
|
|
void btl_state_draw_defend(void);
|
|
|
|
void btl_state_update_run_away(void);
|
|
|
|
void btl_state_draw_run_away(void);
|
|
|
|
void btl_state_update_defeat(void);
|
|
|
|
void btl_state_draw_defeat(void);
|
|
|
|
void btl_state_update_change_partner(void);
|
|
|
|
void btl_state_draw_change_partner(void);
|
|
|
|
void btl_state_update_player_move(void);
|
|
|
|
void btl_state_draw_player_move(void);
|
|
|
|
void btl_state_update_end_player_turn(void);
|
|
|
|
void btl_state_update_partner_move(void);
|
2022-03-10 10:55:38 +01:00
|
|
|
void btl_state_draw_end_player_turn(void);
|
2022-01-14 19:54:45 +01:00
|
|
|
void btl_state_draw_partner_move(void);
|
|
|
|
void btl_state_update_end_partner_turn(void);
|
|
|
|
void btl_state_draw_end_partner_turn(void);
|
|
|
|
void btl_state_update_next_enemy(void);
|
|
|
|
void btl_state_draw_next_enemy(void);
|
|
|
|
void btl_state_update_enemy_move(void);
|
|
|
|
void btl_state_draw_enemy_move(void);
|
|
|
|
void btl_state_update_first_strike(void);
|
|
|
|
void btl_state_draw_first_stike(void);
|
|
|
|
void btl_state_update_partner_striking_first(void);
|
|
|
|
void btl_state_draw_partner_striking_first(void);
|
|
|
|
void btl_state_update_enemy_striking_first(void);
|
|
|
|
void btl_state_draw_enemy_striking_first(void);
|
|
|
|
void btl_state_update_end_demo_battle(void);
|
|
|
|
void btl_state_draw_end_demo_battle(void);
|
|
|
|
|
|
|
|
void btl_state_update_player_menu(void);
|
|
|
|
void btl_state_draw_player_menu(void);
|
|
|
|
void btl_state_update_partner_menu(void);
|
|
|
|
void btl_state_draw_partner_menu(void);
|
|
|
|
void btl_state_update_peach_menu(void);
|
|
|
|
void btl_state_draw_peach_menu(void);
|
|
|
|
void btl_state_update_twink_menu(void);
|
|
|
|
void btl_state_draw_twink_menu(void);
|
|
|
|
void btl_state_update_select_target(void);
|
|
|
|
void btl_state_draw_select_target(void);
|
|
|
|
void btl_state_update_22(void);
|
|
|
|
void btl_state_draw_22(void);
|
|
|
|
|
|
|
|
void btl_state_update_celebration(void);
|
2022-02-08 19:33:05 +01:00
|
|
|
void btl_draw_upgrade_windows(s32);
|
2022-01-14 19:54:45 +01:00
|
|
|
void btl_state_draw_celebration(void);
|
|
|
|
|
|
|
|
void func_8024F7C8(void);
|
2022-03-22 22:27:22 +01:00
|
|
|
void func_80263E08(Actor*, ActorPart*, s32);
|
2022-01-14 19:54:45 +01:00
|
|
|
void func_80266978(void);
|
|
|
|
void func_80266B14(void);
|
2022-05-16 21:18:18 +02:00
|
|
|
s32 btl_cam_is_moving_done(void);
|
2022-01-14 19:54:45 +01:00
|
|
|
void func_8024EE48(void);
|
|
|
|
void func_8024EEA8(void);
|
|
|
|
void func_80255FD8(void);
|
|
|
|
|
|
|
|
void func_80266EE8(Actor* actor, s32 arg1);
|
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
void btl_set_popup_duration(s32 duration);
|
2021-08-29 15:44:17 +02:00
|
|
|
void switch_to_partner(s32 arg0);
|
|
|
|
|
|
|
|
void delete_trigger(Trigger* toDelete);
|
|
|
|
void kill_script_by_ID(s32 id);
|
|
|
|
void set_script_priority(Evt* script, s32 priority);
|
|
|
|
void set_script_group(Evt* script, s32 groupFlags);
|
|
|
|
void suspend_group_others(Evt* script, s32 groupFlags);
|
|
|
|
void resume_group_others(Evt* script, s32 groupFlags);
|
|
|
|
s32 suspend_all_script(s32 id);
|
|
|
|
s32 resume_all_script(s32 id);
|
2020-10-30 04:56:54 +01:00
|
|
|
|
2021-10-03 17:44:16 +02:00
|
|
|
s32 create_shadow_type(s32 type, f32 x, f32 y, f32 z);
|
2021-03-29 02:05:56 +02:00
|
|
|
s32 is_point_within_region(s32 shape, f32 pointX, f32 pointY, f32 centerX, f32 centerY, f32 sizeX, f32 sizeZ);
|
2020-11-02 20:53:06 +01:00
|
|
|
PlayerData* get_player_data(void);
|
|
|
|
|
2022-01-14 19:09:45 +01:00
|
|
|
s32 npc_raycast_down_around(s32, f32*, f32*, f32*, f32*, f32, f32);
|
2022-05-05 16:08:16 +02:00
|
|
|
s32 npc_raycast_down_sides(s32 ignoreFlags, f32* posX, f32* posY, f32* posZ, f32* hitDepth);
|
2022-03-30 14:07:13 +02:00
|
|
|
s32 npc_raycast_up(s32, f32*, f32*, f32*, f32*);
|
2022-03-26 11:37:14 +01:00
|
|
|
s32 player_raycast_up_corners(PlayerStatus*, f32*, f32*, f32*, f32*, f32);
|
2022-04-11 08:34:35 +02:00
|
|
|
s32 player_raycast_below_cam_relative(PlayerStatus* playerStatus, f32* outX, f32* outY, f32* outZ, f32* outLength,
|
|
|
|
f32* hitRx, f32* hitRz, f32* hitDirX, f32* hitDirZ);
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 npc_test_move_taller_with_slipping(s32, f32*, f32*, f32*, f32, f32, f32, f32);
|
|
|
|
s32 npc_test_move_simple_with_slipping(s32, f32*, f32*, f32*, f32, f32, f32, f32);
|
|
|
|
s32 npc_test_move_complex_with_slipping(s32, f32*, f32*, f32*, f32, f32, f32, f32);
|
2020-12-22 14:24:49 +01:00
|
|
|
|
2020-10-19 01:27:14 +02:00
|
|
|
// Partner
|
2022-04-29 06:32:16 +02:00
|
|
|
void partner_handle_before_battle(void);
|
2021-06-30 04:27:12 +02:00
|
|
|
void partner_walking_update_player_tracking(Npc* partner);
|
|
|
|
void partner_walking_update_motion(Npc* partner);
|
2020-11-09 00:26:29 +01:00
|
|
|
void enable_partner_ai(void);
|
2021-06-30 04:27:12 +02:00
|
|
|
void partner_walking_enable(Npc* partner, s32 val);
|
|
|
|
void partner_flying_enable(Npc* partner, s32 val);
|
|
|
|
void partner_flying_update_player_tracking(Npc* partner);
|
|
|
|
s32 partner_is_flying(void);
|
|
|
|
void partner_flying_update_motion(Npc* partner);
|
|
|
|
void partner_clear_player_tracking(Npc* partner);
|
2020-10-19 01:27:14 +02:00
|
|
|
|
2021-02-20 15:41:30 +01:00
|
|
|
void set_background_color_blend(u8 r, u8 g, u8 b, u8 a);
|
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
void partner_set_tether_distance(f32);
|
2022-05-05 16:08:16 +02:00
|
|
|
|
|
|
|
void btl_delete_player_actor(Actor* player);
|
|
|
|
|
|
|
|
void kill_all_scripts(void);
|
2020-09-27 19:57:40 +02:00
|
|
|
s32 does_script_exist(s32 id);
|
2021-08-22 23:50:10 +02:00
|
|
|
s32 does_script_exist_by_ref(Evt* script);
|
2022-01-16 14:28:09 +01:00
|
|
|
Evt* start_script(EvtScript* source, s32 priority, s32 initialState);
|
|
|
|
Evt* start_script_in_group(EvtScript* source, u8 priority, u8 initialState, u8 groupFlags);
|
2021-07-20 12:51:11 +02:00
|
|
|
f32 get_player_normal_yaw(void);
|
|
|
|
void set_standard_shadow_scale(Shadow* shadow, f32 scale);
|
2022-04-05 14:53:40 +02:00
|
|
|
void set_npc_shadow_scale(Shadow* shadow, f32 height, f32 npcRadius);
|
2021-07-20 12:51:11 +02:00
|
|
|
void set_peach_shadow_scale(Shadow* shadow, f32 scale);
|
2022-03-30 14:07:13 +02:00
|
|
|
s32 is_block_on_ground(Entity* block);
|
2021-10-29 20:14:51 +02:00
|
|
|
void set_animation(s32 actorID, s32, s32 animationIndex);
|
2021-10-03 19:42:38 +02:00
|
|
|
void set_animation_rate(s32 actorID, s32 partIndex, f32 rate);
|
2020-08-22 05:04:10 +02:00
|
|
|
void func_8011B7C0(u16, s32, s32);
|
2021-10-29 19:57:15 +02:00
|
|
|
ModelAnimator* get_animator_by_index(s32 arg0);
|
2021-06-30 04:27:12 +02:00
|
|
|
void set_screen_overlay_params_front(u8, f32);
|
2021-12-13 10:27:28 +01:00
|
|
|
void set_screen_overlay_params_back(u8, f32);
|
2021-06-30 04:27:12 +02:00
|
|
|
void set_screen_overlay_alpha(s32, f32);
|
2021-12-13 10:27:28 +01:00
|
|
|
void get_screen_overlay_params(s32, u8*, f32*);
|
|
|
|
void set_screen_overlay_color(s32, u8, u8, u8);
|
2021-06-30 04:27:12 +02:00
|
|
|
void set_screen_overlay_center(s32, s32, s32, s32);
|
2020-08-14 06:20:11 +02:00
|
|
|
s32 rand_int(s32);
|
2020-08-15 04:24:08 +02:00
|
|
|
void sort_items(void);
|
|
|
|
s32 is_ability_active(s32 arg0);
|
2021-09-16 14:19:12 +02:00
|
|
|
s32 is_starting_conversation(void);
|
2021-10-03 19:42:38 +02:00
|
|
|
f32 update_lerp(s32 easing, f32 start, f32 end, s32 elapsed, s32 duration);
|
2021-04-08 19:42:36 +02:00
|
|
|
void sin_cos_deg(f32 rad, f32* outSinTheta, f32* outCosTheta);
|
2020-07-18 02:47:33 +02:00
|
|
|
|
2021-08-29 15:44:17 +02:00
|
|
|
void set_main_pan_u(s32 texPannerID, s32 value);
|
|
|
|
void set_main_pan_v(s32 texPannerID, s32 value);
|
|
|
|
void set_aux_pan_u(s32 texPannerID, s32 value);
|
|
|
|
void set_aux_pan_v(s32 texPannerID, s32 value);
|
|
|
|
|
2021-05-01 21:03:42 +02:00
|
|
|
void enable_world_fog(void);
|
|
|
|
void set_world_fog_dist(s32 start, s32 end);
|
|
|
|
void set_world_fog_color(s32 r, s32 g, s32 b, s32 a);
|
2021-10-22 16:01:27 +02:00
|
|
|
void enable_entity_fog(void);
|
|
|
|
void set_entity_fog_dist(s32 start, s32 end);
|
|
|
|
void set_entity_fog_color(s32 r, s32 g, s32 b, s32 a);
|
2021-05-01 21:03:42 +02:00
|
|
|
|
2021-10-29 19:57:15 +02:00
|
|
|
struct ModelTransformGroup* get_transform_group(s32 index);
|
2021-05-08 07:34:57 +02:00
|
|
|
|
2021-01-15 21:35:39 +01:00
|
|
|
s32 make_item_entity(s32 itemID, f32 x, f32 y, f32 z, s32 itemSpawnMode, s32 pickupDelay, s32 facingAngleSign,
|
|
|
|
s32 pickupVar);
|
2021-01-06 15:19:41 +01:00
|
|
|
s32 make_item_entity_delayed(s32 itemID, f32 x, f32 y, f32 z, s32 itemSpawnMode, s32 pickupDelay, s32 pickupVar);
|
2020-10-22 03:39:50 +02:00
|
|
|
void set_item_entity_position(s32 itemEntityIndex, f32 x, f32 y, f32 z);
|
2020-10-27 00:10:32 +01:00
|
|
|
ItemEntity* get_item_entity(s32 itemEntityIndex);
|
2021-10-03 19:42:38 +02:00
|
|
|
s32 make_item_entity_nodelay(s32 itemID, f32 x, f32 y, f32 z, s32 itemSpawnMode, s32 pickupVar);
|
2020-10-30 03:15:51 +01:00
|
|
|
void set_item_entity_flags(s32 itemEntityIndex, s32 flag);
|
2020-09-06 17:53:48 +02:00
|
|
|
|
2021-06-30 04:27:12 +02:00
|
|
|
s32 create_generic_entity_frontUI(void (*updateFunc)(void), void (*drawFunc)(void));
|
|
|
|
DynamicEntity* get_generic_entity(s32 idx);
|
2022-01-16 14:28:09 +01:00
|
|
|
Trigger* bind_trigger_1(EvtScript* script, s32 flags, s32 triggerFlagIndex, s32 triggerVar0, s32 triggerVar1, s32 priority);
|
2021-03-07 19:32:24 +01:00
|
|
|
|
2020-08-21 17:04:57 +02:00
|
|
|
void set_cam_viewport(s16 id, s16 x, s16 y, s16 width, s16 height);
|
|
|
|
|
2020-09-22 02:56:17 +02:00
|
|
|
void disable_player_shadow(void);
|
2020-10-29 17:08:00 +01:00
|
|
|
void move_player(s32 duration, f32 heading, f32 speed);
|
2021-03-07 19:32:24 +01:00
|
|
|
s32 enable_player_input(void);
|
2021-09-16 14:19:12 +02:00
|
|
|
s32 enable_player_static_collisions(void);
|
2021-08-25 14:34:03 +02:00
|
|
|
s32 check_input_jump(void);
|
|
|
|
s32 check_input_hammer(void);
|
2020-09-22 02:56:17 +02:00
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
Npc* resolve_npc(Evt* script, s32 npcIdOrPtr);
|
2021-09-16 14:19:12 +02:00
|
|
|
void enable_npc_blur(Npc* npc);
|
2020-11-23 20:19:13 +01:00
|
|
|
void disable_npc_blur(Npc* npc);
|
2022-05-05 16:08:16 +02:00
|
|
|
void enable_partner_blur(void);
|
|
|
|
void disable_partner_blur(void);
|
2020-08-15 07:00:29 +02:00
|
|
|
|
2020-08-15 07:55:16 +02:00
|
|
|
f32 dist2D(f32 ax, f32 ay, f32 bx, f32 by);
|
|
|
|
f32 dist3D(f32 ax, f32 ay, f32 az, f32 bx, f32 by, f32 bz);
|
2020-08-15 16:26:43 +02:00
|
|
|
void add_vec2D_polar(f32* x, f32* y, f32 r, f32 theta);
|
2020-08-15 07:55:16 +02:00
|
|
|
|
2021-03-26 15:46:45 +01:00
|
|
|
s32 sfx_adjust_env_sound_pos(s32 soundID, s32 arg1, f32 arg2, f32 arg3, f32 arg4);
|
2021-07-19 13:49:30 +02:00
|
|
|
void sfx_play_sound(s32 soundID);
|
2021-09-27 15:32:18 +02:00
|
|
|
void sfx_play_sound_at_position(s32 soundID, s32 value2, f32 posX, f32 posY, f32 posZ);
|
2021-08-04 11:20:16 +02:00
|
|
|
void sfx_play_sound_at_player(s32 soundID, s32 arg0);
|
2021-09-27 03:00:51 +02:00
|
|
|
void sfx_play_sound_at_npc(s32 soundID, s32 arg1, s32 npcID);
|
2021-03-26 15:46:45 +01:00
|
|
|
s32 bgm_set_song(s32 playerIndex, s32 songID, s32 variation, s32 fadeOutTime, s16 volume);
|
2021-11-14 21:23:07 +01:00
|
|
|
void bgm_set_battle_song(s32, s32);
|
|
|
|
void bgm_push_battle_song(void);
|
2021-04-01 20:00:29 +02:00
|
|
|
void func_801497FC(s32 arg0);
|
2020-11-20 15:44:08 +01:00
|
|
|
s32 func_8014AA54(s32 playerIndex, s32 arg1, s16 arg2);
|
2020-09-25 23:18:09 +02:00
|
|
|
|
2022-02-13 09:19:59 +01:00
|
|
|
void basic_window_update(s32 windowIndex, s32* flags, s32* posX, s32* posY, s32* posZ, f32* scaleX, f32* scaleY,
|
2022-02-08 19:24:51 +01:00
|
|
|
f32* rotX, f32* rotY, f32* rotZ, s32* darkening, s32* opacity);
|
2022-02-13 09:19:59 +01:00
|
|
|
void basic_hidden_window_update(s32 windowIndex, s32* flags, s32* posX, s32* posY, s32* posZ, f32* scaleX, f32* scaleY,
|
2022-02-08 19:24:51 +01:00
|
|
|
f32* rotX, f32* rotY, f32* rotZ, s32* darkening, s32* opacity);
|
2021-02-16 11:32:34 +01:00
|
|
|
|
2020-12-30 09:18:27 +01:00
|
|
|
void player_create_target_list(Actor* actor);
|
|
|
|
void enemy_create_target_list(Actor* actor);
|
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
void set_actor_yaw(s32 actorID, s32 yaw);
|
|
|
|
void set_part_yaw(s32 actorID, s32 partIndex, s32 value);
|
2020-12-30 09:18:27 +01:00
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
void add_part_decoration(ActorPart* part, s32 decorationIndex, s32 decorationType);
|
|
|
|
void add_actor_decoration(Actor* actor, s32 decorationIndex, s32 decorationType);
|
2020-12-30 09:18:27 +01:00
|
|
|
void remove_part_decoration(ActorPart* part, s32 decorationIndex);
|
|
|
|
void remove_actor_decoration(Actor* actor, s32 decorationIndex);
|
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
s32 player_team_is_ability_active(Actor* actor, s32 ability);
|
2020-12-30 09:18:27 +01:00
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
void create_part_shadow(s32 actorID, s32 partIndex);
|
|
|
|
void remove_part_shadow(s32 actorID, s32 partIndex);
|
2021-11-04 07:08:36 +01:00
|
|
|
void create_part_shadow_by_ref(s32 arg0, ActorPart* part);
|
|
|
|
|
2021-11-19 15:31:28 +01:00
|
|
|
void func_80266D6C(ActorPart*, s32);
|
2021-11-12 13:23:43 +01:00
|
|
|
char* int_to_string(s32, char*, s32);
|
2020-09-25 23:18:09 +02:00
|
|
|
|
2021-08-22 23:50:10 +02:00
|
|
|
Evt* get_script_by_index(s32 index);
|
2020-09-25 23:18:09 +02:00
|
|
|
|
2021-08-26 23:52:45 +02:00
|
|
|
s32 get_lava_reset_pos(f32* x, f32* y, f32* z);
|
|
|
|
void start_rumble(s32, s32);
|
2022-03-30 14:07:13 +02:00
|
|
|
void update_locomotion_state(void);
|
2022-03-22 22:27:22 +01:00
|
|
|
void start_rumble_type(u32);
|
2021-09-16 14:19:12 +02:00
|
|
|
void start_falling(void);
|
2022-04-08 20:30:01 +02:00
|
|
|
void start_bounce_b(void);
|
2021-08-26 23:52:45 +02:00
|
|
|
|
2021-06-21 06:30:57 +02:00
|
|
|
void set_action_state(s32 actionState);
|
|
|
|
s32 get_collider_type_by_id(s32 colliderID);
|
2021-06-30 04:27:12 +02:00
|
|
|
void suggest_player_anim_setUnkFlag(s32 arg0);
|
2021-08-04 11:20:16 +02:00
|
|
|
void suggest_player_anim_clearUnkFlag(s32 arg0);
|
2021-06-21 06:30:57 +02:00
|
|
|
void subtract_hp(s32 amt);
|
2022-03-10 10:55:38 +01:00
|
|
|
void draw_status_ui(void);
|
2021-06-21 06:30:57 +02:00
|
|
|
void open_status_menu_long(void);
|
|
|
|
|
2020-10-13 03:28:01 +02:00
|
|
|
void suspend_all_group(s32 groupFlags);
|
2021-08-22 23:50:10 +02:00
|
|
|
void kill_script(Evt* instanceToKill);
|
2021-06-30 04:27:12 +02:00
|
|
|
void exec_entity_commandlist(Entity* entity);
|
2020-10-13 03:28:01 +02:00
|
|
|
|
2021-04-01 20:00:29 +02:00
|
|
|
void sfx_reset_door_sounds(void);
|
|
|
|
|
2020-12-30 08:03:05 +01:00
|
|
|
void func_802D7460(f32 x, f32 y, f32 z, s32 arg3);
|
|
|
|
void func_802D74C0(f32 x, f32 y, f32 z, s32 arg3);
|
|
|
|
|
2021-03-23 03:25:48 +01:00
|
|
|
void show_damage_popup(f32 x, f32 y, f32 z, s32 damageAmount, s32);
|
2021-02-28 02:05:02 +01:00
|
|
|
void add_xz_vec3f(Vec3f* vector, f32 speed, f32 angleDeg);
|
2022-01-20 14:08:24 +01:00
|
|
|
void add_xz_vec3f_copy1(Vec3f* vector, f32 speed, f32 angleDeg);
|
2022-05-22 09:48:09 +02:00
|
|
|
void add_xz_vec3f_copy2(Vec3f* vector, f32 speed, f32 angleDeg);
|
2021-02-28 02:05:02 +01:00
|
|
|
void play_movement_dust_effects(s32 var0, f32 xPos, f32 yPos, f32 zPos, f32 angleDeg);
|
2021-02-12 22:31:22 +01:00
|
|
|
|
2021-03-24 09:39:43 +01:00
|
|
|
void func_80138D88(s32, s32, s32, s32, f32);
|
2021-12-13 10:27:28 +01:00
|
|
|
void func_8013A4D0(void);
|
2021-06-21 06:30:57 +02:00
|
|
|
|
2022-03-10 10:55:38 +01:00
|
|
|
void btl_draw_popup_messages(void);
|
2021-11-17 15:43:50 +01:00
|
|
|
void btl_cam_set_target_pos(f32, f32, f32);
|
2022-02-08 19:33:05 +01:00
|
|
|
void btl_cam_unfreeze(void);
|
|
|
|
|
2021-11-17 15:43:50 +01:00
|
|
|
void deduct_current_move_fp(void);
|
|
|
|
void load_partner_actor(void);
|
|
|
|
void dispatch_event_partner(s32);
|
|
|
|
void dispatch_event_player(s32);
|
|
|
|
s32 btl_are_all_enemies_defeated(void);
|
2022-05-05 16:08:16 +02:00
|
|
|
s32 btl_check_enemies_defeated(void);
|
2021-11-17 15:43:50 +01:00
|
|
|
s32 btl_check_player_defeated(void);
|
|
|
|
void btl_show_battle_message(s32, s32);
|
|
|
|
void btl_update_ko_status(void);
|
|
|
|
void reset_actor_turn_info(void);
|
2022-03-10 10:55:38 +01:00
|
|
|
void btl_draw_prim_quad(u8 r, u8 g, u8 b, u8 a, u16 left, u16 top, u16 arg6, u16 arg7);
|
2021-11-17 15:43:50 +01:00
|
|
|
void reset_all_actor_sounds(Actor*);
|
|
|
|
void decrement_status_menu_disabled(void);
|
|
|
|
void increment_status_menu_disabled(void);
|
|
|
|
void btl_delete_actor(Actor* actor);
|
2022-01-10 16:55:26 +01:00
|
|
|
void create_status_debuff(s32, s32);
|
|
|
|
void create_status_static(s32, s32);
|
|
|
|
void create_status_transparent(s32, s32);
|
|
|
|
void remove_status_chill_out(s32);
|
2021-12-18 05:09:33 +01:00
|
|
|
void remove_status_debuff(s32);
|
|
|
|
void remove_status_icon_boost_hammer(s32);
|
|
|
|
void remove_status_icon_boost_jump(s32);
|
|
|
|
void remove_status_icon_boost_partner(s32);
|
|
|
|
void remove_status_icon_danger(s32);
|
|
|
|
void remove_status_icon_peril(s32);
|
|
|
|
void remove_status_icon_surprise(s32);
|
|
|
|
void remove_status_static(s32);
|
|
|
|
void remove_status_transparent(s32);
|
2022-01-10 16:55:26 +01:00
|
|
|
void remove_all_status_icons(s32);
|
|
|
|
s32 create_status_icon_set(void);
|
2021-11-17 15:43:50 +01:00
|
|
|
s32 find_item(s32);
|
|
|
|
|
2021-11-14 21:16:52 +01:00
|
|
|
void enable_background_wave(void);
|
|
|
|
|
2021-07-08 17:53:00 +02:00
|
|
|
// State funcs
|
|
|
|
void state_init_startup(void);
|
|
|
|
void state_step_startup(void);
|
|
|
|
void state_drawUI_startup(void);
|
|
|
|
void state_init_logos(void);
|
|
|
|
void state_step_logos(void);
|
|
|
|
void state_drawUI_logos(void);
|
|
|
|
void state_init_title_screen(void);
|
|
|
|
void state_step_title_screen(void);
|
|
|
|
void state_drawUI_title_screen(void);
|
|
|
|
void state_init_enter_demo(void);
|
|
|
|
void state_step_enter_world(void);
|
|
|
|
void state_init_change_map(void);
|
|
|
|
void state_step_change_map(void);
|
|
|
|
void state_drawUI_change_map(void);
|
|
|
|
void func_80036430(void);
|
|
|
|
void func_8003646C(void);
|
|
|
|
void func_80036640(void);
|
|
|
|
void state_init_enter_world(void);
|
|
|
|
void state_drawUI_enter_world(void);
|
|
|
|
void state_init_world(void);
|
|
|
|
void state_step_world(void);
|
|
|
|
void state_drawUI_world(void);
|
|
|
|
void state_init_battle(void);
|
|
|
|
void state_step_battle(void);
|
|
|
|
void state_drawUI_battle(void);
|
|
|
|
void state_init_end_battle(void);
|
|
|
|
void state_step_end_battle(void);
|
|
|
|
void state_drawUI_end_battle(void);
|
|
|
|
void state_init_pause(void);
|
|
|
|
void state_step_pause(void);
|
|
|
|
void state_drawUI_pause(void);
|
|
|
|
void state_init_unpause(void);
|
|
|
|
void state_step_unpause(void);
|
|
|
|
void state_drawUI_unpause(void);
|
|
|
|
void state_init_language_select(void);
|
|
|
|
void state_step_language_select(void);
|
|
|
|
void state_drawUI_language_select(void);
|
|
|
|
void state_init_exit_language_select(void);
|
|
|
|
void state_step_exit_language_select(void);
|
|
|
|
void state_drawUI_exit_language_select(void);
|
|
|
|
void state_init_file_select(void);
|
|
|
|
void state_step_file_select(void);
|
|
|
|
void state_drawUI_file_select(void);
|
|
|
|
void state_init_exit_file_select(void);
|
|
|
|
void state_step_exit_file_select(void);
|
|
|
|
void state_drawUI_exit_file_select(void);
|
|
|
|
void state_init_intro(void);
|
|
|
|
void state_step_intro(void);
|
|
|
|
void state_drawUI_intro(void);
|
|
|
|
void state_init_demo(void);
|
|
|
|
void state_step_demo(void);
|
|
|
|
void state_drawUI_demo(void);
|
2021-10-29 19:57:15 +02:00
|
|
|
void game_mode_set_fpDrawAuxUI(s32 i, void (*fn)(void));
|
2021-07-08 17:53:00 +02:00
|
|
|
|
2022-03-20 11:12:30 +01:00
|
|
|
void func_802B2000(void);
|
|
|
|
void func_802B203C(void);
|
2021-04-01 20:00:29 +02:00
|
|
|
void func_802B2078(void);
|
2022-03-20 11:12:30 +01:00
|
|
|
void func_802B20B4(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void func_802B6CF0_E2B3A0(void);
|
|
|
|
void func_802B7000_E225B0(void);
|
|
|
|
void func_802B70B4_E201C4(void);
|
|
|
|
void func_802B7140(void);
|
|
|
|
void func_802B71C8(void);
|
|
|
|
void func_802B71D4(void);
|
|
|
|
void func_802B72C0_E22870(void);
|
|
|
|
s32 func_802BD7DC(void);
|
|
|
|
void func_802BE070_31DBE0(void);
|
|
|
|
void func_802BFB44_323694(f32 arg0);
|
2021-04-01 20:00:29 +02:00
|
|
|
|
|
|
|
void initialize_curtains(void);
|
|
|
|
void update_curtains(void);
|
|
|
|
// render_curtains
|
|
|
|
void set_curtain_scale_goal(f32 scale);
|
|
|
|
void set_curtain_scale(f32 scale);
|
|
|
|
void set_curtain_draw_callback(UNK_FUN_PTR(callback));
|
|
|
|
void set_curtain_fade_goal(f32 fade);
|
|
|
|
void set_curtain_fade(f32 fade);
|
|
|
|
|
2021-09-30 01:01:31 +02:00
|
|
|
void crash_screen_init(void);
|
|
|
|
void crash_screen_set_draw_info(u16* frameBufPtr, s16 width, s16 height);
|
|
|
|
|
2022-04-29 06:32:16 +02:00
|
|
|
void basic_ai_wander_init(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_wander(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_loiter(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_found_player_jump_init(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_found_player_jump(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_chase_init(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_chase(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_lose_player(Evt* script, NpcAISettings* npcAISettings, EnemyDetectVolume* territory);
|
|
|
|
void basic_ai_suspend(Evt* script);
|
2021-10-22 16:01:27 +02:00
|
|
|
|
2022-01-03 18:36:01 +01:00
|
|
|
// This legally allows all functions to be pointers without warnings.
|
|
|
|
// Perhaps the void arg functions can be changed later to remove this need.
|
|
|
|
typedef union {
|
|
|
|
void (*func1)(Evt*, s32);
|
|
|
|
void (*func2)(void);
|
2022-01-06 14:40:01 +01:00
|
|
|
} WorldArgs TRANSPARENT_UNION;
|
2022-01-03 18:36:01 +01:00
|
|
|
|
|
|
|
s32 create_generic_entity_world(WorldArgs, WorldArgs);
|
|
|
|
|
2021-04-22 05:19:31 +02:00
|
|
|
EntityModel* get_entity_model(s32 idx);
|
2021-06-30 04:27:12 +02:00
|
|
|
f32 phys_get_spin_history(s32 lag, s32* x, s32* y, s32* z);
|
2022-01-03 18:36:01 +01:00
|
|
|
void fold_update(u32, s32, s32, s32, s32, s32, s32);
|
|
|
|
s32 func_8013A704(s32);
|
|
|
|
void free_generic_entity(s32);
|
2021-04-08 19:42:36 +02:00
|
|
|
|
2021-04-29 19:09:30 +02:00
|
|
|
void sfx_get_spatialized_sound_params(f32 arg0, f32 arg1, f32 arg2, s16* arg3, s16* arg4, s32 arg5);
|
|
|
|
void sfx_play_sound_with_params(s32 arg0, u8 arg1, u8 arg2, s16 arg3);
|
2022-04-29 06:32:16 +02:00
|
|
|
s32 ai_check_fwd_collisions(Npc* npc, f32 arg1, f32* arg2, f32* arg3, f32* arg4, f32* arg5);
|
|
|
|
void basic_ai_loiter_init(Evt* script, NpcAISettings* aiSettings, EnemyDetectVolume* territory);
|
|
|
|
void PatrolAI_LoiterInit(Evt* script, NpcAISettings* aiSettings, EnemyDetectVolume* territory);
|
2022-02-08 19:33:05 +01:00
|
|
|
|
|
|
|
s32 func_80263230(Actor*, Actor*);
|
2021-12-29 13:22:01 +01:00
|
|
|
void func_80266EA8(ActorPart*, s32);
|
|
|
|
void func_80266E40(Actor*);
|
2022-02-08 19:33:05 +01:00
|
|
|
void func_80267018(Actor* actor, s32 arg1);
|
2021-12-29 13:22:01 +01:00
|
|
|
void remove_player_buffs(s32);
|
|
|
|
s32 is_actor_hp_bar_visible(Actor*);
|
2021-06-15 10:05:16 +02:00
|
|
|
|
|
|
|
void sin_cos_rad(f32 rad, f32* outSinTheta, f32* outCosTheta);
|
2021-07-18 17:21:37 +02:00
|
|
|
|
2022-01-06 14:40:01 +01:00
|
|
|
void load_font(s32 font);
|
2021-04-29 19:09:30 +02:00
|
|
|
|
2021-07-16 13:08:22 +02:00
|
|
|
void* load_asset_by_name(const char* assetName, u32* decompressedSize);
|
|
|
|
|
2021-07-31 16:32:19 +02:00
|
|
|
void mdl_draw_hidden_panel_surface(Gfx** arg0, u16 treeIndex);
|
|
|
|
s32 func_8011CFBC(void);
|
2021-12-13 10:27:28 +01:00
|
|
|
void set_screen_overlay_center_worldpos(s32 idx, s32 posIdx, s32 x, s32 y, s32 z);
|
2021-10-03 17:44:16 +02:00
|
|
|
s32 mdl_get_next_texture_address(s32);
|
2021-10-29 03:19:44 +02:00
|
|
|
void draw_msg(s32 msgID, s32 posX, s32 posY, s32 opacity, s32 palette, u8 style);
|
2021-07-31 16:32:19 +02:00
|
|
|
void get_background_color_blend(u8* r, u8* g, u8* b, u8* a);
|
|
|
|
|
2021-10-03 19:42:38 +02:00
|
|
|
s8 set_global_byte(s32 index, s32 value);
|
|
|
|
|
2021-08-25 23:29:43 +02:00
|
|
|
s32 entity_base_block_idle(Entity* entity);
|
|
|
|
s32 recover_hp(s32 amt);
|
|
|
|
s32 recover_fp(s32 amt);
|
|
|
|
void entity_set_render_script(Entity* entity, u32* commandList);
|
|
|
|
s32 entity_can_collide_with_jumping_player(Entity* entity);
|
|
|
|
s32 set_global_flag(s32 index);
|
|
|
|
void entity_base_block_init(Entity* entity);
|
2021-08-29 16:09:41 +02:00
|
|
|
s32 entity_start_script(Entity* entity);
|
2021-09-26 00:13:36 +02:00
|
|
|
void remove_item_entity_by_index(s32 index);
|
2021-08-25 23:29:43 +02:00
|
|
|
void set_entity_commandlist(Entity* entity, s32* entityScript);
|
|
|
|
void func_800EF3E4(void);
|
|
|
|
void func_80268858(void);
|
|
|
|
void func_80269118(void);
|
|
|
|
s32 func_80268224(s32);
|
2021-08-29 16:09:41 +02:00
|
|
|
void func_80149A6C(s32, s32);
|
|
|
|
void func_800EF300(void);
|
|
|
|
void enable_player_shadow(void);
|
2021-09-25 14:14:28 +02:00
|
|
|
s32 get_msg_lines(s32 messageID);
|
2022-02-13 09:19:59 +01:00
|
|
|
void set_window_properties(s32 panelID, s32 posX, s32 posY, s32 width, s32 height, u8, void* drawContents, void* drawContentsArg, s8 parent);
|
2022-03-22 22:27:22 +01:00
|
|
|
void set_window_update(s32 panelID, s32);
|
2022-03-10 10:55:38 +01:00
|
|
|
void set_windows_visible(s32 groupIdx);
|
2021-10-03 19:42:38 +02:00
|
|
|
void snd_stop_sound(s32 soundID);
|
2022-01-31 11:10:02 +01:00
|
|
|
void snd_start_sound_with_shift(s32 soundID, u8 volume, u8 pan, s16 pitchShift);
|
|
|
|
void snd_adjust_sound_with_shift(s32 soundID, u8 volume, u8 pan, s16 pitchShift);
|
|
|
|
|
|
|
|
void sfx_adjust_env_sound_params(s32 soundID, u8 volume, u8 pan, s16 pitchShift);
|
|
|
|
void sfx_stop_sound(s32 soundID);
|
|
|
|
|
2021-09-25 14:14:28 +02:00
|
|
|
void partner_disable_input(void);
|
2021-09-26 23:00:26 +02:00
|
|
|
void func_80268798(s32, s32, s32, s32);
|
2021-12-20 16:59:25 +01:00
|
|
|
void func_8026880C(s32, s32, s32);
|
2021-09-26 23:00:26 +02:00
|
|
|
void func_802687E4(s32 arg0, s32 arg1, s32 arg2, s32 arg3, s32 arg4);
|
2021-10-01 14:54:52 +02:00
|
|
|
void close_message(MessagePrintState* msgPrintState);
|
|
|
|
void show_foreground_models_unchecked(void);
|
|
|
|
void hide_foreground_models_unchecked(void);
|
|
|
|
void show_foreground_models(void);
|
|
|
|
void hide_foreground_models(void);
|
|
|
|
void btl_set_state(s32 battleState);
|
2021-10-06 08:22:42 +02:00
|
|
|
void draw_entity_model_E(s32, Mtx*);
|
|
|
|
void draw_entity_model_A(s32, Mtx*);
|
|
|
|
void free_entity_model_by_index(s32 idx);
|
2022-05-16 21:18:18 +02:00
|
|
|
void btl_cam_use_preset(s32);
|
|
|
|
void btl_cam_set_params(s16, s16, s16, s16, s32, s32, s32, s32);
|
2021-10-17 21:34:18 +02:00
|
|
|
void btl_cam_set_zoffset(s16);
|
|
|
|
void btl_cam_target_actor(s32);
|
|
|
|
void btl_cam_set_zoom(s16);
|
|
|
|
void btl_cam_move(s16);
|
|
|
|
void func_8024E60C(void);
|
2022-02-08 19:33:05 +01:00
|
|
|
|
2021-10-17 21:34:18 +02:00
|
|
|
void dispatch_event_actor(Actor*, s32);
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 dispatch_damage_event_actor_1(Actor* actor, s32 damageAmount, s32 event);
|
|
|
|
|
2021-10-17 21:34:18 +02:00
|
|
|
void btl_show_variable_battle_message(s32, s32, s32);
|
|
|
|
s32 btl_is_popup_displayed(void);
|
2022-05-16 21:18:18 +02:00
|
|
|
void btl_cam_use_preset_immediately(s32);
|
2021-10-19 17:15:38 +02:00
|
|
|
s32 inflict_status(Actor*, s32, s32);
|
2021-10-25 12:28:45 +02:00
|
|
|
s32 try_inflict_status(Actor*, s32, s32);
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 inflict_status_set_duration(Actor* actor, s32 statusTypeKey, s32 statusDurationKey, s32 duration);
|
2021-10-25 13:29:47 +02:00
|
|
|
void mdl_set_all_fog_mode(s32);
|
2021-12-22 15:59:52 +01:00
|
|
|
void load_model_animator_tree(s32, StaticAnimatorNode**);
|
2021-10-25 13:29:47 +02:00
|
|
|
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 inflict_partner_ko(Actor* target, s32 statusTypeKey, s32 duration);
|
|
|
|
s32 get_defense(Actor* actor, s32* defenseTable, s32 elementFlags);
|
|
|
|
|
2022-01-20 14:08:24 +01:00
|
|
|
void func_8024EDC0(void);
|
|
|
|
|
2022-05-05 16:08:16 +02:00
|
|
|
void remove_all_effects(void);
|
2021-10-25 13:29:47 +02:00
|
|
|
void update_effects(void);
|
|
|
|
void update_cameras(void);
|
|
|
|
void clear_render_tasks(void);
|
|
|
|
void clear_generic_entity_list(void);
|
|
|
|
void clear_printers(void);
|
|
|
|
void clear_item_entity_data(void);
|
|
|
|
void clear_player_data(void);
|
2021-08-25 23:29:43 +02:00
|
|
|
|
2022-04-11 08:34:35 +02:00
|
|
|
void phys_update_jump(void);
|
|
|
|
void phys_update_falling(void);
|
|
|
|
void check_input_midair_jump(void);
|
|
|
|
void collision_check_player_overlaps(void);
|
|
|
|
|
|
|
|
void update_player_input(void);
|
|
|
|
void phys_update_action_state(void);
|
|
|
|
void collision_main_lateral(void);
|
|
|
|
void func_800EFD08(void);
|
|
|
|
void check_input_open_menus(void);
|
|
|
|
void check_input_status_menu(void);
|
|
|
|
|
2021-09-28 09:47:55 +02:00
|
|
|
void enforce_hpfp_limits(void);
|
2021-12-18 05:04:54 +01:00
|
|
|
s32 should_collider_allow_interact(s32);
|
2021-12-15 20:12:43 +01:00
|
|
|
void show_coin_counter(void);
|
|
|
|
s32 add_item(s32 itemID);
|
|
|
|
s32 add_badge(s32 itemID);
|
2022-04-05 11:52:06 +02:00
|
|
|
void hide_coin_counter_immediately(void);
|
2021-12-15 20:12:43 +01:00
|
|
|
void hide_popup_menu(void);
|
|
|
|
void destroy_popup_menu(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void reset_player_status(void);;
|
|
|
|
void func_800E4F10(void);
|
|
|
|
void func_800E5520(void);
|
|
|
|
void func_800E6B68(void);
|
|
|
|
s32 func_800E9860(void);
|
2021-12-15 20:12:43 +01:00
|
|
|
void func_800E98C4(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void func_800E98EC(void);
|
|
|
|
void func_800E9900(void);
|
2022-03-22 22:27:22 +01:00
|
|
|
void func_800F0D5C(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
void func_800F0C9C(void);
|
2021-12-15 20:12:43 +01:00
|
|
|
s32 get_item_count(void);
|
|
|
|
s32 get_stored_empty_count(void);
|
|
|
|
s32 get_stored_count(void);
|
|
|
|
s32 get_item_empty_count(void);
|
|
|
|
void shop_open_item_select_popup(s32 mode);
|
|
|
|
void hide_coin_counter(void);
|
|
|
|
void set_message_msg(s32 msgID, s32 index);
|
|
|
|
void set_message_value(s32 value, s32 index);
|
|
|
|
s32 store_item(s32 itemID);
|
|
|
|
void open_status_menu_short(void);
|
2021-12-28 12:43:24 +01:00
|
|
|
void func_8024EFE0(f32 x, f32 y, f32 z, s32, s32, s32);
|
2021-12-12 14:53:19 +01:00
|
|
|
void func_802664DC(f32 x, f32 y, f32 z, s32 attack, s32 a);
|
2021-12-25 02:34:55 +01:00
|
|
|
s32 dispatch_damage_event_partner(s32 damageAmount, s32 event, s32 stopMotion);
|
|
|
|
s32 calc_partner_test_enemy(void);
|
2022-02-08 19:33:05 +01:00
|
|
|
void disable_actor_blur(Actor*);
|
2022-01-03 18:36:01 +01:00
|
|
|
void reset_actor_blur(Actor*);
|
2022-02-08 19:33:05 +01:00
|
|
|
void enable_actor_blur(Actor*);
|
|
|
|
void func_80251474(Actor*);
|
2022-01-03 18:36:01 +01:00
|
|
|
s32 func_8025C8A0(s32, ActorPart*);
|
|
|
|
void func_8025CD28(s32, ActorPart*);
|
2022-02-08 19:33:05 +01:00
|
|
|
void func_8025CEC8(ActorPart*);
|
|
|
|
void _remove_part_decoration(ActorPart* part, s32 decorationIndex);
|
2022-01-03 18:36:01 +01:00
|
|
|
void func_8025D158(ActorPart*, s32);
|
|
|
|
void func_8025D290(ActorPart*, s32);
|
|
|
|
void func_8025D3C4(ActorPart*, s32);
|
|
|
|
void func_8025D4A0(ActorPart*, s32);
|
|
|
|
void func_8025D620(ActorPart*, s32);
|
|
|
|
void func_8025D6FC(ActorPart*, s32);
|
|
|
|
void func_8025D810(ActorPart*, s32);
|
|
|
|
void func_8025D8EC(ActorPart*, s32);
|
|
|
|
void func_8025DA60(ActorPart*, s32);
|
|
|
|
void func_8025DBC8(ActorPart*, s32);
|
|
|
|
void func_8025DD40(ActorPart*, s32);
|
|
|
|
void func_8025DE88(ActorPart*, s32);
|
|
|
|
void func_800E9894(void);
|
|
|
|
void func_8013A854(u32);
|
2021-12-12 14:53:19 +01:00
|
|
|
|
2022-02-21 17:05:36 +01:00
|
|
|
void disable_player_blur(void);
|
|
|
|
void enable_player_blur(void);
|
|
|
|
void func_80254950(void);
|
|
|
|
void func_802549A0(void);
|
|
|
|
void func_802549C0(void);
|
|
|
|
|
|
|
|
void set_goal_pos_to_part(ActorState* state, s32 actorID, s32 partIndex);
|
|
|
|
|
2021-12-20 16:59:25 +01:00
|
|
|
void init_encounters_ui(void);
|
|
|
|
void initialize_collision(void);
|
|
|
|
void render_entities(void);
|
|
|
|
void render_player(void);
|
|
|
|
void render_generic_entities_world(void);
|
|
|
|
void render_effects_world(void);
|
|
|
|
s32 get_asset_offset(char*, s32*);
|
|
|
|
void initialize_status_menu(void);
|
2022-01-16 18:22:23 +01:00
|
|
|
void status_menu_start_blinking_fp(void);
|
2022-04-11 08:34:35 +02:00
|
|
|
s32 is_status_menu_visible(void);
|
2022-01-16 18:22:23 +01:00
|
|
|
void status_menu_start_blinking_hp(void);
|
|
|
|
void status_menu_start_blinking_sp(void);
|
|
|
|
void status_menu_stop_blinking_fp(void);
|
|
|
|
void status_menu_stop_blinking_hp(void);
|
|
|
|
void status_menu_stop_blinking_sp(void);
|
2021-12-20 16:59:25 +01:00
|
|
|
void set_background_size(s16, s16, s16, s16);
|
|
|
|
void read_background_size(BackgroundHeader*);
|
|
|
|
void set_max_SP(s8);
|
|
|
|
void sync_status_menu(void);
|
|
|
|
void create_cameras_a(void);
|
|
|
|
void func_80045AC0(void);
|
|
|
|
void create_encounters(void);
|
|
|
|
void update_encounters_neutral(void);
|
|
|
|
void update_encounters_pre_battle(void);
|
|
|
|
void update_encounters_conversation(void);
|
|
|
|
void update_encounters_post_battle(void);
|
2022-02-19 15:39:34 +01:00
|
|
|
void load_map_bg(char* optAssetName);
|
2021-12-20 16:59:25 +01:00
|
|
|
void reset_background_settings(void);
|
|
|
|
void func_80138188(void);
|
2022-02-08 19:33:05 +01:00
|
|
|
void func_80266970(Actor*);
|
|
|
|
void func_80266ADC(Actor*);
|
|
|
|
void func_80266AF8(Actor*);
|
|
|
|
void func_80266E14(ActorPart*);
|
2021-12-20 16:59:25 +01:00
|
|
|
void func_80268770(s32, s32, s32);
|
|
|
|
void func_80268C9C(void);
|
2022-03-10 10:55:38 +01:00
|
|
|
void func_80268E88(void);
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 check_block_input(s32 buttonMask);
|
2021-12-20 16:59:25 +01:00
|
|
|
void func_80269160(void);
|
2022-02-02 18:19:52 +01:00
|
|
|
void func_800E24F8(void);
|
2021-12-20 16:59:25 +01:00
|
|
|
void load_tattle_flags(s32);
|
2022-04-11 08:34:35 +02:00
|
|
|
s32 use_consumable(s32 invSlot);
|
2021-12-20 16:59:25 +01:00
|
|
|
void remove_consumable(void);
|
|
|
|
void delete_shadow(s32);
|
|
|
|
void repartner_set_tether_distance(void);
|
|
|
|
void save_tattle_flags(s32);
|
2022-01-10 16:55:26 +01:00
|
|
|
void update_merlee_messages(void);
|
2021-12-20 16:59:25 +01:00
|
|
|
void draw_merlee_messages(void);
|
2022-01-10 16:55:26 +01:00
|
|
|
void show_merlee_message(s16, s16);
|
|
|
|
s32 is_merlee_message_done(void);
|
2022-02-24 16:12:33 +01:00
|
|
|
void close_action_command_instruction_popup(void);
|
2021-12-20 16:59:25 +01:00
|
|
|
void draw_encounters_conversation(void);
|
|
|
|
void draw_encounters_post_battle(void);
|
|
|
|
void draw_encounters_pre_battle(void);
|
|
|
|
void draw_encounters_neutral(void);
|
|
|
|
void show_first_strike_message(void);
|
|
|
|
void entity_upgrade_block_hide_content(s32);
|
2022-01-19 12:21:19 +01:00
|
|
|
s32 lookup_defense(s32*, s32);
|
2022-02-08 19:33:05 +01:00
|
|
|
s32 lookup_status_chance(s32*, s32);
|
2022-02-02 18:19:52 +01:00
|
|
|
void peach_check_for_parasol_input(void);
|
|
|
|
void peach_sync_disguise_npc(void);
|
|
|
|
s32 check_conversation_trigger(void);
|
2021-12-20 16:59:25 +01:00
|
|
|
|
|
|
|
void clear_player_status(void);
|
|
|
|
void clear_entity_models(void);
|
|
|
|
void clear_animator_list(void);
|
|
|
|
void clear_model_data(void);
|
|
|
|
void clear_sprite_shading_data(void);
|
|
|
|
void clear_character_set(void);
|
|
|
|
void clear_game_modes(void);
|
|
|
|
void clear_trigger_data(void);
|
|
|
|
void clear_script_list(void);
|
|
|
|
void clear_entity_data(s32);
|
|
|
|
void clear_effect_data(void);
|
|
|
|
|
2022-03-30 14:07:13 +02:00
|
|
|
void clear_saved_variables(void);
|
|
|
|
void clear_area_flags(void);
|
2022-03-22 22:56:28 +01:00
|
|
|
|
2022-03-26 11:37:14 +01:00
|
|
|
f32 get_player_normal_pitch(void);
|
|
|
|
void partner_kill_ability_script(void);
|
|
|
|
void func_800EF3D4(s32);
|
2020-07-18 02:47:33 +02:00
|
|
|
#endif
|