Derive NodeMetadata from Metadata
[oweals/minetest.git] / src / metadata.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 #include "metadata.h"
21 #include "exceptions.h"
22 #include "gamedef.h"
23 #include "log.h"
24 #include <sstream>
25
26 /*
27         Metadata
28 */
29
30 void Metadata::clear()
31 {
32         m_stringvars.clear();
33 }
34
35 bool Metadata::empty() const
36 {
37         return m_stringvars.size() == 0;
38 }
39
40 std::string Metadata::getString(const std::string &name,
41         u16 recursion) const
42 {
43         StringMap::const_iterator it = m_stringvars.find(name);
44         if (it == m_stringvars.end())
45                 return "";
46
47         return resolveString(it->second, recursion);
48 }
49
50 void Metadata::setString(const std::string &name, const std::string &var)
51 {
52         if (var.empty()) {
53                 m_stringvars.erase(name);
54         } else {
55                 m_stringvars[name] = var;
56         }
57 }
58
59 std::string Metadata::resolveString(const std::string &str,
60         u16 recursion) const
61 {
62         if (recursion > 1) {
63                 return str;
64         }
65         if (str.substr(0, 2) == "${" && str[str.length() - 1] == '}') {
66                 return getString(str.substr(2, str.length() - 3), recursion + 1);
67         }
68         return str;
69 }