]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/entity/namekeys.h
ok
[xonotic/netradiant.git] / plugins / entity / namekeys.h
1 /*
2 Copyright (C) 2001-2006, William Joseph.
3 All Rights Reserved.
4
5 This file is part of GtkRadiant.
6
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 #if !defined(INCLUDED_NAMEKEYS_H)
23 #define INCLUDED_NAMEKEYS_H
24
25 #include <stdio.h>
26 #include <map>
27 #include "generic/static.h"
28 #include "entitylib.h"
29 #include "namespace.h"
30
31 inline bool string_is_integer(const char* string)
32 {
33   strtol(string, const_cast<char**>(&string), 10);
34   return *string == '\0';
35 }
36
37 typedef bool (*KeyIsNameFunc)(const char* key);
38
39 class KeyIsName
40 {
41 public:
42   KeyIsNameFunc m_keyIsName;
43   const char* m_nameKey;
44
45   KeyIsName()
46   {
47   }
48 };
49
50
51 typedef MemberCaller1<KeyValue, const char*, &KeyValue::assign> KeyValueAssignCaller;
52 typedef MemberCaller1<KeyValue, const KeyObserver&, &KeyValue::attach> KeyValueAttachCaller;
53 typedef MemberCaller1<KeyValue, const KeyObserver&, &KeyValue::detach> KeyValueDetachCaller;
54
55 class NameKeys : public EntityKeyValues::Observer, public Namespaced
56 {
57   Namespace* m_namespace;
58   EntityKeyValues& m_entity;
59   KeyIsNameFunc m_keyIsName;
60   NameKeys(const NameKeys& other);
61   NameKeys& operator=(const NameKeys& other);
62
63   typedef std::map<CopiedString, EntityKeyValues::Value*> KeyValues;
64   KeyValues m_keyValues;
65
66   void insertName(const char* key, EntityKeyValues::Value& value)
67   {
68     if(m_namespace != 0 && m_keyIsName(key))
69     {
70       //globalOutputStream() << "insert " << key << "\n";
71       m_namespace->attach(KeyValueAssignCaller(value), KeyValueAttachCaller(value));
72     }
73   }
74   void eraseName(const char* key, EntityKeyValues::Value& value)
75   {
76     if(m_namespace != 0 && m_keyIsName(key))
77     {
78       //globalOutputStream() << "erase " << key << "\n";
79       m_namespace->detach(KeyValueAssignCaller(value), KeyValueDetachCaller(value));
80     }
81   }
82   void insertAll()
83   {
84     for(KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i)
85     {
86       insertName((*i).first.c_str(), *(*i).second);
87     }
88   }
89   void eraseAll()
90   {
91     for(KeyValues::iterator i = m_keyValues.begin(); i != m_keyValues.end(); ++i)
92     {
93       eraseName((*i).first.c_str(), *(*i).second);
94     }
95   }
96 public:
97   NameKeys(EntityKeyValues& entity) : m_namespace(0), m_entity(entity), m_keyIsName(Static<KeyIsName>::instance().m_keyIsName)
98   {
99     m_entity.attach(*this);
100   }
101   ~NameKeys()
102   {
103     m_entity.detach(*this);
104   }
105   void setNamespace(Namespace& space)
106   {
107     eraseAll();
108     m_namespace = &space;
109     insertAll();
110   }
111   void setKeyIsName(KeyIsNameFunc keyIsName)
112   {
113     eraseAll();
114     m_keyIsName = keyIsName;
115     insertAll();
116   }
117   void insert(const char* key, EntityKeyValues::Value& value)
118   {
119     m_keyValues.insert(KeyValues::value_type(key, &value));
120     insertName(key, value);
121   }
122   void erase(const char* key, EntityKeyValues::Value& value)
123   {
124     eraseName(key, value);
125     m_keyValues.erase(key);
126   }
127 };
128
129 inline bool keyIsNameDoom3(const char* key)
130 {
131   return string_equal(key, "target")
132     || (string_equal_n(key, "target", 6) && string_is_integer(key + 6))
133     || string_equal(key, "name");
134 }
135
136 inline bool keyIsNameDoom3Doom3Group(const char* key)
137 {
138   return keyIsNameDoom3(key)
139     || string_equal(key, "model");
140 }
141
142 inline bool keyIsNameQuake3(const char* key)
143 {
144   return string_equal(key, "target")
145     || string_equal(key, "targetname");
146 }
147
148 #endif