TODO update
[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 #include "bitmask.h"
25 #include "type.h"
26 #include "texture.h"
27 #include "collision.h"
28 #include "player.h"
29 #include "physic.h"
30
31 /* Upgrade types: */
32
33 enum UpgradeKind {
34   UPGRADE_GROWUP,
35   UPGRADE_ICEFLOWER,
36   UPGRADE_HERRING,
37   UPGRADE_1UP
38 };
39
40 void load_special_gfx();
41 void free_special_gfx();
42
43 class Upgrade : public GameObject
44 {
45 public:
46   UpgradeKind kind;
47   Direction  dir;
48   Physic physic;
49
50   void init(float x, float y, Direction dir, UpgradeKind kind);
51   void action(double frame_ratio);
52   void draw();
53   void collision(void* p_c_object, int c_object, CollisionType type);
54   std::string type() { return "Upgrade"; };
55   
56   ~Upgrade() {};
57
58 private:
59   /** removes the Upgrade from the global upgrade list. Note that after this
60    * call the class doesn't exist anymore! So don't use any member variables
61    * anymore then
62    */
63   void remove_me();
64
65   void bump(Player* player);
66 };
67
68 class Bullet : public GameObject
69 {
70  public:
71   int life_count;
72   base_type base;
73   base_type old_base;
74   
75   void init(float x, float y, float xm, Direction dir);
76   void action(double frame_ratio);
77   void draw();
78   void collision(int c_object);
79   std::string type() { return "Bullet"; };
80
81 private:
82   /** removes the Upgrade from the global upgrade list. Note that after this
83    * call the class doesn't exist anymore! So don't use any member variables
84    * anymore then
85    */
86   void remove_me();
87 };
88
89 #endif /*SUPERTUX_SPECIAL_H*/