badguy/walking_badguy.[ch]pp: Make it possible to specify the target x velocity.
authorflorianf <florianf@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Fri, 5 Mar 2010 08:27:35 +0000 (08:27 +0000)
committerflorianf <florianf@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Fri, 5 Mar 2010 08:27:35 +0000 (08:27 +0000)
This will be use by "Haywire" eventually to get a more smooth "follow the
player" effect.

git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6550 837edb03-e0f3-0310-88ca-d4d4e8b29345

src/badguy/walking_badguy.cpp
src/badguy/walking_badguy.hpp

index 1d4cf15..8ab7d35 100644 (file)
@@ -91,12 +91,11 @@ WalkingBadguy::add_velocity (const Vector& velocity)
 }
 
 void
-WalkingBadguy::active_update(float elapsed_time)
+WalkingBadguy::active_update(float elapsed_time, float dest_x_velocity)
 {
   BadGuy::active_update(elapsed_time);
 
   float current_x_velocity = physic.get_velocity_x ();
-  float dest_x_velocity = (dir == LEFT) ? -walk_speed : +walk_speed;
 
   if (frozen)
   {
@@ -111,16 +110,16 @@ WalkingBadguy::active_update(float elapsed_time)
     physic.set_acceleration_x (0.0);
   }
   /* Check if we're going too slow or even in the wrong direction */
-  else if (((dir == LEFT) && (current_x_velocity > dest_x_velocity))
-      || ((dir == RIGHT) && (current_x_velocity < dest_x_velocity)))
+  else if (((dest_x_velocity <= 0.0) && (current_x_velocity > dest_x_velocity))
+      || ((dest_x_velocity > 0.0) && (current_x_velocity < dest_x_velocity)))
   {
     /* acceleration == walk-speed => it will take one second to get from zero
      * to full speed. */
     physic.set_acceleration_x (dest_x_velocity);
   }
   /* Check if we're going too fast */
-  else if (((dir == LEFT) && (current_x_velocity < dest_x_velocity))
-      || ((dir == RIGHT) && (current_x_velocity > dest_x_velocity)))
+  else if (((dest_x_velocity <= 0.0) && (current_x_velocity < dest_x_velocity))
+      || ((dest_x_velocity > 0.0) && (current_x_velocity > dest_x_velocity)))
   {
     /* acceleration == walk-speed => it will take one second to get twice the
      * speed to normal speed. */
@@ -141,6 +140,12 @@ WalkingBadguy::active_update(float elapsed_time)
 }
 
 void
+WalkingBadguy::active_update(float elapsed_time)
+{
+  this->active_update (elapsed_time, (dir == LEFT) ? -walk_speed : +walk_speed);
+}
+
+void
 WalkingBadguy::collision_solid(const CollisionHit& hit)
 {
 
index 4bfb455..038d876 100644 (file)
@@ -45,6 +45,7 @@ public:
 
   void initialize();
   void active_update(float elapsed_time);
+  void active_update(float elapsed_time, float target_velocity);
   void collision_solid(const CollisionHit& hit);
   HitResponse collision_badguy(BadGuy& badguy, const CollisionHit& hit);
   void freeze();