strong_wind_particle.inc.c (3082B)
1 // strong_wind_particle.inc.c 2 3 struct ObjectHitbox sStrongWindParticleHitbox = { 4 /* interactType: */ INTERACT_STRONG_WIND, 5 /* downOffset: */ 0, 6 /* damageOrCoinValue: */ 0, 7 /* health: */ 0, 8 /* numLootCoins: */ 0, 9 /* radius: */ 20, 10 /* height: */ 70, 11 /* hurtboxRadius: */ 20, 12 /* hurtboxHeight: */ 70, 13 }; 14 15 void bhv_strong_wind_particle_loop(void) { 16 struct Object *penguinObj; 17 f32 distanceFromPenguin; 18 f32 penguinXDist, penguinZDist; 19 20 obj_set_hitbox(o, &sStrongWindParticleHitbox); 21 22 if (o->oTimer == 0) { 23 o->oStrongWindParticlePenguinObj = cur_obj_nearest_object_with_behavior(bhvSLWalkingPenguin); 24 obj_translate_xyz_random(o, 100.0f); 25 26 o->oForwardVel = coss(o->oMoveAnglePitch) * 100.0f; 27 o->oVelY = sins(o->oMoveAnglePitch) * -100.0f; 28 29 o->oMoveAngleYaw += random_f32_around_zero(o->oBhvParams2ndByte * 500); // Wind spread 30 o->oOpacity = 100; 31 } 32 33 cur_obj_move_using_fvel_and_gravity(); 34 if (o->oTimer > 15) { // Deactivate after 15 frames 35 obj_mark_for_deletion(o); 36 } 37 38 // If collided with the SL walking penguin, deactivate. 39 penguinObj = o->oStrongWindParticlePenguinObj; 40 if (penguinObj != NULL) { 41 penguinXDist = penguinObj->oSLWalkingPenguinWindCollisionXPos - o->oPosX; 42 penguinZDist = penguinObj->oSLWalkingPenguinWindCollisionZPos - o->oPosZ; 43 distanceFromPenguin = sqrtf(penguinXDist * penguinXDist + penguinZDist * penguinZDist); 44 if (distanceFromPenguin < 300.0f) { 45 obj_mark_for_deletion(o); 46 cur_obj_become_intangible(); 47 } 48 } 49 } 50 51 // Spawn particles that blow Mario away and knock his cap off from the current object. 52 // Used for the Snowman in SL and Fwoosh. 53 void cur_obj_spawn_strong_wind_particles(s32 windSpread, f32 scale, f32 relPosX, f32 relPosY, f32 relPosZ) { 54 // Alternate between tiny particles and regular particles each frame. 55 if (gGlobalTimer & 1) { 56 // Because the tiny particles are unimportant objects, invisible wind particles are spawned to provide collision. 57 // There was absolutely no reason to make the smaller particles unimportant, though... 58 spawn_object_relative_with_scale(windSpread, relPosX, relPosY, relPosZ, 0.5f, o, MODEL_WHITE_PARTICLE_DL, bhvTinyStrongWindParticle); 59 spawn_object_relative_with_scale(windSpread, relPosX, relPosY, relPosZ, scale, o, MODEL_NONE, bhvStrongWindParticle); 60 } else { 61 spawn_object_relative_with_scale(windSpread, relPosX, relPosY, relPosZ, scale, o, MODEL_MIST, bhvStrongWindParticle); 62 } 63 // There is also no need to spawn additional invisible wind particles here. 64 // If the devs were worried about object overload when making small particles unimportant, why spawn these? 65 // It isn't to ensure collision, as even 1 particle every 2 frames is enough to ensure this reliably. 66 spawn_object_relative_with_scale(windSpread, relPosX, relPosY, relPosZ, scale, o, MODEL_NONE, bhvStrongWindParticle); 67 }