3d3a539e05c73a59a6422d423634e868606310c4
[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   }
88 }
89
90 void 
91 Zeekling::onBumpVertical() {
92   if (state == FLYING) {
93     physic.set_velocity_y(0);
94   } else
95   if (state == DIVING) {
96     state = CLIMBING;
97     physic.set_velocity_y(-speed);
98     sprite->set_action(dir == LEFT ? "left" : "right");
99   } else
100   if (state == CLIMBING) {
101     state = FLYING;
102     physic.set_velocity_y(0);
103   }
104 }
105
106 HitResponse
107 Zeekling::collision_solid(GameObject& , const CollisionHit& hit)
108 {
109   if(fabsf(hit.normal.y) > .5) {
110     onBumpVertical(); 
111   } else {
112     onBumpHorizontal();
113   }
114
115   return CONTINUE;
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   BadGuy::active_update(elapsed_time);
163
164   if (state == FLYING) {
165     if (should_we_dive()) {
166       state = DIVING;
167       physic.set_velocity_y(2*fabsf(physic.get_velocity_x()));
168       sprite->set_action(dir == LEFT ? "diving-left" : "diving-right");
169     }
170     return;
171   }
172
173   if (state == DIVING) {
174     return;
175   }
176
177   if (state == CLIMBING) {
178     // stop climbing when we're back at initial height
179     if (get_pos().y <= start_position.y) {
180       state = FLYING;
181       physic.set_velocity_y(0);
182     }
183     return;
184   }
185
186 }
187
188 IMPLEMENT_FACTORY(Zeekling, "zeekling")