sm64

A Super Mario 64 decompilation
Log | Files | Refs | README | LICENSE

falling_pillar.inc.c (4933B)


      1 
      2 /**
      3  * Behavior for the falling pillars inside the underwater cave area of
      4  * Jolly Roger Bay.
      5  *
      6  * Also includes behavior for the invisible hitboxes they spawn.
      7  */
      8 
      9 static struct ObjectHitbox sFallingPillarHitbox = {
     10     /* interactType:      */ INTERACT_DAMAGE,
     11     /* downOffset:        */ 150,
     12     /* damageOrCoinValue: */ 3,
     13     /* health:            */ 0,
     14     /* numLootCoins:      */ 0,
     15     /* radius:            */ 150,
     16     /* height:            */ 300,
     17     /* hurtboxRadius:     */ 0,
     18     /* hurtboxHeight:     */ 0,
     19 };
     20 
     21 /**
     22  * Initiates various physics params for the pillar.
     23  */
     24 void bhv_falling_pillar_init(void) {
     25     o->oGravity = 0.5f;
     26     o->oFriction = 0.91f;
     27     o->oBuoyancy = 1.3f;
     28 }
     29 
     30 /**
     31  * Spawns 4 hitboxes with Y coordinates offset.
     32  */
     33 void bhv_falling_pillar_spawn_hitboxes(void) {
     34     s32 i;
     35 
     36     for (i = 0; i < 4; i++) {
     37         spawn_object_relative(i, 0, i * 400 + 300, 0, o, MODEL_NONE, bhvFallingPillarHitbox);
     38     }
     39 }
     40 
     41 /**
     42  * Computes the angle from current pillar position to 500 units in front of
     43  * Mario.
     44  */
     45 s16 bhv_falling_pillar_calculate_angle_in_front_of_mario(void) {
     46     // Calculate target to be 500 units in front of Mario in
     47     // the direction he is facing (angle[1] is yaw).
     48     f32 targetX = sins(gMarioObject->header.gfx.angle[1]) * 500.0f + gMarioObject->header.gfx.pos[0];
     49     f32 targetZ = coss(gMarioObject->header.gfx.angle[1]) * 500.0f + gMarioObject->header.gfx.pos[2];
     50 
     51     // Calculate the angle to the target from the pillar's current location.
     52     return atan2s(targetZ - o->oPosZ, targetX - o->oPosX);
     53 }
     54 
     55 /**
     56  * Falling pillar main logic loop.
     57  */
     58 void bhv_falling_pillar_loop(void) {
     59     s16 angleInFrontOfMario;
     60 
     61     switch (o->oAction) {
     62         case FALLING_PILLAR_ACT_IDLE:
     63             // When Mario is within 1300 units of distance...
     64             if (is_point_within_radius_of_mario(o->oPosX, o->oPosY, o->oPosZ, 1300)) {
     65                 // Begin slightly moving towards Mario.
     66                 o->oMoveAngleYaw = o->oAngleToMario;
     67                 o->oForwardVel = 1.0f;
     68 
     69                 // Spawn the invisible hitboxes.
     70                 bhv_falling_pillar_spawn_hitboxes();
     71 
     72                 // Start turning towards Mario.
     73                 o->oAction = FALLING_PILLAR_ACT_TURNING;
     74 
     75                 // Play the detaching sound.
     76                 cur_obj_play_sound_2(SOUND_GENERAL_POUND_ROCK);
     77             }
     78             break;
     79 
     80         case FALLING_PILLAR_ACT_TURNING:
     81             object_step_without_floor_orient();
     82 
     83             // Calculate angle in front of Mario and turn towards it.
     84             angleInFrontOfMario = bhv_falling_pillar_calculate_angle_in_front_of_mario();
     85             o->oFaceAngleYaw = approach_s16_symmetric(o->oFaceAngleYaw, angleInFrontOfMario, 0x400);
     86 
     87             // After 10 ticks, start falling.
     88             if (o->oTimer > 10) {
     89                 o->oAction = FALLING_PILLAR_ACT_FALLING;
     90             }
     91             break;
     92 
     93         case FALLING_PILLAR_ACT_FALLING:
     94             object_step_without_floor_orient();
     95 
     96             // Start falling slowly, with increasing acceleration each frame.
     97             o->oFallingPillarPitchAcceleration += 4.0f;
     98             o->oAngleVelPitch += o->oFallingPillarPitchAcceleration;
     99             o->oFaceAnglePitch += o->oAngleVelPitch;
    100 
    101             // Once the pillar has turned nearly 90 degrees (after ~22 frames),
    102             if (o->oFaceAnglePitch > 0x3900) {
    103                 // Move 500 units in the direction of falling.
    104                 o->oPosX += sins(o->oFaceAngleYaw) * 500.0f;
    105                 o->oPosZ += coss(o->oFaceAngleYaw) * 500.0f;
    106 
    107                 // Make the camera shake and spawn dust clouds.
    108                 set_camera_shake_from_point(SHAKE_POS_MEDIUM, o->oPosX, o->oPosY, o->oPosZ);
    109                 spawn_mist_particles_variable(0, 0, 92.0f);
    110 
    111                 // Go invisible.
    112                 o->activeFlags = ACTIVE_FLAG_DEACTIVATED;
    113 
    114                 // Play the hitting the ground sound.
    115                 create_sound_spawner(SOUND_GENERAL_BIG_POUND);
    116             }
    117             break;
    118     }
    119 }
    120 
    121 /**
    122  * Main loop for the invisible hitboxes.
    123  */
    124 void bhv_falling_pillar_hitbox_loop(void) {
    125     // Get the state of the pillar.
    126     s32 pitch = o->parentObj->oFaceAnglePitch;
    127     s32 yaw = o->parentObj->oFaceAngleYaw;
    128     f32 x = o->parentObj->oPosX;
    129     f32 y = o->parentObj->oPosY;
    130     f32 z = o->parentObj->oPosZ;
    131     f32 yOffset = o->oBhvParams2ndByte * 400 + 300;
    132 
    133     // Update position of hitboxes so they fall with the pillar.
    134     o->oPosX = sins(pitch) * sins(yaw) * yOffset + x;
    135     o->oPosY = coss(pitch) * yOffset + y;
    136     o->oPosZ = sins(pitch) * coss(yaw) * yOffset + z;
    137 
    138     // Give these a hitbox so they can collide with Mario.
    139     obj_set_hitbox(o, &sFallingPillarHitbox);
    140 
    141     // When the pillar goes inactive, the hitboxes also go inactive.
    142     if (o->parentObj->activeFlags == ACTIVE_FLAG_DEACTIVATED) {
    143         o->activeFlags = ACTIVE_FLAG_DEACTIVATED;
    144     }
    145 }