3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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.
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.
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.
20 #ifndef NAMEIDMAPPING_HEADER
21 #define NAMEIDMAPPING_HEADER
27 #include "irrlichttypes_bloated.h"
32 void serialize(std::ostream &os) const;
33 void deSerialize(std::istream &is);
39 void set(u16 id, const std::string &name){
40 m_id_to_name[id] = name;
41 m_name_to_id[name] = id;
43 void removeId(u16 id){
45 bool found = getName(id, name);
47 m_id_to_name.erase(id);
48 m_name_to_id.erase(name);
50 void eraseName(const std::string &name){
52 bool found = getId(name, id);
54 m_id_to_name.erase(id);
55 m_name_to_id.erase(name);
57 bool getName(u16 id, std::string &result) const{
58 std::map<u16, std::string>::const_iterator i;
59 i = m_id_to_name.find(id);
60 if(i == m_id_to_name.end())
65 bool getId(const std::string &name, u16 &result) const{
66 std::map<std::string, u16>::const_iterator i;
67 i = m_name_to_id.find(name);
68 if(i == m_name_to_id.end())
74 return m_id_to_name.size();
77 std::map<u16, std::string> m_id_to_name;
78 std::map<std::string, u16> m_name_to_id;