Intro file should be the one to handle the intro sequence, even if it is only one...
[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
44 {
45 public:
46   UpgradeKind kind;
47   Direction  dir;
48   base_type base;
49   base_type old_base;
50   Physic physic;
51
52   void init(float x, float y, Direction dir, UpgradeKind kind);
53   void action(double frame_ratio);
54   void draw();
55   void collision(void* p_c_object, int c_object);
56
57 private:
58   /** removes the Upgrade from the global upgrade list. Note that after this
59    * call the class doesn't exist anymore! So don't use any member variables
60    * anymore then
61    */
62   void remove_me();
63 };
64
65 class Bullet
66 {
67  public:
68   int life_count;
69   base_type base;
70   base_type old_base;
71   
72   void init(float x, float y, float xm, Direction dir);
73   void action(double frame_ratio);
74   void draw();
75   void collision(int c_object);
76
77 private:
78   /** removes the Upgrade from the global upgrade list. Note that after this
79    * call the class doesn't exist anymore! So don't use any member variables
80    * anymore then
81    */
82   void remove_me();
83 };
84
85 #endif /*SUPERTUX_SPECIAL_H*/