Powerup: Iceflower improvements
[supertux.git] / src / badguy / badguy.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 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 #include "badguy/badguy.hpp"
18
19 #include "audio/sound_manager.hpp"
20 #include "object/bullet.hpp"
21 #include "object/player.hpp"
22 #include "supertux/level.hpp"
23 #include "supertux/sector.hpp"
24 #include "supertux/tile.hpp"
25 #include "util/reader.hpp"
26
27 #include <math.h>
28 #include <sstream>
29
30 static const float SQUISH_TIME = 2;
31   
32 static const float X_OFFSCREEN_DISTANCE = 1280;
33 static const float Y_OFFSCREEN_DISTANCE = 800;
34 static const int LAYER_FALLING = 500;
35
36 BadGuy::BadGuy(const Vector& pos, const std::string& sprite_name, int layer) :
37   MovingSprite(pos, sprite_name, layer, COLGROUP_DISABLED), 
38   physic(),
39   countMe(true), 
40   is_initialized(false),
41   start_position(),
42   dir(LEFT), 
43   start_dir(AUTO), 
44   frozen(false), 
45   ignited(false),
46   dead_script(),
47   state(STATE_INIT), 
48   is_active_flag(),
49   state_timer(),
50   on_ground_flag(false),
51   floor_normal(),
52   colgroup_active(COLGROUP_MOVING)
53 {
54   start_position = bbox.p1;
55
56   sound_manager->preload("sounds/squish.wav");
57   sound_manager->preload("sounds/fall.wav");
58
59   dir = (start_dir == AUTO) ? LEFT : start_dir;
60 }
61
62 BadGuy::BadGuy(const Vector& pos, Direction direction, const std::string& sprite_name, int layer) :
63   MovingSprite(pos, sprite_name, layer, COLGROUP_DISABLED), 
64   physic(),
65   countMe(true), 
66   is_initialized(false), 
67   start_position(),
68   dir(direction), 
69   start_dir(direction), 
70   frozen(false), 
71   ignited(false),
72   dead_script(),
73   state(STATE_INIT), 
74   is_active_flag(),
75   state_timer(),
76   on_ground_flag(false), 
77   floor_normal(),
78   colgroup_active(COLGROUP_MOVING)
79 {
80   start_position = bbox.p1;
81
82   sound_manager->preload("sounds/squish.wav");
83   sound_manager->preload("sounds/fall.wav");
84
85   dir = (start_dir == AUTO) ? LEFT : start_dir;
86 }
87
88 BadGuy::BadGuy(const Reader& reader, const std::string& sprite_name, int layer) :
89   MovingSprite(reader, sprite_name, layer, COLGROUP_DISABLED), 
90   physic(),
91   countMe(true), 
92   is_initialized(false), 
93   start_position(),
94   dir(LEFT), 
95   start_dir(AUTO),
96   frozen(false), 
97   ignited(false), 
98   dead_script(),
99   state(STATE_INIT), 
100   is_active_flag(),
101   state_timer(),
102   on_ground_flag(false), 
103   floor_normal(),
104   colgroup_active(COLGROUP_MOVING)
105 {
106   start_position = bbox.p1;
107
108   std::string dir_str = "auto";
109   reader.get("direction", dir_str);
110   start_dir = str2dir( dir_str );
111   dir = start_dir;
112
113   reader.get("dead-script", dead_script);
114
115   sound_manager->preload("sounds/squish.wav");
116   sound_manager->preload("sounds/fall.wav");
117
118   dir = (start_dir == AUTO) ? LEFT : start_dir;
119 }
120
121 void
122 BadGuy::draw(DrawingContext& context)
123 {
124   if(!sprite.get())
125     return;
126   if(state == STATE_INIT || state == STATE_INACTIVE)
127     return;
128   if(state == STATE_FALLING) {
129     DrawingEffect old_effect = context.get_drawing_effect();
130     context.set_drawing_effect((DrawingEffect) (old_effect | VERTICAL_FLIP));
131     sprite->draw(context, get_pos(), layer);
132     context.set_drawing_effect(old_effect);
133   } else {
134     sprite->draw(context, get_pos(), layer);
135   }
136 }
137
138 void
139 BadGuy::update(float elapsed_time)
140 {
141   if(!Sector::current()->inside(bbox)) {
142     is_active_flag = false;
143     remove_me();
144     if(countMe) {
145       // get badguy name from sprite_name ignoring path and extension
146       std::string badguy = sprite_name.substr(0, sprite_name.length() - 7);
147       int path_chars = badguy.rfind("/",badguy.length());
148       badguy = badguy.substr(path_chars + 1, badguy.length() - path_chars);
149       // log warning since badguys_killed can no longer reach total_badguys
150       std::string current_level = "[" + Sector::current()->get_level()->filename + "] ";
151       log_warning << current_level << "Counted badguy " << badguy << " starting at " << start_position << " has left the sector" <<std::endl;;
152     }
153     return;
154   }
155   if ((state != STATE_INACTIVE) && is_offscreen()) {
156     if (state == STATE_ACTIVE) deactivate();
157     set_state(STATE_INACTIVE);
158   }
159
160   switch(state) {
161     case STATE_ACTIVE:
162       is_active_flag = true;
163       active_update(elapsed_time);
164       break;
165     case STATE_INIT:
166     case STATE_INACTIVE:
167       is_active_flag = false;
168       inactive_update(elapsed_time);
169       try_activate();
170       break;
171     case STATE_SQUISHED:
172       is_active_flag = false;
173       if(state_timer.check()) {
174         remove_me();
175         break;
176       }
177       movement = physic.get_movement(elapsed_time);
178       break;
179     case STATE_FALLING:
180       is_active_flag = false;
181       movement = physic.get_movement(elapsed_time);
182       break;
183   }
184
185   on_ground_flag = false;
186 }
187
188 Direction
189 BadGuy::str2dir( std::string dir_str )
190 {
191   if( dir_str == "auto" )
192     return AUTO;
193   if( dir_str == "left" )
194     return LEFT;
195   if( dir_str == "right" )
196     return RIGHT;
197
198   //default to "auto"
199   log_warning << "Badguy::str2dir: unknown direction \"" << dir_str << "\"" << std::endl;;
200   return AUTO;
201 }
202
203 void
204 BadGuy::initialize()
205 {
206 }
207
208 void
209 BadGuy::activate()
210 {
211 }
212
213 void
214 BadGuy::deactivate()
215 {
216 }
217
218 void
219 BadGuy::active_update(float elapsed_time)
220 {
221   movement = physic.get_movement(elapsed_time);
222   if(frozen)
223     sprite->stop_animation();
224 }
225
226 void
227 BadGuy::inactive_update(float )
228 {
229 }
230
231 void
232 BadGuy::collision_tile(uint32_t tile_attributes)
233 {
234   // Don't kill badguys that have already been killed
235   if (!is_active()) return;
236
237   if(tile_attributes & Tile::HURTS) {
238     if (tile_attributes & Tile::FIRE) {
239       if (is_flammable()) ignite();
240     }
241     else if (tile_attributes & Tile::ICE) {
242       if (is_freezable()) freeze();
243     }
244     else {
245       kill_fall();
246     }
247   }
248 }
249
250 HitResponse
251 BadGuy::collision(GameObject& other, const CollisionHit& hit)
252 {
253   if (!is_active()) return ABORT_MOVE;
254
255   BadGuy* badguy = dynamic_cast<BadGuy*> (&other);
256   if(badguy && badguy->is_active() && badguy->get_group() == COLGROUP_MOVING) {
257
258     /* Badguys don't let badguys squish other badguys. It's bad. */
259 #if 0
260     // hit from above?
261     if (badguy->get_bbox().p2.y < (bbox.p1.y + 16)) {
262       if(collision_squished(*badguy)) {
263         return ABORT_MOVE;
264       }
265     }
266 #endif
267
268     return collision_badguy(*badguy, hit);
269   }
270
271   Player* player = dynamic_cast<Player*> (&other);
272   if(player) {
273
274     // hit from above?
275     if (player->get_bbox().p2.y < (bbox.p1.y + 16)) {
276       if(collision_squished(*player)) {
277         return FORCE_MOVE;
278       }
279     }
280
281     return collision_player(*player, hit);
282   }
283
284   Bullet* bullet = dynamic_cast<Bullet*> (&other);
285   if(bullet)
286     return collision_bullet(*bullet, hit);
287
288   return FORCE_MOVE;
289 }
290
291 void
292 BadGuy::collision_solid(const CollisionHit& hit)
293 {
294   physic.set_velocity_x(0);
295   physic.set_velocity_y(0);
296   update_on_ground_flag(hit);
297 }
298
299 HitResponse
300 BadGuy::collision_player(Player& player, const CollisionHit& )
301 {
302   if(player.is_invincible()) {
303     kill_fall();
304     return ABORT_MOVE;
305   }
306
307   //TODO: unfreeze timer
308   if(frozen)
309     //unfreeze();
310     return FORCE_MOVE;
311
312   player.kill(false);
313   return FORCE_MOVE;
314 }
315
316 HitResponse
317 BadGuy::collision_badguy(BadGuy& , const CollisionHit& )
318 {
319   return FORCE_MOVE;
320 }
321
322 bool
323 BadGuy::collision_squished(GameObject& )
324 {
325   return false;
326 }
327
328 HitResponse
329 BadGuy::collision_bullet(Bullet& bullet, const CollisionHit& hit)
330 {
331   if (is_frozen()) {
332     if(bullet.get_type() == FIRE_BONUS) {
333       // fire bullet thaws frozen badguys
334       unfreeze();
335       bullet.remove_me();
336       return ABORT_MOVE;
337     } else {
338       // other bullets ricochet
339       bullet.ricochet(*this, hit);
340       return FORCE_MOVE;
341     }
342   }
343   else if (is_ignited()) {
344     if(bullet.get_type() == ICE_BONUS) {
345       // ice bullets extinguish ignited badguys
346       extinguish();
347       bullet.remove_me();
348       return ABORT_MOVE;
349     } else {
350       // other bullets are absorbed by ignited badguys
351       bullet.remove_me();
352       return FORCE_MOVE;
353     }
354   }
355   else if(bullet.get_type() == FIRE_BONUS && is_flammable()) {
356     // fire bullets ignite flammable badguys
357     ignite();
358     bullet.remove_me();
359     return ABORT_MOVE;
360   }
361   else if(bullet.get_type() == ICE_BONUS && is_freezable()) {
362     // ice bullets freeze freezable badguys
363     freeze();
364     bullet.remove_me();
365     return ABORT_MOVE;
366   }
367   else {
368     // in all other cases, bullets ricochet
369     bullet.ricochet(*this, hit);
370     return FORCE_MOVE;
371   }
372 }
373
374 void
375 BadGuy::kill_squished(GameObject& object)
376 {
377   if (!is_active()) return;
378
379   sound_manager->play("sounds/squish.wav", get_pos());
380   physic.enable_gravity(true);
381   physic.set_velocity_x(0);
382   physic.set_velocity_y(0);
383   set_state(STATE_SQUISHED);
384   set_group(COLGROUP_MOVING_ONLY_STATIC);
385   Player* player = dynamic_cast<Player*>(&object);
386   if (player) {
387     player->bounce(*this);
388   }
389
390   // start dead-script
391   run_dead_script();
392 }
393
394 void
395 BadGuy::kill_fall()
396 {
397   if (!is_active()) return;
398
399   sound_manager->play("sounds/fall.wav", get_pos());
400   physic.set_velocity_y(0);
401   physic.set_acceleration_y(0);
402   physic.enable_gravity(true);
403   set_state(STATE_FALLING);
404   layer = LAYER_FALLING;
405
406   // start dead-script
407   run_dead_script();
408 }
409
410 void
411 BadGuy::run_dead_script()
412 {
413   if (countMe)
414     Sector::current()->get_level()->stats.badguys++;
415
416   countMe = false;
417    
418   // start dead-script
419   if(dead_script != "") {
420     std::istringstream stream(dead_script);
421     Sector::current()->run_script(stream, "dead-script");
422   }
423 }
424
425 void
426 BadGuy::set_state(State state)
427 {
428   if(this->state == state)
429     return;
430
431   State laststate = this->state;
432   this->state = state;
433   switch(state) {
434     case STATE_SQUISHED:
435       state_timer.start(SQUISH_TIME);
436       break;
437     case STATE_ACTIVE:
438       set_group(colgroup_active);
439       //bbox.set_pos(start_position);
440       break;
441     case STATE_INACTIVE:
442       // was the badguy dead anyway?
443       if(laststate == STATE_SQUISHED || laststate == STATE_FALLING) {
444         remove_me();
445       }
446       set_group(COLGROUP_DISABLED);
447       break;
448     case STATE_FALLING:
449       set_group(COLGROUP_DISABLED);
450       break;
451     default:
452       break;
453   }
454 }
455
456 bool
457 BadGuy::is_offscreen()
458 {
459   Player* player = get_nearest_player();
460   if (!player) return false;
461   Vector dist = player->get_bbox().get_middle() - get_bbox().get_middle();
462   // In SuperTux 0.1.x, Badguys were activated when Tux<->Badguy center distance was approx. <= ~668px
463   // This doesn't work for wide-screen monitors which give us a virt. res. of approx. 1066px x 600px
464   if ((fabsf(dist.x) <= X_OFFSCREEN_DISTANCE) && (fabsf(dist.y) <= Y_OFFSCREEN_DISTANCE)) {
465     return false;
466   }
467   return true;
468 }
469
470 void
471 BadGuy::try_activate()
472 {
473   // Don't activate if player is dying
474   Player* player = get_nearest_player();
475   if (!player) return;
476
477   if (!is_offscreen()) {
478     set_state(STATE_ACTIVE);
479     if (!is_initialized) {
480
481       // if starting direction was set to AUTO, this is our chance to re-orient the badguy
482       if (start_dir == AUTO) {
483         Player* player = get_nearest_player();
484         if (player && (player->get_bbox().p1.x > get_bbox().p2.x)) {
485           dir = RIGHT;
486         } else {
487           dir = LEFT;
488         }
489       }
490
491       initialize();
492       is_initialized = true;
493     }
494     activate();
495   }
496 }
497
498 bool
499 BadGuy::might_fall(int height)
500 {
501   // make sure we check for at least a 1-pixel fall
502   assert(height > 0);
503
504   float x1;
505   float x2;
506   float y1 = bbox.p2.y + 1;
507   float y2 = bbox.p2.y + 1 + height;
508   if (dir == LEFT) {
509     x1 = bbox.p1.x - 1;
510     x2 = bbox.p1.x;
511   } else {
512     x1 = bbox.p2.x;
513     x2 = bbox.p2.x + 1;
514   }
515   return Sector::current()->is_free_of_statics(Rectf(x1, y1, x2, y2));
516 }
517
518 Player*
519 BadGuy::get_nearest_player()
520 {
521   return Sector::current()->get_nearest_player (this->get_bbox ());
522 }
523
524 void
525 BadGuy::update_on_ground_flag(const CollisionHit& hit)
526 {
527   if (hit.bottom) {
528     on_ground_flag = true;
529     floor_normal = hit.slope_normal;
530   }
531 }
532
533 bool
534 BadGuy::on_ground()
535 {
536   return on_ground_flag;
537 }
538
539 bool
540 BadGuy::is_active()
541 {
542   return is_active_flag;
543 }
544
545 Vector
546 BadGuy::get_floor_normal()
547 {
548   return floor_normal;
549 }
550
551 void
552 BadGuy::freeze()
553 {
554   set_group(COLGROUP_MOVING_STATIC);
555   frozen = true;
556
557   if(sprite->has_action("iced-left"))
558     sprite->set_action(dir == LEFT ? "iced-left" : "iced-right", 1);
559   // when no iced action exists, default to shading badguy blue
560   else
561   {
562     sprite->set_color(Color(0.60, 0.72, 0.88f));
563     sprite->stop_animation();
564   }
565 }
566
567 void
568 BadGuy::unfreeze()
569 {
570   set_group(colgroup_active);
571   frozen = false;
572
573   // restore original color if needed
574   if(!sprite->has_action("iced-left"))
575   {
576     sprite->set_color(Color(1.00, 1.00, 1.00f));
577     sprite->set_animation_loops();
578   }
579 }
580
581 bool
582 BadGuy::is_freezable() const
583 {
584   return false;
585 }
586
587 bool
588 BadGuy::is_frozen() const
589 {
590   return frozen;
591 }
592
593 void
594 BadGuy::ignite()
595 {
596   kill_fall();
597 }
598
599 void
600 BadGuy::extinguish()
601 {
602 }
603
604 bool
605 BadGuy::is_flammable() const
606 {
607   return true;
608 }
609
610 bool
611 BadGuy::is_ignited() const
612 {
613   return ignited;
614 }
615   
616 void 
617 BadGuy::set_colgroup_active(CollisionGroup group)
618 {
619   this->colgroup_active = group;
620   if (state == STATE_ACTIVE) set_group(group); 
621 }
622
623 /* EOF */