Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / badguy / ghosttree.hpp
1 //  SuperTux - Boss "GhostTree"
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_GHOSTTREE_HPP
18 #define HEADER_SUPERTUX_BADGUY_GHOSTTREE_HPP
19
20 #include "badguy/badguy.hpp"
21
22 class TreeWillOWisp;
23 class Lantern;
24
25 class GhostTree : public BadGuy
26 {
27 public:
28   GhostTree(const Reader& lisp);
29   ~GhostTree();
30
31   virtual bool is_flammable() const { return false; }
32   virtual bool is_freezable() const { return false; }
33   virtual void kill_fall() { }
34
35   void activate();
36   void active_update(float elapsed_time);
37   void willowisp_died(TreeWillOWisp* willowisp);
38   virtual void draw(DrawingContext& context);
39
40   virtual bool collides(GameObject& other, const CollisionHit& hit);
41   virtual HitResponse collision(GameObject& other, const CollisionHit& hit);
42
43   void die();
44
45 private:
46   enum MyState {
47     STATE_IDLE, STATE_SUCKING, STATE_SWALLOWING, STATE_DYING
48   };
49   MyState mystate;
50   Timer willowisp_timer;
51   float willo_spawn_y;
52   float willo_radius;
53   float willo_speed;
54   int   willo_color;
55
56   std::auto_ptr<Sprite> glow_sprite;
57   Timer colorchange_timer;
58   Timer suck_timer;
59   Timer root_timer;
60   int   treecolor;
61   Color suck_lantern_color;
62
63   Lantern* suck_lantern; /**< Lantern that is currently being sucked in */
64
65   std::vector<TreeWillOWisp*> willowisps;
66
67   bool is_color_deadly(Color color) const;
68   void spawn_lantern();
69
70 private:
71   GhostTree(const GhostTree&);
72   GhostTree& operator=(const GhostTree&);
73 };
74
75 #endif
76
77 /* EOF */