- moved the global_world into the leveleditors namespace
[supertux.git] / src / world.cpp
index f198e81..cd187e5 100644 (file)
@@ -1,15 +1,23 @@
+//  $Id$
+// 
+//  SuperTux
+//  Copyright (C) 2004 SuperTux Development Team, see AUTHORS for details
 //
-// C Implementation: world
+//  This program is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU General Public License
+//  as published by the Free Software Foundation; either version 2
+//  of the License, or (at your option) any later version.
 //
-// Description:
-//
-//
-// Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+// 
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+
+#include <math.h>
 #include <stdlib.h>
 #include <string.h>
 #include "globals.h"
 #include "screen.h"
 #include "defines.h"
 #include "world.h"
+#include "level.h"
 #include "tile.h"
+#include "resources.h"
 
 texture_type img_distro[4];
 
-void bouncy_distro_init(bouncy_distro_type* pbouncy_distro, float x, float y)
+World* World::current_ = 0;
+
+World::World()
 {
-  pbouncy_distro->base.x = x;
-  pbouncy_distro->base.y = y;
-  pbouncy_distro->base.ym = -2;
+  // FIXME: Move this to action and draw and everywhere else where the
+  // world calls child functions
+  current_ = this;
+
+  level = new Level;
+  tux.init();
+}
+
+World::~World()
+{
+  delete level;
 }
 
-void bouncy_distro_action(bouncy_distro_type* pbouncy_distro)
+void
+World::set_defaults()
 {
-  pbouncy_distro->base.y = pbouncy_distro->base.y + pbouncy_distro->base.ym * frame_ratio;
+  // Set defaults: 
+  scroll_x = 0;
 
-  pbouncy_distro->base.ym += 0.1 * frame_ratio;
+  player_status.score_multiplier = 1;
 
-  if (pbouncy_distro->base.ym >= 0)
-    bouncy_distros.erase(static_cast<std::vector<bouncy_distro_type>::iterator>(pbouncy_distro));
+  counting_distros = false;
+  distro_counter = 0;
+
+  /* set current song/music */
+  set_current_music(LEVEL_MUSIC);
 }
 
-void bouncy_distro_draw(bouncy_distro_type* pbouncy_distro)
+int
+World::load(const std::string& subset, int level_nr)
 {
-  texture_draw(&img_distro[0],
-               pbouncy_distro->base.x - scroll_x,
-               pbouncy_distro->base.y);
+  return level->load(subset, level_nr);
 }
 
-void broken_brick_init(broken_brick_type* pbroken_brick, float x, float y, float xm, float ym)
+int
+World::load(const std::string& filename)
 {
-  pbroken_brick->base.x = x;
-  pbroken_brick->base.y = y;
-  pbroken_brick->base.xm = xm;
-  pbroken_brick->base.ym = ym;
-  timer_init(&pbroken_brick->timer, true);
-  timer_start(&pbroken_brick->timer,200);
+  return level->load(filename);
 }
 
-void broken_brick_action(broken_brick_type* pbroken_brick)
+void
+World::arrays_free(void)
 {
-  pbroken_brick->base.x = pbroken_brick->base.x + pbroken_brick->base.xm * frame_ratio;
-  pbroken_brick->base.y = pbroken_brick->base.y + pbroken_brick->base.ym * frame_ratio;
-
-  if (!timer_check(&pbroken_brick->timer))
-    broken_bricks.erase(static_cast<std::vector<broken_brick_type>::iterator>(pbroken_brick));
+  bad_guys.clear();
+  bouncy_distros.clear();
+  broken_bricks.clear();
+  bouncy_bricks.clear();
+  floating_scores.clear();
+  upgrades.clear();
+  bullets.clear();
+  std::vector<ParticleSystem*>::iterator i;
+  for(i = particle_systems.begin(); i != particle_systems.end(); ++i) {
+    delete *i;
+  }
+  particle_systems.clear();
 }
 
-void broken_brick_draw(broken_brick_type* pbroken_brick)
+void
+World::activate_bad_guys()
 {
-  SDL_Rect src, dest;
-  src.x = rand() % 16;
-  src.y = rand() % 16;
-  src.w = 16;
-  src.h = 16;
-
-  dest.x = (int)(pbroken_brick->base.x - scroll_x);
-  dest.y = (int)pbroken_brick->base.y;
-  dest.w = 16;
-  dest.h = 16;
-
-  texture_draw_part(&img_brick[0],src.x,src.y,dest.x,dest.y,dest.w,dest.h);
+  for (std::vector<BadGuyData>::iterator i = level->badguy_data.begin();
+       i != level->badguy_data.end();
+       ++i)
+    {
+      add_bad_guy(i->x, i->y, i->kind);
+    }
 }
 
-void bouncy_brick_init(bouncy_brick_type* pbouncy_brick, float x, float y)
+void
+World::activate_particle_systems()
 {
-  pbouncy_brick->base.x   = x;
-  pbouncy_brick->base.y   = y;
-  pbouncy_brick->offset   = 0;
-  pbouncy_brick->offset_m = -BOUNCY_BRICK_SPEED;
-  pbouncy_brick->shape    = GameSession::current()->get_level()->gettileid(x, y);
+  if (level->particle_system == "clouds")
+    {
+      particle_systems.push_back(new CloudParticleSystem);
+    }
+  else if (level->particle_system == "snow")
+    {
+      particle_systems.push_back(new SnowParticleSystem);
+    }
+  else if (level->particle_system != "")
+    {
+      st_abort("unknown particle system specified in level", "");
+    }
 }
 
-void bouncy_brick_action(bouncy_brick_type* pbouncy_brick)
+void
+World::draw()
 {
+  int y,x;
 
-  pbouncy_brick->offset = (pbouncy_brick->offset +
-                           pbouncy_brick->offset_m * frame_ratio);
+  /* Draw the real background */
+  if(get_level()->bkgd_image[0] != '\0')
+    {
+      int s = (int)scroll_x / 30;
+      texture_draw_part(&level->img_bkgd, s, 0,0,0,level->img_bkgd.w - s, level->img_bkgd.h);
+      texture_draw_part(&level->img_bkgd, 0, 0,screen->w - s ,0,s,level->img_bkgd.h);
+    }
+  else
+    {
+      clearscreen(level->bkgd_red, level->bkgd_green, level->bkgd_blue);
+    }
+    
+  /* Draw particle systems (background) */
+  std::vector<ParticleSystem*>::iterator p;
+  for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
+    {
+      (*p)->draw(scroll_x, 0, 0);
+    }
+
+  /* Draw background: */
+  for (y = 0; y < 15; ++y)
+    {
+      for (x = 0; x < 21; ++x)
+        {
+          Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
+                     level->bg_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
+        }
+    }
+
+  /* Draw interactive tiles: */
+  for (y = 0; y < 15; ++y)
+    {
+      for (x = 0; x < 21; ++x)
+        {
+          Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
+                     level->ia_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
+        }
+    }
+
+  /* (Bouncy bricks): */
+  for (unsigned int i = 0; i < bouncy_bricks.size(); ++i)
+    bouncy_bricks[i].draw();
+
+  for (unsigned int i = 0; i < bad_guys.size(); ++i)
+    bad_guys[i].draw();
 
-  /* Go back down? */
+  tux.draw();
 
-  if (pbouncy_brick->offset < -BOUNCY_BRICK_MAX_OFFSET)
-    pbouncy_brick->offset_m = BOUNCY_BRICK_SPEED;
+  for (unsigned int i = 0; i < bullets.size(); ++i)
+    bullets[i].draw();
 
+  for (unsigned int i = 0; i < floating_scores.size(); ++i)
+    floating_scores[i].draw();
 
-  /* Stop bouncing? */
+  for (unsigned int i = 0; i < upgrades.size(); ++i)
+    upgrades[i].draw();
 
-  if (pbouncy_brick->offset >= 0)
-    bouncy_bricks.erase(static_cast<std::vector<bouncy_brick_type>::iterator>(pbouncy_brick));
+  for (unsigned int i = 0; i < bouncy_distros.size(); ++i)
+    bouncy_distros[i].draw();
+
+  for (unsigned int i = 0; i < broken_bricks.size(); ++i)
+    broken_bricks[i].draw();
+
+  /* Draw foreground: */
+  for (y = 0; y < 15; ++y)
+    {
+      for (x = 0; x < 21; ++x)
+        {
+          Tile::draw(32*x - fmodf(scroll_x, 32), y * 32,
+                     level->fg_tiles[(int)y][(int)x + (int)(scroll_x / 32)]);
+        }
+    }
+
+  /* Draw particle systems (foreground) */
+  for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
+    {
+      (*p)->draw(scroll_x, 0, 1);
+    }
 }
 
-void bouncy_brick_draw(bouncy_brick_type* pbouncy_brick)
+void
+World::action(double frame_ratio)
 {
-  int s;
-  SDL_Rect dest;
+  /* Handle bouncy distros: */
+  for (unsigned int i = 0; i < bouncy_distros.size(); i++)
+    bouncy_distros[i].action(frame_ratio);
+
+  /* Handle broken bricks: */
+  for (unsigned int i = 0; i < broken_bricks.size(); i++)
+    broken_bricks[i].action(frame_ratio);
+
+  /* Handle distro counting: */
+  if (counting_distros)
+    {
+      distro_counter--;
+
+      if (distro_counter <= 0)
+        counting_distros = -1;
+    }
+
+  // Handle all kinds of game objects
+  for (unsigned int i = 0; i < bouncy_bricks.size(); i++)
+    bouncy_bricks[i].action(frame_ratio);
+  
+  for (unsigned int i = 0; i < floating_scores.size(); i++)
+    floating_scores[i].action(frame_ratio);
+
+  for (unsigned int i = 0; i < bullets.size(); ++i)
+    bullets[i].action(frame_ratio);
   
-  if (pbouncy_brick->base.x >= scroll_x - 32 &&
-      pbouncy_brick->base.x <= scroll_x + screen->w)
+  for (unsigned int i = 0; i < upgrades.size(); i++)
+    upgrades[i].action(frame_ratio);
+
+  for (unsigned int i = 0; i < bad_guys.size(); i++)
+    bad_guys[i].action(frame_ratio);
+
+  /* update particle systems */
+  std::vector<ParticleSystem*>::iterator p;
+  for(p = particle_systems.begin(); p != particle_systems.end(); ++p)
     {
-      dest.x = (int)(pbouncy_brick->base.x - scroll_x);
-      dest.y = (int)pbouncy_brick->base.y;
-      dest.w = 32;
-      dest.h = 32;
+      (*p)->simulate(frame_ratio);
+    }
+
+  /* Handle all possible collisions. */
+  collision_handler();
+}
 
-      Level* plevel = GameSession::current()->get_level();
 
-      // FIXME: overdrawing hack to clean the tile from the screen to
-      // paint it later at on offseted position
-      if(plevel->bkgd_image[0] == '\0')
+void
+World::collision_handler()
+{
+  // CO_BULLET & CO_BADGUY check
+  for(unsigned int i = 0; i < bullets.size(); ++i)
+    {
+      for(unsigned int j = 0; j < bad_guys.size(); ++j)
         {
-          fillrect(pbouncy_brick->base.x - scroll_x, pbouncy_brick->base.y,
-                   32,32, 
-                   plevel->bkgd_red, plevel->bkgd_green, plevel->bkgd_blue, 0);
+          if(bad_guys[j].dying != DYING_NOT)
+            continue;
+          if(rectcollision(&bullets[i].base, &bad_guys[j].base))
+            {
+              // We have detected a collision and now call the
+              // collision functions of the collided objects.
+              // collide with bad_guy first, since bullet_collision will
+              // delete the bullet
+              bad_guys[j].collision(0, CO_BULLET);
+              bullets[i].collision(CO_BADGUY);
+              break; // bullet is invalid now, so break
+            }
         }
-      else
+    }
+
+  /* CO_BADGUY & CO_BADGUY check */
+  for(unsigned int i = 0; i < bad_guys.size(); ++i)
+    {
+      if(bad_guys[i].dying != DYING_NOT)
+        continue;
+      
+      for(unsigned int j = i+1; j < bad_guys.size(); ++j)
         {
-          s = (int)scroll_x / 30;
-          texture_draw_part(&img_bkgd,dest.x + s,dest.y,dest.x,dest.y,dest.w,dest.h);
+          if(j == i || bad_guys[j].dying != DYING_NOT)
+            continue;
+
+          if(rectcollision(&bad_guys[i].base, &bad_guys[j].base))
+            {
+              // We have detected a collision and now call the
+              // collision functions of the collided objects.
+              bad_guys[j].collision(&bad_guys[i], CO_BADGUY);
+              bad_guys[i].collision(&bad_guys[j], CO_BADGUY);
+            }
         }
+    }
 
-      drawshape(pbouncy_brick->base.x - scroll_x,
-                pbouncy_brick->base.y + pbouncy_brick->offset,
-                pbouncy_brick->shape);
+  if(tux.dying != DYING_NOT) return;
+    
+  // CO_BADGUY & CO_PLAYER check 
+  for(unsigned int i = 0; i < bad_guys.size(); ++i)
+    {
+      if(bad_guys[i].dying != DYING_NOT)
+        continue;
+      
+      if(rectcollision_offset(&bad_guys[i].base,&tux.base,0,0))
+        {
+          // We have detected a collision and now call the collision
+          // functions of the collided objects.
+          if (tux.previous_base.y < tux.base.y &&
+              tux.previous_base.y + tux.previous_base.height 
+              < bad_guys[i].base.y + bad_guys[i].base.height/2)
+            {
+              bad_guys[i].collision(&tux, CO_PLAYER, COLLISION_SQUISH);
+            }
+          else
+            {
+              tux.collision(&bad_guys[i], CO_BADGUY);
+            }
+        }
+    }
+
+  // CO_UPGRADE & CO_PLAYER check
+  for(unsigned int i = 0; i < upgrades.size(); ++i)
+    {
+      if(rectcollision(&upgrades[i].base, &tux.base))
+        {
+          // We have detected a collision and now call the collision
+          // functions of the collided objects.
+          upgrades[i].collision(&tux, CO_PLAYER);
+        }
     }
 }
 
-void floating_score_init(floating_score_type* pfloating_score, float x, float y, int s)
+void
+World::add_score(float x, float y, int s)
+{
+  player_status.score += s;
+
+  FloatingScore new_floating_score;
+  new_floating_score.init(x,y,s);
+  floating_scores.push_back(new_floating_score);
+}
+
+void
+World::add_bouncy_distro(float x, float y)
+{
+  BouncyDistro new_bouncy_distro;
+  new_bouncy_distro.init(x,y);
+  bouncy_distros.push_back(new_bouncy_distro);
+}
+
+void
+World::add_broken_brick(Tile* tile, float x, float y)
 {
-  pfloating_score->base.x = x;
-  pfloating_score->base.y = y - 16;
-  timer_init(&pfloating_score->timer,true);
-  timer_start(&pfloating_score->timer,1000);
-  pfloating_score->value = s;
+  add_broken_brick_piece(tile, x, y, -1, -4);
+  add_broken_brick_piece(tile, x, y + 16, -1.5, -3);
+
+  add_broken_brick_piece(tile, x + 16, y, 1, -4);
+  add_broken_brick_piece(tile, x + 16, y + 16, 1.5, -3);
 }
 
-void floating_score_action(floating_score_type* pfloating_score)
+void
+World::add_broken_brick_piece(Tile* tile, float x, float y, float xm, float ym)
 {
-  pfloating_score->base.y = pfloating_score->base.y - 2 * frame_ratio;
+  BrokenBrick new_broken_brick;
+  new_broken_brick.init(tile, x, y, xm, ym);
+  broken_bricks.push_back(new_broken_brick);
+}
 
-  if(!timer_check(&pfloating_score->timer))
-    floating_scores.erase(static_cast<std::vector<floating_score_type>::iterator>(pfloating_score));
+void
+World::add_bouncy_brick(float x, float y)
+{
+  BouncyBrick new_bouncy_brick;
+  new_bouncy_brick.init(x,y);
+  bouncy_bricks.push_back(new_bouncy_brick);
 }
 
-void floating_score_draw(floating_score_type* pfloating_score)
+void
+World::add_bad_guy(float x, float y, BadGuyKind kind)
 {
-  char str[10];
-  sprintf(str, "%d", pfloating_score->value);
-  text_draw(&gold_text, str, (int)pfloating_score->base.x + 16 - strlen(str) * 8, (int)pfloating_score->base.y, 1);
+  bad_guys.push_back(BadGuy());
+  BadGuy& new_bad_guy = bad_guys.back();
+  
+  new_bad_guy.init(x,y,kind);
+}
+
+void
+World::add_upgrade(float x, float y, int dir, int kind)
+{
+  Upgrade new_upgrade;
+  new_upgrade.init(x,y,dir,kind);
+  upgrades.push_back(new_upgrade);
+}
+
+void 
+World::add_bullet(float x, float y, float xm, int dir)
+{
+  Bullet new_bullet;
+  new_bullet.init(x,y,xm,dir);
+  bullets.push_back(new_bullet);
+  
+  play_sound(sounds[SND_SHOOT], SOUND_CENTER_SPEAKER);
 }
 
 /* Break a brick: */
-void trybreakbrick(float x, float y, bool small)
+void
+World::trybreakbrick(float x, float y, bool small)
 {
-  Level* plevel = GameSession::current()->get_level();
+  Level* plevel = get_level();
   
   Tile* tile = gettile(x, y);
   if (tile->brick)
@@ -178,7 +418,7 @@ void trybreakbrick(float x, float y, bool small)
         {
           /* Get a distro from it: */
           add_bouncy_distro(((int)(x + 1) / 32) * 32,
-                            (int)(y / 32) * 32);
+                                  (int)(y / 32) * 32);
 
           if (!counting_distros)
             {
@@ -190,8 +430,8 @@ void trybreakbrick(float x, float y, bool small)
             plevel->change(x, y, TM_IA, tile->next_tile);
 
           play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
-          score = score + SCORE_DISTRO;
-          distros++;
+          player_status.score = player_status.score + SCORE_DISTRO;
+          player_status.distros++;
         }
       else if (!small)
         {
@@ -199,21 +439,21 @@ void trybreakbrick(float x, float y, bool small)
           plevel->change(x, y, TM_IA, tile->next_tile);
           
           /* Replace it with broken bits: */
-          add_broken_brick(((int)(x + 1) / 32) * 32,
-                           (int)(y / 32) * 32);
+          add_broken_brick(tile, 
+                                 ((int)(x + 1) / 32) * 32,
+                                 (int)(y / 32) * 32);
           
           /* Get some score: */
           play_sound(sounds[SND_BRICK], SOUND_CENTER_SPEAKER);
-          score = score + SCORE_BRICK;
+          player_status.score = player_status.score + SCORE_BRICK;
         }
     }
 }
 
 /* Empty a box: */
-void tryemptybox(float x, float y, int col_side)
+void
+World::tryemptybox(float x, float y, int col_side)
 {
-  Level* plevel = GameSession::current()->get_level();
-
   Tile* tile = gettile(x,y);
   if (!tile->fullbox)
     return;
@@ -226,14 +466,14 @@ void tryemptybox(float x, float y, int col_side)
 
   switch(tile->data)
     {
-    case 1: //'A':      /* Box with a distro! */
+    case 1: // Box with a distro!
       add_bouncy_distro(((int)(x + 1) / 32) * 32, (int)(y / 32) * 32 - 32);
       play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
-      score = score + SCORE_DISTRO;
-      distros++;
+      player_status.score = player_status.score + SCORE_DISTRO;
+      player_status.distros++;
       break;
 
-    case 2: // 'B':      /* Add an upgrade! */
+    case 2: // Add an upgrade!
       if (tux.size == SMALL)     /* Tux is small, add mints! */
         add_upgrade((int)((x + 1) / 32) * 32, (int)(y / 32) * 32 - 32, col_side, UPGRADE_MINTS);
       else     /* Tux is big, add coffee: */
@@ -241,7 +481,7 @@ void tryemptybox(float x, float y, int col_side)
       play_sound(sounds[SND_UPGRADE], SOUND_CENTER_SPEAKER);
       break;
 
-    case 3:// '!':     /* Add a golden herring */
+    case 3: // Add a golden herring
       add_upgrade((int)((x + 1) / 32) * 32, (int)(y / 32) * 32 - 32, col_side, UPGRADE_HERRING);
       break;
     default:
@@ -249,32 +489,33 @@ void tryemptybox(float x, float y, int col_side)
     }
 
   /* Empty the box: */
-  plevel->change(x, y, TM_IA, tile->next_tile);
+  level->change(x, y, TM_IA, tile->next_tile);
 }
 
 /* Try to grab a distro: */
-void trygrabdistro(float x, float y, int bounciness)
+void
+World::trygrabdistro(float x, float y, int bounciness)
 {
-  Level* plevel = GameSession::current()->get_level();
   Tile* tile = gettile(x, y);
   if (tile && tile->distro)
     {
-      plevel->change(x, y, TM_IA, tile->next_tile);
+      level->change(x, y, TM_IA, tile->next_tile);
       play_sound(sounds[SND_DISTRO], SOUND_CENTER_SPEAKER);
 
       if (bounciness == BOUNCE)
         {
           add_bouncy_distro(((int)(x + 1) / 32) * 32,
-                            (int)(y / 32) * 32);
+                                  (int)(y / 32) * 32);
         }
 
-      score = score + SCORE_DISTRO;
-      distros++;
+      player_status.score = player_status.score + SCORE_DISTRO;
+      player_status.distros++;
     }
 }
 
 /* Try to bump a bad guy from below: */
-void trybumpbadguy(float x, float y)
+void
+World::trybumpbadguy(float x, float y)
 {
   /* Bad guys: */
   for (unsigned int i = 0; i < bad_guys.size(); i++)