Fix coverity #29357
[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 "supertux/savegame.hpp"
26
27 class World
28 {
29 private:
30   World();
31
32   void load_(const std::string& directory);
33
34 public:
35   /**
36       Load a World
37
38       @param directory  Directory containing the info file, e.g. "levels/world1"
39   */
40   static std::unique_ptr<World> load(const std::string& directory);
41
42 public:
43   ~World();
44
45   std::string get_basedir() const;
46   std::string get_title() const;
47
48   bool hide_from_contribs() const { return m_hide_from_contribs; }
49
50   bool is_levelset() const { return m_is_levelset; }
51   bool is_worldmap() const { return !m_is_levelset; }
52
53   std::string get_worldmap_filename() const { return m_worldmap_filename; }
54   std::string get_savegame_filename() const { return m_savegame_filename; }
55
56 private:
57   std::string m_basedir;
58   std::string m_worldmap_filename;
59   std::string m_savegame_filename;
60
61   std::string m_title;
62   std::string m_description;
63   bool m_hide_from_contribs;
64   bool m_is_levelset;
65
66 private:
67   World(const World&) = delete;
68   World& operator=(const World&) = delete;
69 };
70
71 #endif
72
73 /* EOF */