- moved tilemanager into its own class
[supertux.git] / src / level.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 SuperTux Development Team, see AUTHORS for details
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
19 //  02111-1307, USA.
20
21 #ifndef SUPERTUX_LEVEL_H
22 #define SUPERTUX_LEVEL_H
23
24 #include <map>
25 #include <string>
26
27 #include "screen/surface.h"
28 #include "lispreader.h"
29 #include "musicref.h"
30
31 class Tile;
32
33 /** This type holds meta-information about a level-subset. 
34     It could be extended to handle manipulation of subsets. */
35 class LevelSubset
36 {
37 public:
38   LevelSubset();
39   ~LevelSubset();
40
41   static void create(const std::string& subset_name);
42   void load(const char* subset);
43   void save();
44
45   std::string get_level_filename(unsigned int i);
46
47   std::string name;
48   std::string title;
49   std::string description;
50   Surface* image;
51   int levels;
52  
53 private:
54   void parse(lisp_object_t* cursor);
55 };
56
57 class Sector;
58
59 class Level
60 {
61 public:
62   std::string name;
63   std::string author;
64   int time_left;
65   typedef std::map<std::string, Sector*> Sectors;
66   Sectors sectors;
67
68 public:
69   Level();
70   ~Level();
71
72   void load(const std::string& filename);
73   void save(const std::string& filename);
74
75   const std::string& get_name() const
76   { return name; }
77
78   const std::string& get_author() const
79   { return author; }
80
81   void add_sector(Sector* sector);
82
83   Sector* get_sector(const std::string& name);
84
85 private:
86   void load_old_format(LispReader& reader);
87 };
88
89 #endif /*SUPERTUX_LEVEL_H*/