Moved Levelset into it's own class, pass WorldState around instead of PlayerState...
[supertux.git] / src / supertux / world.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_SUPERTUX_WORLD_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_WORLD_HPP
19
20 #include <memory>
21 #include <squirrel.h>
22 #include <string>
23 #include <vector>
24
25 #include "util/currenton.hpp"
26 #include "supertux/world_state.hpp"
27
28 class World : public Currenton<World>
29 {
30 private:
31   World();
32
33   void load_(const std::string& directory);
34
35 public:
36   /**
37       Load a World
38
39       @param directory  Directory containing the info file, e.g. "levels/world1"
40   */
41   static std::unique_ptr<World> load(const std::string& directory);
42
43 public:
44   ~World();
45
46   std::string get_basedir() const;
47   std::string get_title() const;
48
49   bool hide_from_contribs() const { return m_hide_from_contribs; }
50
51   bool is_levelset() const { return m_is_levelset; }
52   bool is_worldmap() const { return !m_is_levelset; }
53
54   std::string get_worldmap_filename() const { return m_worldmap_filename; }
55   std::string get_savegame_filename() const { return m_savegame_filename; }
56
57 private:
58   std::string m_basedir;
59   std::string m_worldmap_filename;
60   std::string m_savegame_filename;
61
62   std::string m_title;
63   std::string m_description;
64   bool m_hide_from_contribs;
65   bool m_is_levelset;
66
67 private:
68   World(const World&) = delete;
69   World& operator=(const World&) = delete;
70 };
71
72 #endif
73
74 /* EOF */