885a817e61823776ea098598ff4420b27e4ce4b0
[supertux.git] / src / supertux / sector.hpp
1 //  SuperTux -  A Jump'n Run
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_SUPERTUX_SECTOR_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_SECTOR_HPP
19
20 #include <list>
21 #include <squirrel.h>
22 #include <stdint.h>
23
24 #include "scripting/ssector.hpp"
25 #include "supertux/direction.hpp"
26 #include "supertux/game_object_ptr.hpp"
27 #include "util/reader_fwd.hpp"
28 #include "util/writer_fwd.hpp"
29 #include "util/currenton.hpp"
30 #include "video/color.hpp"
31 #include "object/anchor_point.hpp"
32
33 namespace collision {
34 class Constraints;
35 }
36
37 class Vector;
38 class Rectf;
39 class Sprite;
40 class GameObject;
41 class Player;
42 class PlayerStatus;
43 class Camera;
44 class TileMap;
45 class Bullet;
46 class ScriptInterpreter;
47 class SpawnPoint;
48 class MovingObject;
49 class CollisionHit;
50 class Level;
51 class Portable;
52 class DrawingContext;
53 class DisplayEffect;
54
55 enum MusicType {
56   LEVEL_MUSIC,
57   HERRING_MUSIC,
58   HERRING_WARNING_MUSIC
59 };
60
61 /**
62  * Represents one of (potentially) multiple, separate parts of a Level.
63  *
64  * Sectors contain GameObjects, e.g. Badguys and Players.
65  */
66 class Sector : public scripting::SSector,
67                public Currenton<Sector>
68 {
69 public:
70   Sector(Level* parent);
71   ~Sector();
72
73   /// get parent level
74   Level* get_level();
75
76   /// read sector from lisp file
77   void parse(const Reader& lisp);
78   void parse_old_format(const Reader& lisp);
79
80   /// activates this sector (change music, initialize player class, ...)
81   void activate(const std::string& spawnpoint);
82   void activate(const Vector& player_pos);
83   void deactivate();
84
85   void update(float elapsed_time);
86   void update_game_objects();
87
88   void draw(DrawingContext& context);
89
90   /**
91    * runs a script in the context of the sector (sector_table will be the
92    * roottable of this squirrel VM)
93    */
94   HSQUIRRELVM run_script(std::istream& in, const std::string& sourcename);
95
96   /// adds a gameobject
97   void add_object(GameObjectPtr object);
98
99   void set_name(const std::string& name_)
100   { this->name = name_; }
101   const std::string& get_name() const
102   { return name; }
103
104   /**
105    * tests if a given rectangle is inside the sector
106    * (a rectangle that is on top of the sector is considered inside)
107    */
108   bool inside(const Rectf& rectangle) const;
109
110   void play_music(MusicType musictype);
111   MusicType get_music_type();
112
113   int get_active_bullets()
114   { return (int)bullets.size(); }
115   bool add_smoke_cloud(const Vector& pos);
116
117   /** get currently activated sector. */
118   static Sector* current()
119   { return _current; }
120
121   /** Get total number of badguys */
122   int get_total_badguys();
123
124   /** Get total number of GameObjects of given type */
125   template<class T> int get_total_count()
126   {
127     int total = 0;
128     for(GameObjects::iterator i = gameobjects.begin(); i != gameobjects.end(); ++i) {
129       if (dynamic_cast<T*>(i->get())) total++;
130     }
131     return total;
132   }
133
134   void collision_tilemap(collision::Constraints* constraints,
135                          const Vector& movement, const Rectf& dest,
136                          MovingObject &object) const;
137
138   /**
139    * Checks if the specified rectangle is free of (solid) tiles.
140    * Note that this does not include static objects, e.g. bonus blocks.
141    */
142   bool is_free_of_tiles(const Rectf& rect, const bool ignoreUnisolid = false) const;
143   /**
144    * Checks if the specified rectangle is free of both
145    * 1.) solid tiles and
146    * 2.) MovingObjects in COLGROUP_STATIC.
147    * Note that this does not include badguys or players.
148    */
149   bool is_free_of_statics(const Rectf& rect, const MovingObject* ignore_object = 0, const bool ignoreUnisolid = false) const;
150   /**
151    * Checks if the specified rectangle is free of both
152    * 1.) solid tiles and
153    * 2.) MovingObjects in COLGROUP_STATIC, COLGROUP_MOVINGSTATIC or COLGROUP_MOVING.
154    * This includes badguys and players.
155    */
156   bool is_free_of_movingstatics(const Rectf& rect, const MovingObject* ignore_object = 0) const;
157
158   /**
159    * returns a list of players currently in the sector
160    */
161   std::vector<Player*> get_players() {
162     return std::vector<Player*>(1, this->player);
163   }
164   Player *get_nearest_player (const Vector& pos);
165   Player *get_nearest_player (const Rectf& pos)
166   {
167     return (get_nearest_player (get_anchor_pos (pos, ANCHOR_MIDDLE)));
168   }
169
170   std::vector<MovingObject*> get_nearby_objects (const Vector& center, float max_distance);
171
172   Rectf get_active_region();
173
174   int get_foremost_layer();
175
176   /**
177    * returns the width (in px) of a sector)
178    */
179   float get_width() const;
180
181   /**
182    * returns the height (in px) of a sector)
183    */
184   float get_height() const;
185
186   /**
187    * globally changes solid tilemaps' tile ids
188    */
189   void change_solid_tiles(uint32_t old_tile_id, uint32_t new_tile_id);
190
191   typedef std::vector<GameObjectPtr> GameObjects;
192   typedef std::vector<MovingObject*> MovingObjects;
193   typedef std::vector<std::shared_ptr<SpawnPoint> > SpawnPoints;
194   typedef std::vector<Portable*> Portables;
195
196   // --- scripting ---
197   /**
198    *  get/set color of ambient light
199    */
200   void set_ambient_light(float red, float green, float blue);
201   float get_ambient_red();
202   float get_ambient_green();
203   float get_ambient_blue();
204
205   /**
206    *  set gravity throughout sector
207    */
208   void set_gravity(float gravity);
209   float get_gravity() const;
210
211 private:
212   uint32_t collision_tile_attributes(const Rectf& dest) const;
213
214   void before_object_remove(GameObjectPtr object);
215   bool before_object_add(GameObjectPtr object);
216
217   void try_expose(GameObjectPtr object);
218   void try_unexpose(GameObjectPtr object);
219   void try_expose_me();
220   void try_unexpose_me();
221
222   /** Checks for all possible collisions. And calls the
223       collision_handlers, which the collision_objects provide for this
224       case (or not). */
225   void handle_collisions();
226
227   /**
228    * Does collision detection between 2 objects and does instant
229    * collision response handling in case of a collision
230    */
231   void collision_object(MovingObject* object1, MovingObject* object2) const;
232
233   /**
234    * Does collision detection of an object against all other static
235    * objects (and the tilemap) in the level. Collision response is done
236    * for the first hit in time. (other hits get ignored, the function
237    * should be called repeatedly to resolve those)
238    *
239    * returns true if the collision detection should be aborted for this object
240    * (because of ABORT_MOVE in the collision response or no collisions)
241    */
242   void collision_static(collision::Constraints* constraints,
243                         const Vector& movement, const Rectf& dest, MovingObject& object);
244
245   void collision_static_constrains(MovingObject& object);
246
247   GameObjectPtr parse_object(const std::string& name, const Reader& lisp);
248
249   void fix_old_tiles();
250
251   int calculate_foremost_layer();
252
253 private:
254   static Sector* _current;
255
256   Level* level; /**< Parent level containing this sector */
257
258   std::string name;
259
260   std::vector<Bullet*> bullets;
261
262   std::string init_script;
263
264   /// container for newly created objects, they'll be added in Sector::update
265   GameObjects gameobjects_new;
266
267   MusicType currentmusic;
268
269   HSQOBJECT sector_table;
270   /// sector scripts
271   typedef std::vector<HSQOBJECT> ScriptList;
272   ScriptList scripts;
273
274   Color ambient_light;
275
276   int foremost_layer;
277
278 public: // TODO make this private again
279   /// show collision rectangles of moving objects (for debugging)
280   static bool show_collrects;
281   static bool draw_solids_only;
282
283   GameObjects gameobjects;
284   MovingObjects moving_objects;
285   SpawnPoints spawnpoints;
286   Portables portables;
287
288   std::string music;
289   float gravity;
290
291   // some special objects, where we need direct access
292   // (try to avoid accessing them directly)
293   Player* player;
294   std::list<TileMap*> solid_tilemaps;
295   Camera* camera;
296   DisplayEffect* effect;
297
298 private:
299   Sector(const Sector&);
300   Sector& operator=(const Sector&);
301 };
302
303 #endif
304
305 /* EOF */