]> git.lizzy.rs Git - minetest.git/blob - src/metadata.cpp
96453d710849e0578fa8f03bc20b8048f2b6143c
[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 size_t Metadata::size() const
41 {
42         return m_stringvars.size();
43 }
44
45 bool Metadata::contains(const std::string &name) const
46 {
47         return m_stringvars.find(name) != m_stringvars.end();
48 }
49
50 bool Metadata::operator==(const Metadata &other) const
51 {
52         if (size() != other.size())
53                 return false;
54
55         for (StringMap::const_iterator it = m_stringvars.begin();
56                         it != m_stringvars.end(); ++it) {
57                 if (!other.contains(it->first) ||
58                                 other.getString(it->first) != it->second)
59                         return false;
60         }
61
62         return true;
63 }
64
65 const std::string &Metadata::getString(const std::string &name,
66                 u16 recursion) const
67 {
68         StringMap::const_iterator it = m_stringvars.find(name);
69         if (it == m_stringvars.end()) {
70                 static const std::string empty_string = std::string("");
71                 return empty_string;
72         }
73
74         return resolveString(it->second, recursion);
75 }
76
77 void Metadata::setString(const std::string &name, const std::string &var)
78 {
79         if (var.empty()) {
80                 m_stringvars.erase(name);
81         } else {
82                 m_stringvars[name] = var;
83         }
84 }
85
86 const std::string &Metadata::resolveString(const std::string &str,
87                 u16 recursion) const
88 {
89         if (recursion <= 1 &&
90                         str.substr(0, 2) == "${" && str[str.length() - 1] == '}') {
91                 return getString(str.substr(2, str.length() - 3), recursion + 1);
92         } else {
93                 return str;
94         }
95 }