0fb6dc3ecd77df7837eb8f2363d1bbdaa0aecf2d
[supertux.git] / src / badguy / dart.hpp
1 //  $Id$
2 //
3 //  Dart - Your average poison dart
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 __DART_H__
22 #define __DART_H__
23
24 #include "badguy.hpp"
25
26 /**
27  * Badguy "Dart" - Your average poison dart
28  */
29 class Dart : public BadGuy
30 {
31 public:
32   Dart(const lisp::Lisp& reader);
33   Dart(const Vector& pos, Direction d, const BadGuy* parent);
34   Dart(const Dart& dart);
35   ~Dart();
36
37   void initialize();
38   void activate();
39   void deactivate();
40   void write(lisp::Writer& writer);
41
42   void active_update(float elapsed_time);
43
44   void collision_solid(const CollisionHit& hit);
45   HitResponse collision_badguy(BadGuy& badguy, const CollisionHit& hit);
46   HitResponse collision_player(Player& player, const CollisionHit& hit);
47
48   virtual Dart* clone() const { return new Dart(*this); }
49
50   virtual bool updatePointers(const GameObject* from_object, GameObject* to_object);
51
52 protected:
53   const BadGuy* parent; /**< collisions with this BadGuy will be ignored */
54   std::auto_ptr<SoundSource> sound_source; /**< SoundSource for ambient sound */
55 };
56
57 #endif