Added torch code
[supertux.git] / src / badguy / zeekling.hpp
1 //  Zeekling - flyer that swoops down when she spots the player
2 //  Copyright (C) 2005 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 #ifndef HEADER_SUPERTUX_BADGUY_ZEEKLING_HPP
19 #define HEADER_SUPERTUX_BADGUY_ZEEKLING_HPP
20
21 #include "badguy/badguy.hpp"
22
23 class Zeekling : public BadGuy
24 {
25 public:
26   Zeekling(const Reader& reader);
27   Zeekling(const Vector& pos, Direction d);
28
29   void initialize();
30   void collision_solid(const CollisionHit& hit);
31   void active_update(float elapsed_time);
32
33   void freeze();
34   void unfreeze();
35   bool is_freezable() const;
36
37 private:
38   bool collision_squished(GameObject& object);
39   bool should_we_dive();
40   void onBumpHorizontal();
41   void onBumpVertical();
42
43 private:
44   enum ZeeklingState {
45     FLYING,
46     DIVING,
47     CLIMBING
48   };
49
50 private:
51   float speed;
52   Timer diveRecoverTimer;
53   ZeeklingState state;
54   const MovingObject* last_player; /**< last player we tracked */
55   Vector last_player_pos; /**< position we last spotted the player at */
56   Vector last_self_pos; /**< position we last were at */
57
58 private:
59   Zeekling(const Zeekling&);
60   Zeekling& operator=(const Zeekling&);
61 };
62
63 #endif
64
65 /* EOF */