1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-06 06:10:21 +00:00

ovl_en_mm2 OK (#636)

* decompiled ovl_en_mm2

* resolved conflicts

* add back huta

* review suggestions

* review 2 suggestions

Co-authored-by: Fig02 <fig02srl@gmail.com>
This commit is contained in:
emilybrooks 2021-02-02 14:41:03 -07:00 committed by GitHub
parent cce6880bc0
commit 7eaf57be59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 290 additions and 975 deletions

View file

@ -1,4 +1,5 @@
#include "z_en_mm2.h"
#include "vt.h"
#define FLAGS 0x00000019
@ -8,10 +9,14 @@ void EnMm2_Init(Actor* thisx, GlobalContext* globalCtx);
void EnMm2_Destroy(Actor* thisx, GlobalContext* globalCtx);
void EnMm2_Update(Actor* thisx, GlobalContext* globalCtx);
void EnMm2_Draw(Actor* thisx, GlobalContext* globalCtx);
void func_80AAF3C0(EnMm2* this, GlobalContext* globalCtx);
void func_80AAF57C(EnMm2* this, GlobalContext* globalCtx);
void func_80AAF668(EnMm2* this, GlobalContext* globalCtx);
s32 EnMm2_OverrideLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList, Vec3s* pos, Vec3s* rot, void* thisx);
void EnMm2_PostLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList, Vec3s* rot, void* thisx);
extern UNK_TYPE D_06005E18;
extern FlexSkeletonHeader D_06005E18;
/*
const ActorInit En_Mm2_InitVars = {
ACTOR_EN_MM2,
ACTORCAT_NPC,
@ -24,7 +29,7 @@ const ActorInit En_Mm2_InitVars = {
(ActorFunc)EnMm2_Draw,
};
static ColliderCylinderInit D_80AAFAC0 = {
static ColliderCylinderInit sCylinderInit = {
{
COLTYPE_NONE,
AT_NONE,
@ -43,33 +48,282 @@ static ColliderCylinderInit D_80AAFAC0 = {
},
{ 18, 63, 0, { 0, 0, 0 } },
};
*/
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAEE50.s")
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAEF70.s")
typedef struct {
/* 0x00 */ AnimationHeader* animation;
/* 0x04 */ f32 playSpeed;
/* 0x08 */ u8 mode;
/* 0x0C */ f32 morphFrames;
} Mm2AnimationEntry; // size = 0x10
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/EnMm2_Init.s")
static Mm2AnimationEntry sAnimations[] = {
{ 0x06000718, 1.0f, 0, -7.0f }, { 0x06006940, -1.0f, 2, -7.0f }, { 0x06006C50, 1.0f, 0, -7.0f },
{ 0x06006940, 1.0f, 2, -7.0f }, { 0x06000468, 1.0f, 0, -7.0f }, { 0x060073A0, 1.0f, 0, -12.0f },
{ 0x06008060, 1.0f, 0, -12.0f },
};
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/EnMm2_Destroy.s")
static InitChainEntry sInitChain[] = {
ICHAIN_F32(uncullZoneForward, 4000, ICHAIN_STOP),
};
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF224.s")
void EnMm2_ChangeAnimation(EnMm2* this, s32 animationIndex, s32* previousAnimation) {
f32 phi_f0;
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF2BC.s")
if ((*previousAnimation < 0) || (animationIndex == *previousAnimation)) {
phi_f0 = 0.0f;
} else {
phi_f0 = sAnimations[animationIndex].morphFrames;
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF330.s")
if (sAnimations[animationIndex].playSpeed >= 0.0f) {
Animation_Change(&this->skelAnime, sAnimations[animationIndex].animation, sAnimations[animationIndex].playSpeed,
0.0f, (f32)Animation_GetLastFrame(sAnimations[animationIndex].animation),
sAnimations[animationIndex].mode, phi_f0);
} else {
Animation_Change(&this->skelAnime, sAnimations[animationIndex].animation, sAnimations[animationIndex].playSpeed,
(f32)Animation_GetLastFrame(sAnimations[animationIndex].animation), 0.0f,
sAnimations[animationIndex].mode, phi_f0);
}
*previousAnimation = animationIndex;
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF3C0.s")
void func_80AAEF70(EnMm2* this, GlobalContext* globalCtx) {
if ((gSaveContext.eventChkInf[9] & 0xF) != 0xF) {
this->actor.textId = 0x6086;
} else if (gSaveContext.infTable[23] & 0x8000) {
if (gSaveContext.eventInf[1] & 1) {
this->actor.textId = 0x6082;
} else if (gSaveContext.timer2State != 0) {
this->actor.textId = 0x6076;
} else if (HIGH_SCORE(HS_MARATHON) == 158) {
this->actor.textId = 0x607E;
} else {
this->actor.textId = 0x6081;
}
} else if (gSaveContext.timer2State) {
this->actor.textId = 0x6076;
} else {
this->actor.textId = 0x607D;
gSaveContext.eventInf[1] &= ~1;
HIGH_SCORE(HS_MARATHON) = 158;
}
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF57C.s")
void EnMm2_Init(Actor* thisx, GlobalContext* globalCtx2) {
EnMm2* this = THIS;
GlobalContext* globalCtx = globalCtx2;
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF5EC.s")
Actor_ProcessInitChain(&this->actor, sInitChain);
ActorShape_Init(&this->actor.shape, 0.0f, ActorShadow_DrawCircle, 21.0f);
SkelAnime_InitFlex(globalCtx, &this->skelAnime, &D_06005E18, NULL, this->jointTable, this->morphTable, 16);
Animation_Change(&this->skelAnime, sAnimations[2].animation, 1.0f, 0.0f,
Animation_GetLastFrame(sAnimations[2].animation), sAnimations[2].mode, sAnimations[2].morphFrames);
this->previousAnimation = 2;
Collider_InitCylinder(globalCtx, &this->collider);
Collider_SetCylinder(globalCtx, &this->collider, &this->actor, &sCylinderInit);
this->actor.colChkInfo.mass = MASS_IMMOVABLE;
this->unk_1E0 = 0;
this->actor.targetMode = 6;
this->unk_1F4 |= 1;
this->actor.gravity = -1.0f;
if (this->actor.params == 1) {
this->actionFunc = func_80AAF668;
} else {
func_80AAEF70(this, globalCtx);
this->actionFunc = func_80AAF57C;
}
if (LINK_IS_CHILD) {
Actor_Kill(&this->actor);
}
if (this->actor.params == 1) {
if (!(gSaveContext.infTable[23] & 0x8000) || !(gSaveContext.eventInf[1] & 1)) {
osSyncPrintf(VT_FGCOL(CYAN) " マラソン 開始されていない \n" VT_RST "\n");
Actor_Kill(&this->actor);
}
}
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF668.s")
void EnMm2_Destroy(Actor* thisx, GlobalContext* globalCtx) {
EnMm2* this = THIS;
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/EnMm2_Update.s")
Collider_DestroyCylinder(globalCtx, &this->collider);
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/EnMm2_Draw.s")
s32 func_80AAF224(EnMm2* this, GlobalContext* globalCtx, EnMm2ActionFunc actionFunc) {
s16 yawDiff;
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAF9D8.s")
if (func_8002F194(&this->actor, globalCtx)) {
this->actionFunc = actionFunc;
return 1;
}
yawDiff = this->actor.yawTowardsPlayer - this->actor.shape.rot.y;
if ((ABS(yawDiff) < 0x4301) && (this->actor.xzDistToPlayer < 100.0f)) {
func_8002F2CC(&this->actor, globalCtx, 100.0f);
}
return 0;
}
#pragma GLOBAL_ASM("asm/non_matchings/overlays/actors/ovl_En_Mm2/func_80AAFA60.s")
void func_80AAF2BC(EnMm2* this, GlobalContext* globalCtx) {
if (this->unk_1F6 >= 61) {
Actor_Kill(&this->actor);
}
SkelAnime_Update(&this->skelAnime);
this->unk_1F6++;
Math_SmoothStepToF(&this->actor.speedXZ, 10.0f, 0.6f, 2.0f, 0.0f);
}
void func_80AAF330(EnMm2* this, GlobalContext* globalCtx) {
if (SkelAnime_Update(&this->skelAnime)) {
this->actionFunc = func_80AAF2BC;
EnMm2_ChangeAnimation(this, 0, &this->previousAnimation);
this->unk_1E0 = 1;
if (!(this->unk_1F4 & 2)) {
func_80106CCC(globalCtx);
}
gSaveContext.timer2State = 0;
gSaveContext.eventInf[1] &= ~1;
}
}
void func_80AAF3C0(EnMm2* this, GlobalContext* globalCtx) {
SkelAnime_Update(&this->skelAnime);
switch (this->actor.textId) {
case 0x607D:
case 0x607E:
if ((func_8010BDBC(&globalCtx->msgCtx) == 4) && (func_80106BC8(globalCtx))) {
switch (globalCtx->msgCtx.choiceIndex) {
case 0:
func_8010B720(globalCtx, 0x607F);
this->actor.textId = 0x607F;
gSaveContext.eventInf[1] |= 1;
break;
case 1:
func_8010B720(globalCtx, 0x6080);
this->actor.textId = 0x6080;
break;
};
if (this->unk_1F4 & 4) {
if (1) {}
this->unk_1F4 &= ~4;
HIGH_SCORE(HS_MARATHON) += 1;
}
}
return;
case 0x6081:
if ((func_8010BDBC(&globalCtx->msgCtx) == 5) && (func_80106BC8(globalCtx))) {
this->unk_1F4 |= 4;
HIGH_SCORE(HS_MARATHON) -= 1;
func_8010B720(globalCtx, 0x607E);
this->actor.textId = 0x607E;
}
return;
}
if (func_8002F334(&this->actor, globalCtx)) {
if (this->actor.textId == 0x607F) {
func_80088AA0(0);
this->actionFunc = func_80AAF57C;
} else {
this->actionFunc = func_80AAF57C;
}
this->actionFunc = func_80AAF57C;
func_80AAEF70(this, globalCtx);
}
}
void func_80AAF57C(EnMm2* this, GlobalContext* globalCtx) {
SkelAnime_Update(&this->skelAnime);
func_80AAEF70(this, globalCtx);
if ((func_80AAF224(this, globalCtx, func_80AAF3C0)) && (this->actor.textId == 0x607D)) {
gSaveContext.infTable[23] |= 0x8000;
}
}
void func_80AAF5EC(EnMm2* this, GlobalContext* globalCtx) {
SkelAnime_Update(&this->skelAnime);
if ((func_8010BDBC(&globalCtx->msgCtx) == 5) && (func_80106BC8(globalCtx))) {
this->unk_1F4 &= ~1;
EnMm2_ChangeAnimation(this, 3, &this->previousAnimation);
this->actionFunc = func_80AAF330;
}
}
void func_80AAF668(EnMm2* this, GlobalContext* globalCtx) {
this->actor.world.rot.y = -0x3E80;
this->actor.shape.rot.y = this->actor.world.rot.y;
SkelAnime_Update(&this->skelAnime);
if (((void)0, gSaveContext.timer2Value) < HIGH_SCORE(HS_MARATHON)) {
this->actor.textId = 0x6085;
} else {
this->actor.textId = 0x6084;
}
if (func_80AAF224(this, globalCtx, func_80AAF5EC)) {
this->unk_1F6 = 0;
if (((void)0, gSaveContext.timer2Value) < HIGH_SCORE(HS_MARATHON)) {
HIGH_SCORE(HS_MARATHON) = gSaveContext.timer2Value;
}
} else {
LOG_HEX("((z_common_data.event_inf[1]) & (0x0001))", gSaveContext.eventInf[1] & 1, "../z_en_mm2.c", 541);
if (!(gSaveContext.eventInf[1] & 1)) {
this->unk_1F4 |= 2;
this->unk_1F4 &= ~1;
EnMm2_ChangeAnimation(this, 3, &this->previousAnimation);
this->actionFunc = func_80AAF330;
}
}
}
void EnMm2_Update(Actor* thisx, GlobalContext* globalCtx) {
EnMm2* this = THIS;
s32 pad;
if (this->unk_1F4 & 1) {
func_80038290(globalCtx, &this->actor, &this->unk_1E8, &this->unk_1EE, this->actor.focus.pos);
} else {
Math_SmoothStepToS(&this->unk_1E8.x, 0, 6, 6200, 100);
Math_SmoothStepToS(&this->unk_1E8.y, 0, 6, 6200, 100);
Math_SmoothStepToS(&this->unk_1EE.x, 0, 6, 6200, 100);
Math_SmoothStepToS(&this->unk_1EE.y, 0, 6, 6200, 100);
}
this->actionFunc(this, globalCtx);
Collider_UpdateCylinder(&this->actor, &this->collider);
CollisionCheck_SetOC(globalCtx, &globalCtx->colChkCtx, &this->collider.base);
Actor_MoveForward(&this->actor);
Actor_UpdateBgCheckInfo(globalCtx, &this->actor, 0.0f, 0.0f, 0.0f, 4);
}
void EnMm2_Draw(Actor* thisx, GlobalContext* globalCtx) {
static UNK_PTR D_80AAFB60[] = { 0x06000E30, 0x06000C30 };
EnMm2* this = THIS;
OPEN_DISPS(globalCtx->state.gfxCtx, "../z_en_mm2.c", 634);
func_80093D18(globalCtx->state.gfxCtx);
gSPSegment(POLY_OPA_DISP++, 0x08, SEGMENTED_TO_VIRTUAL(D_80AAFB60[this->unk_1E0]));
SkelAnime_DrawFlexOpa(globalCtx, this->skelAnime.skeleton, this->skelAnime.jointTable, this->skelAnime.dListCount,
EnMm2_OverrideLimbDraw, EnMm2_PostLimbDraw, this);
CLOSE_DISPS(globalCtx->state.gfxCtx, "../z_en_mm2.c", 654);
}
s32 EnMm2_OverrideLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList, Vec3s* pos, Vec3s* rot, void* thisx) {
EnMm2* this = THIS;
switch (limbIndex) {
case 8:
rot->x += this->unk_1EE.y;
rot->y -= this->unk_1EE.x;
break;
case 15:
rot->x += this->unk_1E8.y;
rot->z += this->unk_1E8.x + 0xFA0;
break;
}
return 0;
}
void EnMm2_PostLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList, Vec3s* rot, void* thisx) {
static Vec3f D_80AAFB68 = { 200.0f, 800.0f, 0.0f };
EnMm2* this = THIS;
if (limbIndex == 15) {
Matrix_MultVec3f(&D_80AAFB68, &this->actor.focus.pos);
}
}

View file

@ -6,9 +6,22 @@
struct EnMm2;
typedef void (*EnMm2ActionFunc)(struct EnMm2*, GlobalContext*);
typedef struct EnMm2 {
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x170];
/* 0x014C */ SkelAnime skelAnime;
/* 0x0190 */ EnMm2ActionFunc actionFunc;
/* 0x0194 */ ColliderCylinder collider;
/* 0x01E0 */ s32 unk_1E0;
/* 0x01E4 */ char unk_1E4[0x4];
/* 0x01E8 */ Vec3s unk_1E8;
/* 0x01EE */ Vec3s unk_1EE;
/* 0x01F4 */ u16 unk_1F4;
/* 0x01F6 */ s16 unk_1F6;
/* 0x01F8 */ s32 previousAnimation;
/* 0x01FC */ Vec3s jointTable[16];
/* 0x025C */ Vec3s morphTable[16];
} EnMm2; // size = 0x02BC
extern const ActorInit En_Mm2_InitVars;