]> git.lizzy.rs Git - minetest-m13.git/blob - src/mods.h
c23ad94664b4df57f1d6a2b9daaa7a213e9431b2
[minetest-m13.git] / src / mods.h
1 /*
2 Minetest-m13
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 MODS_HEADER
21 #define MODS_HEADER
22
23 #include "irrlichttypes.h"
24 #include <set>
25 #include <string>
26 #include <exception>
27
28 class ModError : public std::exception
29 {
30 public:
31         ModError(const std::string &s)
32         {
33                 m_s = "ModError: ";
34                 m_s += s;
35         }
36         virtual ~ModError() throw()
37         {}
38         virtual const char * what() const throw()
39         {
40                 return m_s.c_str();
41         }
42         std::string m_s;
43 };
44
45 struct ModSpec
46 {
47         std::string name;
48         std::string path;
49         std::set<std::string> depends;
50         std::set<std::string> unsatisfied_depends;
51
52         ModSpec(const std::string &name_="", const std::string path_="",
53                         const std::set<std::string> &depends_=std::set<std::string>()):
54                 name(name_),
55                 path(path_),
56                 depends(depends_),
57                 unsatisfied_depends(depends_)
58         {}
59 };
60
61 // Get a dependency-sorted list of ModSpecs
62 core::list<ModSpec> getMods(core::list<std::string> &modspaths)
63                 throw(ModError);
64
65 #endif
66