1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/z_skelanime.c

1686 lines
51 KiB
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#include <ultra64.h>
#include <global.h>
2020-03-18 03:15:19 +00:00
s32 func_800A4478(SkelAnime*,f32,f32);
2020-03-20 21:12:26 +00:00
void func_800A52F8(SkelAnime* skelAnime, u32 animation);
void func_800A54FC(SkelAnime*,Vec3f*,s16);
s32 func_800A3D70(GlobalContext*,SkelAnime*);
s32 func_800A3E0C(GlobalContext*,SkelAnime*);
2020-03-23 01:24:00 +00:00
void func_800A34DC(GlobalContext*,s32,Vec3s*,Vec3s*,f32);
void func_800A336C(GlobalContext* globalCtx, u32 linkAnimetionSeg, s32 frame, s32 limbCount, void* ram);
2020-03-20 21:12:26 +00:00
s32 func_800A4D9C(SkelAnime* skelAnime);
s32 func_800A4EE0(SkelAnime* skelAnime);
s32 func_800A4E38(SkelAnime* skelAnime);
2020-03-23 01:24:00 +00:00
void func_800A1D8C(u32 animation, s32 currentFrame, s32 limbCount, Vec3s *arg3);
2020-03-20 21:12:26 +00:00
void func_800A2E70(u8,Vec3s*,Vec3s*,Vec3s*,f32);
void func_800A49B0(SkelAnime*);
2020-03-23 01:24:00 +00:00
void func_800A3478(GlobalContext*,s32,Vec3s*,Vec3s*);
void func_800A3F08(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation, f32 playbackSpeed, f32 arg4, f32 frameCount, u8 arg6, f32 arg7);
void func_800A4FE4(SkelAnime* skelAnime, u32 animation, f32 playbackSpeed, f32 unk0, f32 frameCount, u8 unk1, f32 transitionRate, s8 unk2);
Gfx* func_800A24A0(GlobalContext*, u8, u32*, Vec3s*, SkelAnime_LimbUpdateMatrix2, SkelAnime_LimbAppendDlist2, Actor*, Mtx**, Gfx*);
2020-03-20 21:12:26 +00:00
//.data
2020-03-23 01:24:00 +00:00
u32 D_8012A480 = 0;
typedef void (*testfunc)(GlobalContext*, AnimationEntryType*);
2020-03-20 21:12:26 +00:00
static testfunc D_8012A484[] =
{
(testfunc)0x800A3678,
(testfunc)0x800A36A4,
(testfunc)0x800A3714,
(testfunc)0x800A3770,
(testfunc)0x800A37F0,
(testfunc)0x800A3874,
};
//.bss
u32 D_801600B0;
2020-03-21 02:51:12 +00:00
// SkelAnime_LodDrawLimb
2020-03-23 01:24:00 +00:00
// func_800A08A0
2020-03-21 02:51:12 +00:00
void func_800A08A0(GlobalContext* globalCtx, s32 limbIndex, u32* limbTable , Vec3s* actorDrawTable, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor, s32 dListIndex)
2020-03-20 21:12:26 +00:00
{
SkelLimbEntry* limbEntry;
Gfx* dList;
2020-03-21 02:51:12 +00:00
Vec3f pos;
Vec3s rot;
GraphicsContext* gfxCtx;
Gfx* gfx[4];
2020-03-20 21:12:26 +00:00
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 773);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(limbTable[limbIndex]);
limbIndex++;
rot = actorDrawTable[limbIndex];
2020-03-23 01:24:00 +00:00
pos.x = limbEntry->translation.x;
pos.y = limbEntry->translation.y;
pos.z = limbEntry->translation.z;
2020-03-20 21:12:26 +00:00
2020-03-21 02:51:12 +00:00
dList = limbEntry->displayLists[dListIndex];
2020-03-20 21:12:26 +00:00
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, limbIndex, &dList, &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList != NULL)
{
2020-03-21 02:51:12 +00:00
do
{
if(1)
{
gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_skelanime.c", 0x325), G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList);
}
} while(0);
2020-03-20 21:12:26 +00:00
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, limbIndex, &dList, &rot, actor);
}
2020-03-23 01:24:00 +00:00
if (limbEntry->firstChildIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
2020-03-21 02:51:12 +00:00
func_800A08A0(globalCtx, limbEntry->firstChildIndex, limbTable, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, dListIndex);
}
Matrix_Pull();
2020-03-23 01:24:00 +00:00
if (limbEntry->nextLimbIndex != LIMB_DONE)
2020-03-21 02:51:12 +00:00
{
func_800A08A0(globalCtx, limbEntry->nextLimbIndex, limbTable, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, dListIndex);
}
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x335);
}
// SkelAnime_LodDraw
2020-03-23 01:24:00 +00:00
// func_800A0B40
2020-03-21 02:51:12 +00:00
void func_800A0B40(GlobalContext* globalCtx, u32* limbIndex, Vec3s* actorDrawTable, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor, s32 dListIndex)
{
SkelLimbEntry* limbEntry;
char pad[4];
Gfx* dList;
Vec3f pos;
Vec3s rot;
GraphicsContext* gfxCtx;
Gfx* gfx[4];
if (limbIndex == NULL)
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Si2_Lod_draw():skelがNULLです。\n");
osSyncPrintf("\x1b[m");
return;
2020-03-20 21:12:26 +00:00
}
2020-03-21 02:51:12 +00:00
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x351);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(*limbIndex);
pos.x = (f32) actorDrawTable->x;
pos.y = (f32) actorDrawTable->y;
pos.z = (f32) actorDrawTable->z;
2020-03-20 21:12:26 +00:00
2020-03-21 02:51:12 +00:00
rot = actorDrawTable[1];
dList = limbEntry->displayLists[dListIndex];
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, 1, &dList, &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList != NULL)
{
gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_skelanime.c", 0x371), G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList);
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, 1, &dList, &rot, actor);
}
if (limbEntry->firstChildIndex != 0xFF)
{
func_800A08A0(globalCtx, limbEntry->firstChildIndex, limbIndex, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, dListIndex);
}
2020-03-20 21:12:26 +00:00
Matrix_Pull();
2020-03-21 02:51:12 +00:00
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x37E);
}
#ifdef NON_MATCHING
// SkelAnime_LodDrawLimbSV
2020-03-23 01:24:00 +00:00
// func_800A0D94
2020-03-21 02:51:12 +00:00
void func_800A0D94(GlobalContext* globalCtx, s32 limbIndex, u32* limbTable, Vec3s* actorDrawTable,
SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc,
Actor* actor, s32 dListIndex, Mtx** mtx)
{
Gfx* dList[2];
GraphicsContext* gfxCtx;
SkelLimbEntry* limbEntry;
Vec3f pos;
Vec3s rot;
Gfx* gfx[3];
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(limbTable[limbIndex]);
limbIndex++;
rot = actorDrawTable[limbIndex];
pos.x = limbEntry->pos.x;
pos.y = limbEntry->pos.y;
pos.z = limbEntry->pos.z;
dList[1] = dList[0] = limbEntry->displayLists[dListIndex];
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, limbIndex, &dList[1], &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList[1] != NULL)
{
Matrix_ToMtx(*mtx, "../z_skelanime.c", 945); gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 946);
gSPMatrix(gfxCtx->polyOpa.p++, *mtx, G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList[1]);
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 949);
(*mtx)++;
}
else if (dList[0] != 0)
{
Matrix_ToMtx(*mtx, "../z_skelanime.c", 954);
(*mtx)++;
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, limbIndex, &dList[1], &rot, actor);
}
2020-03-23 01:24:00 +00:00
if (limbEntry->firstChildIndex != LIMB_DONE)
2020-03-21 02:51:12 +00:00
{
func_800A0D94(globalCtx, limbEntry->firstChildIndex, limbTable, actorDrawTable,
updateMtxFunc, appendDlistFunc, actor, dListIndex, mtx);
}
2020-03-18 03:15:19 +00:00
2020-03-21 02:51:12 +00:00
Matrix_Pull();
2020-03-23 01:24:00 +00:00
if (limbEntry->nextLimbIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
2020-03-21 02:51:12 +00:00
func_800A0D94(globalCtx, limbEntry->nextLimbIndex, limbTable,
actorDrawTable, updateMtxFunc, appendDlistFunc, actor, dListIndex, mtx);
2020-03-20 21:12:26 +00:00
}
}
#else
2020-03-21 02:51:12 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A0D94.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-21 02:51:12 +00:00
#ifdef NON_MATCHING
// SkelAnime_LodDrawSV
2020-03-23 01:24:00 +00:00
// func_800A106C
2020-03-21 02:51:12 +00:00
void func_800A106C(GlobalContext* globalCtx, u32* limbTable, Vec3s* actorDrawTable, s32 limbCount,
SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc,
Actor* actor, s32 dListIndex)
{
SkelLimbEntry *limbEntry;
Gfx* dList[2];
Vec3f pos;
Vec3s rot;
Mtx* mtx;
GraphicsContext* gfxCtx;
Gfx* gfx[4];
do
{
if(1)
{
mtx = Graph_Alloc(globalCtx->state.gfxCtx, limbCount * 0x40);
}
} while(0);
if (limbTable == NULL)
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Si2_Lod_draw_SV():skelがNULLです。\n");
osSyncPrintf("\x1b[m");
return;
}
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1000);
gSPSegment(gfxCtx->polyOpa.p++, 0xD, mtx);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(*limbTable);
2020-03-17 04:31:30 +00:00
2020-03-21 02:51:12 +00:00
pos.x = actorDrawTable->x;
pos.y = actorDrawTable->y;
pos.z = actorDrawTable->z;
rot = actorDrawTable[1];
dList[0] = dList[1] = limbEntry->displayLists[dListIndex];
if ((updateMtxFunc == 0) || (updateMtxFunc(globalCtx, 1, &dList[1], &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList[1] != NULL)
{
mtx = Matrix_ToMtx(mtx, "../z_skelanime.c", 1033);
gSPMatrix(gfxCtx->polyOpa.p++, mtx, G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList[1]);
mtx++;
}
else if (dList[0] != NULL)
{
Matrix_ToMtx(mtx, "../z_skelanime.c", 1040);
mtx++;
}
}
2020-03-17 04:31:30 +00:00
2020-03-21 02:51:12 +00:00
if (appendDlistFunc != 0)
{
appendDlistFunc(globalCtx, 1, &dList[0], &rot, actor);
}
2020-03-23 01:24:00 +00:00
if (limbEntry->firstChildIndex != LIMB_DONE)
2020-03-21 02:51:12 +00:00
{
func_800A0D94(globalCtx, limbEntry->firstChildIndex, limbTable, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, dListIndex, &mtx);
}
Matrix_Pull();
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1053);
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A106C.s")
2020-03-21 02:51:12 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
// SkelAnime_DrawLimb
2020-03-23 01:24:00 +00:00
// func_800A1344
2020-03-20 21:12:26 +00:00
void func_800A1344(GlobalContext* globalCtx, s32 limbIndex, u32* limbTable, Vec3s* actorDrawTable, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor)
{
GraphicsContext* gfxCtx;
Gfx* gfx[4];
SkelLimbEntry* limbEntry;
Vec3s rot;
Vec3f pos;
Gfx* dList;
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x434);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(limbTable[limbIndex]);
limbIndex++;
rot = actorDrawTable[limbIndex];
pos.x = (f32) limbEntry->pos.x;
pos.y = (f32) limbEntry->pos.y;
pos.z = (f32) limbEntry->pos.z;
dList = limbEntry->dList;
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, limbIndex, &dList, &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList != NULL)
{
gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(gfxCtx, "../z_skelanime.c", 0x44F), G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList);
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, limbIndex, &dList, &rot, actor);
}
2020-03-23 01:24:00 +00:00
if (limbEntry->firstChildIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A1344(globalCtx, limbEntry->firstChildIndex, limbTable,
actorDrawTable, updateMtxFunc, appendDlistFunc, actor);
}
Matrix_Pull();
2020-03-23 01:24:00 +00:00
if (limbEntry->nextLimbIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A1344(globalCtx, limbEntry->nextLimbIndex, limbTable,
actorDrawTable, updateMtxFunc, appendDlistFunc, actor);
}
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x461);
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A1344.s")
2020-03-20 21:12:26 +00:00
#endif
#ifdef NON_MATCHING
void SkelAnime_Draw(GlobalContext* globalCtx, u32* limbTable, Vec3s* actorDrawTable, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor)
{
SkelLimbEntry* rootLimb;
Vec3s rot;
Vec3f pos;
Gfx* dList;
GraphicsContext* gfxCtx;
Gfx* gfx[5];
if (limbTable == NULL)
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Si2_draw():skelがNULLです。\n"); // Si2_draw (): skel is NULL.
osSyncPrintf("\x1b[m");
return;
}
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1148);
Matrix_Push();
rootLimb = SEGMENTED_TO_VIRTUAL(*limbTable);
pos.x = (f32) actorDrawTable[0].x;
pos.y = (f32) actorDrawTable[0].y;
pos.z = (f32) actorDrawTable[0].z;
rot = actorDrawTable[1];
dList = rootLimb->dList;
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, 1, &dList, &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (dList != NULL)
{
gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_skelanime.c", 1176), G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, dList);
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, 1, &dList, &rot, actor);
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
if (rootLimb->firstChildIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A1344(globalCtx, rootLimb->firstChildIndex, limbTable,
actorDrawTable, updateMtxFunc, appendDlistFunc, actor);
}
Matrix_Pull();
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1190);
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/SkelAnime_Draw.s")
2020-03-20 21:12:26 +00:00
#endif
#ifdef NON_MATCHING
// SkelAnime_Draw2Limb
void func_800A180C(GlobalContext *globalCtx, u32 limbIndex, u32* limbTable, Vec3s* actorDrawTable, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor, Mtx** limbMatricies)
{
Gfx* limbDlist[2];
Vec3f limbPos;
Vec3s limbRot;
GraphicsContext *gfxCtx;
Gfx* sp34[3];
SkelLimbEntry* limbEntry;
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(sp34, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x4BE);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(limbTable[limbIndex]);
limbRot = actorDrawTable[++limbIndex];
limbPos.x = (f32) limbEntry->pos.x;
limbPos.y = (f32) limbEntry->pos.y;
limbPos.z = (f32) limbEntry->pos.z;
limbDlist[0] = limbEntry->dList;
limbDlist[1] = limbEntry->dList;
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, limbIndex, &limbDlist[0], &limbPos, &limbRot, actor) == 0))
{
func_800D1340(&limbPos, &limbRot);
if (limbDlist[0] != NULL)
{
Matrix_ToMtx(*limbMatricies, "../z_skelanime.c", 0x4DA);
gSPMatrix(gfxCtx->polyOpa.p++, *limbMatricies, G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, &limbDlist[0]);
(*limbMatricies)++;
}
else
{
if (&limbDlist[1] != 0)
{
Matrix_ToMtx(*limbMatricies, "../z_skelanime.c", 0x4E1);
(*limbMatricies)++;
}
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, limbIndex, &limbDlist[1], &limbRot, actor);
}
2020-03-23 01:24:00 +00:00
if (limbEntry->firstChildIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A180C(globalCtx, limbEntry->firstChildIndex, limbTable, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, limbMatricies);
}
Matrix_Pull();
2020-03-23 01:24:00 +00:00
if (limbEntry->nextLimbIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A180C(globalCtx, limbEntry->nextLimbIndex, limbTable, actorDrawTable,
updateMtxFunc, appendDlistFunc, actor, limbMatricies);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
func_800C6B54(sp34, globalCtx->state.gfxCtx, "../z_skelanime.c", 0x4F1);
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A180C.s")
2020-03-20 21:12:26 +00:00
#endif
#ifdef NON_MATCHING
// SkelAnime_Draw2
void func_800A1AC8(GlobalContext* globalCtx, u32* limbTable, Vec3s* actorDrawTable, u32 dListCount, SkelAnime_LimbUpdateMatrix updateMtxFunc, SkelAnime_LimbAppendDlist appendDlistFunc, Actor* actor)
{
SkelLimbEntry *rootLimb;
Gfx* skelDlist[2];
Vec3f pos;
Vec3s rot;
GraphicsContext* gfxCtx;
Mtx* limbMatricies;
Gfx *gfx[5];
limbMatricies = Graph_Alloc(globalCtx->state.gfxCtx, dListCount << 6);
if (limbTable == NULL)
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Si2_draw_SV():skelがNULLです。\n"); //Si2_draw_SV (): skel is NULL.
osSyncPrintf("\x1b[m");
return;
}
gfxCtx = globalCtx->state.gfxCtx;
func_800C6AC4(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1294);
gSPSegment(gfxCtx->polyOpa.p++, 0xD, limbMatricies);
Matrix_Push();
rootLimb = SEGMENTED_TO_VIRTUAL(*limbTable);
pos.x = (f32) actorDrawTable[0].x;
pos.y = (f32) actorDrawTable[0].y;
pos.z = (f32) actorDrawTable[0].z;
rot = actorDrawTable[1];
skelDlist[0] = skelDlist[1] = rootLimb->dList;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, 1, &skelDlist[0], &pos, &rot, actor) == 0))
{
func_800D1340(&pos, &rot);
if (skelDlist[0] != NULL)
{
Matrix_ToMtx(limbMatricies, "../z_skelanime.c", 1327);
gSPMatrix(gfxCtx->polyOpa.p++, limbMatricies, G_MTX_LOAD);
gSPDisplayList(gfxCtx->polyOpa.p++, skelDlist[0]);
limbMatricies++;
}
else
{
if (skelDlist[1] != 0)
{
Matrix_ToMtx(limbMatricies, "../z_skelanime.c", 1334);
limbMatricies++;
}
}
}
if (appendDlistFunc != 0)
{
appendDlistFunc(globalCtx, 1, &skelDlist[1], &rot, actor);
}
2020-03-23 01:24:00 +00:00
if (rootLimb->firstChildIndex != LIMB_DONE)
2020-03-20 21:12:26 +00:00
{
func_800A180C(globalCtx, rootLimb->firstChildIndex, limbTable, actorDrawTable,
updateMtxFunc, appendDlistFunc, actor, &limbMatricies);
}
Matrix_Pull();
func_800C6B54(gfx, globalCtx->state.gfxCtx, "../z_skelanime.c", 1347);
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A1AC8.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-23 01:24:00 +00:00
/* SkelAnime_AnimateFrame
* Copies the rotation values from the rotation value table, indexed by the rotation index table
* When a rotation index is >= the animation limit, the output rotation value is copied from the frame's
* rotation value list, otherwise it is copied from the initial rotation value list
*/
void func_800A1D8C(u32 animation, s32 currentFrame, s32 limbCount, Vec3s *dst)
{
AnimationRotationIndex* index;
AnimationRotationValue* rotationValueTable;
AnimationRotationValue* frameRotationValueTable;
AnimationHeader *animationHeader;
s32 i;
u16 limit;
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
animationHeader = SEGMENTED_TO_VIRTUAL(animation);
index = SEGMENTED_TO_VIRTUAL(animationHeader->rotationIndexSeg);
rotationValueTable = SEGMENTED_TO_VIRTUAL(animationHeader->rotationValueSeg);
frameRotationValueTable = &rotationValueTable[currentFrame];
limit = animationHeader->limit;
for(i = 0; i < limbCount; i++, dst++, index++)
{
if ((dst == NULL) || (index == NULL) ||
(frameRotationValueTable == NULL) ||
(rotationValueTable == NULL))
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
if(1) { } // Necessary to match.
LOG("../z_skelanime.c", 0x570, "out = %08x\n", dst);
LOG("../z_skelanime.c", 0x571, "ref_tbl = %08x\n", index);
LOG("../z_skelanime.c", 0x572, "frame_tbl = %08x\n", frameRotationValueTable);
LOG("../z_skelanime.c", 0x573, "tbl = %08x\n", rotationValueTable);
2020-03-20 21:12:26 +00:00
}
2020-03-23 01:24:00 +00:00
dst->x = index->x >= limit ? frameRotationValueTable[index->x] : rotationValueTable[index->x];
dst->y = index->y >= limit ? frameRotationValueTable[index->y] : rotationValueTable[index->y];
dst->z = index->z >= limit ? frameRotationValueTable[index->z] : rotationValueTable[index->z];
2020-03-20 21:12:26 +00:00
}
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
s32 func_800A1FC8(s32 arg0)
{
u16* virt = (u16*)SEGMENTED_TO_VIRTUAL(arg0);
return (s16)(*virt);
}
2020-03-17 04:31:30 +00:00
2020-03-18 03:15:19 +00:00
s32 SkelAnime_GetFrameCount(u32 animation)
{
u16* virt = (u16*)SEGMENTED_TO_VIRTUAL(animation);
return (s16)(*virt - 1);
}
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A2044.s")
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A2288.s")
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A24A0.s")
2020-03-23 01:24:00 +00:00
// SkelAnime_DrawSV2
Gfx* func_800A273C(GlobalContext* globalCtx, u32* limbTable, Vec3s* actorDrawTable, s32 dListCount, SkelAnime_LimbUpdateMatrix2 updateMtxFunc, SkelAnime_LimbAppendDlist2 appendDlistFunc, Actor* actor, Gfx* gfx)
{
SkelLimbEntry* limbEntry;
char pad[4];
Gfx* dList1;
Gfx* dList2;
Vec3f pos;
Vec3s rot;
Mtx* mtx;
mtx = Graph_Alloc(globalCtx->state.gfxCtx, dListCount * sizeof(*mtx));
if (limbTable == NULL)
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Si2_draw2_SV():skelがNULLです。NULLを返します。\n");
osSyncPrintf("\x1b[m");
return NULL;
}
gSPSegment(gfx++, 0xD, mtx);
Matrix_Push();
limbEntry = SEGMENTED_TO_VIRTUAL(*limbTable);
pos.x = actorDrawTable->x;
pos.y = actorDrawTable->y;
pos.z = actorDrawTable->z;
rot = actorDrawTable[1];
dList1 = dList2 = limbEntry->displayLists[0];
if ((updateMtxFunc == NULL) || (updateMtxFunc(globalCtx, 1, &dList1, &pos, &rot, actor, &gfx) == 0))
{
func_800D1340(&pos, &rot);
if (dList1 != NULL)
{
Matrix_ToMtx(mtx, "../z_skelanime.c", 0x6AE);
gSPMatrix(gfx++, mtx, G_MTX_LOAD);
gSPDisplayList(gfx++, dList1);
mtx++;
}
else
{
if (dList2 != NULL)
{
Matrix_ToMtx(mtx, "../z_skelanime.c", 0x6B5);
mtx++;
}
}
}
if (appendDlistFunc != NULL)
{
appendDlistFunc(globalCtx, 1, &dList2, &rot, actor, &gfx);
}
if (limbEntry->firstChildIndex != LIMB_DONE)
{
gfx = func_800A24A0(globalCtx, limbEntry->firstChildIndex, limbTable, actorDrawTable, updateMtxFunc, appendDlistFunc, actor, &mtx, gfx);
}
Matrix_Pull();
return gfx;
}
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A29BC.s")
2020-03-20 21:12:26 +00:00
s16 func_800A2DBC(s32 arg0)
{
u16* virt = SEGMENTED_TO_VIRTUAL(arg0);
return virt[1];
}
s16 func_800A2DF4(s32 arg0)
{
u16* virt = SEGMENTED_TO_VIRTUAL(arg0);
return *virt;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
s32 func_800A2E2C(s32 arg0){
s16* virt = SEGMENTED_TO_VIRTUAL(arg0);
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
return (s16)(*virt - 1);
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
// Big boi function
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A2E70.s")
2020-03-20 21:12:26 +00:00
void func_800A32EC(u16* arg0)
{
*arg0 = 0;
}
void func_800A32F4(s32 arg0)
{
D_801600B0 *= 2;
}
void func_800A3310(void* arg0)
{
u32* D_8012A480Ptr = &D_8012A480;
*D_8012A480Ptr |= D_801600B0;
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
// SkelAnime_NextEntry
AnimationEntry* func_800A3334(AnimationContext* animationCtx, AnimationType type)
2020-03-20 21:12:26 +00:00
{
AnimationEntry *entry;
s16 index = animationCtx->animationCount;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
if (index >= 0x32)
{
return NULL;
}
animationCtx->animationCount = index + 1;
entry = &animationCtx->entries[index];
2020-03-23 01:24:00 +00:00
entry->type = type;
2020-03-20 21:12:26 +00:00
return entry;
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
/*
* These next 6 functions seem to inialize an entry in the global context's
* animation context.
*/
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
// SkelAnime_AnimationEntryType0Init
void func_800A336C(GlobalContext* globalCtx, u32 linkAnimetionSeg, s32 frame, s32 limbCount, void* ram)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
AnimationEntry* entry;
LinkAnimetionEntry *linkAnimetionEntry;
char pad[4];
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
entry = func_800A3334(&globalCtx->animationCtx, 0);
if (entry != NULL)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
linkAnimetionEntry = SEGMENTED_TO_VIRTUAL(linkAnimetionSeg);
osCreateMesgQueue(&entry->types.type0.msgQueue, &entry->types.type0.msg, 1);
DmaMgr_SendRequest2(&entry->types.type0.req, ram, LINK_ANIMETION_OFFSET(linkAnimetionEntry->animationSegAddress, ((sizeof(Vec3s) * limbCount + 2) * frame)),
sizeof(Vec3s) * limbCount + 2, 0, &entry->types.type0.msgQueue, NULL,
"../z_skelanime.c" , 0x7D4);
}
}
//SkelAnime_AnimationEntryType1Init
void func_800A3478(GlobalContext* globalCtx, s32 vecCount,
Vec3s* dst, Vec3s* src)
{
AnimationEntry* entry = func_800A3334(&globalCtx->animationCtx, 1);
if (entry != NULL)
{
entry->types.type1.unk_00 = D_801600B0;
entry->types.type1.vecCount = vecCount;
entry->types.type1.dst = dst;
entry->types.type1.src = src;
}
}
//SkelAnime_AnimationEntryType2Init
void func_800A34DC(GlobalContext* globalCtx, s32 arg1,
Vec3s* arg2, Vec3s* arg3, f32 arg4)
{
AnimationEntry* entry = func_800A3334(&globalCtx->animationCtx, 2);
if (entry != NULL)
{
entry->types.type2.unk_00 = D_801600B0;
entry->types.type2.unk_01 = arg1;
entry->types.type2.unk_04 = arg2;
entry->types.type2.unk_08 = arg3;
entry->types.type2.unk_0C = arg4;
}
}
//SkelAnime_AnimationEntryType3Init
void func_800A3548(GlobalContext* globalCtx, s32 vecCount,
s32 dst, s32 src, s32 index)
{
AnimationEntry* entry = func_800A3334(&globalCtx->animationCtx, 3);
if (entry != NULL)
{
entry->types.type3.unk_00 = D_801600B0;
entry->types.type3.vecCount = vecCount;
entry->types.type3.dst = dst;
entry->types.type3.src = src;
entry->types.type3.index = index;
}
}
//SkelAnime_AnimationEntryType4Init
void func_800A35B4(GlobalContext* globalCtx, s32 vecCount,
Vec3s* dst, Vec3s* src, u8* index)
{
AnimationEntry* entry = func_800A3334(&globalCtx->animationCtx, 4);
if (entry != NULL)
{
entry->types.type4.unk_00 = D_801600B0;
entry->types.type4.vecCount = vecCount;
entry->types.type4.dst = dst;
entry->types.type4.src = src;
entry->types.type4.index = index;
}
}
//SkelAnime_AnimationEntryType4Init
void func_800A3620(GlobalContext* globalCtx, Actor* actor,
SkelAnime* skelAnime, f32 arg3)
{
AnimationEntry* entry = func_800A3334(&globalCtx->animationCtx, 5);
if (entry != NULL)
{
entry->types.type5.actor = actor;
entry->types.type5.skelAnime = skelAnime;
entry->types.type5.unk_08 = arg3;
2020-03-20 21:12:26 +00:00
}
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
/* The next functions are callbacks to loading animations */
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void func_800A3678(GlobalContext* globalCtx, AnimationEntryType0* entry)
{
osRecvMesg(&entry->msgQueue, NULL, OS_MESG_BLOCK);
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void func_800A36A4(GlobalContext* globalCtx, AnimationEntryType1* entry)
{
s32 i;
Vec3s* dst;
Vec3s* src;
AnimationEntryRaw* genericEntry = (AnimationEntryRaw*)entry;
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
if ((genericEntry->raw[0] & D_8012A480) != 0)
{
return;
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
for(dst = entry->dst, src = entry->src, i = 0;
i < genericEntry->raw[1];
i++)
{
*dst++ = *src++;
}
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void func_800A3714(GlobalContext* globalCtx, AnimationEntryType2* entry)
{
if ((entry->unk_00 & D_8012A480) == 0)
{
func_800A2E70(entry->unk_01, entry->unk_04, entry->unk_04, entry->unk_08, entry->unk_0C);
}
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void func_800A3770(GlobalContext* globalCtx, AnimationEntryType3* entry)
{
s32 i;
Vec3s* dst;
Vec3s* src;
u8* index;
AnimationEntryRaw* rawEntry = (AnimationEntryRaw*)entry;
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
if ((rawEntry->raw[0] & D_8012A480) == 0)
{
for(dst = entry->dst, src = entry->src, index = entry->index, i = 0;
i < rawEntry->raw[1]; i++, dst++, src++)
{
if(*index++)
{
*dst = *src;
}
}
}
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void func_800A37F0(GlobalContext* globalCtx, AnimationEntryType4* entry)
{
s32 i;
Vec3s* dst;
Vec3s* src;
u8* index;
AnimationEntryRaw* rawEntry = (AnimationEntryRaw*)entry;
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
if ((rawEntry->raw[0] & D_8012A480) == 0)
{
for(dst = entry->dst, src = entry->src, index = entry->index, i = 0;
i < rawEntry->raw[1]; i++, dst++, src++)
{
if(*index++ < 1U)
{
*dst = *src;
}
}
}
}
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
void func_800A3874(GlobalContext* globalCtx, AnimationEntryType5* entry)
2020-03-18 03:15:19 +00:00
{
char pad[4];
2020-03-23 01:24:00 +00:00
Actor* actor = entry->actor;
2020-03-18 03:15:19 +00:00
Vec3f pos;
2020-03-23 01:24:00 +00:00
func_800A54FC(entry->skelAnime, &pos, actor->shape.rot.y);
actor->posRot.pos.x += pos.x * actor->scale.x;
actor->posRot.pos.y += pos.y * actor->scale.y * entry->unk_08;
actor->posRot.pos.z += pos.z * actor->scale.z;
2020-03-18 03:15:19 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A390C(GlobalContext* globalCtx, AnimationContext* animationCtx)
{
AnimationEntry* entry;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
for(entry = animationCtx->entries; animationCtx->animationCount != 0; entry++, animationCtx->animationCount--)
{
2020-03-23 01:24:00 +00:00
D_8012A484[entry->type](globalCtx, &entry->types);
2020-03-20 21:12:26 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
D_801600B0 = 1;
D_8012A480 = 0;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
// some kind of init
2020-03-23 01:24:00 +00:00
void func_800A39AC(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 limbHeaderSeg, s32 arg3, s8 arg4, Vec3s* actorDrawTable, s32 arg6, s32 arg7)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
SkelAnimeLimbHeader* limbHeader;
2020-03-20 21:12:26 +00:00
u8 flag;
size_t size;
2020-03-23 01:24:00 +00:00
limbHeader = SEGMENTED_TO_VIRTUAL(limbHeaderSeg);
2020-03-20 21:12:26 +00:00
skelAnime->unk_34 = arg4;
2020-03-23 01:24:00 +00:00
flag = arg4 & 2 == 0 ? 1U : limbHeader->limbCount;
2020-03-20 21:12:26 +00:00
if ((arg4 & 2) != 0)
{
2020-03-23 01:24:00 +00:00
flag = limbHeader->limbCount;
2020-03-20 21:12:26 +00:00
}
else
{
flag = 1;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
if((arg4 & 1) != 0)
{
2020-03-23 01:24:00 +00:00
flag += limbHeader->limbCount;
2020-03-20 21:12:26 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
if((arg4 & 4) != 0)
{
2020-03-23 01:24:00 +00:00
flag += limbHeader->limbCount;
2020-03-20 21:12:26 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
skelAnime->limbCount = flag;
2020-03-23 01:24:00 +00:00
skelAnime->dListCount = limbHeader->dListCount;
skelAnime->limbIndex = SEGMENTED_TO_VIRTUAL(limbHeader->limbIndexSeg);
2020-03-20 21:12:26 +00:00
size = sizeof(Vec3s);
if ((arg4 & 8) != 0)
{
size += 2;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
if (actorDrawTable == NULL)
{
skelAnime->actorDrawTbl = ZeldaArena_MallocDebug(size, "../z_skelanime.c", 2364);
skelAnime->unk_24 = ZeldaArena_MallocDebug(size, "../z_skelanime.c", 2365);
}
else
{
if (arg7 != flag)
{
__assert("joint_buff_num == joint_num", "../z_skelanime.c", 2369);
}
skelAnime->actorDrawTbl = ALIGN16((u32)actorDrawTable);
skelAnime->unk_24 = ALIGN16(arg6);
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
}
if ((skelAnime->actorDrawTbl == NULL) || (skelAnime->unk_24 == NULL))
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Skeleton_Info_Rom_SV_ct メモリアロケーションエラー\n"); //Skeleton_Info_Rom_SV_ct Memory allocation error
osSyncPrintf("\x1b[m");
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
func_800A3F08(globalCtx, skelAnime, arg3, 1.0f, 0.0f, 0.0f, 0, 0.0f);
}
#else
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A39AC.s")
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
// SkelAnime_SetUpdateFunc
2020-03-20 21:12:26 +00:00
void func_800A3B8C(SkelAnime* skelAnime)
{
if (skelAnime->unk_01 < 2)
{
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate = &func_800A3D70;
2020-03-20 21:12:26 +00:00
}
else
{
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate = &func_800A3E0C;
2020-03-20 21:12:26 +00:00
}
skelAnime->unk_28 = 0.0f;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
//SkelAnime_FrameUpdateMatrixGlobalCtx
void func_800A3BC0(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate(globalCtx, skelAnime);
2020-03-20 21:12:26 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
s32 func_800A3BE4(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
f32 prevUnk28 = skelAnime->unk_28;
skelAnime->unk_28 -= skelAnime->unk_2C * (R_UPDATE_RATE * 0.5f);
if (skelAnime->unk_28 <= 0.0f)
{
func_800A3B8C(skelAnime);
}
func_800A34DC(globalCtx, skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->unk_24, 1.0f - (skelAnime->unk_28 / prevUnk28));
return 0;
}
#else
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A3BE4.s")
#endif
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A3C9C(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
f32 updateRate;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
func_800A336C(globalCtx, skelAnime->animCurrent, skelAnime->animCurrentFrame, skelAnime->limbCount, skelAnime->actorDrawTbl);
if (skelAnime->unk_28 != 0)
{
updateRate = R_UPDATE_RATE * 0.5f;
skelAnime->unk_28 -= skelAnime->unk_2C * updateRate;
if (skelAnime->unk_28 <= 0.0f)
{
skelAnime->unk_28 = 0.0f;
return;
}
func_800A34DC(globalCtx, skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->unk_24, skelAnime->unk_28);
}
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
s32 func_800A3D70(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
f32 updateRate = R_UPDATE_RATE * 0.5f;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
skelAnime->animCurrentFrame += skelAnime->animPlaybackSpeed * updateRate;
if (skelAnime->animCurrentFrame < 0.0f)
{
skelAnime->animCurrentFrame += skelAnime->unk_14;
}
else
{
if (skelAnime->unk_14 <= skelAnime->animCurrentFrame){
skelAnime->animCurrentFrame -= skelAnime->unk_14;
}
}
func_800A3C9C(globalCtx, skelAnime);
return 0;
}
// returns 1 if animation is done?
s32 func_800A3E0C(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
f32 updateRate = R_UPDATE_RATE * 0.5f;
if (skelAnime->animCurrentFrame == skelAnime->animFrameCount)
{
func_800A3C9C(globalCtx, skelAnime);
return 1;
}
skelAnime->animCurrentFrame += skelAnime->animPlaybackSpeed * updateRate;
if (0.0f < ((skelAnime->animCurrentFrame - skelAnime->animFrameCount) * skelAnime->animPlaybackSpeed))
{
skelAnime->animCurrentFrame = skelAnime->animFrameCount;
}
else
{
if (skelAnime->animCurrentFrame < 0.0f)
{
skelAnime->animCurrentFrame += skelAnime->unk_14;
}
else
{
if (skelAnime->unk_14 <= skelAnime->animCurrentFrame)
{
skelAnime->animCurrentFrame -= skelAnime->unk_14;
}
}
2020-03-23 01:24:00 +00:00
}
2020-03-20 21:12:26 +00:00
func_800A3C9C(globalCtx, skelAnime);
return 0;
}
void func_800A3EE8(GlobalContext* globalCtx, SkelAnime* skelAnime, f32 arg2)
{
skelAnime->unk_28 = 1.0f;
skelAnime->unk_2C = 1.0f / arg2;
}
#ifdef NON_MATCHING
void func_800A3F08(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation, f32 playbackSpeed, f32 arg4, f32 frameCount, u8 arg6, f32 arg7)
{
skelAnime->unk_01 = arg6;
if ((arg7 != 0.0f) &&
((animation == skelAnime->animCurrent) || (arg4 != skelAnime->animCurrentFrame)))
{
if(arg7 < 0.0f)
{
func_800A3B8C(skelAnime);
func_800A5774(skelAnime, skelAnime->unk_24, skelAnime->actorDrawTbl);
arg7 = -arg7;
}
else
{
skelAnime->mtxUpdate = &func_800A3BE4;
func_800A336C(globalCtx, animation, (s32) arg4, skelAnime->limbCount, skelAnime->unk_24);
}
skelAnime->unk_28 = 1.0f;
skelAnime->unk_2C = 1.0f / arg7;
}
else
{
func_800A3B8C(skelAnime);
func_800A336C(globalCtx, animation, (s32) arg4, skelAnime->limbCount, skelAnime->actorDrawTbl);
skelAnime->unk_28 = 0.0f;
}
skelAnime->animCurrentFrame = animation;
skelAnime->unk_0C = arg4;
skelAnime->animCurrentFrame = arg4;
skelAnime->animFrameCount = frameCount;
skelAnime->unk_14 = func_800A1FC8(animation);
skelAnime->animPlaybackSpeed = playbackSpeed;
}
#else
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A3F08.s")
#endif
#undef NON_MATCHING
void func_800A407C(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation)
{
func_800A3F08(globalCtx, skelAnime, animation, 1.0f, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 2, 0.0f);
}
void func_800A40DC(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation, f32 playbackSpeed)
{
func_800A3F08(globalCtx, skelAnime, animation, playbackSpeed, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 2, 0.0f);
}
void func_800A4140(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation)
{
func_800A3F08(globalCtx, skelAnime, animation, 1.0f, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 0, 0.0f);
}
void func_800A419C(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 animation, f32 playbackSpeed)
{
func_800A3F08(globalCtx, skelAnime, animation, playbackSpeed, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 0, 0.0f);
}
void func_800A41FC(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
func_800A3478(globalCtx, skelAnime->limbCount, skelAnime->unk_24, skelAnime->actorDrawTbl);
}
void func_800A422C(GlobalContext* globalCtx, SkelAnime* skelAnime)
{
func_800A3478(globalCtx, skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->unk_24);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A425C(GlobalContext* globalCtx, SkelAnime* skelAnime, s32 arg2, f32 arg3)
{
func_800A336C(globalCtx, arg2, (s32) arg3, skelAnime->limbCount, skelAnime->unk_24);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A42A0(GlobalContext* globalCtx, SkelAnime* skelAnime, s32 arg2, f32 arg3)
{
func_800A336C(globalCtx, arg2, (s32) arg3, skelAnime->limbCount, skelAnime->actorDrawTbl);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A42E4(GlobalContext* globalCtx, SkelAnime* skelAnime, f32 arg2)
{
func_800A34DC(globalCtx, skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->unk_24, arg2);
}
void func_800A431C(GlobalContext* globalCtx, SkelAnime* skelAnime, s32 arg2, f32 arg3, s32 arg4, f32 arg5, f32 arg6, s32 arg7)
{
s32 alignedAddr;
func_800A336C(globalCtx, arg2, (s32) arg3, skelAnime->limbCount, skelAnime->actorDrawTbl);
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
alignedAddr = ALIGN16(arg7);
func_800A336C(globalCtx, arg4, (s32) arg5, skelAnime->limbCount, alignedAddr);
func_800A34DC(globalCtx, skelAnime->limbCount, skelAnime->actorDrawTbl, alignedAddr, arg6);
}
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A43B8.s")
2020-03-20 21:12:26 +00:00
void func_800A4454(SkelAnime* skelAnime)
{
skelAnime->unk_01 = 2;
func_800A3B8C(skelAnime);
}
s32 func_800A4478(SkelAnime* skelAnime, f32 arg1, f32 updateRate)
{
2020-03-23 01:24:00 +00:00
f32 updateSpeed;
2020-03-20 21:12:26 +00:00
f32 temp_f12;
2020-03-23 01:24:00 +00:00
f32 nextFrame;
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
updateSpeed = skelAnime->animPlaybackSpeed * updateRate;
nextFrame = skelAnime->animCurrentFrame - updateSpeed;
if (nextFrame < 0.0f)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
nextFrame += skelAnime->unk_14;
2020-03-20 21:12:26 +00:00
}
else
{
2020-03-23 01:24:00 +00:00
if (skelAnime->unk_14 <= nextFrame)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
nextFrame -= skelAnime->unk_14;
2020-03-20 21:12:26 +00:00
}
}
if (arg1 == 0.0f)
{
2020-03-23 01:24:00 +00:00
if (0.0f < updateSpeed)
2020-03-20 21:12:26 +00:00
{
arg1 = skelAnime->unk_14;
}
}
2020-03-23 01:24:00 +00:00
temp_f12 = (nextFrame + updateSpeed) - arg1;
if (0.0f <= (temp_f12 * updateSpeed))
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
if (((temp_f12 - updateSpeed) * updateSpeed) < 0.0f)
2020-03-20 21:12:26 +00:00
{
return 1;
}
}
return 0;
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
s32 func_800A4530(SkelAnime* skelAnime, f32 arg1)
{
f32 updateRate = R_UPDATE_RATE * 0.5f;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
return func_800A4478(skelAnime, arg1, updateRate);
}
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
void SkelAnime_Init(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 limbHeaderSeg, u32 animation, Vec3s* actorDrawTable, s32 arg5, s32 limbCount)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
SkelAnimeLimbHeader* limbHeader;
2020-03-17 04:31:30 +00:00
2020-03-23 01:24:00 +00:00
limbHeader = SEGMENTED_TO_VIRTUAL(limbHeaderSeg);
skelAnime->limbCount = limbHeader->limbCount + 1;
skelAnime->limbIndex = SEGMENTED_TO_VIRTUAL(limbHeader->limbIndexSeg);
2020-03-20 21:12:26 +00:00
if (actorDrawTable == NULL)
{
skelAnime->actorDrawTbl = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->actorDrawTbl), "../z_skelanime.c", 2968);
skelAnime->unk_24 = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->unk_24), "../z_skelanime.c", 2969);
}
else
{
if (limbCount != skelAnime->limbCount)
{
__assert("joint_buff_num == this->joint_num", "../z_skelanime.c", 2973);
}
skelAnime->actorDrawTbl = actorDrawTable;
skelAnime->unk_24 = arg5;
}
if ((skelAnime->actorDrawTbl == NULL) || (skelAnime->unk_24 == NULL))
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Skeleton_Info2_ct メモリアロケーションエラー\n"); // Skeleton_Info2_ct memory allocation error
osSyncPrintf("\x1b[m");
}
if (animation != 0)
{
func_800A52F8(skelAnime, animation);
}
}
2020-03-23 01:24:00 +00:00
// SkelAnime_InitSV
void func_800A46F8(GlobalContext* globalCtx, SkelAnime* skelAnime, u32 limbHeaderSeg, u32 animation, Vec3s* actorDrawTable, s32 arg5, s32 limbCount)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
SkelAnimeLimbHeader *limbHeader;
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
limbHeader = SEGMENTED_TO_VIRTUAL(limbHeaderSeg);
skelAnime->limbCount = limbHeader->limbCount + 1;
skelAnime->dListCount = limbHeader->dListCount;
skelAnime->limbIndex = SEGMENTED_TO_VIRTUAL(limbHeader->limbIndexSeg);
2020-03-20 21:12:26 +00:00
if (actorDrawTable == NULL)
{
skelAnime->actorDrawTbl = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->actorDrawTbl), "../z_skelanime.c", 3047);
skelAnime->unk_24 = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->unk_24), "../z_skelanime.c", 3048);
}
else
{
if (limbCount != skelAnime->limbCount)
{
__assert("joint_buff_num == this->joint_num", "../z_skelanime.c", 0xBEC);
}
skelAnime->actorDrawTbl = actorDrawTable;
skelAnime->unk_24 = arg5;
}
if ((skelAnime->actorDrawTbl == NULL) || (skelAnime->unk_24 == NULL))
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Skeleton_Info_Rom_SV_ct メモリアロケーションエラー\n"); // Skeleton_Info_Rom_SV_ct Memory allocation error
osSyncPrintf("\x1b[m");
}
if (animation != 0)
{
func_800A52F8(skelAnime, animation);
}
}
2020-03-23 01:24:00 +00:00
// SkelAnime_InitSkin
void func_800A487C(GlobalContext* globalCtx, SkelAnime *skelAnime, u32 limbHeaderSeg, u32 animation)
2020-03-20 21:12:26 +00:00
{
2020-03-23 01:24:00 +00:00
SkelAnimeLimbHeader *limbHeader;
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
limbHeader = SEGMENTED_TO_VIRTUAL(limbHeaderSeg);
skelAnime->limbCount = limbHeader->limbCount + 1;
skelAnime->limbIndex = SEGMENTED_TO_VIRTUAL(limbHeader->limbIndexSeg);
2020-03-20 21:12:26 +00:00
skelAnime->actorDrawTbl = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->actorDrawTbl), "../z_skelanime.c", 3120);
skelAnime->unk_24 = ZeldaArena_MallocDebug(skelAnime->limbCount * sizeof(*skelAnime->unk_24), "../z_skelanime.c", 3121);
if ((skelAnime->actorDrawTbl == NULL) || (skelAnime->unk_24 == NULL))
{
osSyncPrintf("\x1b[31m");
osSyncPrintf("Skeleton_Info2_skin2_ct メモリアロケーションエラー\n"); //Skeleton_Info2_skin2_ct Memory allocation error
osSyncPrintf("\x1b[m");
}
if (animation != 0)
{
func_800A52F8(skelAnime, animation);
}
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A49B0(SkelAnime* skelAnime)
{
if (skelAnime->unk_01 < 2)
{
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate = &func_800A4D9C;
2020-03-20 21:12:26 +00:00
return;
}
if (skelAnime->unk_01 < 4)
{
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate = &func_800A4EE0;
2020-03-20 21:12:26 +00:00
return;
}
2020-03-23 01:24:00 +00:00
skelAnime->animUpdate = &func_800A4E38;
2020-03-20 21:12:26 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-18 03:15:19 +00:00
s32 SkelAnime_FrameUpdateMatrix(SkelAnime* skelAnime){
2020-03-23 01:24:00 +00:00
return skelAnime->animUpdate(skelAnime);
2020-03-18 03:15:19 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
s32 func_800A4A20(SkelAnime* skelAnime)
{
f32 sp2C;
f32 temp_f12;
f32 phi_f0;
temp_f12 = skelAnime->unk_28;
skelAnime->unk_28 -= skelAnime->unk_2C * (R_UPDATE_RATE * 0.33333334f);
phi_f0 = skelAnime->unk_28;
if (skelAnime->unk_28 <= 0.0f)
{
sp2C = temp_f12;
func_800A49B0(skelAnime);
skelAnime->unk_28 = 0.0f;
phi_f0 = skelAnime->unk_28;
}
func_800A2E70(skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->actorDrawTbl, skelAnime->unk_24, 1.0f - (phi_f0 / temp_f12));
return 0;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4A20.s")
2020-03-20 21:12:26 +00:00
#endif
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
s32 func_800A4AD8(SkelAnime* skelAnime)
{
f32 sp28;
s16 temp_a1;
s16 temp_a2;
f32 phi_f2;
temp_a2 = (s16)(skelAnime->unk_28 * 16384.0f);
skelAnime->unk_28 -= skelAnime->unk_2C * (R_UPDATE_RATE * 0.33333334f);
if (skelAnime->unk_28 <= 0.0f)
{
func_800A49B0(skelAnime);
skelAnime->unk_28 = 0.0f;
}
temp_a1 = (s16)(skelAnime->unk_28 * 16384.0f);
if (skelAnime->unk_03 < 0)
{
sp28 = 1.0f - Math_Coss(temp_a2);
phi_f2 = 1.0f - Math_Coss(temp_a1);
}
else
{
sp28 = Math_Sins(temp_a2);
phi_f2 = Math_Sins(temp_a1);
}
if (phi_f2 != 0.0f)
{
phi_f2 /= sp28;
}
else
{
phi_f2 = 0.0f;
}
func_800A2E70(skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->actorDrawTbl, skelAnime->unk_24, 1.0f - phi_f2);
return 0;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4AD8.s")
2020-03-20 21:12:26 +00:00
#endif
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
// close
void func_800A4C58(SkelAnime* skelAnime)
{
2020-03-23 01:24:00 +00:00
char pad[6];
2020-03-20 21:12:26 +00:00
f32 temp_f0;
2020-03-23 01:24:00 +00:00
f32 temp_f10;
Vec3s sp38[97];
2020-03-20 21:12:26 +00:00
s32 temp_f8;
2020-03-23 01:24:00 +00:00
f32 temp_f2;
2020-03-20 21:12:26 +00:00
2020-03-23 01:24:00 +00:00
func_800A1D8C(skelAnime->animCurrent, (s32) skelAnime->animCurrentFrame, skelAnime->limbCount, skelAnime->actorDrawTbl);
2020-03-20 21:12:26 +00:00
if ((skelAnime->unk_01 & 1) != 0)
{
temp_f8 = (s32) skelAnime->animCurrentFrame;
temp_f10 = temp_f8;
2020-03-23 01:24:00 +00:00
temp_f8++;
temp_f2 = skelAnime->animCurrentFrame - temp_f10;
2020-03-20 21:12:26 +00:00
if (temp_f8 >= (s32) skelAnime->unk_14)
{
temp_f8 = 0;
}
func_800A1D8C(skelAnime->animCurrent, temp_f8, skelAnime->limbCount, sp38);
2020-03-23 01:24:00 +00:00
func_800A2E70(skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->actorDrawTbl, sp38, temp_f2);
2020-03-20 21:12:26 +00:00
}
2020-03-23 01:24:00 +00:00
if (skelAnime->unk_28 != 0)
2020-03-20 21:12:26 +00:00
{
skelAnime->unk_28 -= skelAnime->unk_2C * (R_UPDATE_RATE * 0.33333334f);
temp_f0 = skelAnime->unk_28;
if (temp_f0 <= 0.0f)
{
skelAnime->unk_28 = 0.0f;
return;
}
func_800A2E70(skelAnime->limbCount, skelAnime->actorDrawTbl, skelAnime->actorDrawTbl, skelAnime->unk_24, skelAnime->unk_28);
}
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4C58.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
//reg alloc
s32 func_800A4D9C(SkelAnime* skelAnime)
{
skelAnime->animCurrentFrame += (R_UPDATE_RATE * 0.33333334f) + skelAnime->animPlaybackSpeed;
if (skelAnime->animCurrentFrame < 0.0f)
{
skelAnime->animCurrentFrame += skelAnime->unk_14;
}
else if (skelAnime->unk_14 <= skelAnime->animCurrentFrame)
{
skelAnime->animCurrentFrame -= skelAnime->unk_14;
}
func_800A4C58(skelAnime);
return 0;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4D9C.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
//reg alloc
s32 func_800A4E38(SkelAnime* skelAnime)
{
skelAnime->animCurrentFrame += skelAnime->animPlaybackSpeed * (R_UPDATE_RATE * 0.33333334f);
if (skelAnime->animCurrentFrame < skelAnime->unk_0C)
{
skelAnime->animCurrentFrame = (skelAnime->animCurrentFrame - skelAnime->unk_0C) + skelAnime->animFrameCount;
}
else
{
if (skelAnime->animFrameCount <= skelAnime->animCurrentFrame)
{
skelAnime->animCurrentFrame = (skelAnime->animCurrentFrame - skelAnime->animFrameCount) + skelAnime->unk_0C;
}
}
func_800A4C58(skelAnime);
return 0;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4E38.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
s32 func_800A4EE0(SkelAnime *skelAnime)
{
f32 temp_f14;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
temp_f14 = (f32) R_UPDATE_RATE * 0.33333334f;
if (skelAnime->animCurrentFrame == skelAnime->animFrameCount)
{
func_800A1D8C(skelAnime->animCurrent, (s32)skelAnime->animCurrentFrame, skelAnime->limbCount, skelAnime->actorDrawTbl);
func_800A4C58(skelAnime);
return 1;
}
skelAnime->animCurrentFrame += skelAnime->animPlaybackSpeed * temp_f14;
if (0.0f < ((skelAnime->animCurrentFrame - skelAnime->animFrameCount) * skelAnime->animPlaybackSpeed))
{
skelAnime->animCurrentFrame = skelAnime->animFrameCount;
}
else
{
if (skelAnime->animCurrentFrame < 0.0f)
{
skelAnime->animCurrentFrame += skelAnime->unk_14;
}
else
{
if (skelAnime->unk_14 <= skelAnime->animCurrentFrame)
{
skelAnime->animCurrentFrame -= skelAnime->unk_14;
}
}
}
func_800A4C58(skelAnime);
return 0;
}
#ifdef NON_MATCHING
// close some regalloc, missing move zero fpr
s32 func_800A4AD8(SkelAnime* skelAnime);
s32 func_800A4A20(SkelAnime* skelAnime);
void func_800A1D8C(u32,s32,u8,Vec3s*);
void func_800A4FE4(SkelAnime* skelAnime, u32 animation, f32 playbackSpeed, f32 unk0, f32 frameCount, u8 unk1, f32 transitionRate, s8 unk2)
{
skelAnime->unk_01 = unk1;
if ((transitionRate != 0.0f) &&
((animation != skelAnime->animCurrent) || (unk0 != skelAnime->animCurrentFrame)))
{
if (transitionRate < 0.0f)
{
func_800A49B0(skelAnime);
func_800A5774(skelAnime, skelAnime->unk_24, skelAnime->actorDrawTbl);
transitionRate = -transitionRate;
}
else
{
if (unk2 != 0)
{
skelAnime->mtxUpdate = (void*)&func_800A4AD8;
skelAnime->unk_03 = unk2;
}
else
{
skelAnime->mtxUpdate = (void*)&func_800A4A20;
}
func_800A1D8C(animation, (s32)unk0, skelAnime->limbCount, skelAnime->actorDrawTbl);
}
skelAnime->unk_28 = 1.0f;
skelAnime->unk_2C = 1.0f / transitionRate;
}
else
{
func_800A49B0(skelAnime);
func_800A1D8C(animation, (s32)unk0, skelAnime->limbCount, skelAnime->actorDrawTbl);
skelAnime->unk_28 = 0.0f;
}
skelAnime->animCurrent = animation;
skelAnime->unk_0C = unk0;
skelAnime->animFrameCount = frameCount;
skelAnime->unk_14 = (f32) func_800A1FC8(animation);
if (skelAnime->unk_01 >= 4)
{
skelAnime->animCurrentFrame = 0.0f;
}
else
{
skelAnime->animCurrentFrame = unk0;
if (skelAnime->unk_01 < 2)
{
skelAnime->animFrameCount = skelAnime->unk_14 - 1.0f;
}
}
skelAnime->animPlaybackSpeed = playbackSpeed;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A4FE4.s")
2020-03-20 21:12:26 +00:00
#endif
#undef NON_MATCHING
2020-03-17 04:31:30 +00:00
2020-03-18 03:15:19 +00:00
void SkelAnime_ChangeAnimation(SkelAnime* skelAnime, u32 animation, f32 playbackSpeed, f32 unk0, /* 0x10 */ f32 frameCount, /* 0x14 */ u8 unk1, /* 0x18 */ f32 transitionRate)
{
func_800A4FE4(skelAnime, animation, playbackSpeed, unk0, frameCount, unk1, transitionRate, 0);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A51E8(SkelAnime* skelAnime, u32 animation)
{
SkelAnime_ChangeAnimation(skelAnime, animation, 1.0f, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 2, 0.0f);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A5240(SkelAnime* skelAnime, u32 animation, f32 transitionRate)
{
SkelAnime_ChangeAnimation(skelAnime, animation, 1.0f, 0, (f32) SkelAnime_GetFrameCount(animation), 2, transitionRate);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A529C(SkelAnime* skelAnime, u32 animation, f32 playbackSpeed)
{
SkelAnime_ChangeAnimation(skelAnime, animation, playbackSpeed, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 2, 0.0f);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
// SkelAnime_ChangeAnimationDefault
void func_800A52F8(SkelAnime* skelAnime, u32 animation)
{
SkelAnime_ChangeAnimation(skelAnime, animation, 1.0f, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 0, 0.0f);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
// SkelAnime_ChangeAnimationTransitionRate
void func_800A534C(SkelAnime* skelAnime, u32 animation, f32 transitionRate)
{
SkelAnime_ChangeAnimation(skelAnime, animation, 1.0f, 0.0f, 0.0f, 0, transitionRate);
}
//SkelAnime_ChangeAnimationPlaybackSpeed
void func_800A5384(SkelAnime* skelAnime, u32 animation, f32 playbackSpeed)
{
SkelAnime_ChangeAnimation(skelAnime, animation, playbackSpeed, 0.0f, (f32) SkelAnime_GetFrameCount(animation), 0, 0.0f);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
void func_800A53DC(SkelAnime* skelAnime)
{
skelAnime->unk_01 = 2;
skelAnime->animFrameCount = skelAnime->unk_14;
func_800A49B0(skelAnime);
}
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
#ifdef NON_MATCHING
// regalloc
void func_800A5408(SkelAnime* skelAnime)
{
f32 animPlaybackSpeed = skelAnime->animPlaybackSpeed;
f32 unk_C = skelAnime->unk_0C;
f32 frameCount = skelAnime->animFrameCount;
2020-03-17 04:31:30 +00:00
2020-03-20 21:12:26 +00:00
skelAnime->animFrameCount = unk_C;
skelAnime->animPlaybackSpeed = -animPlaybackSpeed;
skelAnime->unk_0C = frameCount;
}
#else
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A5408.s")
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A5428.s")
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A5490.s")
2020-03-18 03:15:19 +00:00
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A54FC.s")
2020-03-18 03:15:19 +00:00
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A56C8.s")
2020-03-18 03:15:19 +00:00
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A56F0.s")
2020-03-18 03:15:19 +00:00
2020-03-17 04:31:30 +00:00
#pragma GLOBAL_ASM("asm/non_matchings/code/z_skelanime/func_800A5774.s")