Moved some console commands' implementations nearer to target classes
[supertux.git] / src / world.hpp
1 //  $Id: worldmap.hpp 2800 2005-10-02 22:57:31Z matzebraun $
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.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 #ifndef SUPERTUX_WORLD_H
20 #define SUPERTUX_WORLD_H
21
22 #include <vector>
23 #include <string>
24
25 class World
26 {
27 private:
28   std::vector<std::string> levels;
29   std::string basedir;
30
31 public:
32   World();
33   ~World();
34
35   void load(const std::string& filename);
36   
37   const std::string& get_level_filename(unsigned int i) const;
38   unsigned int get_num_levels() const;
39
40   const std::string& get_basedir() const;
41
42   void run();
43
44   std::string title;
45   std::string description;
46   bool hide_from_contribs;
47   bool is_levelset;
48 };
49
50 #endif
51