added missing include
[supertux.git] / src / object / sprite_particle.cpp
1 //  $Id: rainsplash.cpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 #include <stdexcept>
22 #include "sprite_particle.hpp"
23 #include "sector.hpp"
24 #include "camera.hpp"
25 #include "main.hpp"
26
27 SpriteParticle::SpriteParticle(std::string sprite_name, Vector position, Vector velocity, Vector acceleration, int drawing_layer) 
28         : position(position), velocity(velocity), acceleration(acceleration), drawing_layer(drawing_layer)
29 {
30   sprite = sprite_manager->create(sprite_name);
31   if (!sprite) throw std::runtime_error("Could not load sprite "+sprite_name);
32   sprite->set_animation_loops(1);
33 }
34   
35 SpriteParticle::~SpriteParticle() 
36 {
37   remove_me();
38 }
39
40 void
41 SpriteParticle::hit(Player& )
42 {
43 }
44
45 void
46 SpriteParticle::update(float elapsed_time) 
47 {
48   // die when animation is complete
49   if (sprite->animation_done()) {
50     remove_me();
51     return;
52   }
53
54   // calculate new position and velocity
55   position.x += velocity.x * elapsed_time;
56   position.y += velocity.y * elapsed_time;
57   velocity.x += acceleration.x * elapsed_time;
58   velocity.y += acceleration.y * elapsed_time;
59
60   // die when too far offscreen
61   Vector camera = Sector::current()->camera->get_translation();
62   if ((position.x < camera.x - 128) || (position.x > SCREEN_WIDTH + camera.x + 128) || 
63       (position.y < camera.y - 128) || (position.y > SCREEN_HEIGHT + camera.y + 128)) {
64     remove_me();
65     return;
66   }
67 }
68
69 void
70 SpriteParticle::draw(DrawingContext& context) 
71 {
72    sprite->draw(context, position, drawing_layer);
73 }