]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/entity/doom3group.cpp
my own uncrustify run
[xonotic/netradiant.git] / plugins / entity / doom3group.cpp
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 ///\file
23 ///\brief Represents any Doom3 entity which does not have a fixed size specified in its entity-definition (e.g. func_static).
24 ///
25 /// This entity behaves as a group only when the "model" key is empty or is the same as the "name" key. Otherwise it behaves as a model.
26 /// When behaving as a group, the "origin" key is the translation to be applied to all brushes (not patches) grouped under this entity.
27 /// When behaving as a model, the "origin", "angle" and "rotation" keys directly control the entity's local-to-parent transform.
28 /// When either the "curve_Nurbs" or "curve_CatmullRomSpline" keys define a curve, the curve is rendered and can be edited.
29
30 #include "doom3group.h"
31
32 #include "cullable.h"
33 #include "renderable.h"
34 #include "editable.h"
35 #include "modelskin.h"
36
37 #include "selectionlib.h"
38 #include "instancelib.h"
39 #include "transformlib.h"
40 #include "traverselib.h"
41 #include "entitylib.h"
42 #include "render.h"
43 #include "eclasslib.h"
44 #include "stream/stringstream.h"
45 #include "pivot.h"
46
47 #include "targetable.h"
48 #include "origin.h"
49 #include "angle.h"
50 #include "rotation.h"
51 #include "model.h"
52 #include "filters.h"
53 #include "namedentity.h"
54 #include "keyobservers.h"
55 #include "namekeys.h"
56 #include "curve.h"
57 #include "modelskinkey.h"
58
59 #include "entity.h"
60
61 inline void PointVertexArray_testSelect( PointVertex* first, std::size_t count, SelectionTest& test, SelectionIntersection& best ){
62         test.TestLineStrip(
63                 VertexPointer(
64                         reinterpret_cast<VertexPointer::pointer>( &first->vertex ),
65                         sizeof( PointVertex )
66                         ),
67                 IndexPointer::index_type( count ),
68                 best
69                 );
70 }
71
72 class Doom3Group :
73         public Bounded,
74         public Snappable
75 {
76 EntityKeyValues m_entity;
77 KeyObserverMap m_keyObservers;
78 TraversableNodeSet m_traverse;
79 MatrixTransform m_transform;
80
81 SingletonModel m_model;
82 OriginKey m_originKey;
83 Vector3 m_origin;
84
85 RotationKey m_rotationKey;
86 Float9 m_rotation;
87
88 ClassnameFilter m_filter;
89 NamedEntity m_named;
90 NameKeys m_nameKeys;
91 TraversableObserverPairRelay m_traverseObservers;
92 Doom3GroupOrigin m_funcStaticOrigin;
93 RenderablePivot m_renderOrigin;
94 RenderableNamedEntity m_renderName;
95 mutable Vector3 m_name_origin;
96 ModelSkinKey m_skin;
97
98 public:
99 NURBSCurve m_curveNURBS;
100 SignalHandlerId m_curveNURBSChanged;
101 CatmullRomSpline m_curveCatmullRom;
102 SignalHandlerId m_curveCatmullRomChanged;
103 private:
104 mutable AABB m_curveBounds;
105
106 Callback m_transformChanged;
107 Callback m_evaluateTransform;
108
109 CopiedString m_name;
110 CopiedString m_modelKey;
111 bool m_isModel;
112
113 scene::Traversable* m_traversable;
114
115 void construct(){
116         default_rotation( m_rotation );
117
118         m_keyObservers.insert( "classname", ClassnameFilter::ClassnameChangedCaller( m_filter ) );
119         m_keyObservers.insert( Static<KeyIsName>::instance().m_nameKey, NamedEntity::IdentifierChangedCaller( m_named ) );
120         m_keyObservers.insert( "model", Doom3Group::ModelChangedCaller( *this ) );
121         m_keyObservers.insert( "origin", OriginKey::OriginChangedCaller( m_originKey ) );
122         m_keyObservers.insert( "angle", RotationKey::AngleChangedCaller( m_rotationKey ) );
123         m_keyObservers.insert( "rotation", RotationKey::RotationChangedCaller( m_rotationKey ) );
124         m_keyObservers.insert( "name", NameChangedCaller( *this ) );
125         m_keyObservers.insert( curve_Nurbs, NURBSCurve::CurveChangedCaller( m_curveNURBS ) );
126         m_keyObservers.insert( curve_CatmullRomSpline, CatmullRomSpline::CurveChangedCaller( m_curveCatmullRom ) );
127         m_keyObservers.insert( "skin", ModelSkinKey::SkinChangedCaller( m_skin ) );
128
129         m_traverseObservers.attach( m_funcStaticOrigin );
130         m_isModel = false;
131         m_nameKeys.setKeyIsName( keyIsNameDoom3Doom3Group );
132         attachTraverse();
133
134         m_entity.attach( m_keyObservers );
135 }
136 void destroy(){
137         m_entity.detach( m_keyObservers );
138
139         if ( isModel() ) {
140                 detachModel();
141         }
142         else
143         {
144                 detachTraverse();
145         }
146
147         m_traverseObservers.detach( m_funcStaticOrigin );
148 }
149
150 void attachModel(){
151         m_traversable = &m_model.getTraversable();
152         m_model.attach( &m_traverseObservers );
153 }
154 void detachModel(){
155         m_traversable = 0;
156         m_model.detach( &m_traverseObservers );
157 }
158 void attachTraverse(){
159         m_traversable = &m_traverse;
160         m_traverse.attach( &m_traverseObservers );
161 }
162 void detachTraverse(){
163         m_traversable = 0;
164         m_traverse.detach( &m_traverseObservers );
165 }
166
167 bool isModel() const {
168         return m_isModel;
169 }
170
171 void setIsModel( bool newValue ){
172         if ( newValue && !m_isModel ) {
173                 detachTraverse();
174                 attachModel();
175
176                 m_nameKeys.setKeyIsName( Static<KeyIsName>::instance().m_keyIsName );
177                 m_model.modelChanged( m_modelKey.c_str() );
178         }
179         else if ( !newValue && m_isModel ) {
180                 detachModel();
181                 attachTraverse();
182
183                 m_nameKeys.setKeyIsName( keyIsNameDoom3Doom3Group );
184         }
185         m_isModel = newValue;
186         updateTransform();
187 }
188
189 void updateIsModel(){
190         setIsModel( !string_equal( m_modelKey.c_str(), m_name.c_str() ) );
191 }
192
193 // vc 2k5 compiler fix
194 #if _MSC_VER >= 1400
195 public:
196 #endif
197
198 void nameChanged( const char* value ){
199         m_name = value;
200         updateIsModel();
201 }
202 typedef MemberCaller1<Doom3Group, const char*, &Doom3Group::nameChanged> NameChangedCaller;
203
204 void modelChanged( const char* value ){
205         m_modelKey = value;
206         updateIsModel();
207         if ( isModel() ) {
208                 m_model.modelChanged( value );
209         }
210         else
211         {
212                 m_model.modelChanged( "" );
213         }
214 }
215 typedef MemberCaller1<Doom3Group, const char*, &Doom3Group::modelChanged> ModelChangedCaller;
216
217 void updateTransform(){
218         m_transform.localToParent() = g_matrix4_identity;
219         if ( isModel() ) {
220                 matrix4_translate_by_vec3( m_transform.localToParent(), m_origin );
221                 matrix4_multiply_by_matrix4( m_transform.localToParent(), rotation_toMatrix( m_rotation ) );
222         }
223         m_transformChanged();
224         if ( !isModel() ) {
225                 m_funcStaticOrigin.originChanged();
226         }
227 }
228 typedef MemberCaller<Doom3Group, &Doom3Group::updateTransform> UpdateTransformCaller;
229
230 void originChanged(){
231         m_origin = m_originKey.m_origin;
232         updateTransform();
233 }
234 typedef MemberCaller<Doom3Group, &Doom3Group::originChanged> OriginChangedCaller;
235
236 void rotationChanged(){
237         rotation_assign( m_rotation, m_rotationKey.m_rotation );
238         updateTransform();
239 }
240 typedef MemberCaller<Doom3Group, &Doom3Group::rotationChanged> RotationChangedCaller;
241
242 void skinChanged(){
243         if ( isModel() ) {
244                 scene::Node* node = m_model.getNode();
245                 if ( node != 0 ) {
246                         Node_modelSkinChanged( *node );
247                 }
248         }
249 }
250 typedef MemberCaller<Doom3Group, &Doom3Group::skinChanged> SkinChangedCaller;
251
252 public:
253 Doom3Group( EntityClass* eclass, scene::Node& node, const Callback& transformChanged, const Callback& boundsChanged, const Callback& evaluateTransform ) :
254         m_entity( eclass ),
255         m_originKey( OriginChangedCaller( *this ) ),
256         m_origin( ORIGINKEY_IDENTITY ),
257         m_rotationKey( RotationChangedCaller( *this ) ),
258         m_filter( m_entity, node ),
259         m_named( m_entity ),
260         m_nameKeys( m_entity ),
261         m_funcStaticOrigin( m_traverse, m_origin ),
262         m_renderName( m_named, m_name_origin ),
263         m_name_origin( g_vector3_identity ),
264         m_skin( SkinChangedCaller( *this ) ),
265         m_curveNURBS( boundsChanged ),
266         m_curveCatmullRom( boundsChanged ),
267         m_transformChanged( transformChanged ),
268         m_evaluateTransform( evaluateTransform ),
269         m_traversable( 0 ){
270         construct();
271 }
272 Doom3Group( const Doom3Group& other, scene::Node& node, const Callback& transformChanged, const Callback& boundsChanged, const Callback& evaluateTransform ) :
273         m_entity( other.m_entity ),
274         m_originKey( OriginChangedCaller( *this ) ),
275         m_origin( ORIGINKEY_IDENTITY ),
276         m_rotationKey( RotationChangedCaller( *this ) ),
277         m_filter( m_entity, node ),
278         m_named( m_entity ),
279         m_nameKeys( m_entity ),
280         m_funcStaticOrigin( m_traverse, m_origin ),
281         m_renderName( m_named, g_vector3_identity ),
282         m_skin( SkinChangedCaller( *this ) ),
283         m_curveNURBS( boundsChanged ),
284         m_curveCatmullRom( boundsChanged ),
285         m_transformChanged( transformChanged ),
286         m_evaluateTransform( evaluateTransform ),
287         m_traversable( 0 ){
288         construct();
289 }
290 ~Doom3Group(){
291         destroy();
292 }
293
294 InstanceCounter m_instanceCounter;
295 void instanceAttach( const scene::Path& path ){
296         if ( ++m_instanceCounter.m_count == 1 ) {
297                 m_filter.instanceAttach();
298                 m_entity.instanceAttach( path_find_mapfile( path.begin(), path.end() ) );
299                 m_traverse.instanceAttach( path_find_mapfile( path.begin(), path.end() ) );
300
301                 m_funcStaticOrigin.enable();
302         }
303 }
304 void instanceDetach( const scene::Path& path ){
305         if ( --m_instanceCounter.m_count == 0 ) {
306                 m_funcStaticOrigin.disable();
307
308                 m_traverse.instanceDetach( path_find_mapfile( path.begin(), path.end() ) );
309                 m_entity.instanceDetach( path_find_mapfile( path.begin(), path.end() ) );
310                 m_filter.instanceDetach();
311         }
312 }
313
314 EntityKeyValues& getEntity(){
315         return m_entity;
316 }
317 const EntityKeyValues& getEntity() const {
318         return m_entity;
319 }
320
321 scene::Traversable& getTraversable(){
322         return *m_traversable;
323 }
324 Namespaced& getNamespaced(){
325         return m_nameKeys;
326 }
327 Nameable& getNameable(){
328         return m_named;
329 }
330 TransformNode& getTransformNode(){
331         return m_transform;
332 }
333 ModelSkin& getModelSkin(){
334         return m_skin.get();
335 }
336
337 void attach( scene::Traversable::Observer* observer ){
338         m_traverseObservers.attach( *observer );
339 }
340 void detach( scene::Traversable::Observer* observer ){
341         m_traverseObservers.detach( *observer );
342 }
343
344 const AABB& localAABB() const {
345         m_curveBounds = m_curveNURBS.m_bounds;
346         aabb_extend_by_aabb_safe( m_curveBounds, m_curveCatmullRom.m_bounds );
347         return m_curveBounds;
348 }
349
350 void renderSolid( Renderer& renderer, const VolumeTest& volume, const Matrix4& localToWorld, bool selected ) const {
351         if ( isModel() && selected ) {
352                 m_renderOrigin.render( renderer, volume, localToWorld );
353         }
354
355         renderer.SetState( m_entity.getEntityClass().m_state_wire, Renderer::eWireframeOnly );
356         renderer.SetState( m_entity.getEntityClass().m_state_wire, Renderer::eFullMaterials );
357
358         if ( !m_curveNURBS.m_renderCurve.m_vertices.empty() ) {
359                 renderer.addRenderable( m_curveNURBS.m_renderCurve, localToWorld );
360         }
361         if ( !m_curveCatmullRom.m_renderCurve.m_vertices.empty() ) {
362                 renderer.addRenderable( m_curveCatmullRom.m_renderCurve, localToWorld );
363         }
364 }
365
366 void renderWireframe( Renderer& renderer, const VolumeTest& volume, const Matrix4& localToWorld, bool selected, const AABB& childBounds ) const {
367         renderSolid( renderer, volume, localToWorld, selected );
368
369         if ( g_showNames ) {
370                 // draw models as usual
371                 if ( !isModel() ) {
372                         // don't draw the name for worldspawn
373                         if ( !strcmp( m_entity.getEntityClass().name(), "worldspawn" ) ) {
374                                 return;
375                         }
376
377                         // place name in the middle of the "children cloud"
378                         m_name_origin = childBounds.origin;
379                 }
380
381                 renderer.addRenderable( m_renderName, localToWorld );
382         }
383 }
384
385 void testSelect( Selector& selector, SelectionTest& test, SelectionIntersection& best ){
386         PointVertexArray_testSelect( &m_curveNURBS.m_renderCurve.m_vertices[0], m_curveNURBS.m_renderCurve.m_vertices.size(), test, best );
387         PointVertexArray_testSelect( &m_curveCatmullRom.m_renderCurve.m_vertices[0], m_curveCatmullRom.m_renderCurve.m_vertices.size(), test, best );
388 }
389
390 void translate( const Vector3& translation ){
391         m_origin = origin_translated( m_origin, translation );
392 }
393 void rotate( const Quaternion& rotation ){
394         rotation_rotate( m_rotation, rotation );
395 }
396 void snapto( float snap ){
397         m_originKey.m_origin = origin_snapped( m_originKey.m_origin, snap );
398         m_originKey.write( &m_entity );
399 }
400 void revertTransform(){
401         m_origin = m_originKey.m_origin;
402         rotation_assign( m_rotation, m_rotationKey.m_rotation );
403         m_curveNURBS.m_controlPointsTransformed = m_curveNURBS.m_controlPoints;
404         m_curveCatmullRom.m_controlPointsTransformed = m_curveCatmullRom.m_controlPoints;
405 }
406 void freezeTransform(){
407         m_originKey.m_origin = m_origin;
408         m_originKey.write( &m_entity );
409         rotation_assign( m_rotationKey.m_rotation, m_rotation );
410         m_rotationKey.write( &m_entity );
411         m_curveNURBS.m_controlPoints = m_curveNURBS.m_controlPointsTransformed;
412         ControlPoints_write( m_curveNURBS.m_controlPoints, curve_Nurbs, m_entity );
413         m_curveCatmullRom.m_controlPoints = m_curveCatmullRom.m_controlPointsTransformed;
414         ControlPoints_write( m_curveCatmullRom.m_controlPoints, curve_CatmullRomSpline, m_entity );
415 }
416 void transformChanged(){
417         revertTransform();
418         m_evaluateTransform();
419         updateTransform();
420         m_curveNURBS.curveChanged();
421         m_curveCatmullRom.curveChanged();
422 }
423 typedef MemberCaller<Doom3Group, &Doom3Group::transformChanged> TransformChangedCaller;
424 };
425
426 class ControlPointAddBounds
427 {
428 AABB& m_bounds;
429 public:
430 ControlPointAddBounds( AABB& bounds ) : m_bounds( bounds ){
431 }
432 void operator()( const Vector3& point ) const {
433         aabb_extend_by_point_safe( m_bounds, point );
434 }
435 };
436
437 class Doom3GroupInstance :
438         public TargetableInstance,
439         public TransformModifier,
440         public Renderable,
441         public SelectionTestable,
442         public ComponentSelectionTestable,
443         public ComponentEditable,
444         public ComponentSnappable
445 {
446 class TypeCasts
447 {
448 InstanceTypeCastTable m_casts;
449 public:
450 TypeCasts(){
451         m_casts = TargetableInstance::StaticTypeCasts::instance().get();
452         InstanceContainedCast<Doom3GroupInstance, Bounded>::install( m_casts );
453         InstanceStaticCast<Doom3GroupInstance, Renderable>::install( m_casts );
454         InstanceStaticCast<Doom3GroupInstance, SelectionTestable>::install( m_casts );
455         InstanceStaticCast<Doom3GroupInstance, ComponentSelectionTestable>::install( m_casts );
456         InstanceStaticCast<Doom3GroupInstance, ComponentEditable>::install( m_casts );
457         InstanceStaticCast<Doom3GroupInstance, ComponentSnappable>::install( m_casts );
458         InstanceStaticCast<Doom3GroupInstance, Transformable>::install( m_casts );
459         InstanceIdentityCast<Doom3GroupInstance>::install( m_casts );
460 }
461 InstanceTypeCastTable& get(){
462         return m_casts;
463 }
464 };
465
466 Doom3Group& m_contained;
467 CurveEdit m_curveNURBS;
468 CurveEdit m_curveCatmullRom;
469 mutable AABB m_aabb_component;
470 public:
471
472 typedef LazyStatic<TypeCasts> StaticTypeCasts;
473
474
475 Bounded& get( NullType<Bounded>){
476         return m_contained;
477 }
478
479 STRING_CONSTANT( Name, "Doom3GroupInstance" );
480
481 Doom3GroupInstance( const scene::Path& path, scene::Instance* parent, Doom3Group& contained ) :
482         TargetableInstance( path, parent, this, StaticTypeCasts::instance().get(), contained.getEntity(), *this ),
483         TransformModifier( Doom3Group::TransformChangedCaller( contained ), ApplyTransformCaller( *this ) ),
484         m_contained( contained ),
485         m_curveNURBS( m_contained.m_curveNURBS.m_controlPointsTransformed, SelectionChangedComponentCaller( *this ) ),
486         m_curveCatmullRom( m_contained.m_curveCatmullRom.m_controlPointsTransformed, SelectionChangedComponentCaller( *this ) ){
487         m_contained.instanceAttach( Instance::path() );
488         m_contained.m_curveNURBSChanged = m_contained.m_curveNURBS.connect( CurveEdit::CurveChangedCaller( m_curveNURBS ) );
489         m_contained.m_curveCatmullRomChanged = m_contained.m_curveCatmullRom.connect( CurveEdit::CurveChangedCaller( m_curveCatmullRom ) );
490
491         StaticRenderableConnectionLines::instance().attach( *this );
492 }
493 ~Doom3GroupInstance(){
494         StaticRenderableConnectionLines::instance().detach( *this );
495
496         m_contained.m_curveCatmullRom.disconnect( m_contained.m_curveCatmullRomChanged );
497         m_contained.m_curveNURBS.disconnect( m_contained.m_curveNURBSChanged );
498         m_contained.instanceDetach( Instance::path() );
499 }
500 void renderSolid( Renderer& renderer, const VolumeTest& volume ) const {
501         m_contained.renderSolid( renderer, volume, Instance::localToWorld(), getSelectable().isSelected() );
502
503         m_curveNURBS.renderComponentsSelected( renderer, volume, localToWorld() );
504         m_curveCatmullRom.renderComponentsSelected( renderer, volume, localToWorld() );
505 }
506 void renderWireframe( Renderer& renderer, const VolumeTest& volume ) const {
507         m_contained.renderWireframe( renderer, volume, Instance::localToWorld(), getSelectable().isSelected(), Instance::childBounds() );
508
509         m_curveNURBS.renderComponentsSelected( renderer, volume, localToWorld() );
510         m_curveCatmullRom.renderComponentsSelected( renderer, volume, localToWorld() );
511 }
512 void renderComponents( Renderer& renderer, const VolumeTest& volume ) const {
513         if ( GlobalSelectionSystem().ComponentMode() == SelectionSystem::eVertex ) {
514                 m_curveNURBS.renderComponents( renderer, volume, localToWorld() );
515                 m_curveCatmullRom.renderComponents( renderer, volume, localToWorld() );
516         }
517 }
518
519 void testSelect( Selector& selector, SelectionTest& test ){
520         test.BeginMesh( localToWorld() );
521         SelectionIntersection best;
522
523         m_contained.testSelect( selector, test, best );
524
525         if ( best.valid() ) {
526                 Selector_add( selector, getSelectable(), best );
527         }
528 }
529
530 bool isSelectedComponents() const {
531         return m_curveNURBS.isSelected() || m_curveCatmullRom.isSelected();
532 }
533 void setSelectedComponents( bool selected, SelectionSystem::EComponentMode mode ){
534         if ( mode == SelectionSystem::eVertex ) {
535                 m_curveNURBS.setSelected( selected );
536                 m_curveCatmullRom.setSelected( selected );
537         }
538 }
539 void testSelectComponents( Selector& selector, SelectionTest& test, SelectionSystem::EComponentMode mode ){
540         if ( mode == SelectionSystem::eVertex ) {
541                 test.BeginMesh( localToWorld() );
542                 m_curveNURBS.testSelect( selector, test );
543                 m_curveCatmullRom.testSelect( selector, test );
544         }
545 }
546
547 void transformComponents( const Matrix4& matrix ){
548         if ( m_curveNURBS.isSelected() ) {
549                 m_curveNURBS.transform( matrix );
550         }
551         if ( m_curveCatmullRom.isSelected() ) {
552                 m_curveCatmullRom.transform( matrix );
553         }
554 }
555
556 const AABB& getSelectedComponentsBounds() const {
557         m_aabb_component = AABB();
558         m_curveNURBS.forEachSelected( ControlPointAddBounds( m_aabb_component ) );
559         m_curveCatmullRom.forEachSelected( ControlPointAddBounds( m_aabb_component ) );
560         return m_aabb_component;
561 }
562
563 void snapComponents( float snap ){
564         if ( m_curveNURBS.isSelected() ) {
565                 m_curveNURBS.snapto( snap );
566                 m_curveNURBS.write( curve_Nurbs, m_contained.getEntity() );
567         }
568         if ( m_curveCatmullRom.isSelected() ) {
569                 m_curveCatmullRom.snapto( snap );
570                 m_curveCatmullRom.write( curve_CatmullRomSpline, m_contained.getEntity() );
571         }
572 }
573
574 void evaluateTransform(){
575         if ( getType() == TRANSFORM_PRIMITIVE ) {
576                 m_contained.translate( getTranslation() );
577                 m_contained.rotate( getRotation() );
578         }
579         else
580         {
581                 transformComponents( calculateTransform() );
582         }
583 }
584 void applyTransform(){
585         m_contained.revertTransform();
586         evaluateTransform();
587         m_contained.freezeTransform();
588 }
589 typedef MemberCaller<Doom3GroupInstance, &Doom3GroupInstance::applyTransform> ApplyTransformCaller;
590
591 void selectionChangedComponent( const Selectable& selectable ){
592         GlobalSelectionSystem().getObserver ( SelectionSystem::eComponent )( selectable );
593         GlobalSelectionSystem().onComponentSelection( *this, selectable );
594 }
595 typedef MemberCaller1<Doom3GroupInstance, const Selectable&, &Doom3GroupInstance::selectionChangedComponent> SelectionChangedComponentCaller;
596 };
597
598 class Doom3GroupNode :
599         public scene::Node::Symbiot,
600         public scene::Instantiable,
601         public scene::Cloneable,
602         public scene::Traversable::Observer
603 {
604 class TypeCasts
605 {
606 NodeTypeCastTable m_casts;
607 public:
608 TypeCasts(){
609         NodeStaticCast<Doom3GroupNode, scene::Instantiable>::install( m_casts );
610         NodeStaticCast<Doom3GroupNode, scene::Cloneable>::install( m_casts );
611         NodeContainedCast<Doom3GroupNode, scene::Traversable>::install( m_casts );
612         NodeContainedCast<Doom3GroupNode, Snappable>::install( m_casts );
613         NodeContainedCast<Doom3GroupNode, TransformNode>::install( m_casts );
614         NodeContainedCast<Doom3GroupNode, Entity>::install( m_casts );
615         NodeContainedCast<Doom3GroupNode, Nameable>::install( m_casts );
616         NodeContainedCast<Doom3GroupNode, Namespaced>::install( m_casts );
617         NodeContainedCast<Doom3GroupNode, ModelSkin>::install( m_casts );
618 }
619 NodeTypeCastTable& get(){
620         return m_casts;
621 }
622 };
623
624
625 scene::Node m_node;
626 InstanceSet m_instances;
627 Doom3Group m_contained;
628
629 void construct(){
630         m_contained.attach( this );
631 }
632 void destroy(){
633         m_contained.detach( this );
634 }
635 public:
636
637 typedef LazyStatic<TypeCasts> StaticTypeCasts;
638
639 scene::Traversable& get( NullType<scene::Traversable>){
640         return m_contained.getTraversable();
641 }
642 Snappable& get( NullType<Snappable>){
643         return m_contained;
644 }
645 TransformNode& get( NullType<TransformNode>){
646         return m_contained.getTransformNode();
647 }
648 Entity& get( NullType<Entity>){
649         return m_contained.getEntity();
650 }
651 Nameable& get( NullType<Nameable>){
652         return m_contained.getNameable();
653 }
654 Namespaced& get( NullType<Namespaced>){
655         return m_contained.getNamespaced();
656 }
657 ModelSkin& get( NullType<ModelSkin>){
658         return m_contained.getModelSkin();
659 }
660
661 Doom3GroupNode( EntityClass* eclass ) :
662         m_node( this, this, StaticTypeCasts::instance().get() ),
663         m_contained( eclass, m_node, InstanceSet::TransformChangedCaller( m_instances ), InstanceSet::BoundsChangedCaller( m_instances ), InstanceSetEvaluateTransform<Doom3GroupInstance>::Caller( m_instances ) ){
664         construct();
665 }
666 Doom3GroupNode( const Doom3GroupNode& other ) :
667         scene::Node::Symbiot( other ),
668         scene::Instantiable( other ),
669         scene::Cloneable( other ),
670         scene::Traversable::Observer( other ),
671         m_node( this, this, StaticTypeCasts::instance().get() ),
672         m_contained( other.m_contained, m_node, InstanceSet::TransformChangedCaller( m_instances ), InstanceSet::BoundsChangedCaller( m_instances ), InstanceSetEvaluateTransform<Doom3GroupInstance>::Caller( m_instances ) ){
673         construct();
674 }
675 ~Doom3GroupNode(){
676         destroy();
677 }
678
679 void release(){
680         delete this;
681 }
682 scene::Node& node(){
683         return m_node;
684 }
685
686 scene::Node& clone() const {
687         return ( new Doom3GroupNode( *this ) )->node();
688 }
689
690 void insert( scene::Node& child ){
691         m_instances.insert( child );
692 }
693 void erase( scene::Node& child ){
694         m_instances.erase( child );
695 }
696
697 scene::Instance* create( const scene::Path& path, scene::Instance* parent ){
698         return new Doom3GroupInstance( path, parent, m_contained );
699 }
700 void forEachInstance( const scene::Instantiable::Visitor& visitor ){
701         m_instances.forEachInstance( visitor );
702 }
703 void insert( scene::Instantiable::Observer* observer, const scene::Path& path, scene::Instance* instance ){
704         m_instances.insert( observer, path, instance );
705 }
706 scene::Instance* erase( scene::Instantiable::Observer* observer, const scene::Path& path ){
707         return m_instances.erase( observer, path );
708 }
709 };
710
711 void Doom3Group_construct(){
712         CurveEdit::Type::instance().m_controlsShader = GlobalShaderCache().capture( "$POINT" );
713         CurveEdit::Type::instance().m_selectedShader = GlobalShaderCache().capture( "$SELPOINT" );
714 }
715
716 void Doom3Group_destroy(){
717         GlobalShaderCache().release( "$SELPOINT" );
718         GlobalShaderCache().release( "$POINT" );
719 }
720
721 scene::Node& New_Doom3Group( EntityClass* eclass ){
722         return ( new Doom3GroupNode( eclass ) )->node();
723 }