fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / object / rock.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 "rock.hpp"
23 #include "lisp/writer.hpp"
24 #include "object_factory.hpp"
25 #include "audio/sound_manager.hpp"
26
27 namespace {
28   const std::string ROCK_SOUND = "sounds/brick.wav"; //TODO use own sound.
29 }
30
31 Rock::Rock(const lisp::Lisp& reader)
32         : MovingSprite(reader, "images/objects/rock/rock.sprite")
33 {
34   sound_manager->preload( ROCK_SOUND );
35   on_ground = false;
36   grabbed = false;
37   flags |= FLAG_SOLID | FLAG_PORTABLE;
38 }
39
40 void
41 Rock::write(lisp::Writer& writer)
42 {
43   writer.start_list("rock");
44
45   writer.write_float("x", bbox.p1.x);
46   writer.write_float("y", bbox.p1.y);
47
48   writer.end_list("rock");
49 }
50
51 void
52 Rock::update(float elapsed_time)
53 {
54   if( grabbed )
55     return;
56
57   movement = physic.get_movement(elapsed_time);
58 }
59
60 void
61 Rock::collision_solid(const CollisionHit& hit)
62 {
63   if( hit.top || hit.bottom )
64     physic.set_velocity_y( 0 );
65   if( hit.left || hit.right )
66     physic.set_velocity_x( 0 );
67   if( hit.crush )
68     physic.set_velocity(0, 0);
69
70   if( hit.bottom  && !on_ground ){
71     sound_manager->play( ROCK_SOUND, get_pos() );
72     on_ground = true;
73   }
74 }
75
76 HitResponse
77 Rock::collision(GameObject& other, const CollisionHit& hit)
78 {
79   if( !on_ground ){
80       return FORCE_MOVE;
81   }
82
83   //Fake being solid for moving_object.
84   MovingObject* moving_object = dynamic_cast<MovingObject*> (&other);
85   if( moving_object ){
86       if( hit.top ){
87         float inside = moving_object->get_bbox().get_bottom() - get_bbox().get_top();
88         if( inside > 0 ){
89           Vector pos = moving_object->get_pos();
90           pos.y -= inside;
91           moving_object->set_pos( pos );
92         }
93       }
94       CollisionHit hit_other = hit;
95       std::swap(hit_other.left, hit_other.right);
96       std::swap(hit_other.top, hit_other.bottom);
97       moving_object->collision_solid( hit_other );
98   }
99   return FORCE_MOVE;
100 }
101
102 void
103 Rock::grab(MovingObject& , const Vector& pos, Direction)
104 {
105   movement = pos - get_pos();
106   set_group( COLGROUP_DISABLED );
107   on_ground = true;
108   grabbed = true;
109
110 }
111
112 void
113 Rock::ungrab(MovingObject& , Direction ){
114   set_group( COLGROUP_MOVING );
115   on_ground = false;
116   physic.set_velocity(0, 0);
117   grabbed = false;
118 }
119
120 IMPLEMENT_FACTORY(Rock, "rock");