]> git.lizzy.rs Git - dragonfireclient.git/blob - src/subgame.h
061bb41802bc3d58e364d3dc4c44637215a780aa
[dragonfireclient.git] / src / subgame.h
1 /*
2 Minetest-c55
3 Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef SUBGAME_HEADER
21 #define SUBGAME_HEADER
22
23 #include <string>
24 #include <set>
25 #include <vector>
26
27 struct SubgameSpec
28 {
29         std::string id; // "" = game does not exist
30         std::string path;
31         std::set<std::string> mods_paths;
32         std::string name;
33
34         SubgameSpec(const std::string &id_="",
35                         const std::string &path_="",
36                         const std::set<std::string> &mods_paths_=std::set<std::string>(),
37                         const std::string &name_=""):
38                 id(id_),
39                 path(path_),
40                 mods_paths(mods_paths_),
41                 name(name_)
42         {}
43
44         bool isValid() const
45         {
46                 return (id != "" && path != "");
47         }
48 };
49
50 SubgameSpec findSubgame(const std::string &id);
51
52 std::set<std::string> getAvailableGameIds();
53 std::vector<SubgameSpec> getAvailableGames();
54
55 std::string getWorldGameId(const std::string &world_path,
56                 bool can_be_legacy=false);
57
58 struct WorldSpec
59 {
60         std::string path;
61         std::string name;
62         std::string gameid;
63
64         WorldSpec(
65                 const std::string &path_="",
66                 const std::string &name_="",
67                 const std::string &gameid_=""
68         ):
69                 path(path_),
70                 name(name_),
71                 gameid(gameid_)
72         {}
73
74         bool isValid() const
75         {
76                 return (name != "" && path != "" && gameid != "");
77         }
78 };
79
80 std::vector<WorldSpec> getAvailableWorlds();
81
82 // Create world directory and world.mt if they don't exist
83 bool initializeWorld(const std::string &path, const std::string &gameid);
84
85 #endif
86