2023-11-12 14:47:38 -05:00
|
|
|
#ifndef __PATCHES_H__
|
|
|
|
#define __PATCHES_H__
|
|
|
|
|
2024-01-13 01:39:08 -05:00
|
|
|
// TODO fix renaming symbols in patch recompilation
|
2024-03-21 02:46:08 -04:00
|
|
|
#define osCreateMesgQueue osCreateMesgQueue_recomp
|
2024-01-13 01:39:08 -05:00
|
|
|
#define osRecvMesg osRecvMesg_recomp
|
|
|
|
#define osSendMesg osSendMesg_recomp
|
2024-03-11 00:13:32 -04:00
|
|
|
#define sinf __sinf_recomp
|
|
|
|
#define cosf __cosf_recomp
|
2024-03-12 18:01:58 -04:00
|
|
|
#define gRandFloat sRandFloat
|
2023-11-12 14:47:38 -05:00
|
|
|
#include "global.h"
|
2023-12-01 10:56:20 -05:00
|
|
|
#include "rt64_extended_gbi.h"
|
2023-11-12 14:47:38 -05:00
|
|
|
|
2024-03-28 20:36:16 -04:00
|
|
|
#define gEXMatrixGroupInterpolateOnlyTiles(cmd, push, proj, edit) \
|
|
|
|
gEXMatrixGroup(cmd, G_EX_ID_IGNORE, G_EX_INTERPOLATE_SIMPLE, push, proj, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_INTERPOLATE, G_EX_ORDER_LINEAR, edit)
|
|
|
|
|
|
|
|
#define gEXMatrixGroupDecomposedNormal(cmd, id, push, proj, edit) \
|
|
|
|
gEXMatrixGroupDecomposed(cmd, id, push, proj, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_INTERPOLATE, G_EX_ORDER_LINEAR, edit)
|
|
|
|
|
|
|
|
#define gEXMatrixGroupDecomposedSkip(cmd, id, push, proj, edit) \
|
|
|
|
gEXMatrixGroupDecomposed(cmd, id, push, proj, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_INTERPOLATE, G_EX_ORDER_LINEAR, edit)
|
|
|
|
|
|
|
|
#define gEXMatrixGroupDecomposedVerts(cmd, id, push, proj, edit) \
|
|
|
|
gEXMatrixGroupDecomposed(cmd, id, push, proj, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_COMPONENT_INTERPOLATE, G_EX_ORDER_LINEAR, edit)
|
2024-03-02 13:33:09 -05:00
|
|
|
|
|
|
|
|
2023-11-24 17:10:21 -05:00
|
|
|
int recomp_printf(const char* fmt, ...);
|
2024-03-03 02:36:14 -05:00
|
|
|
float recomp_powf(float, float);
|
2023-11-24 17:10:21 -05:00
|
|
|
|
2024-02-24 16:14:48 -05:00
|
|
|
static inline void* actor_relocate(Actor* actor, void* addr) {
|
|
|
|
return (void*)((uintptr_t)addr -
|
|
|
|
(intptr_t)((uintptr_t)actor->overlayEntry->vramStart - (uintptr_t)actor->overlayEntry->loadedRamAddr));
|
|
|
|
}
|
|
|
|
|
2024-03-05 02:55:05 -05:00
|
|
|
typedef enum {
|
|
|
|
/* 0 */ PICTO_BOX_STATE_OFF, // Not using the pictograph
|
|
|
|
/* 1 */ PICTO_BOX_STATE_LENS, // Looking through the lens of the pictograph
|
|
|
|
/* 2 */ PICTO_BOX_STATE_SETUP_PHOTO, // Looking at the photo currently taken
|
|
|
|
/* 3 */ PICTO_BOX_STATE_PHOTO
|
|
|
|
} PictoBoxState;
|
|
|
|
|
|
|
|
|
|
|
|
#define INCBIN(identifier, filename) \
|
|
|
|
asm(".pushsection .rodata\n" \
|
|
|
|
"\t.local " #identifier "\n" \
|
|
|
|
"\t.type " #identifier ", @object\n" \
|
|
|
|
"\t.balign 8\n" \
|
|
|
|
#identifier ":\n" \
|
|
|
|
"\t.incbin \"" filename "\"\n\n" \
|
|
|
|
\
|
|
|
|
"\t.balign 8\n" \
|
|
|
|
"\t.popsection\n"); \
|
|
|
|
extern u8 identifier[]
|
|
|
|
|
|
|
|
void draw_dpad(PlayState* play);
|
|
|
|
void draw_dpad_icons(PlayState* play);
|
|
|
|
|
2024-03-12 18:01:58 -04:00
|
|
|
void View_ApplyInterpolate(View* view, s32 mask, bool reset_interpolation_state);
|
|
|
|
|
2024-03-27 18:47:15 -04:00
|
|
|
void set_camera_skipped(bool skipped);
|
|
|
|
void clear_camera_skipped();
|
|
|
|
bool camera_was_skipped();
|
2024-03-28 00:35:10 -04:00
|
|
|
void room_load_hook(PlayState* play, Room* room);
|
2024-03-27 18:47:15 -04:00
|
|
|
|
|
|
|
void recomp_crash(const char* err);
|
|
|
|
|
2023-11-12 14:47:38 -05:00
|
|
|
#endif
|