Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / badguy / treewillowisp.hpp
1 //  SuperTux - "Will-O-Wisp" Badguy
2 //  Copyright (C) 2007 Matthias Braun <matze@braunis.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_BADGUY_TREEWILLOWISP_HPP
18 #define HEADER_SUPERTUX_BADGUY_TREEWILLOWISP_HPP
19
20 #include "badguy/badguy.hpp"
21
22 class GhostTree;
23 class SoundSource;
24
25 class TreeWillOWisp : public BadGuy
26 {
27 public:
28   TreeWillOWisp(GhostTree* tree, const Vector& pos, float radius, float speed);
29   virtual ~TreeWillOWisp();
30
31   void activate();
32
33   /**
34    * make TreeWillOWisp vanish
35    */
36   void vanish();
37   void start_sucking(Vector suck_target);
38
39   void active_update(float elapsed_time);
40   void set_color(const Color& color);
41   Color get_color() const;
42
43   virtual bool is_flammable() const { return false; }
44   virtual bool is_freezable() const { return false; }
45   virtual void kill_fall() { vanish(); }
46
47   virtual void draw(DrawingContext& context);
48
49 protected:
50   virtual bool collides(GameObject& other, const CollisionHit& hit);
51   HitResponse collision_player(Player& player, const CollisionHit& hit);
52
53 private:
54   enum MyState {
55     STATE_DEFAULT, STATE_VANISHING, STATE_SUCKED
56   };
57
58 public:
59   bool was_sucked;
60
61 private:
62   MyState mystate;
63
64   Color color;
65   float angle;
66   float radius;
67   float speed;
68
69   std::auto_ptr<SoundSource> sound_source;
70   GhostTree* tree;
71
72   Vector suck_target;
73
74 private:
75   TreeWillOWisp(const TreeWillOWisp&);
76   TreeWillOWisp& operator=(const TreeWillOWisp&);
77 };
78
79 #endif
80
81 /* EOF */