f5bb95b64d8ba4b98f007bf476a5c6ad90950568
[supertux.git] / src / badguy / mole_rock.hpp
1 //  $Id$
2 //
3 //  MoleRock - Rock thrown by "Mole" 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
21 #ifndef __MOLE_ROCK_H__
22 #define __MOLE_ROCK_H__
23
24 #include "badguy.hpp"
25
26 /**
27  * Badguy "MoleRock" - Rock thrown by "Mole" Badguy
28  */
29 class MoleRock : public BadGuy
30 {
31 public:
32   MoleRock(const lisp::Lisp& reader);
33   MoleRock(const Vector& pos, const Vector& velocity, const BadGuy* parent);
34   MoleRock(const MoleRock& mole_rock);
35   ~MoleRock();
36
37   void initialize();
38   void deactivate();
39   void write(lisp::Writer& writer);
40
41   void active_update(float elapsed_time);
42
43   void collision_solid(const CollisionHit& hit);
44   HitResponse collision_badguy(BadGuy& badguy, const CollisionHit& hit);
45   HitResponse collision_player(Player& player, const CollisionHit& hit);
46
47   virtual MoleRock* clone() const { return new MoleRock(*this); }
48
49   virtual bool updatePointers(const GameObject* from_object, GameObject* to_object);
50
51 protected:
52   const BadGuy* parent; /**< collisions with this BadGuy will be ignored */
53   const Vector initial_velocity; /**< velocity at time of creation */
54 };
55
56 #endif