mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
4e55168eaa
* git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "094e79734" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "094e79734" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * Add EnumData.xml where some names are now externalized * Remove legacy typedefs for zapd, no longer needed!
36 lines
1,023 B
C
36 lines
1,023 B
C
#ifndef Z64_ANIMATION_LEGACY_H
|
|
#define Z64_ANIMATION_LEGACY_H
|
|
|
|
#include "ultra64.h"
|
|
#include "z64math.h"
|
|
|
|
typedef struct LegacyLimb {
|
|
/* 0x000 */ Gfx* dList;
|
|
/* 0x004 */ Vec3f trans;
|
|
/* 0x010 */ Vec3s rot;
|
|
/* 0x018 */ struct LegacyLimb* sibling;
|
|
/* 0x01C */ struct LegacyLimb* child;
|
|
} LegacyLimb; // size = 0x20
|
|
|
|
typedef struct {
|
|
/* 0x00 */ s16 xMax;
|
|
/* 0x02 */ s16 x;
|
|
/* 0x04 */ s16 yMax;
|
|
/* 0x06 */ s16 y;
|
|
/* 0x08 */ s16 zMax;
|
|
/* 0x0A */ s16 z;
|
|
} LegacyJointKey; // size = 0x0C
|
|
|
|
typedef struct {
|
|
/* 0x00 */ s16 frameCount;
|
|
/* 0x02 */ s16 limbCount;
|
|
/* 0x04 */ s16* frameData;
|
|
/* 0x08 */ LegacyJointKey* jointKey;
|
|
} LegacyAnimationHeader; // size = 0xC
|
|
|
|
s32 SkelAnime_GetFrameDataLegacy(LegacyAnimationHeader* animation, s32 frame, Vec3s* frameTable);
|
|
s16 Animation_GetLimbCountLegacy(LegacyAnimationHeader* animation);
|
|
s16 Animation_GetLengthLegacy(LegacyAnimationHeader* animation);
|
|
s16 Animation_GetLastFrameLegacy(LegacyAnimationHeader* animation);
|
|
|
|
#endif
|