some startup time debugging, changed skid dust particles back to old behaviour
[supertux.git] / src / object / gameobjs.hpp
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 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 // 
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 //  02111-1307, USA.
21 #ifndef SUPERTUX_GAMEOBJS_H
22 #define SUPERTUX_GAMEOBJS_H
23
24 #include "video/surface.hpp"
25 #include "timer.hpp"
26 #include "physic.hpp"
27 #include "game_object.hpp"
28 #include "moving_object.hpp"
29 #include "serializable.hpp"
30 #include "video/color.hpp"
31
32 /* Bounciness of distros: */
33 #define NO_BOUNCE 0
34 #define BOUNCE 1
35
36 class Sprite;
37
38 class BouncyCoin : public GameObject
39 {
40 public:
41   BouncyCoin(const Vector& pos);
42   ~BouncyCoin();
43   virtual void update(float elapsed_time);
44   virtual void draw(DrawingContext& context);
45
46 private:
47   Sprite* sprite;
48   Vector position;
49   Timer timer;
50 };
51
52 class BrokenBrick : public GameObject
53 {
54 public:
55   BrokenBrick(Sprite* sprite, const Vector& pos, const Vector& movement);
56   ~BrokenBrick();
57
58   virtual void update(float elapsed_time);
59   virtual void draw(DrawingContext& context);
60
61 private:
62   Timer timer;
63   Sprite* sprite;
64   Vector position;
65   Vector movement;
66 };
67
68 class FloatingText : public GameObject
69 {
70 public:
71   FloatingText(const Vector& pos, const std::string& text_);
72   FloatingText(const Vector& pos, int s);  // use this for score, for instance
73   
74   virtual void update(float elapsed_time);
75   virtual void draw(DrawingContext& context);
76
77 private:
78   Vector position;
79   std::string text;
80   Timer timer;  
81 };
82
83 class SmokeCloud : public GameObject
84 {
85 public:
86   SmokeCloud(const Vector& pos);
87   ~SmokeCloud();
88   
89   virtual void update(float elapsed_time);
90   virtual void draw(DrawingContext& context);
91
92 private:
93   Sprite* sprite;
94   Timer timer;
95   Vector position;
96 };
97
98 #endif 
99
100 /* Local Variables: */
101 /* mode:c++ */
102 /* End: */