Fix issue with action not being updated when typing grow()/fire()/etc in console...
[supertux.git] / src / object / oneup.cpp
index 3ce81fa..a0dc071 100644 (file)
 #include "player.hpp"
 #include "player_status.hpp"
 #include "sector.hpp"
+#include "level.hpp"
+#include "statistics.hpp"
 #include "video/drawing_context.hpp"
 
 OneUp::OneUp(const Vector& pos, Direction direction)
-       : MovingSprite(pos, "images/powerups/1up/1up.sprite", LAYER_FLOATINGOBJECTS, COLGROUP_TOUCHABLE)
+        : MovingSprite(pos, "images/powerups/1up/1up.sprite", LAYER_FLOATINGOBJECTS, COLGROUP_TOUCHABLE)
 {
   physic.set_velocity((direction == LEFT)?-100:100, -400);
 }
@@ -38,7 +40,7 @@ OneUp::update(float elapsed_time)
   if(!Sector::current()->inside(bbox))
     remove_me();
 
-  movement = physic.get_movement(elapsed_time); 
+  movement = physic.get_movement(elapsed_time);
 }
 
 HitResponse
@@ -47,9 +49,12 @@ OneUp::collision(GameObject& other, const CollisionHit& )
   Player* player = dynamic_cast<Player*> (&other);
   if(player) {
     player->get_status()->add_coins(100);
+#if 0
+    // FIXME: do we want this? q.v. src/level.cpp
+    Sector::current()->get_level()->stats.coins += 100;
+#endif
     remove_me();
     return ABORT_MOVE;
   }
   return FORCE_MOVE;
 }
-