more fixes
[supertux.git] / src / special.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.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 #ifndef SUPERTUX_SPECIAL_H
21 #define SUPERTUX_SPECIAL_H
22
23 #include "SDL.h"
24
25 #include "bitmask.h"
26 #include "special/base.h"
27 #include "video/surface.h"
28 #include "collision.h"
29 #include "player.h"
30 #include "math/physic.h"
31
32 /* Upgrade types: */
33
34 enum UpgradeKind {
35   UPGRADE_GROWUP,
36   UPGRADE_FIREFLOWER,
37   UPGRADE_ICEFLOWER,
38   UPGRADE_STAR,
39   UPGRADE_1UP
40 };
41
42 void load_special_gfx();
43 void free_special_gfx();
44
45 class Upgrade : public MovingObject
46 {
47 public:
48   UpgradeKind kind;
49   Direction  dir;
50   Physic physic;
51
52   Upgrade(const Vector& pos, Direction dir, UpgradeKind kind);
53   virtual ~Upgrade();
54   
55   virtual void action(float frame_ratio);
56   virtual void draw(DrawingContext& context);
57
58   virtual void collision(const MovingObject& other, int);
59   void collision(void* p_c_object, int c_object, CollisionType type);
60
61 private:
62   void bump(Player* player);
63 };
64
65 enum BulletsKind {
66   FIRE_BULLET,
67   ICE_BULLET
68 };
69
70 class Bullet : public MovingObject
71 {
72 public:
73   Bullet(const Vector& pos, float xm, int dir,
74       int kind);
75   
76   virtual void action(float frame_ratio);
77   virtual void draw(DrawingContext& context);
78   void collision(int c_object);
79
80   virtual void collision(const MovingObject& other_object, int type);
81
82   int kind;        
83   
84 private:
85   int life_count;
86   Physic physic;
87 };
88
89 #endif /*SUPERTUX_SPECIAL_H*/