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