papermario/include/functions.h

163 lines
5.6 KiB
C
Raw Normal View History

2020-07-18 02:47:33 +02:00
#ifndef _FUNCTIONS_H_
#define _FUNCTIONS_H_
#include "ultra64.h"
#include "common_structs.h"
2020-08-15 02:49:33 +02:00
#include "enums.h"
2020-07-18 02:47:33 +02:00
2020-07-29 05:35:42 +02:00
void osCleanupThread(void);
2020-08-27 00:54:55 +02:00
s32 heap_malloc(s32 size);
2020-09-02 20:20:29 +02:00
HeapNode* _heap_create(void* addr, s32 size);
2020-11-06 01:30:17 +01:00
s32 dma_copy(s32 romStart, s32 romEnd, void* vramDest);
2020-08-27 00:54:55 +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);
void render_player_model();
2020-10-03 22:04:49 +02:00
f32 integrate_gravity(void);
2020-12-20 04:47:09 +01:00
f32 get_clamped_angle_diff(f32, f32);
2020-10-03 22:04:49 +02:00
2020-10-17 05:47:10 +02:00
// Text
PrintContext* load_string(s32 stringID, s32* a1);
void get_screen_coords(Cam camID, f32 x, f32 y, f32 z, f32* outX, f32* outY, f32* outZ);
2020-09-25 23:18:09 +02:00
void parent_collider_to_model(s32 colliderID, s16 modelIndex);
2020-08-10 09:42:50 +02:00
void clone_model(u16 srcModelID, u16 newModelID);
2020-09-18 03:28:34 +02:00
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);
2020-09-19 17:17:53 +02:00
void get_model_center_and_size(s32 modelID, f32* centerX, f32* centerY, f32* centerZ, f32* sizeX, f32* sizeY,
f32* sizeZ);
2020-09-18 03:28:34 +02:00
2020-11-23 19:48:34 +01:00
void func_80027088(s32);
2020-11-02 20:53:06 +01:00
void func_8006FEF0(s32, f32, f32, f32, f32);
2020-11-23 19:48:34 +01:00
void func_80071090(s32, f32, f32, f32, s32);
2020-11-02 20:53:06 +01:00
void func_80071750(s32, f32, f32, f32, f32, s32);
2020-12-03 16:36:01 +01:00
void func_800720B0(s32, f32, f32, f32, f32, s32);
2020-10-20 01:48:16 +02:00
void func_80072950(s32, f32, f32, f32, f32, s32 time);
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);
2020-10-08 21:03:58 +02:00
s32 is_trigger_bound(Trigger*, Bytecode* script);
2020-09-06 17:53:48 +02:00
Trigger* create_trigger(TriggerDefinition* def);
s32 _bound_script_trigger_handler(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
2020-11-27 20:38:52 +01:00
Actor* get_actor(ActorID actorID);
2020-10-17 05:47:10 +02:00
ActorPart* get_actor_part(Actor* actor, s32 partIndex);
2020-10-08 21:03:58 +02:00
s32 func_800494C0(Npc* npc, s32 arg1, s32 arg2);
2020-08-16 07:13:03 +02:00
s32 get_variable(ScriptInstance* script, Bytecode var);
s32 set_variable(ScriptInstance* script, Bytecode var, s32 value);
f32 get_float_variable(ScriptInstance* script, Bytecode var);
f32 set_float_variable(ScriptInstance* script, Bytecode var, f32 value);
void set_script_timescale(ScriptInstance* 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);
f32 cos_rad(f32 x);
2020-09-18 22:07:15 +02:00
s16 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);
s32 func_80055448(s32);
s32 func_80055464(s32, s32);
2020-12-02 01:13:24 +01:00
void func_800561A4(s32);
2020-09-18 03:28:34 +02:00
s32 osGetId();
2020-09-27 03:02:29 +02:00
2020-10-28 07:42:14 +01:00
void set_curtain_scale_goal(f32 scale);
void set_curtain_fade(f32 scale);
2020-10-26 03:37:22 +01:00
void fx_walk_normal(s32 arg0, f32 arg1, f32 arg2, f32 arg3, s32 arg4, s32 arg5);
2020-12-22 14:24:49 +01:00
void fx_emote(s32, Npc*, f32, f32, f32, f32, f32, s32, s32*);
2020-10-26 03:37:22 +01:00
2020-10-31 00:11:46 +01:00
f32 func_800E0088(f32, f32);
2020-12-22 15:58:31 +01:00
void func_800E06C0(s32);
2020-12-04 23:36:25 +01:00
void func_800E97B8(void);
2020-10-30 05:32:25 +01:00
s32 func_800EB168(s32);
2020-10-30 04:56:54 +01:00
2020-12-23 07:56:34 +01:00
Shadow* create_shadow_type(s32 type, f32 x, f32 y, f32 z);
2020-12-04 23:36:25 +01:00
2020-11-02 20:53:06 +01:00
PlayerData* get_player_data(void);
2020-11-12 06:18:35 +01:00
// Pause
s32 pause_interp_vertical_scroll(s32 deltaBefore);
void pause_draw_rect(s32 ulx, s32 uly, s32 lrx, s32 lry, s32 tileDescriptor, s32 uls, s32 ult, s32 dsdx, s32 dtdy);
2020-12-22 14:24:49 +01:00
s32 func_800DCB7C(s32, f32*, f32*, f32*, f32*);
2020-10-19 01:27:14 +02:00
// Partner
2020-10-19 02:04:18 +02:00
void func_800EBA3C(Npc* partner);
void func_800EBB40(Npc* partner);
2020-11-09 00:26:29 +01:00
void enable_partner_ai(void);
2020-10-19 02:04:18 +02:00
void enable_partner_walking(Npc* partner, s32 val);
void enable_partner_flying(Npc* partner, s32 val);
2020-10-19 01:27:14 +02:00
void update_player_move_history(Npc* partner);
2020-11-07 20:44:44 +01:00
s32 is_current_partner_flying(void);
2020-10-19 01:27:14 +02:00
void func_800ED5D0(Npc* partner);
2020-11-23 20:19:13 +01:00
void clear_partner_move_history(Npc* partner);
2020-10-19 01:27:14 +02:00
2020-09-27 03:02:29 +02:00
s32 func_800EF394(f32);
2020-09-27 19:57:40 +02:00
s32 does_script_exist(s32 id);
2020-11-16 04:04:33 +01:00
s32 does_script_exist_by_ref(ScriptInstance* script);
2020-10-13 05:18:02 +02:00
ScriptInstance* start_script(Bytecode* initialLine, s32 priority, s32 initialState);
2020-10-28 20:06:49 +01:00
ScriptInstance* start_script_in_group(Bytecode* initialLine, u8 priority, u8 initialState, u8 groupFlags);
2020-09-27 03:02:29 +02:00
2020-11-27 20:38:52 +01:00
void set_animation_rate(ActorID actorID, s32 partIndex, f32 rate);
2020-08-22 05:04:10 +02:00
void func_8011B7C0(u16, s32, s32);
2020-11-08 22:05:39 +01:00
AnimatedMesh* get_anim_mesh(s32 arg0);
2020-08-12 23:13:09 +02:00
void func_80137D88(s32, f32);
2020-08-15 16:26:43 +02:00
void func_80137DA4(s32, f32);
2020-11-26 22:41:01 +01:00
void func_80137DC0(s32, f32*, f32*);
2020-09-06 17:53:48 +02:00
s32 func_80137E10(s32, u8, u8, u8);
2020-08-15 16:26:43 +02:00
void func_80137E4C(s32, s32, s32, s32);
s32 rand_int(s32);
void sort_items(void);
s32 is_ability_active(s32 arg0);
2020-08-16 06:24:20 +02:00
f32 update_lerp(Easing easing, f32 start, f32 end, s32 elapsed, s32 duration);
2020-07-18 02:47:33 +02:00
2020-09-06 17:53:48 +02:00
void make_item_entity_delayed(s32 itemID, f32 x, f32 y, f32 z, s32 unk1, s32 unk2, s32 unk3);
2020-10-22 03:39:50 +02:00
void set_item_entity_position(s32 itemEntityIndex, f32 x, f32 y, f32 z);
ItemEntity* get_item_entity(s32 itemEntityIndex);
s32 make_item_entity_nodelay(s32 itemID, f32 x, f32 y, f32 z, ItemSpawnMode 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
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);
2020-09-22 02:56:17 +02:00
2020-08-16 06:24:20 +02:00
Npc* get_npc_safe(NpcId npcId);
Npc* get_npc_unsafe(NpcId npcId);
2020-08-16 07:13:03 +02:00
Npc* resolve_npc(ScriptInstance* script, NpcId npcIdOrPtr);
void set_npc_yaw(Npc* npcPtr, f32 angle);
2020-11-22 21:47:15 +01:00
void npc_move_heading(Npc* npc, f32 speed, f32 yaw);
2020-11-23 20:19:13 +01:00
void disable_npc_blur(Npc* npc);
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-11-07 20:44:44 +01:00
s32 func_801499EC(s32 soundID, s32 arg1, f32 arg2, f32 arg3, f32 arg4);
s32 play_sound_at_position(s32 soundID, s32 value2, f32 posX, f32 posY, f32 posZ);
s32 set_music_track(s32 playerIndex, s32 songID, s32 variation, s32 fadeOutTime, s16 volume);
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
ScriptInstance* get_script_by_index(s32 index);
2020-10-13 03:28:01 +02:00
void suspend_all_group(s32 groupFlags);
void kill_script(ScriptInstance* instanceToKill);
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);
2020-07-18 02:47:33 +02:00
#endif