94 lines
2.6 KiB
C
94 lines
2.6 KiB
C
#include <ultra64.h>
|
|
#include "functions.h"
|
|
#include "variables.h"
|
|
|
|
Actor *chRaceSled_draw(ActorMarker *marker, Gfx **gfx, Mtx **mtx, Vtx **vtx);
|
|
void chRaceSled_update(Actor *this);
|
|
|
|
/* .data */
|
|
ActorAnimationInfo chRaceSledAnimations []= {
|
|
{ ASSET_1A1_ANIM_SLED, 1.0f},
|
|
{ ASSET_1A1_ANIM_SLED, 1.0f},
|
|
{ ASSET_1A1_ANIM_SLED, 1.0f},
|
|
{ ASSET_1A1_ANIM_SLED, 1.0f}
|
|
};
|
|
|
|
ActorInfo chRaceSled = {
|
|
MARKER_3C_RACE_SLED, ACTOR_182_RACE_SLED, ASSET_352_MODEL_SLED,
|
|
0x0, chRaceSledAnimations,
|
|
chRaceSled_update, NULL, chRaceSled_draw,
|
|
1000, 0, 0.0f, 0
|
|
};
|
|
|
|
/* .code */
|
|
Actor *chRaceSled_draw(ActorMarker *marker, Gfx **gfx, Mtx **mtx, Vtx **vtx){
|
|
Actor *this = marker_getActor(marker);
|
|
if(this->unk10_12 == FALSE){
|
|
return actor_draw(marker, gfx, mtx, vtx);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
void __chRaceSled_setState(Actor *this, s32 next_state){
|
|
if(this->state != 1 || next_state != 1){
|
|
subaddie_set_state(this, next_state);
|
|
switch(next_state){
|
|
case 1: //L8038697C
|
|
this->unk10_12 = TRUE;
|
|
this->marker->propPtr->unk8_3 = FALSE;
|
|
break;
|
|
case 2: //L803869A4
|
|
this->unk10_12 = FALSE;
|
|
this->marker->propPtr->unk8_3 = TRUE;
|
|
break;
|
|
case 3: //L803869CC
|
|
this->unk10_12 = TRUE;
|
|
this->marker->propPtr->unk8_3 = FALSE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void __chRaceSled_touch(ActorMarker *this_marker, ActorMarker *other_marker){
|
|
Actor *this = marker_getActor(this_marker);
|
|
f32 plyr_pos[3];
|
|
|
|
if(this->state == 2){
|
|
player_getPosition(plyr_pos);
|
|
if( this->position_y + 20.0f < plyr_pos[1]
|
|
&& func_8028F20C()
|
|
&& player_getTransformation() == TRANSFORM_4_WALRUS
|
|
&& func_8028F68C(BS_INTR_27_WALRUS_SLED, this->marker)
|
|
){
|
|
__chRaceSled_setState(this, 3); //start_race
|
|
}
|
|
}
|
|
}
|
|
|
|
void chRaceSled_update(Actor *this){
|
|
s32 sp24;
|
|
if(!this->initialized){
|
|
this->initialized = TRUE;
|
|
marker_setCollisionScripts(this->marker, __chRaceSled_touch, NULL, NULL);
|
|
__chRaceSled_setState(this, 1);
|
|
}
|
|
|
|
sp24 = mapSpecificFlags_get(4);
|
|
if(sp24 == 0){
|
|
__chRaceSled_setState(this, 1);
|
|
}
|
|
|
|
switch (this->state){
|
|
case 1://L80386B38
|
|
if(sp24){
|
|
__chRaceSled_setState(this, 2);
|
|
}
|
|
break;
|
|
case 3://L80386B50
|
|
if(func_8028ECAC() != BSGROUP_C_WALRUS_SLED){
|
|
__chRaceSled_setState(this, 2);
|
|
}
|
|
break;
|
|
}
|
|
}
|