fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / badguy / flyingsnowball.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 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
20 #include <config.h>
21
22 #include <stdio.h>
23
24 #include "flyingsnowball.hpp"
25 #include "random_generator.hpp"
26 #include "object/sprite_particle.hpp"
27
28 static const float FLYTIME = 1.0;
29 static const float FLYSPEED = -100.0;
30
31 namespace {
32   const float PUFF_PROBABILITY = 0.1; /**< chanche of puffs being spawned in the current cycle */
33   const float PUFF_INTERVAL_MIN = 0.1; /**< spawn new puff of smoke at most that often */
34   const float PUFF_INTERVAL_MAX = 1.1; /**< spawn new puff of smoke at least that often */
35 }
36
37 FlyingSnowBall::FlyingSnowBall(const lisp::Lisp& reader)
38         : BadGuy(reader, "images/creatures/flying_snowball/flying_snowball.sprite")
39 {
40   physic.enable_gravity(false);
41 }
42
43 FlyingSnowBall::FlyingSnowBall(const Vector& pos)
44         : BadGuy(pos, "images/creatures/flying_snowball/flying_snowball.sprite")
45 {
46   physic.enable_gravity(false);
47 }
48
49 void
50 FlyingSnowBall::write(lisp::Writer& writer)
51 {
52   writer.start_list("flyingsnowball");
53
54   writer.write_float("x", start_position.x);
55   writer.write_float("y", start_position.y);
56
57   writer.end_list("flyingsnowball");
58 }
59
60 void
61 FlyingSnowBall::activate()
62 {
63   sprite->set_action(dir == LEFT ? "left" : "right");
64   mode = FLY_UP;
65   physic.set_velocity_y(FLYSPEED);
66   timer.start(FLYTIME/2);
67   puff_timer.start(systemRandom.randf(PUFF_INTERVAL_MIN, PUFF_INTERVAL_MAX));
68 }
69
70 bool
71 FlyingSnowBall::collision_squished(Player& player)
72 {
73   sprite->set_action(dir == LEFT ? "squished-left" : "squished-right");
74   kill_squished(player);
75   return true;
76 }
77
78 void
79 FlyingSnowBall::collision_solid(const CollisionHit& hit)
80 {
81   if(hit.top || hit.bottom) {
82     physic.set_velocity_y(0);
83   }
84 }
85
86 void
87 FlyingSnowBall::active_update(float elapsed_time)
88 {
89   if(timer.check()) {
90     if(mode == FLY_UP) {
91       mode = FLY_DOWN;
92       physic.set_velocity_y(-FLYSPEED);
93
94       // stop puffing
95       puff_timer.stop();
96
97     } else if(mode == FLY_DOWN) {
98       mode = FLY_UP;
99       physic.set_velocity_y(FLYSPEED);
100
101       // roll a dice whether to start puffing
102       if (systemRandom.randf(0, 1) < PUFF_PROBABILITY) {
103         puff_timer.start(systemRandom.randf(PUFF_INTERVAL_MIN, PUFF_INTERVAL_MAX));
104       }
105
106     }
107     timer.start(FLYTIME);
108   }
109   movement=physic.get_movement(elapsed_time);
110
111   Player* player = this->get_nearest_player();
112   if (player) {
113     dir = (player->get_pos().x > get_pos().x) ? RIGHT : LEFT;
114     sprite->set_action(dir == LEFT ? "left" : "right");
115   }
116
117   // spawn smoke puffs
118   if (puff_timer.check()) {
119     Vector ppos = bbox.get_middle();
120     Vector pspeed = Vector(systemRandom.randf(-10, 10), 150);
121     Vector paccel = Vector(0,0);
122     Sector::current()->add_object(new SpriteParticle("images/objects/particles/smoke.sprite", "default", ppos, ANCHOR_MIDDLE, pspeed, paccel, LAYER_OBJECTS-1));
123     puff_timer.start(systemRandom.randf(PUFF_INTERVAL_MIN, PUFF_INTERVAL_MAX));
124   }
125 }
126
127 IMPLEMENT_FACTORY(FlyingSnowBall, "flyingsnowball")