Files
banjo-kazooie/src/TTC/ch/treasure.c

95 lines
3.2 KiB
C

#include <ultra64.h>
#include "functions.h"
#include "variables.h"
static void __chTreasure_updateFunc(Actor *this);
/* .data */
ActorAnimationInfo gChTreasureAnimations[4] = {
{NULL, NULL},
{ASSET_153_ANIM_BURIED_TREASURE_APPEAR, 2.0f},
{ASSET_166_ANIM_BURIED_TREASURE_BOUNCE, 0.33f},
{NULL, NULL}
};
ActorInfo gChTreasure = {
MARKER_DB_BURIED_TREASURE, ACTOR_F4_BURIED_TREASURE, ASSET_42C_MODEL_BURIED_TREASURE,
1, gChTreasureAnimations,
__chTreasure_updateFunc, func_80326224, actor_draw,
0, 0, 1.7f, 0
};
/* .code */
static void __chTreasure_die(ActorMarker *marker, ActorMarker *otherMarker){
Actor *this = marker_getActor(marker);
__spawnQueue_add_4((GenFunction_4) spawnQueue_actor_f32, 0x4C, reinterpret_cast(s32, this->position[0]), reinterpret_cast(s32, this->position[1]), reinterpret_cast(s32, this->position[2]));
func_802EE278(this, 3, 0xf, 0x3C, 0.2f, 1.2f);
func_803115C4(0xA19);
jiggy_spawn(JIGGY_11_TTC_RED_X, this->position);
marker_despawn(marker);
}
static void __chTreasure_updateFuncPosition(Actor *this){
this->position[0] = this->unk1C[0];\
this->position[1] = this->unk1C[1];\
this->position[2] = this->unk1C[2];
this->position[0] += this->unk5C*cosf(this->lifetime_value);
this->position[2] += this->unk5C*sinf(this->lifetime_value);
this->lifetime_value += 2.0*time_getDelta()*this->unk5C/300.0;
if(2*M_PI <= this->lifetime_value)
this->lifetime_value -= 2*M_PI;
this->yaw = this->lifetime_value*180.0/M_PI;
}
static void __chTreasure_updateFunc(Actor *this){
f32 sp3C[3];
s16 sp34[3];
if(!this->initialized){
this->initialized = TRUE;
if(this->unkF4_8 == 1 && !volatileFlag_get(VOLATILE_FLAG_C1_IN_FINAL_CHARACTER_PARADE)){
marker_despawn(this->marker);
return;
}
actor_collisionOff(this);
this->scale = 0.5f;
this->lifetime_value = M_PI/2;
this->unk5C = 0.0f;
this->unk1C[0] = this->position[0];
this->unk1C[1] = this->position[1];
this->unk1C[2] = this->position[2];
actor_playAnimationOnce(this);
marker_setCollisionScripts(this->marker, NULL, NULL, __chTreasure_die);
}
__chTreasure_updateFuncPosition(this);
func_8034A174(this->marker->unk44, 5, sp3C);
sp34[0] = (s16)sp3C[0];
sp34[1] = (s16)sp3C[1];
sp34[2] = (s16)sp3C[2];
sp34[1] += 50;
fxSparkle_chTreasure(sp34);
switch(this->state){
case 1://L8038C29C
this->unk5C = animctrl_getAnimTimer(this->animctrl) *300.0; //radius of 300.0f
if(animctrl_isStopped(this->animctrl)){
actor_loopAnimation(this);
subaddie_set_state_forward(this, 2);
this->marker->propPtr->unk8_3 = 1;
actor_collisionOn(this);
func_8030E878(SFX_3F2_UNKNOWN, randf2(1.2f, 1.3f), 20000, this->position, 200.0f, 1500.0f);
}
break;
case 2://L8038C344
if(actor_animationIsAt(this, 0.99f)){
func_8030E878(SFX_3F2_UNKNOWN, randf2(1.2f, 1.3f), 20000, this->position, 200.0f, 1500.0f);
}
break;
case 3:
break;
}//L8038C398
}