X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flevel.h;h=555138ae1a7e8356f5e128b8d91b54d88439a2dd;hb=84f81d92cda441c4bdca54b9a45a6a5f0226f59c;hp=3f4bf10bb8781952cfc4c26a39ab7ae943dae738;hpb=2fb736141667adaa2a883741719fa2ac6cff9956;p=supertux.git diff --git a/src/level.h b/src/level.h index 3f4bf10bb..555138ae1 100644 --- a/src/level.h +++ b/src/level.h @@ -1,114 +1,70 @@ +// $Id$ +// +// SuperTux +// Copyright (C) 2004 SuperTux Development Team, see AUTHORS for details // -// C Interface: level -// -// Description: -// -// -// Author: Tobias Glaesser , (C) 2003 -// -// Copyright: See COPYING file that comes with this distribution -// +// 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. // +// 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. #ifndef SUPERTUX_LEVEL_H #define SUPERTUX_LEVEL_H +#include #include -#include "texture.h" -#include "badguy.h" -#include "lispreader.h" - -class Tile; -/** This type holds meta-information about a level-subset. - It could be extended to handle manipulation of subsets. */ -class st_subset - { - public: - st_subset(); - static void create(const std::string& subset_name); - void load(char *subset); - void save(); - void free(); +class Sector; - std::string name; - std::string title; - std::string description; - Surface* image; - int levels; - - private: - void parse(lisp_object_t* cursor); - }; +namespace lisp { +class Lisp; +} -#define LEVEL_NAME_MAX 20 - - -enum TileMapType { - TM_BG, - TM_IA, - TM_FG - }; - -class Level +class Level { - public: - Surface* img_bkgd; - +public: std::string name; std::string author; - std::string theme; - std::string song_title; - std::string bkgd_image; - std::string particle_system; - std::vector bg_tiles[15]; /* Tiles in the background */ - std::vector ia_tiles[15]; /* Tiles which can interact in the game (solids for example)*/ - std::vector fg_tiles[15]; /* Tiles in the foreground */ - int time_left; - Color bkgd_top; - Color bkgd_bottom; - int width; - int endpos; - float gravity; + int timelimit; + typedef std::vector Sectors; + Sectors sectors; - std::vector badguy_data; - public: +public: Level(); - Level(const std::string& subset, int level); - Level(const std::string& filename); - - /** Will the Level structure with default values */ - void init_defaults(); - - /** Cleanup the level struct from allocated tile data and such */ - void cleanup(); + ~Level(); - /** Load data for this level: - Returns -1, if the loading of the level failed. */ - int load(const std::string& subset, int level); + // loads a levelfile + void load(const std::string& filename); + void save(const std::string& filename); - /** Load data for this level: - Returns -1, if the loading of the level failed. */ - int load(const std::string& filename); + const std::string& get_name() const + { return name; } - void load_gfx(); - void free_gfx(); - - void load_song(); - void free_song(); + const std::string& get_author() const + { return author; } - void save(const char* subset, int level); + void add_sector(Sector* sector); - /** Edit a piece of the map! */ - void change(float x, float y, int tm, unsigned int c); + Sector* get_sector(const std::string& name); - /** Resize the level to a new width */ - void change_size (int new_width); + size_t get_sector_count(); + Sector* get_sector(size_t num); - /** Return the id of the tile at position x/y */ - unsigned int gettileid(float x, float y); + int get_total_badguys(); + int get_total_coins(); - void load_image(Surface** ptexture, std::string theme, const char * file, int use_alpha); +private: + void load_old_format(const lisp::Lisp& reader); }; #endif /*SUPERTUX_LEVEL_H*/