[ Patch #1793 ] Turn physic into POD
[supertux.git] / src / badguy / plant.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 "plant.hpp"
23
24 static const float WALKSPEED = 80;
25 static const float WAKE_TIME = .5;
26
27 Plant::Plant(const lisp::Lisp& reader)
28         : BadGuy(reader, "images/creatures/plant/plant.sprite")
29 {
30   state = PLANT_SLEEPING;
31 }
32
33 void
34 Plant::write(lisp::Writer& writer)
35 {
36   writer.start_list("plant");
37
38   writer.write_float("x", start_position.x);
39   writer.write_float("y", start_position.y);
40
41   writer.end_list("plant");
42 }
43
44 void
45 Plant::activate()
46 {
47   //FIXME: turns sspiky around for debugging
48   dir = dir == LEFT ? RIGHT : LEFT;
49
50   state = PLANT_SLEEPING;
51   physic.vx = 0;
52   sprite->set_action(dir == LEFT ? "sleeping-left" : "sleeping-right");
53 }
54
55 void
56 Plant::collision_solid(const CollisionHit& hit)
57 {
58   if(hit.top || hit.bottom) {
59     physic.vy = 0;
60   } else if(hit.left || hit.right) {
61     dir = dir == LEFT ? RIGHT : LEFT;
62     sprite->set_action(dir == LEFT ? "left" : "right");
63     physic.vx = -physic.vx;
64   }
65 }
66
67 HitResponse
68 Plant::collision_badguy(BadGuy& , const CollisionHit& hit)
69 {
70   if(state != PLANT_WALKING) return CONTINUE;
71
72   if(hit.left || hit.right) {
73     dir = dir == LEFT ? RIGHT : LEFT;
74     sprite->set_action(dir == LEFT ? "left" : "right");
75     physic.vx = -physic.vx;
76   }
77
78   return CONTINUE;
79 }
80
81 void
82 Plant::active_update(float elapsed_time) {
83   BadGuy::active_update(elapsed_time);
84
85   if(state == PLANT_SLEEPING) {
86
87     Player* player = this->get_nearest_player();
88     if (player) {
89       Rect mb = this->get_bbox();
90       Rect pb = player->get_bbox();
91
92       bool inReach_left = (pb.p2.x >= mb.p2.x-((dir == LEFT) ? 256 : 0));
93       bool inReach_right = (pb.p1.x <= mb.p1.x+((dir == RIGHT) ? 256 : 0));
94       bool inReach_top = (pb.p2.y >= mb.p2.y);
95       bool inReach_bottom = (pb.p1.y <= mb.p1.y);
96
97       if (inReach_left && inReach_right && inReach_top && inReach_bottom) {
98         // wake up
99         sprite->set_action(dir == LEFT ? "waking-left" : "waking-right");
100         if(!timer.started()) timer.start(WAKE_TIME);
101         state = PLANT_WAKING;
102       }
103     }
104   }
105
106   if(state == PLANT_WAKING) {
107     if(timer.check()) {
108       // start walking
109       sprite->set_action(dir == LEFT ? "left" : "right");
110       physic.vx = (dir == LEFT ? -WALKSPEED : WALKSPEED);
111       state = PLANT_WALKING;
112     }
113   }
114
115 }
116
117 IMPLEMENT_FACTORY(Plant, "plant")