Bell sound from remaxim (plays on torch/firefly too)
authormathnerd314 <mathnerd314@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Fri, 9 Apr 2010 22:49:45 +0000 (22:49 +0000)
committermathnerd314 <mathnerd314@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Fri, 9 Apr 2010 22:49:45 +0000 (22:49 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6631 837edb03-e0f3-0310-88ca-d4d4e8b29345

data/sounds/savebell2.wav [new file with mode: 0644]
src/object/firefly.cpp

diff --git a/data/sounds/savebell2.wav b/data/sounds/savebell2.wav
new file mode 100644 (file)
index 0000000..05ed4f5
Binary files /dev/null and b/data/sounds/savebell2.wav differ
index 9390164..e699cd2 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <math.h>
 
+#include "audio/sound_manager.hpp"
 #include "math/random_generator.hpp"
 #include "object/player.hpp"
 #include "object/sprite_particle.hpp"
@@ -45,6 +46,9 @@ Firefly::Firefly(const Reader& lisp) :
   sprite = sprite_manager->create( sprite_name );
   bbox.set_size(sprite->get_current_hitbox_width(), sprite->get_current_hitbox_height());
   reactivate();
+
+  //Load sound
+  sound_manager->preload("sounds/savebell2.wav");
 }
 
 void
@@ -81,7 +85,9 @@ Firefly::collision(GameObject& other, const CollisionHit& )
       Vector paccel = Vector(0, 1000);
       Sector::current()->add_object(new SpriteParticle("images/objects/particles/reset.sprite", "default", ppos, ANCHOR_MIDDLE, pspeed, paccel, LAYER_OBJECTS-1));
     }
-    // TODO play sound
+
+    sound_manager->play("sounds/savebell2.wav");
+
     sprite->set_action("ringing");
     GameSession::current()->set_reset_point(Sector::current()->get_name(),
                                             initial_position);