]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - include/ientity.h
Use non-deprecated GDK key constants
[xonotic/netradiant.git] / include / ientity.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_IENTITY_H )
23 #define INCLUDED_IENTITY_H
24
25 #include "generic/constant.h"
26
27 #include "string/string.h"
28 #include "scenelib.h"
29
30 class EntityClass;
31
32 typedef Callback1<const char*> KeyObserver;
33
34 class EntityKeyValue
35 {
36 public:
37 virtual const char* c_str() const = 0;
38 virtual void assign( const char* other ) = 0;
39 virtual void attach( const KeyObserver& observer ) = 0;
40 virtual void detach( const KeyObserver& observer ) = 0;
41 };
42
43 class Entity
44 {
45 public:
46 STRING_CONSTANT( Name, "Entity" );
47
48 class Observer
49 {
50 public:
51 virtual void insert( const char* key, EntityKeyValue& value ) = 0;
52 virtual void erase( const char* key, EntityKeyValue& value ) = 0;
53 virtual void clear() { };
54 };
55
56 class Visitor
57 {
58 public:
59 virtual void visit( const char* key, const char* value ) = 0;
60 };
61
62 virtual const EntityClass& getEntityClass() const = 0;
63 virtual void forEachKeyValue( Visitor& visitor ) const = 0;
64 virtual void setKeyValue( const char* key, const char* value ) = 0;
65 virtual const char* getKeyValue( const char* key ) const = 0;
66 virtual bool isContainer() const = 0;
67 virtual void attach( Observer& observer ) = 0;
68 virtual void detach( Observer& observer ) = 0;
69 };
70
71 class EntityCopyingVisitor : public Entity::Visitor
72 {
73 Entity& m_entity;
74 public:
75 EntityCopyingVisitor( Entity& entity )
76         : m_entity( entity ){
77 }
78
79 void visit( const char* key, const char* value ){
80         if ( !string_equal( key, "classname" ) ) {
81                 m_entity.setKeyValue( key, value );
82         }
83 }
84 };
85
86 inline Entity* Node_getEntity( scene::Node& node ){
87         return NodeTypeCast<Entity>::cast( node );
88 }
89
90
91 template<typename value_type>
92 class Stack;
93 template<typename Contained>
94 class Reference;
95
96 namespace scene
97 {
98 class Node;
99 }
100
101 typedef Reference<scene::Node> NodeReference;
102
103 namespace scene
104 {
105 typedef Stack<NodeReference> Path;
106 }
107
108 class Counter;
109
110 class EntityCreator
111 {
112 public:
113 INTEGER_CONSTANT( Version, 2 );
114 STRING_CONSTANT( Name, "entity" );
115
116 virtual scene::Node& createEntity( EntityClass* eclass ) = 0;
117
118 typedef void ( *KeyValueChangedFunc )();
119 virtual void setKeyValueChangedFunc( KeyValueChangedFunc func ) = 0;
120
121 virtual void setCounter( Counter* counter ) = 0;
122
123 virtual void connectEntities( const scene::Path& e1, const scene::Path& e2, int index ) = 0;
124
125 virtual void setLightRadii( bool lightRadii ) = 0;
126 virtual bool getLightRadii() = 0;
127 virtual void setShowNames( bool showNames ) = 0;
128 virtual bool getShowNames() = 0;
129 virtual void setShowAngles( bool showAngles ) = 0;
130 virtual bool getShowAngles() = 0;
131
132 virtual void printStatistics() const = 0;
133 };
134
135 #include "modulesystem.h"
136
137 template<typename Type>
138 class GlobalModule;
139 typedef GlobalModule<EntityCreator> GlobalEntityModule;
140
141 template<typename Type>
142 class GlobalModuleRef;
143 typedef GlobalModuleRef<EntityCreator> GlobalEntityModuleRef;
144
145 inline EntityCreator& GlobalEntityCreator(){
146         return GlobalEntityModule::getTable();
147 }
148
149 #endif