4 // Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
5 // Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
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.
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.
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
21 #ifndef SUPERTUX_GAMEOBJS_H
22 #define SUPERTUX_GAMEOBJS_H
24 #include "video/surface.h"
27 #include "game_object.h"
28 #include "moving_object.h"
29 #include "serializable.h"
31 /* Bounciness of distros: */
37 class BouncyCoin : public GameObject
40 BouncyCoin(const Vector& pos);
42 virtual void action(float elapsed_time);
43 virtual void draw(DrawingContext& context);
51 class BrokenBrick : public GameObject
54 BrokenBrick(Sprite* sprite, const Vector& pos, const Vector& movement);
57 virtual void action(float elapsed_time);
58 virtual void draw(DrawingContext& context);
67 class FloatingText : public GameObject
70 FloatingText(const Vector& pos, const std::string& text_);
71 FloatingText(const Vector& pos, int s); // use this for score, for instance
73 virtual void action(float elapsed_time);
74 virtual void draw(DrawingContext& context);
82 extern Sprite *img_smoke_cloud;
84 class SmokeCloud : public GameObject
87 SmokeCloud(const Vector& pos);
89 virtual void action(float elapsed_time);
90 virtual void draw(DrawingContext& context);
97 class Particles : public GameObject
100 Particles(const Vector& epicenter, int min_angle, int max_angle,
101 const Vector& initial_velocity, const Vector& acceleration,
102 int number, Color color, int size, float life_time, int drawing_layer);
105 virtual void action(float elapsed_time);
106 virtual void draw(DrawingContext& context);
121 std::vector <Particle*> particles;
124 void load_object_gfx();
125 void free_object_gfx();
129 /* Local Variables: */