Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / object / unstable_tile.cpp
1 //  SuperTux - Unstable Tile
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "object/unstable_tile.hpp"
19
20 #include "object/player.hpp"
21 #include "sprite/sprite.hpp"
22 #include "supertux/constants.hpp"
23 #include "supertux/object_factory.hpp"
24
25 UnstableTile::UnstableTile(const Reader& lisp)
26   : MovingSprite(lisp, LAYER_TILES, COLGROUP_STATIC), state(STATE_NORMAL)
27 {
28   sprite->set_action("normal");
29 }
30
31 HitResponse
32 UnstableTile::collision(GameObject& other, const CollisionHit& )
33 {
34   if(state == STATE_NORMAL) {
35     Player* player = dynamic_cast<Player*> (&other);
36     if(player != NULL &&
37        player->get_bbox().get_bottom() < get_bbox().get_top() + SHIFT_DELTA) {
38       state = STATE_CRUMBLING;
39       sprite->set_action("crumbling", 1);
40     }
41   }
42   return SOLID;
43 }
44
45 void
46 UnstableTile::update(float elapsed_time)
47 {
48   switch (state) {
49
50     case STATE_NORMAL:
51       break;
52
53     case STATE_CRUMBLING:
54       if (sprite->animation_done()) {
55         state = STATE_DISINTEGRATING;
56         sprite->set_action("disintegrating", 1);
57         set_group(COLGROUP_DISABLED);
58         physic.enable_gravity(true);
59       }
60       break;
61
62     case STATE_DISINTEGRATING:
63       movement = physic.get_movement(elapsed_time);
64       if (sprite->animation_done()) {
65         remove_me();
66         return;
67       }
68       break;
69   }
70 }
71
72 IMPLEMENT_FACTORY(UnstableTile, "unstable_tile");
73
74 /* EOF */