mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 05:19:36 +00:00
174af7384d
* cleanup libultra * fixes - use quotes instead of <> for includes - add macros for zelda specific thread priorities - fix Makefile - properly format the remaining pfs structs * fix button macros + add CHECK_BTN_ANY/CHECK_BTN_ALL * remove ULTRA_ABS * fix includes * update z_player.c/z_lib.c + run format.sh * merge upstream/master * fix include in En_Goroiwa * fix includes
45 lines
960 B
C
45 lines
960 B
C
#include "global.h"
|
|
|
|
Path* Path_GetByIndex(GlobalContext* globalCtx, s16 index, s16 max) {
|
|
Path* path;
|
|
|
|
if (index != max) {
|
|
path = &globalCtx->setupPathList[index];
|
|
} else {
|
|
path = NULL;
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
f32 Path_OrientAndGetDistSq(Actor* actor, Path* path, s16 waypoint, s16* yaw) {
|
|
f32 dx;
|
|
f32 dz;
|
|
Vec3s* pointPos;
|
|
|
|
if (path == NULL) {
|
|
return -1.0;
|
|
}
|
|
|
|
pointPos = SEGMENTED_TO_VIRTUAL(path->points);
|
|
pointPos = &pointPos[waypoint];
|
|
|
|
dx = pointPos->x - actor->posRot.pos.x;
|
|
dz = pointPos->z - actor->posRot.pos.z;
|
|
|
|
*yaw = Math_atan2f(dx, dz) * (32768 / M_PI);
|
|
|
|
return SQ(dx) + SQ(dz);
|
|
}
|
|
|
|
void Path_CopyLastPoint(Path* path, Vec3f* dest) {
|
|
Vec3s* pointPos;
|
|
|
|
if (path != NULL) {
|
|
pointPos = &((Vec3s*)SEGMENTED_TO_VIRTUAL(path->points))[path->count - 1];
|
|
|
|
dest->x = pointPos->x;
|
|
dest->y = pointPos->y;
|
|
dest->z = pointPos->z;
|
|
}
|
|
}
|