Optimize headers
[oweals/minetest.git] / src / mods.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 Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser 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 <irrList.h>
25 #include <set>
26 #include <string>
27 #include <exception>
28
29 class ModError : public std::exception
30 {
31 public:
32         ModError(const std::string &s)
33         {
34                 m_s = "ModError: ";
35                 m_s += s;
36         }
37         virtual ~ModError() throw()
38         {}
39         virtual const char * what() const throw()
40         {
41                 return m_s.c_str();
42         }
43         std::string m_s;
44 };
45
46 struct ModSpec
47 {
48         std::string name;
49         std::string path;
50         std::set<std::string> depends;
51         std::set<std::string> unsatisfied_depends;
52
53         ModSpec(const std::string &name_="", const std::string path_="",
54                         const std::set<std::string> &depends_=std::set<std::string>()):
55                 name(name_),
56                 path(path_),
57                 depends(depends_),
58                 unsatisfied_depends(depends_)
59         {}
60 };
61
62 // Get a dependency-sorted list of ModSpecs
63 core::list<ModSpec> getMods(core::list<std::string> &modspaths)
64                 throw(ModError);
65
66 #endif
67