Moved defines.h out of the library and back to src/.
[supertux.git] / src / badguy.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
6 //  Copyright (C) 2004 Matthias Braun <matze@braunis.de>
7 //
8 //  This program is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU General Public License
10 //  as published by the Free Software Foundation; either version 2
11 //  of the License, or (at your option) any later version.
12 //
13 //  This program is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 //  GNU General Public License for more details.
17 // 
18 //  You should have received a copy of the GNU General Public License
19 //  along with this program; if not, write to the Free Software
20 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 //  02111-1307, USA.
22
23 #ifndef SUPERTUX_BADGUY_H
24 #define SUPERTUX_BADGUY_H
25
26 #include "SDL.h"
27
28 #include "special/timer.h"
29 #include "video/surface.h"
30 #include "math/physic.h"
31 #include "special/sprite.h"
32 #include "defines.h"
33 #include "special/moving_object.h"
34 #include "collision.h"
35 #include "serializable.h"
36 #include "scene.h"
37
38 using namespace SuperTux;
39
40 /* Timing constants (in ms): */
41
42 #define KICKING_TIME 200
43
44 /* Bad guy kinds: */
45 enum BadGuyKind {
46   BAD_MRICEBLOCK,
47   BAD_JUMPY,
48   BAD_MRBOMB,
49   BAD_BOMB,
50   BAD_STALACTITE,
51   BAD_FLAME,
52   BAD_FISH,
53   BAD_BOUNCINGSNOWBALL,
54   BAD_FLYINGSNOWBALL,
55   BAD_SPIKY,
56   BAD_SNOWBALL,
57   BAD_WINGLING,
58   BAD_WALKINGTREE,
59   NUM_BadGuyKinds,
60
61   BAD_INVALID
62 };
63
64 BadGuyKind  badguykind_from_string(const std::string& str);
65 std::string badguykind_to_string(BadGuyKind kind);
66 void load_badguy_gfx();
67 void free_badguy_gfx();
68
69 class Player;
70
71 /* Badguy type: */
72 class BadGuy : public MovingObject, public Serializable
73 {
74 public:
75   /* Enemy modes: */
76   enum BadGuyMode {
77     NORMAL=0,
78     FLAT,
79     KICK,
80     HELD,
81
82     JUMPY_JUMP,
83
84     BOMB_TICKING,
85     BOMB_EXPLODE,
86
87     STALACTITE_SHAKING,
88     STALACTITE_FALL,
89
90     FISH_WAIT,
91
92     FLY_UP,
93     FLY_DOWN,
94
95     BGM_BIG,
96     BGM_SMALL
97   };
98 public:
99   DyingType  dying;
100   BadGuyKind kind;
101   BadGuyMode mode;
102
103   /** If true the enemy will stay on its current platform, ie. if he
104       reaches the edge he will turn around and walk into the other
105       direction, if false the enemy will jump or walk of the edge */
106   bool stay_on_platform;
107
108   Direction dir;
109   Vector start_position;
110
111   Timer frozen_timer;  // gets frozen when a ice shot hits it
112
113 private:
114   bool removable;
115   bool seen;
116   int squishcount; /// number of times this enemy was squiched
117   Vector target; // Target that badguy is aiming for (wingling uses this)
118   Timer timer;
119   Physic physic;
120   float angle;
121
122   Sprite*   sprite_left;
123   Sprite*   sprite_right;
124
125   int animation_offset;
126
127 public:
128   BadGuy(BadGuyKind kind, float x, float y);
129   BadGuy(BadGuyKind kind, LispReader& reader);
130   virtual ~BadGuy();
131
132   virtual void write(LispWriter& writer);
133
134   virtual void action(float frame_ratio);
135   virtual void draw(DrawingContext& context);
136   virtual void collision(const MovingObject& other, int type);
137
138   void collision(void* p_c_object, int c_object,
139                  CollisionType type = COLLISION_NORMAL);
140
141   /** this functions tries to kill the badguy and lets him fall off the
142    * screen. Some badguys like the flame might ignore this.
143    */
144   void kill_me(int score);
145
146   /** initializes the badguy (when he appears on screen) */
147   void activate(Direction direction);  // should only be used by BadGuy's objects
148
149   Surface* get_image()
150     { return sprite_left->get_frame(0); }
151
152 private:
153   void init();
154   
155   void action_mriceblock(double frame_ratio);
156   void action_jumpy(double frame_ratio); 
157   void action_bomb(double frame_ratio);
158   void action_mrbomb(double frame_ratio);
159   void action_stalactite(double frame_ratio);
160   void action_flame(double frame_ratio);
161   void action_fish(double frame_ratio);
162   void action_bouncingsnowball(double frame_ratio);
163   void action_flyingsnowball(double frame_ratio);
164   void action_spiky(double frame_ratio);
165   void action_snowball(double frame_ratio);
166   void action_wingling(double frame_ratio);
167   void action_walkingtree(double frame_ratio);
168
169   /** handles falling down. disables gravity calculation when we're back on
170    * ground */
171   void fall();
172
173   /** Turn enemy into a bomb. To explode right way pass true */
174   void explode(bool right_away);
175
176   /** check if we're running left or right in a wall and eventually change
177    * direction
178    */
179   void check_horizontal_bump(bool checkcliff = false);
180   /** called when we're bumped from below with a block */
181   void bump();
182   /** called when a player jumped on the badguy from above */
183   void squish(Player* player);
184   /** squish ourself, give player score and set dying to DYING_SQICHED */
185   void squish_me(Player* player);
186   /** set image of the badguy */
187   void set_sprite(Sprite* left, Sprite* right);
188 };
189
190 #endif /*SUPERTUX_BADGUY_H*/
191
192 /* Local Variables: */
193 /* mode:c++ */
194 /* End: */
195