90b30bbce2a50d206bb2c02a77d07364a19515f9
[supertux.git] / src / badguy / zeekling.cpp
1 //  Zeekling - flyer that swoops down when she spots the player
2 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
3 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "badguy/zeekling.hpp"
19
20 #include <math.h>
21
22 #include "math/random_generator.hpp"
23 #include "object/player.hpp"
24 #include "sprite/sprite.hpp"
25 #include "supertux/object_factory.hpp"
26
27 Zeekling::Zeekling(const Reader& reader) :
28   BadGuy(reader, "images/creatures/zeekling/zeekling.sprite"),
29   speed(),
30   diveRecoverTimer(),
31   state(),
32   last_player(0),
33   last_player_pos(),
34   last_self_pos()
35 {
36   state = FLYING;
37   speed = systemRandom.rand(130, 171);
38   physic.enable_gravity(false);
39 }
40
41 Zeekling::Zeekling(const Vector& pos, Direction d) :
42   BadGuy(pos, d, "images/creatures/zeekling/zeekling.sprite"),
43   speed(),
44   diveRecoverTimer(),
45   state(),
46   last_player(0),
47   last_player_pos(),
48   last_self_pos()
49 {
50   state = FLYING;
51   speed = systemRandom.rand(130, 171);
52   physic.enable_gravity(false);
53 }
54
55 void
56 Zeekling::initialize()
57 {
58   physic.set_velocity_x(dir == LEFT ? -speed : speed);
59   sprite->set_action(dir == LEFT ? "left" : "right");
60 }
61
62 bool
63 Zeekling::collision_squished(GameObject& object)
64 {
65   sprite->set_action(dir == LEFT ? "squished-left" : "squished-right");
66   kill_squished(object);
67   kill_fall();
68   return true;
69 }
70
71 void
72 Zeekling::onBumpHorizontal() {
73   if (state == FLYING) {
74     dir = (dir == LEFT ? RIGHT : LEFT);
75     sprite->set_action(dir == LEFT ? "left" : "right");
76     physic.set_velocity_x(dir == LEFT ? -speed : speed);
77   } else
78     if (state == DIVING) {
79       dir = (dir == LEFT ? RIGHT : LEFT);
80       state = FLYING;
81       sprite->set_action(dir == LEFT ? "left" : "right");
82       physic.set_velocity_x(dir == LEFT ? -speed : speed);
83       physic.set_velocity_y(0);
84     } else
85       if (state == CLIMBING) {
86         dir = (dir == LEFT ? RIGHT : LEFT);
87         sprite->set_action(dir == LEFT ? "left" : "right");
88         physic.set_velocity_x(dir == LEFT ? -speed : speed);
89       } else {
90         assert(false);
91       }
92 }
93
94 void
95 Zeekling::onBumpVertical() {
96   if (state == FLYING) {
97     physic.set_velocity_y(0);
98   } else
99     if (state == DIVING) {
100       state = CLIMBING;
101       physic.set_velocity_y(-speed);
102       sprite->set_action(dir == LEFT ? "left" : "right");
103     } else
104       if (state == CLIMBING) {
105         state = FLYING;
106         physic.set_velocity_y(0);
107       }
108 }
109
110 void
111 Zeekling::collision_solid(const CollisionHit& hit)
112 {
113   if(hit.top || hit.bottom) {
114     onBumpVertical();
115   } else if(hit.left || hit.right) {
116     onBumpHorizontal();
117   }
118 }
119
120 /**
121  * linear prediction of player and badguy positions to decide if we should enter the DIVING state
122  */
123 bool
124 Zeekling::should_we_dive() {
125
126   const MovingObject* player = this->get_nearest_player();
127   if (player && last_player && (player == last_player)) {
128
129     // get positions, calculate movement
130     const Vector player_pos = player->get_pos();
131     const Vector player_mov = (player_pos - last_player_pos);
132     const Vector self_pos = this->get_pos();
133     const Vector self_mov = (self_pos - last_self_pos);
134
135     // new vertical speed to test with
136     float vy = 2*fabsf(self_mov.x);
137
138     // do not dive if we are not above the player
139     float height = player_pos.y - self_pos.y;
140     if (height <= 0) return false;
141
142     // do not dive if we are too far above the player
143     if (height > 512) return false;
144
145     // do not dive if we would not descend faster than the player
146     float relSpeed = vy - player_mov.y;
147     if (relSpeed <= 0) return false;
148
149     // guess number of frames to descend to same height as player
150     float estFrames = height / relSpeed;
151
152     // guess where the player would be at this time
153     float estPx = (player_pos.x + (estFrames * player_mov.x));
154
155     // guess where we would be at this time
156     float estBx = (self_pos.x + (estFrames * self_mov.x));
157
158     // near misses are OK, too
159     if (fabsf(estPx - estBx) < 8) return true;
160   }
161
162   // update last player tracked, as well as our positions
163   last_player = player;
164   if (player) {
165     last_player_pos = player->get_pos();
166     last_self_pos = this->get_pos();
167   }
168
169   return false;
170 }
171
172 void
173 Zeekling::active_update(float elapsed_time) {
174   if (state == FLYING) {
175     if (should_we_dive()) {
176       state = DIVING;
177       physic.set_velocity_y(2*fabsf(physic.get_velocity_x()));
178       sprite->set_action(dir == LEFT ? "diving-left" : "diving-right");
179     }
180     BadGuy::active_update(elapsed_time);
181     return;
182   } else if (state == DIVING) {
183     BadGuy::active_update(elapsed_time);
184     return;
185   } else if (state == CLIMBING) {
186     // stop climbing when we're back at initial height
187     if (get_pos().y <= start_position.y) {
188       state = FLYING;
189       physic.set_velocity_y(0);
190     }
191     BadGuy::active_update(elapsed_time);
192     return;
193   } else {
194     assert(false);
195   }
196 }
197
198 /* EOF */