mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-18 05:08:36 -04:00
Rename positions to props
This commit is contained in:
@@ -16,7 +16,7 @@ f32 chrGetLateralDistanceToCoord(struct chrdata *chr, struct coord *coord);
|
||||
f32 chrGetLateralDistanceToPad(struct chrdata *chr, s32 pad_id);
|
||||
f32 chrGetSameFloorDistanceToPad(struct chrdata *chr, s32 pad_id);
|
||||
f32 chrGetSquaredDistanceToCoord(struct chrdata *chr, struct coord *coord);
|
||||
struct position *chrGetTargetPosition(struct chrdata *chr);
|
||||
struct prop *chrGetTargetProp(struct chrdata *chr);
|
||||
f32 chrGetTimer(struct chrdata *chr);
|
||||
bool chrHasFlag(struct chrdata *chr, u32 flag, u8 bank);
|
||||
bool chrHasFlagById(struct chrdata *ref, u32 chrnum, u32 flag, u32 bank);
|
||||
@@ -52,7 +52,7 @@ u32 func0f020668(void);
|
||||
u32 func0f020b14(void);
|
||||
u32 func0f020cc8(void);
|
||||
u32 func0f020d44(void);
|
||||
void func0f020f90(s32 positionnum);
|
||||
void func0f020f90(s32 propnum);
|
||||
u32 func0f021258(void);
|
||||
u32 func0f02133c(void);
|
||||
u32 func0f0213a0(void);
|
||||
@@ -157,7 +157,7 @@ void chrSidestep(struct chrdata *chr, s32 arg1);
|
||||
void func0f02fc2c(struct chrdata *chr);
|
||||
void chrJumpOut(struct chrdata *chr, s32 arg1);
|
||||
void func0f02fe18(struct chrdata *chr);
|
||||
void chrRunToPos(struct chrdata *chr, struct coord *coord);
|
||||
void chrRunToProp(struct chrdata *chr, struct coord *coord);
|
||||
void func0f030120(struct chrdata *chr, s32 thingtype, s32 thingid);
|
||||
void func0f030308(struct chrdata *chr, s32 thingtype, s32 thingid);
|
||||
void func0f0303a0(struct chrdata *chr, s32 thingtype, s32 thingid);
|
||||
@@ -253,7 +253,7 @@ u32 chrTrySurrender(struct chrdata *chr);
|
||||
bool chrFadeOut(struct chrdata *chr);
|
||||
bool chrGoToTarget(struct chrdata *chr, u32 speed);
|
||||
bool chrGoToChr(struct chrdata *chr, u32 dst_chrnum, u32 speed);
|
||||
bool func0f03ab74(struct chrdata *chr, struct position *pos, s32 arg2);
|
||||
bool func0f03ab74(struct chrdata *chr, struct prop *prop, s32 arg2);
|
||||
u32 func0f03abd0(void);
|
||||
u32 func0f03aca0(struct chrdata *chr, u32 arg1, u32 arg2);
|
||||
bool chrTryStop(struct chrdata *chr);
|
||||
@@ -415,9 +415,9 @@ u32 func0f04e418(void);
|
||||
u32 getNumChrs(void);
|
||||
void incrementByte(u8 *dst, u8 amount);
|
||||
s32 chrResolvePadId(struct chrdata *chr, s32 pad_id);
|
||||
f32 positionGetDistanceToPosition(struct position *a, struct position *b);
|
||||
u32 positionGetIndexByChrId(struct chrdata *chr, s32 chrnum);
|
||||
f32 positionGetLateralDistanceToPosition(struct position *a, struct position *b);
|
||||
f32 propGetDistanceToProp(struct prop *a, struct prop *b);
|
||||
u32 propGetIndexByChrId(struct chrdata *chr, s32 chrnum);
|
||||
f32 propGetLateralDistanceToProp(struct prop *a, struct prop *b);
|
||||
void func0f01e760(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -445,6 +445,6 @@
|
||||
/*0x01df*/ bool aiIfChrSameFloorDistanceToPadLessThan(void);
|
||||
/*0x01e0*/ bool ai01e0(void);
|
||||
|
||||
void func0f05abdc(struct position *pos);
|
||||
void func0f05abdc(struct prop *prop);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user