Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[supertux.git] / src / badguy / willowisp.cpp
1 //  $Id$
2 // 
3 //  SuperTux - "Will-O-Wisp" Badguy
4 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.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
19 //  02111-1307, USA.
20 #include <config.h>
21
22 #include "willowisp.hpp"
23 #include "log.hpp"
24 #include "game_session.hpp"
25
26 static const float FLYSPEED = 64; /**< speed in px per second */
27 static const float TRACK_RANGE = 384; /**< at what distance to start tracking the player */
28 static const float VANISH_RANGE = 512; /**< at what distance to stop tracking and vanish */
29
30 WillOWisp::WillOWisp(const lisp::Lisp& reader)
31   : mystate(STATE_IDLE), target_sector("main"), target_spawnpoint("main"), soundSource(0)
32 {
33   reader.get("x", start_position.x);
34   reader.get("y", start_position.y);
35   reader.get("sector", target_sector);
36   reader.get("spawnpoint", target_spawnpoint);
37
38   bbox.set_size(32, 32);  
39   sprite = sprite_manager->create("images/creatures/willowisp/willowisp.sprite");
40   countMe = false;
41 }
42
43 WillOWisp::~WillOWisp()
44 {
45   delete soundSource;
46 }
47
48 void
49 WillOWisp::write(lisp::Writer& writer)
50 {
51   writer.start_list("willowisp");
52
53   writer.write_float("x", start_position.x);
54   writer.write_float("y", start_position.y);
55   writer.write_string("sector", target_sector);
56   writer.write_string("spawnpoint", target_spawnpoint);
57
58   writer.end_list("willowisp");
59 }
60
61 void
62 WillOWisp::draw(DrawingContext& context)
63 {
64   sprite->draw(context, get_pos(), LAYER_OBJECTS);
65   
66   context.push_target();
67   context.set_target(DrawingContext::LIGHTMAP);
68
69   sprite->draw(context, get_pos(), LAYER_OBJECTS);
70   
71   context.pop_target();
72 }
73
74 void
75 WillOWisp::active_update(float elapsed_time)
76 {
77   Player* player = get_nearest_player();
78   if (!player) return;
79   Vector p1 = this->get_pos() + (this->get_bbox().p2 - this->get_bbox().p1) / 2;
80   Vector p2 = player->get_pos() + (player->get_bbox().p2 - player->get_bbox().p1) / 2;
81   Vector dist = (p2 - p1);
82
83   if (mystate == STATE_IDLE) {
84     if (dist.norm() <= TRACK_RANGE) {
85       mystate = STATE_TRACKING;
86     }
87   }
88   
89   if (mystate == STATE_TRACKING) {
90     if (dist.norm() <= VANISH_RANGE) {
91       Vector dir = dist.unit();
92       movement = dir*elapsed_time*FLYSPEED;
93     } else {
94       mystate = STATE_VANISHING;
95       sprite->set_action("vanishing", 1);
96     }
97     soundSource->set_position(get_pos());
98   }
99
100   if (mystate == STATE_WARPING) {
101     if(sprite->animation_done()) {
102       remove_me();
103     }
104   }
105
106   if (mystate == STATE_VANISHING) {
107     if(sprite->animation_done()) {
108       remove_me();
109     }
110   }
111   
112 }
113
114 void
115 WillOWisp::activate()
116 {
117   sprite->set_action("idle");
118
119   delete soundSource;
120   soundSource = sound_manager->create_sound_source("sounds/willowisp.wav");
121   if(!soundSource) {
122     log_warning << "Couldn't start WillOWisp sound" << std::endl;
123     return;
124   }
125   soundSource->set_position(get_pos());
126   soundSource->set_looping(true);
127   soundSource->set_gain(2.0);
128   soundSource->set_reference_distance(32);
129   soundSource->play();
130 }
131
132 void
133 WillOWisp::deactivate()
134 {
135   delete soundSource;
136   soundSource = 0;
137 }
138
139 void
140 WillOWisp::kill_fall()
141 {
142 }
143
144 HitResponse
145 WillOWisp::collision_player(Player& player, const CollisionHit& ) {
146   if(player.is_invincible()) return ABORT_MOVE;
147
148   if (mystate != STATE_TRACKING) return ABORT_MOVE;
149
150   mystate = STATE_WARPING;
151   sprite->set_action("warping", 1);
152
153   GameSession::current()->respawn(target_sector, target_spawnpoint);
154   sound_manager->play("sounds/warp.wav");
155
156   return CONTINUE;
157 }
158
159 IMPLEMENT_FACTORY(WillOWisp, "willowisp")
160