c730e182f7b67ab3c7316da52385b7b1d69e0850
[supertux.git] / src / object / hurting_platform.cpp
1 //  $Id: hurtingplatform.cpp 3506 2006-05-12 01:41:09Z sommer $
2 //
3 //  SuperTux - Hurting Platform
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  02111-1307, USA.
19
20 #include <config.h>
21 #include <stdexcept>
22
23 #include "hurting_platform.hpp"
24
25 #include "log.hpp"
26 #include "player.hpp"
27 #include "badguy/badguy.hpp"
28 #include "object_factory.hpp"
29
30 HurtingPlatform::HurtingPlatform(const lisp::Lisp& reader)
31         : Platform(reader)
32 {
33 }
34
35 HitResponse
36 HurtingPlatform::collision(GameObject& other, const CollisionHit& hit)
37 {
38   Player* player = dynamic_cast<Player*>(&other);
39   if (player) {
40     player->kill(false);
41   }
42   BadGuy* badguy = dynamic_cast<BadGuy*>(&other);
43   if (badguy) {
44     badguy->kill_fall();
45   }
46   return Platform::collision(other, hit);
47 }
48
49 IMPLEMENT_FACTORY(HurtingPlatform, "hurting_platform");