- Refactored worldmap a bit to reuse GameObject from the rest of the game
[supertux.git] / src / sector.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Matthias Braun <matze@braunis.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 #include <config.h>
20
21 #include <memory>
22 #include <algorithm>
23 #include <stdexcept>
24 #include <iostream>
25 #include <fstream>
26 #include <sstream>
27 #include <stdexcept>
28
29 #include "sector.h"
30 #include "player_status.h"
31 #include "object/gameobjs.h"
32 #include "object/camera.h"
33 #include "object/background.h"
34 #include "object/particlesystem.h"
35 #include "object/tilemap.h"
36 #include "lisp/parser.h"
37 #include "lisp/lisp.h"
38 #include "lisp/writer.h"
39 #include "lisp/list_iterator.h"
40 #include "tile.h"
41 #include "audio/sound_manager.h"
42 #include "game_session.h"
43 #include "resources.h"
44 #include "statistics.h"
45 #include "collision_grid.h"
46 #include "collision_grid_iterator.h"
47 #include "object_factory.h"
48 #include "collision.h"
49 #include "spawn_point.h"
50 #include "math/rect.h"
51 #include "math/aatriangle.h"
52 #include "object/coin.h"
53 #include "object/block.h"
54 #include "object/invisible_block.h"
55 #include "object/bullet.h"
56 #include "object/text_object.h"
57 #include "badguy/jumpy.h"
58 #include "badguy/spike.h"
59 #include "trigger/sequence_trigger.h"
60 #include "player_status.h"
61 #include "scripting/script_interpreter.h"
62 #include "scripting/sound.h"
63 #include "scripting/scripted_object.h"
64 #include "scripting/text.h"
65
66 //#define USE_GRID
67
68 Sector* Sector::_current = 0;
69
70 Sector::Sector()
71   : gravity(10), player(0), solids(0), camera(0),
72     currentmusic(LEVEL_MUSIC)
73 {
74   song_title = "Mortimers_chipdisko.mod";
75   player = new Player(&player_status);
76   add_object(player);
77
78   grid = new CollisionGrid(32000, 32000);
79 }
80
81 Sector::~Sector()
82 {
83   update_game_objects();
84   assert(gameobjects_new.size() == 0);
85
86   delete grid;
87
88   for(GameObjects::iterator i = gameobjects.begin(); i != gameobjects.end();
89       ++i) {
90     delete *i;
91   }
92
93   for(SpawnPoints::iterator i = spawnpoints.begin(); i != spawnpoints.end();
94       ++i)
95     delete *i;
96     
97   if(_current == this)
98     _current = 0;
99 }
100
101 GameObject*
102 Sector::parse_object(const std::string& name, const lisp::Lisp& reader)
103 {
104   if(name == "camera") {
105     Camera* camera = new Camera(this);
106     camera->parse(reader);
107     return camera;
108   } else if(name == "particles-snow") {
109     SnowParticleSystem* partsys = new SnowParticleSystem();
110     partsys->parse(reader);
111     return partsys;
112   } else if(name == "particles-rain") {
113     RainParticleSystem* partsys = new RainParticleSystem();
114     partsys->parse(reader);
115     return partsys;
116   } else if(name == "particles-clouds") {
117     CloudParticleSystem* partsys = new CloudParticleSystem();
118     partsys->parse(reader);
119     return partsys;
120   } else if(name == "money") { // for compatibility with old maps
121     return new Jumpy(reader);
122   } 
123
124   try {
125     return create_object(name, reader);
126   } catch(std::exception& e) {
127     std::cerr << e.what() << "\n";
128   }
129   
130   return 0;
131 }
132
133 void
134 Sector::parse(const lisp::Lisp& sector)
135 {
136   _current = this;
137   
138   lisp::ListIterator iter(&sector);
139   while(iter.next()) {
140     const std::string& token = iter.item();
141     if(token == "name") {
142       iter.value()->get(name);
143     } else if(token == "gravity") {
144       iter.value()->get(gravity);
145     } else if(token == "music") {
146       iter.value()->get(song_title);
147       load_music();
148     } else if(token == "spawnpoint") {
149       SpawnPoint* sp = new SpawnPoint(iter.lisp());
150       spawnpoints.push_back(sp);
151     } else if(token == "init-script") {
152       iter.value()->get(init_script);
153     } else {
154       GameObject* object = parse_object(token, *(iter.lisp()));
155       if(object) {
156         add_object(object);
157       }
158     }
159   }
160
161   update_game_objects();
162   fix_old_tiles();
163   if(!camera) {
164     std::cerr << "sector '" << name << "' does not contain a camera.\n";
165     update_game_objects();
166     add_object(new Camera(this));
167   }
168   if(!solids)
169     throw std::runtime_error("sector does not contain a solid tile layer.");
170
171   update_game_objects();
172 }
173
174 void
175 Sector::parse_old_format(const lisp::Lisp& reader)
176 {
177   _current = this;
178   
179   name = "main";
180   reader.get("gravity", gravity);
181
182   std::string backgroundimage;
183   reader.get("background", backgroundimage);
184   float bgspeed = .5;
185   reader.get("bkgd_speed", bgspeed);
186   bgspeed /= 100;
187
188   Color bkgd_top, bkgd_bottom;
189   int r = 0, g = 0, b = 128;
190   reader.get("bkgd_red_top", r);
191   reader.get("bkgd_green_top",  g);
192   reader.get("bkgd_blue_top",  b);
193   bkgd_top.red = r;
194   bkgd_top.green = g;
195   bkgd_top.blue = b;
196   
197   reader.get("bkgd_red_bottom",  r);
198   reader.get("bkgd_green_bottom", g);
199   reader.get("bkgd_blue_bottom", b);
200   bkgd_bottom.red = r;
201   bkgd_bottom.green = g;
202   bkgd_bottom.blue = b;
203   
204   if(backgroundimage != "") {
205     Background* background = new Background;
206     background->set_image(backgroundimage, bgspeed);
207     add_object(background);
208   } else {
209     Background* background = new Background;
210     background->set_gradient(bkgd_top, bkgd_bottom);
211     add_object(background);
212   }
213
214   std::string particlesystem;
215   reader.get("particle_system", particlesystem);
216   if(particlesystem == "clouds")
217     add_object(new CloudParticleSystem());
218   else if(particlesystem == "snow")
219     add_object(new SnowParticleSystem());
220   else if(particlesystem == "rain")
221     add_object(new RainParticleSystem());
222
223   Vector startpos(100, 170);
224   reader.get("start_pos_x", startpos.x);
225   reader.get("start_pos_y", startpos.y);
226
227   SpawnPoint* spawn = new SpawnPoint;
228   spawn->pos = startpos;
229   spawn->name = "main";
230   spawnpoints.push_back(spawn);
231
232   song_title = "Mortimers_chipdisko.mod";
233   reader.get("music", song_title);
234   load_music();
235
236   int width, height = 15;
237   reader.get("width", width);
238   reader.get("height", height);
239   
240   std::vector<unsigned int> tiles;
241   if(reader.get_vector("interactive-tm", tiles)
242       || reader.get_vector("tilemap", tiles)) {
243     TileMap* tilemap = new TileMap();
244     tilemap->set(width, height, tiles, LAYER_TILES, true);
245     add_object(tilemap);
246   }
247
248   if(reader.get_vector("background-tm", tiles)) {
249     TileMap* tilemap = new TileMap();
250     tilemap->set(width, height, tiles, LAYER_BACKGROUNDTILES, false);
251     add_object(tilemap);
252   }
253
254   if(reader.get_vector("foreground-tm", tiles)) {
255     TileMap* tilemap = new TileMap();
256     tilemap->set(width, height, tiles, LAYER_FOREGROUNDTILES, false);
257     add_object(tilemap);
258   }
259
260   // read reset-points (now spawn-points)
261   const lisp::Lisp* resetpoints = reader.get_lisp("reset-points");
262   if(resetpoints) {
263     lisp::ListIterator iter(resetpoints);
264     while(iter.next()) {
265       if(iter.item() == "point") {
266         Vector sp_pos;
267         if(reader.get("x", sp_pos.x) && reader.get("y", sp_pos.y))
268           {
269           SpawnPoint* sp = new SpawnPoint;
270           sp->name = "main";
271           sp->pos = sp_pos;
272           spawnpoints.push_back(sp);
273           }
274       } else {
275         std::cerr << "Unknown token '" << iter.item() << "' in reset-points.\n";
276       }
277     }
278   }
279
280   // read objects
281   const lisp::Lisp* objects = reader.get_lisp("objects");
282   if(objects) {
283     lisp::ListIterator iter(objects);
284     while(iter.next()) {
285       GameObject* object = parse_object(iter.item(), *(iter.lisp()));
286       if(object) {
287         add_object(object);
288       } else {
289         std::cerr << "Unknown object '" << iter.item() << "' in level.\n";
290       }
291     }
292   }
293
294   // add a camera
295   Camera* camera = new Camera(this);
296   add_object(camera);
297
298   update_game_objects();
299   fix_old_tiles();
300   update_game_objects();
301   if(solids == 0)
302     throw std::runtime_error("sector does not contain a solid tile layer.");  
303 }
304
305 void
306 Sector::fix_old_tiles()
307 {
308   // hack for now...
309   for(size_t x=0; x < solids->get_width(); ++x) {
310     for(size_t y=0; y < solids->get_height(); ++y) {
311       const Tile* tile = solids->get_tile(x, y);
312       Vector pos(x*32, y*32);
313       
314       if(tile->getID() == 112) {
315         add_object(new InvisibleBlock(pos));
316         solids->change(x, y, 0);
317       } else if(tile->getID() == 295) {
318         add_object(new Spike(pos, Spike::NORTH));
319         solids->change(x, y, 0);
320       } else if(tile->getID() == 296) {
321         add_object(new Spike(pos, Spike::EAST));
322         solids->change(x, y, 0);
323       } else if(tile->getID() == 297) {
324         add_object(new Spike(pos, Spike::SOUTH));
325         solids->change(x, y, 0);
326       } else if(tile->getID() == 298) {
327         add_object(new Spike(pos, Spike::WEST));
328         solids->change(x, y, 0);
329       } else if(tile->getAttributes() & Tile::COIN) {
330         add_object(new Coin(pos));
331         solids->change(x, y, 0);
332       } else if(tile->getAttributes() & Tile::FULLBOX) {
333         add_object(new BonusBlock(pos, tile->getData()));
334         solids->change(x, y, 0);
335       } else if(tile->getAttributes() & Tile::BRICK) {
336         add_object(new Brick(pos, tile->getData()));
337         solids->change(x, y, 0);
338       } else if(tile->getAttributes() & Tile::GOAL) {
339         std::string sequence = tile->getData() == 0 ? "endsequence" : "stoptux";
340         add_object(new SequenceTrigger(pos, sequence));
341         solids->change(x, y, 0);
342       }
343     }                                                   
344   }
345 }
346
347 void
348 Sector::write(lisp::Writer& writer)
349 {
350   writer.write_string("name", name);
351   writer.write_float("gravity", gravity);
352   writer.write_string("music", song_title);
353
354   // write spawnpoints
355   for(SpawnPoints::iterator i = spawnpoints.begin(); i != spawnpoints.end();
356       ++i) {
357     SpawnPoint* spawn = *i;
358     writer.start_list("spawn-points");
359     writer.write_string("name", spawn->name);
360     writer.write_float("x", spawn->pos.x);
361     writer.write_float("y", spawn->pos.y);
362     writer.end_list("spawn-points");
363   }
364
365   // write objects
366   for(GameObjects::iterator i = gameobjects.begin();
367       i != gameobjects.end(); ++i) {
368     Serializable* serializable = dynamic_cast<Serializable*> (*i);
369     if(serializable)
370       serializable->write(writer);
371   }
372 }
373
374 void
375 Sector::add_object(GameObject* object)
376 {
377   // make sure the object isn't already in the list
378 #ifdef DEBUG
379   for(GameObjects::iterator i = gameobjects.begin(); i != gameobjects.end();
380       ++i) {
381     if(*i == object) {
382       assert("object already added to sector" == 0);
383     }
384   }
385   for(GameObjects::iterator i = gameobjects_new.begin();
386       i != gameobjects_new.end(); ++i) {
387     if(*i == object) {
388       assert("object already added to sector" == 0);
389     }
390   }
391 #endif
392
393   gameobjects_new.push_back(object);
394 }
395
396 void
397 Sector::activate(const std::string& spawnpoint)
398 {
399   SpawnPoint* sp = 0;
400   for(SpawnPoints::iterator i = spawnpoints.begin(); i != spawnpoints.end();
401       ++i) {
402     if((*i)->name == spawnpoint) {
403       sp = *i;
404       break;
405     }
406   }                                                                           
407   if(!sp) {
408     std::cerr << "Spawnpoint '" << spawnpoint << "' not found.\n";
409     if(spawnpoint != "main") {
410       activate("main");
411     } else {
412       activate(Vector(0, 0));
413     }
414   } else {
415     activate(sp->pos);
416   }
417
418   // Run init script
419   if(init_script != "") {
420     try {
421       ScriptInterpreter* interpreter = new ScriptInterpreter(this);
422       std::string sourcename = std::string("Sector(") + name + ") - init";
423       std::istringstream in(init_script);
424       interpreter->load_script(in, sourcename);
425       interpreter->start_script();
426       add_object(interpreter);
427       init_script = "";
428     } catch(std::exception& e) {
429       std::cerr << "Couldn't execute init script: " << e.what() << "\n";
430     }
431   }
432 }
433
434 void
435 Sector::activate(const Vector& player_pos)
436 {
437   _current = this;
438
439   player->move(player_pos);
440   camera->reset(player->get_pos());
441 }
442
443 Rect
444 Sector::get_active_region()
445 {
446   return Rect(
447     camera->get_translation() - Vector(1600, 1200),
448     camera->get_translation() + Vector(1600, 1200));
449 }
450
451 void
452 Sector::update(float elapsed_time)
453 {
454   player->check_bounds(camera);
455
456 #if 0
457   CollisionGridIterator iter(*grid, get_active_region());
458   while(MovingObject* object = iter.next()) {
459     if(!object->is_valid())
460       continue;
461
462     object->update(elapsed_time);
463   }
464 #else
465   /* update objects */
466   for(GameObjects::iterator i = gameobjects.begin();
467           i != gameobjects.end(); ++i) {
468     GameObject* object = *i;
469     if(!object->is_valid())
470       continue;
471     
472     object->update(elapsed_time);
473   }
474 #endif
475   
476   /* Handle all possible collisions. */
477   collision_handler();                                                                              
478   update_game_objects();
479 }
480
481 void
482 Sector::update_game_objects()
483 {
484   /** cleanup marked objects */
485   for(std::vector<GameObject*>::iterator i = gameobjects.begin();
486       i != gameobjects.end(); /* nothing */) {
487     GameObject* object = *i;
488     
489     if(object->is_valid()) {
490       ++i;
491       continue;
492     }
493     
494     Bullet* bullet = dynamic_cast<Bullet*> (object);
495     if(bullet) {
496       bullets.erase(
497           std::remove(bullets.begin(), bullets.end(), bullet),
498           bullets.end());
499     }
500     MovingObject* movingobject = dynamic_cast<MovingObject*> (object);
501     if(movingobject) {
502       grid->remove_object(movingobject);
503     }
504     delete *i;
505     i = gameobjects.erase(i);
506   }
507
508   /* add newly created objects */
509   for(std::vector<GameObject*>::iterator i = gameobjects_new.begin();
510       i != gameobjects_new.end(); ++i)
511   {
512     GameObject* object = *i;
513     
514     Bullet* bullet = dynamic_cast<Bullet*> (object);
515     if(bullet)
516       bullets.push_back(bullet);
517
518     MovingObject* movingobject = dynamic_cast<MovingObject*> (object);
519     if(movingobject)
520       grid->add_object(movingobject);
521     
522     TileMap* tilemap = dynamic_cast<TileMap*> (object);
523     if(tilemap && tilemap->is_solid()) {
524       if(solids == 0) {
525         solids = tilemap;
526       } else {
527         std::cerr << "Another solid tilemaps added. Ignoring.";
528       }
529     }
530
531     Camera* camera = dynamic_cast<Camera*> (object);
532     if(camera) {
533       if(this->camera != 0) {
534         std::cerr << "Warning: Multiple cameras added. Ignoring.";
535         continue;
536       }
537       this->camera = camera;
538     }
539
540     gameobjects.push_back(object);
541   }
542   gameobjects_new.clear();
543 }
544
545 void
546 Sector::draw(DrawingContext& context)
547 {
548   context.push_transform();
549   context.set_translation(camera->get_translation());
550
551 #if 0
552   CollisionGridIterator iter(*grid, get_active_region());
553   while(MovingObject* object = iter.next()) {
554     if(!object->is_valid())
555       continue;
556
557     object->draw(context);
558   }
559 #else
560   for(GameObjects::iterator i = gameobjects.begin();
561       i != gameobjects.end(); ++i) {
562     GameObject* object = *i; 
563     if(!object->is_valid())
564       continue;
565     
566     object->draw(context);
567   }
568 #endif
569
570   context.pop_transform();
571 }
572
573 static const float DELTA = .001;
574
575 void
576 Sector::collision_tilemap(MovingObject* object, int depth)
577 {
578   if(depth >= 4) {
579 #ifdef DEBUG
580     std::cout << "Max collision depth reached.\n";
581 #endif
582     object->movement = Vector(0, 0);
583     return;
584   }
585
586   // calculate rectangle where the object will move
587   float x1, x2;
588   if(object->get_movement().x >= 0) {
589     x1 = object->get_pos().x;
590     x2 = object->get_bbox().p2.x + object->get_movement().x;
591   } else {
592     x1 = object->get_pos().x + object->get_movement().x;
593     x2 = object->get_bbox().p2.x;
594   }
595   float y1, y2;
596   if(object->get_movement().y >= 0) {
597     y1 = object->get_pos().y;
598     y2 = object->get_bbox().p2.y + object->get_movement().y;
599   } else {
600     y1 = object->get_pos().y + object->get_movement().y;
601     y2 = object->get_bbox().p2.y;
602   }
603
604   // test with all tiles in this rectangle
605   int starttilex = int(x1-1) / 32;
606   int starttiley = int(y1-1) / 32;
607   int max_x = int(x2+1);
608   int max_y = int(y2+1);
609
610   CollisionHit temphit, hit;
611   Rect dest = object->get_bbox();
612   dest.move(object->movement);
613   hit.time = -1; // represents an invalid value
614   for(int x = starttilex; x*32 < max_x; ++x) {
615     for(int y = starttiley; y*32 < max_y; ++y) {
616       const Tile* tile = solids->get_tile(x, y);
617       if(!tile)
618         continue;
619       // skip non-solid tiles
620       if(!(tile->getAttributes() & Tile::SOLID))
621         continue;
622       // only handle unisolid when the player is falling down and when he was
623       // above the tile before
624       if(tile->getAttributes() & Tile::UNISOLID) {
625         if(object->movement.y < 0 || object->get_bbox().p2.y > y*32)
626           continue;
627       }
628
629       if(tile->getAttributes() & Tile::SLOPE) { // slope tile
630         AATriangle triangle;
631         Vector p1(x*32, y*32);
632         Vector p2((x+1)*32, (y+1)*32);
633         triangle = AATriangle(p1, p2, tile->getData());
634
635         if(Collision::rectangle_aatriangle(temphit, dest, object->movement,
636               triangle)) {
637           if(temphit.time > hit.time)
638             hit = temphit;
639         }
640       } else { // normal rectangular tile
641         Rect rect(x*32, y*32, (x+1)*32, (y+1)*32);
642         if(Collision::rectangle_rectangle(temphit, dest,
643               object->movement, rect)) {
644           if(temphit.time > hit.time)
645             hit = temphit;
646         }
647       }
648     }
649   }
650
651   // did we collide at all?
652   if(hit.time < 0)
653     return;
654  
655   // call collision function
656   HitResponse response = object->collision(*solids, hit);
657   if(response == ABORT_MOVE) {
658     object->movement = Vector(0, 0);
659     return;
660   }
661   if(response == FORCE_MOVE) {
662       return;
663   }
664   // move out of collision and try again
665   object->movement += hit.normal * (hit.depth + DELTA);
666   collision_tilemap(object, depth+1);
667 }
668
669 void
670 Sector::collision_object(MovingObject* object1, MovingObject* object2)
671 {
672   CollisionHit hit;
673   Rect dest1 = object1->get_bbox();
674   dest1.move(object1->get_movement());
675   Rect dest2 = object2->get_bbox();
676   dest2.move(object2->get_movement());
677
678   Vector movement = object1->get_movement() - object2->get_movement();
679   if(Collision::rectangle_rectangle(hit, dest1, movement, dest2)) {
680     HitResponse response1 = object1->collision(*object2, hit);
681     hit.normal *= -1;
682     HitResponse response2 = object2->collision(*object1, hit);
683
684     if(response1 != CONTINUE) {
685       if(response1 == ABORT_MOVE)
686         object1->movement = Vector(0, 0);
687       if(response2 == CONTINUE)
688         object2->movement += hit.normal * (hit.depth + DELTA);
689     } else if(response2 != CONTINUE) {
690       if(response2 == ABORT_MOVE)
691         object2->movement = Vector(0, 0);
692       if(response1 == CONTINUE)
693         object1->movement += -hit.normal * (hit.depth + DELTA);
694     } else {
695       object1->movement += -hit.normal * (hit.depth/2 + DELTA);
696       object2->movement += hit.normal * (hit.depth/2 + DELTA);
697     }
698   }
699 }
700
701 void
702 Sector::collision_handler()
703 {
704 #ifdef USE_GRID
705   grid->check_collisions();
706 #else
707   for(std::vector<GameObject*>::iterator i = gameobjects.begin();
708       i != gameobjects.end(); ++i) {
709     GameObject* gameobject = *i;
710     if(!gameobject->is_valid())
711       continue;
712     MovingObject* movingobject = dynamic_cast<MovingObject*> (gameobject);
713     if(!movingobject)
714       continue;
715     if(movingobject->get_flags() & GameObject::FLAG_NO_COLLDET) {
716       movingobject->bbox.move(movingobject->movement);
717       movingobject->movement = Vector(0, 0);
718       continue;
719     }
720
721     // collision with tilemap
722     if(! (movingobject->movement == Vector(0, 0)))
723       collision_tilemap(movingobject, 0);
724
725     // collision with other objects
726     for(std::vector<GameObject*>::iterator i2 = i+1;
727         i2 != gameobjects.end(); ++i2) {
728       GameObject* other_object = *i2;
729       if(!other_object->is_valid() 
730           || other_object->get_flags() & GameObject::FLAG_NO_COLLDET)
731         continue;
732       MovingObject* movingobject2 = dynamic_cast<MovingObject*> (other_object);
733       if(!movingobject2)
734         continue;
735
736       collision_object(movingobject, movingobject2);
737     }
738
739     movingobject->bbox.move(movingobject->get_movement());
740     movingobject->movement = Vector(0, 0);
741   }
742 #endif
743 }
744
745 bool
746 Sector::add_bullet(const Vector& pos, float xm, Direction dir)
747 {
748   // TODO remove this function and move these checks elsewhere...
749   static const size_t MAX_FIRE_BULLETS = 2;
750   static const size_t MAX_ICE_BULLETS = 1;
751
752   Bullet* new_bullet = 0;
753   if(player_status.bonus == FIRE_BONUS) {
754     if(bullets.size() > MAX_FIRE_BULLETS-1)
755       return false;
756     new_bullet = new Bullet(pos, xm, dir, FIRE_BULLET);
757   } else if(player_status.bonus == ICE_BONUS) {
758     if(bullets.size() > MAX_ICE_BULLETS-1)
759       return false;
760     new_bullet = new Bullet(pos, xm, dir, ICE_BULLET);
761   } else {
762     return false;
763   }
764   add_object(new_bullet);
765
766   sound_manager->play_sound("shoot");
767
768   return true;
769 }
770
771 bool
772 Sector::add_smoke_cloud(const Vector& pos)
773 {
774   add_object(new SmokeCloud(pos));
775   return true;
776 }
777
778 void
779 Sector::add_floating_text(const Vector& pos, const std::string& text)
780 {
781   add_object(new FloatingText(pos, text));
782 }
783
784 void
785 Sector::load_music()
786 {
787   level_song = sound_manager->load_music(
788     get_resource_filename("/music/" + song_title));
789 }
790
791 void
792 Sector::play_music(MusicType type)
793 {
794   currentmusic = type;
795   switch(currentmusic) {
796     case LEVEL_MUSIC:
797       sound_manager->play_music(level_song);
798       break;
799     case HERRING_MUSIC:
800       sound_manager->play_music(herring_song);
801       break;
802     default:
803       sound_manager->halt_music();
804       break;
805   }
806 }
807
808 MusicType
809 Sector::get_music_type()
810 {
811   return currentmusic;
812 }
813
814 int
815 Sector::get_total_badguys()
816 {
817   int total_badguys = 0;
818   for(GameObjects::iterator i = gameobjects.begin();
819       i != gameobjects.end(); ++i) {
820     BadGuy* badguy = dynamic_cast<BadGuy*> (*i);
821     if(badguy)
822       total_badguys++;
823   }
824
825   return total_badguys;
826 }
827
828 bool
829 Sector::inside(const Rect& rect) const
830 {
831   if(rect.p1.x > solids->get_width() * 32 
832       || rect.p1.y > solids->get_height() * 32
833       || rect.p2.x < 0 || rect.p2.y < 0)
834     return false;
835
836   return true;
837 }