Update CMake to 3.2.1 in .travis.yml
[supertux.git] / src / object / explosion.hpp
1 //  SuperTux -- Explosion object
2 //  Copyright (C) 2007 Christoph Sommer <christoph.sommer@2007.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_OBJECT_EXPLOSION_HPP
18 #define HEADER_SUPERTUX_OBJECT_EXPLOSION_HPP
19
20 #include "object/moving_sprite.hpp"
21
22 /**
23  * Just your average explosion - goes boom, hurts Tux
24  */
25 class Explosion : public MovingSprite
26 {
27 public:
28   /**
29    * Create new Explosion centered(!) at @c pos
30    */
31   Explosion(const Vector& pos);
32   Explosion(const Reader& reader);
33
34   void update(float elapsed_time);
35   void draw(DrawingContext& context);
36   HitResponse collision(GameObject& other, const CollisionHit& hit);
37
38   bool hurts (void) const
39   {
40     return this->hurt;
41   }
42
43   void hurts (bool val)
44   {
45     this->hurt = val;
46   }
47
48   bool pushes (void) const
49   {
50     return this->push;
51   }
52
53   void pushes (bool val)
54   {
55     this->push = val;
56   }
57
58 protected:
59   /**
60    * plays sound, starts animation
61    */
62   void explode();
63
64 private:
65   enum State {
66     STATE_WAITING,
67     STATE_EXPLODING
68   };
69   bool hurt;
70   bool push;
71   State state;
72   Color light;
73   SpritePtr lightsprite;
74
75 };
76
77 #endif
78
79 /* EOF */