917345b7f349970d054d8ead1b3f6ce8851f37fd
[supertux.git] / src / badguy / ghosttree.cpp
1 //  $Id$
2 //
3 //  SuperTux - Boss "GhostTree"
4 //  Copyright (C) 2007 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #include <config.h>
20
21 #include "ghosttree.hpp"
22 #include "treewillowisp.hpp"
23 #include "root.hpp"
24
25 static const size_t WILLOWISP_COUNT = 10;
26
27 GhostTree::GhostTree(const lisp::Lisp& lisp)
28   : BadGuy(lisp, "images/creatures/ghosttree/ghosttree.sprite",
29            LAYER_OBJECTS - 10),
30     willo_spawn_y(0), willo_radius(200), willo_speed(1.8f), willo_color(0),
31     treecolor(0)
32 {
33 }
34
35 GhostTree::~GhostTree()
36 {
37 }
38
39 void
40 GhostTree::activate()
41 {
42   willowisp_timer.start(1.0f, true);
43   colorchange_timer.start(13, true);
44   root_timer.start(5, true);
45   set_group(COLGROUP_DISABLED);
46 }
47
48 void
49 GhostTree::active_update(float elapsed_time)
50 {
51   (void) elapsed_time;
52
53   if(colorchange_timer.check()) {
54     treecolor = (treecolor + 1) % 3;
55
56     Color col;
57     switch(treecolor) {
58     case 0: col = Color(1, 0, 0); break;
59     case 1: col = Color(0, 1, 0); break;
60     case 2: col = Color(0, 0, 1); break;
61     case 3: col = Color(1, 1, 0); break;
62     case 4: col = Color(1, 0, 1); break;
63     case 5: col = Color(0, 1, 1); break;
64     default: assert(false);
65     }
66     sprite->set_color(col);
67     std::vector<TreeWillOWisp*>::iterator iter;
68     for(iter = willowisps.begin(); iter != willowisps.end(); ++iter) {
69       TreeWillOWisp *willo = *iter;
70       if(willo->get_color() == col) {
71         willo->start_sucking();
72       }
73     }
74   }
75
76   if(willowisp_timer.check()) {
77     if(willowisps.size() < WILLOWISP_COUNT) {
78       Vector pos = Vector(bbox.get_width() / 2, bbox.get_height() / 2 + willo_spawn_y);
79       TreeWillOWisp *willowisp 
80         = new TreeWillOWisp(this, pos, 200 + willo_radius, willo_speed);
81
82       Sector::current()->add_object(willowisp);
83       willowisps.push_back(willowisp);
84
85       willo_spawn_y -= 40;
86       if(willo_spawn_y < -160)
87         willo_spawn_y = 0;
88
89       willo_radius += 20;
90       if(willo_radius > 120)
91         willo_radius = 0;
92
93       if(willo_speed == 1.8f) {
94         willo_speed = 1.5f;
95       } else {
96         willo_speed = 1.8f;
97       }
98
99       do {
100         willo_color = (willo_color + 1) % 3;
101       } while(willo_color == treecolor);
102
103       switch(willo_color) {
104       case 0: willowisp->set_color(Color(1, 0, 0)); break;
105       case 1: willowisp->set_color(Color(0, 1, 0)); break;
106       case 2: willowisp->set_color(Color(0, 0, 1)); break;
107       case 3: willowisp->set_color(Color(1, 1, 0)); break;
108       case 4: willowisp->set_color(Color(1, 0, 1)); break;
109       case 5: willowisp->set_color(Color(0, 1, 1)); break;
110       default: assert(false);
111       }
112     }
113   }
114
115   if(root_timer.check()) {
116     /* TODO indicate root with an animation */
117     Player* player = get_nearest_player();
118     Root* root = new Root(Vector(player->get_bbox().get_left(), get_bbox().get_bottom()));
119     Sector::current()->add_object(root);
120   }
121 }
122
123 void
124 GhostTree::willowisp_died(TreeWillOWisp *willowisp)
125 {
126   willowisps.erase(std::find(willowisps.begin(), willowisps.end(), willowisp));
127 }
128
129 IMPLEMENT_FACTORY(GhostTree, "ghosttree");
130