papermario/include/functions.h

46 lines
1.5 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-10 09:42:50 +02:00
void clone_model(u16 srcModelID, u16 newModelID);
void update_collider_transform(s16 colliderID);
2020-08-16 05:23:40 +02:00
s32 get_variable(Script* script, Bytecode var);
s32 set_variable(Script* script, Bytecode var, s32 value);
f32 get_float_variable(Script* script, Bytecode var);
f32 set_float_variable(Script* script, Bytecode var, f32 value);
2020-08-16 05:19:00 +02:00
void set_script_timescale(Script* script, f32 timescale);
2020-07-18 02:47:33 +02:00
f32 sin_deg(f32 x);
f32 cos_deg(f32 x);
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);
s32 func_80055448(s32);
s32 func_80055464(s32, s32);
s32 func_800554A4(s32, s32);
s32 func_800554E8(s32, s32);
s32 func_800555E4(s32);
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-08-12 23:13:09 +02:00
void 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-08-16 06:24:20 +02:00
Npc* get_npc_safe(NpcId npcId);
Npc* get_npc_unsafe(NpcId npcId);
Npc* resolve_npc(Script* script, NpcId npcIdOrPtr);
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);
s32 play_sound_at_position(s32 soundID, s32 value2, f32 posX, f32 posY, f32 posZ);
2020-08-12 04:45:27 +02:00
s32 set_music_track(s32 musicPlayer, s32 songID, s32 variation, s32 unk, s32 volume);
2020-07-18 02:47:33 +02:00
#endif