- reduced jump tolleranze to two tiles
[supertux.git] / src / world.cpp
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 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
7 //
8 //  This program is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU General Public License
10 //  as published by the Free Software Foundation; either version 2
11 //  of the License, or (at your option) any later version.
12 //
13 //  This program is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 //  GNU General Public License for more details.
17 // 
18 //  You should have received a copy of the GNU General Public License
19 //  along with this program; if not, write to the Free Software
20 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 //  02111-1307, USA.
22
23 #include <iostream>
24 #include <math.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include "globals.h"
28 #include "scene.h"
29 #include "screen.h"
30 #include "defines.h"
31 #include "world.h"
32 #include "level.h"
33 #include "tile.h"
34 #include "resources.h"
35
36 Surface* img_distro[4];
37
38 World* World::current_ = 0;
39
40 World::World(const std::string& filename)
41 {
42   // FIXME: Move this to action and draw and everywhere else where the
43   // world calls child functions
44   current_ = this;
45
46   level = new Level(filename);
47   tux.init();
48
49   set_defaults();
50
51   get_level()->load_gfx();
52   activate_bad_guys();
53   activate_particle_systems();
54   get_level()->load_song();
55
56   apply_bonuses();
57 }
58
59 World::World(const std::string& subset, int level_nr)
60 {
61   // FIXME: Move this to action and draw and everywhere else where the
62   // world calls child functions
63   current_ = this;
64
65   level = new Level(subset, level_nr);
66   tux.init();
67
68   set_defaults();
69
70   get_level()->load_gfx();
71   activate_bad_guys();
72   activate_particle_systems();
73   get_level()->load_song();
74
75   apply_bonuses();
76 }
77
78 void
79 World::apply_bonuses()
80 {
81   // Apply bonuses from former levels
82   switch (player_status.bonus)
83     {
84     case PlayerStatus::NO_BONUS:
85       break;
86
87     case PlayerStatus::FLOWER_BONUS:
88       tux.got_coffee = true;
89       // fall through
90
91     case PlayerStatus::GROWUP_BONUS:
92       // FIXME: Move this to Player class
93       tux.size = BIG;
94       tux.base.height = 64;
95       tux.base.y -= 32;
96       break;
97     }
98 }
99
100 World::~World()
101 {
102   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
103     delete *i;
104
105   for (ParticleSystems::iterator i = particle_systems.begin();
106           i != particle_systems.end(); ++i)
107     delete *i;
108
109   for (std::vector<BouncyDistro*>::iterator i = bouncy_distros.begin();
110        i != bouncy_distros.end(); ++i)
111     delete *i;
112   
113   for (std::vector<BrokenBrick*>::iterator i = broken_bricks.begin();
114        i != broken_bricks.end(); ++i)
115     delete *i;
116   
117   for (std::vector<BouncyBrick*>::iterator i = bouncy_bricks.begin();
118        i != bouncy_bricks.end(); ++i)
119     delete *i;
120
121   for (std::vector<FloatingScore*>::iterator i = floating_scores.begin();
122        i != floating_scores.end(); ++i)
123     delete *i;
124   
125   delete level;
126 }
127
128 void
129 World::set_defaults()
130 {
131   // Set defaults: 
132   scroll_x = 0;
133
134   player_status.score_multiplier = 1;
135
136   counting_distros = false;
137   distro_counter = 0;
138
139   /* set current song/music */
140   currentmusic = LEVEL_MUSIC;
141 }
142
143 void
144 World::activate_bad_guys()
145 {
146   for (std::vector<BadGuyData>::iterator i = level->badguy_data.begin();
147        i != level->badguy_data.end();
148        ++i)
149     {
150       add_bad_guy(i->x, i->y, i->kind, i->stay_on_platform);
151     }
152 }
153
154 void
155 World::activate_particle_systems()
156 {
157   if (level->particle_system == "clouds")
158     {
159       particle_systems.push_back(new CloudParticleSystem);
160     }
161   else if (level->particle_system == "snow")
162     {
163       particle_systems.push_back(new SnowParticleSystem);
164     }
165   else if (level->particle_system != "")
166     {
167       st_abort("unknown particle system specified in level", "");
168     }
169 }
170
171 void
172 World::draw()
173 {
174   int y,x;
175
176   /* Draw the real background */
177   if(get_level()->bkgd_image[0] != '\0')
178     {
179       int s = ((int)scroll_x / 2)%640;
180       level->img_bkgd->draw_part(s, 0,0,0,level->img_bkgd->w - s, level->img_bkgd->h);
181       level->img_bkgd->draw_part(0, 0,screen->w - s ,0,s,level->img_bkgd->h);
182     }
183   else
184     {
185       drawgradient(level->bkgd_top, level->bkgd_bottom);
186     }
187     
188   /* Draw particle systems (background) */
189   std::vector<ParticleSystem*>::iterator p;
190   for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
191     {
192       (*p)->draw(scroll_x, 0, 0);
193     }
194
195   /* Draw background: */
196   for (y = 0; y < 15; ++y)
197     {
198       for (x = 0; x < 21; ++x)
199         {
200           Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
201                      level->bg_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
202         }
203     }
204
205   /* Draw interactive tiles: */
206   for (y = 0; y < 15; ++y)
207     {
208       for (x = 0; x < 21; ++x)
209         {
210           Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
211                      level->ia_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
212         }
213     }
214
215   /* (Bouncy bricks): */
216   for (unsigned int i = 0; i < bouncy_bricks.size(); ++i)
217     bouncy_bricks[i]->draw();
218
219   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
220     (*i)->draw();
221
222   tux.draw();
223
224   for (unsigned int i = 0; i < bullets.size(); ++i)
225     bullets[i].draw();
226
227   for (unsigned int i = 0; i < floating_scores.size(); ++i)
228     floating_scores[i]->draw();
229
230   for (unsigned int i = 0; i < upgrades.size(); ++i)
231     upgrades[i].draw();
232
233   for (unsigned int i = 0; i < bouncy_distros.size(); ++i)
234     bouncy_distros[i]->draw();
235
236   for (unsigned int i = 0; i < broken_bricks.size(); ++i)
237     broken_bricks[i]->draw();
238
239   /* Draw foreground: */
240   for (y = 0; y < 15; ++y)
241     {
242       for (x = 0; x < 21; ++x)
243         {
244           Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
245                      level->fg_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
246         }
247     }
248
249   /* Draw particle systems (foreground) */
250   for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
251     {
252       (*p)->draw(scroll_x, 0, 1);
253     }
254 }
255
256 void
257 World::action(double frame_ratio)
258 {
259   tux.action(frame_ratio);
260
261   /* Handle bouncy distros: */
262   for (unsigned int i = 0; i < bouncy_distros.size(); i++)
263     bouncy_distros[i]->action(frame_ratio);
264
265   /* Handle broken bricks: */
266   for (unsigned int i = 0; i < broken_bricks.size(); i++)
267     broken_bricks[i]->action(frame_ratio);
268
269   /* Handle distro counting: */
270   if (counting_distros)
271     {
272       distro_counter--;
273
274       if (distro_counter <= 0)
275         counting_distros = -1;
276     }
277
278   // Handle all kinds of game objects
279   for (unsigned int i = 0; i < bouncy_bricks.size(); i++)
280     bouncy_bricks[i]->action(frame_ratio);
281   
282   for (unsigned int i = 0; i < floating_scores.size(); i++)
283     floating_scores[i]->action(frame_ratio);
284
285   for (unsigned int i = 0; i < bullets.size(); ++i)
286     bullets[i].action(frame_ratio);
287   
288   for (unsigned int i = 0; i < upgrades.size(); i++)
289     upgrades[i].action(frame_ratio);
290
291   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
292     (*i)->action(frame_ratio);
293
294   /* update particle systems */
295   std::vector<ParticleSystem*>::iterator p;
296   for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
297     {
298       (*p)->simulate(frame_ratio);
299     }
300
301   /* Handle all possible collisions. */
302   collision_handler();
303   
304   // Cleanup marked badguys
305   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end();
306       /* ++i handled at end of the loop */) {
307     if ((*i)->is_removable()) {
308       delete *i;
309       i = bad_guys.erase(i);
310     } else {
311       ++i;
312     }
313   }
314 }
315
316 void
317 World::collision_handler()
318 {
319   // CO_BULLET & CO_BADGUY check
320   for(unsigned int i = 0; i < bullets.size(); ++i)
321     {
322       for (BadGuys::iterator j = bad_guys.begin(); j != bad_guys.end(); ++j)
323         {
324           if((*j)->dying != DYING_NOT)
325             continue;
326           
327           if(rectcollision(bullets[i].base, (*j)->base))
328             {
329               // We have detected a collision and now call the
330               // collision functions of the collided objects.
331               // collide with bad_guy first, since bullet_collision will
332               // delete the bullet
333               (*j)->collision(0, CO_BULLET);
334               bullets[i].collision(CO_BADGUY);
335               break; // bullet is invalid now, so break
336             }
337         }
338     }
339
340   /* CO_BADGUY & CO_BADGUY check */
341   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
342     {
343       if((*i)->dying != DYING_NOT)
344         continue;
345       
346       BadGuys::iterator j = i;
347       ++j;
348       for (; j != bad_guys.end(); ++j)
349         {
350           if(j == i || (*j)->dying != DYING_NOT)
351             continue;
352
353           if(rectcollision((*i)->base, (*j)->base))
354             {
355               // We have detected a collision and now call the
356               // collision functions of the collided objects.
357               (*j)->collision(*i, CO_BADGUY);
358               (*i)->collision(*j, CO_BADGUY);
359             }
360         }
361     }
362
363   if(tux.dying != DYING_NOT) return;
364     
365   // CO_BADGUY & CO_PLAYER check 
366   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
367     {
368       if((*i)->dying != DYING_NOT)
369         continue;
370       
371       if(rectcollision_offset((*i)->base, tux.base, 0, 0))
372         {
373           // We have detected a collision and now call the collision
374           // functions of the collided objects.
375           if (tux.previous_base.y < tux.base.y &&
376               tux.previous_base.y + tux.previous_base.height 
377               < (*i)->base.y + (*i)->base.height/2
378               && !tux.invincible_timer.started())
379             {
380               (*i)->collision(&tux, CO_PLAYER, COLLISION_SQUISH);
381             }
382           else
383             {
384               tux.collision(*i, CO_BADGUY);
385               (*i)->collision(&tux, CO_PLAYER, COLLISION_NORMAL);
386             }
387         }
388     }
389
390   // CO_UPGRADE & CO_PLAYER check
391   for(unsigned int i = 0; i < upgrades.size(); ++i)
392     {
393       if(rectcollision(upgrades[i].base, tux.base))
394         {
395           // We have detected a collision and now call the collision
396           // functions of the collided objects.
397           upgrades[i].collision(&tux, CO_PLAYER, COLLISION_NORMAL);
398         }
399     }
400 }
401
402 void
403 World::add_score(float x, float y, int s)
404 {
405   player_status.score += s;
406
407   FloatingScore* new_floating_score = new FloatingScore();
408   new_floating_score->init(x,y,s);
409   floating_scores.push_back(new_floating_score);
410 }
411
412 void
413 World::add_bouncy_distro(float x, float y)
414 {
415   BouncyDistro* new_bouncy_distro = new BouncyDistro();
416   new_bouncy_distro->init(x,y);
417   bouncy_distros.push_back(new_bouncy_distro);
418 }
419
420 void
421 World::add_broken_brick(Tile* tile, float x, float y)
422 {
423   add_broken_brick_piece(tile, x, y, -1, -4);
424   add_broken_brick_piece(tile, x, y + 16, -1.5, -3);
425
426   add_broken_brick_piece(tile, x + 16, y, 1, -4);
427   add_broken_brick_piece(tile, x + 16, y + 16, 1.5, -3);
428 }
429
430 void
431 World::add_broken_brick_piece(Tile* tile, float x, float y, float xm, float ym)
432 {
433   BrokenBrick* new_broken_brick = new BrokenBrick();
434   new_broken_brick->init(tile, x, y, xm, ym);
435   broken_bricks.push_back(new_broken_brick);
436 }
437
438 void
439 World::add_bouncy_brick(float x, float y)
440 {
441   BouncyBrick* new_bouncy_brick = new BouncyBrick();
442   new_bouncy_brick->init(x,y);
443   bouncy_bricks.push_back(new_bouncy_brick);
444 }
445
446 BadGuy*
447 World::add_bad_guy(float x, float y, BadGuyKind kind, bool stay_on_platform)
448 {
449   BadGuy* badguy = new BadGuy(x,y,kind, stay_on_platform);
450   bad_guys.push_back(badguy);
451   return badguy;
452 }
453
454 void
455 World::add_upgrade(float x, float y, Direction dir, UpgradeKind kind)
456 {
457   Upgrade new_upgrade;
458   new_upgrade.init(x,y,dir,kind);
459   upgrades.push_back(new_upgrade);
460 }
461
462 void 
463 World::add_bullet(float x, float y, float xm, Direction dir)
464 {
465   if(bullets.size() > MAX_BULLETS-1)
466     return;
467
468   Bullet new_bullet;
469   new_bullet.init(x,y,xm,dir);
470   bullets.push_back(new_bullet);
471   
472   play_sound(sounds[SND_SHOOT], SOUND_CENTER_SPEAKER);
473 }
474
475 void
476 World::play_music(int musictype)
477 {
478   currentmusic = musictype;
479   switch(currentmusic) {
480     case HURRYUP_MUSIC:
481       music_manager->play_music(get_level()->get_level_music_fast());
482       break;
483     case LEVEL_MUSIC:
484       music_manager->play_music(get_level()->get_level_music());
485       break;
486     case HERRING_MUSIC:
487       music_manager->play_music(herring_song);
488       break;
489     default:
490       music_manager->halt_music();
491       break;
492   }
493 }
494
495 int
496 World::get_music_type()
497 {
498   return currentmusic;
499 }
500
501 /* Break a brick: */
502 void
503 World::trybreakbrick(float x, float y, bool small)
504 {
505   Level* plevel = get_level();
506   
507   Tile* tile = gettile(x, y);
508   if (tile->brick)
509     {
510       if (tile->data > 0)
511         {
512           /* Get a distro from it: */
513           add_bouncy_distro(((int)(x + 1) / 32) * 32,
514                                   (int)(y / 32) * 32);
515
516           if (!counting_distros)
517             {
518               counting_distros = true;
519               distro_counter = 50;
520             }
521
522           if (distro_counter <= 0)
523             plevel->change(x, y, TM_IA, tile->next_tile);
524
525           play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
526           player_status.score = player_status.score + SCORE_DISTRO;
527           player_status.distros++;
528         }
529       else if (!small)
530         {
531           /* Get rid of it: */
532           plevel->change(x, y, TM_IA, tile->next_tile);
533           
534           /* Replace it with broken bits: */
535           add_broken_brick(tile, 
536                                  ((int)(x + 1) / 32) * 32,
537                                  (int)(y / 32) * 32);
538           
539           /* Get some score: */
540           play_sound(sounds[SND_BRICK], SOUND_CENTER_SPEAKER);
541           player_status.score = player_status.score + SCORE_BRICK;
542         }
543     }
544 }
545
546 /* Empty a box: */
547 void
548 World::tryemptybox(float x, float y, Direction col_side)
549 {
550   Tile* tile = gettile(x,y);
551   if (!tile->fullbox)
552     return;
553
554   // according to the collision side, set the upgrade direction
555   if(col_side == LEFT)
556     col_side = RIGHT;
557   else
558     col_side = LEFT;
559
560   int posx = ((int)(x+1) / 32) * 32;
561   int posy = (int)(y/32) * 32 - 32;
562   switch(tile->data)
563     {
564     case 1: // Box with a distro!
565       add_bouncy_distro(posx, posy);
566       play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
567       player_status.score = player_status.score + SCORE_DISTRO;
568       player_status.distros++;
569       break;
570
571     case 2: // Add an upgrade!
572       if (tux.size == SMALL)     /* Tux is small, add mints! */
573         add_upgrade(posx, posy, col_side, UPGRADE_GROWUP);
574       else     /* Tux is big, add an iceflower: */
575         add_upgrade(posx, posy, col_side, UPGRADE_ICEFLOWER);
576       play_sound(sounds[SND_UPGRADE], SOUND_CENTER_SPEAKER);
577       break;
578
579     case 3: // Add a golden herring
580       add_upgrade(posx, posy, col_side, UPGRADE_HERRING);
581       break;
582
583     case 4: // Add a 1up extra
584       add_upgrade(posx, posy, col_side, UPGRADE_1UP);
585       break;
586     default:
587       break;
588     }
589
590   /* Empty the box: */
591   level->change(x, y, TM_IA, tile->next_tile);
592 }
593
594 /* Try to grab a distro: */
595 void
596 World::trygrabdistro(float x, float y, int bounciness)
597 {
598   Tile* tile = gettile(x, y);
599   if (tile && tile->distro)
600     {
601       level->change(x, y, TM_IA, tile->next_tile);
602       play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
603
604       if (bounciness == BOUNCE)
605         {
606           add_bouncy_distro(((int)(x + 1) / 32) * 32,
607                                   (int)(y / 32) * 32);
608         }
609
610       player_status.score = player_status.score + SCORE_DISTRO;
611       player_status.distros++;
612     }
613 }
614
615 /* Try to bump a bad guy from below: */
616 void
617 World::trybumpbadguy(float x, float y)
618 {
619   // Bad guys: 
620   for (BadGuys::iterator i = bad_guys.begin(); i != bad_guys.end(); ++i)
621     {
622       if ((*i)->base.x >= x - 32 && (*i)->base.x <= x + 32 &&
623           (*i)->base.y >= y - 16 && (*i)->base.y <= y + 16)
624         {
625           (*i)->collision(&tux, CO_PLAYER, COLLISION_BUMP);
626         }
627     }
628
629   // Upgrades:
630   for (unsigned int i = 0; i < upgrades.size(); i++)
631     {
632       if (upgrades[i].base.height == 32 &&
633           upgrades[i].base.x >= x - 32 && upgrades[i].base.x <= x + 32 &&
634           upgrades[i].base.y >= y - 16 && upgrades[i].base.y <= y + 16)
635         {
636           upgrades[i].collision(&tux, CO_PLAYER, COLLISION_BUMP);
637         }
638     }
639 }
640
641 /* EOF */
642