]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/brushnode.h
Revert partially (auto) "reformat code! now the code is only ugly on the *inside*"
[xonotic/netradiant.git] / radiant / brushnode.h
index ad6b636ad45555840c16e04e0adc0725e6e5386c..ac899d9b3a1fc4baa3a38f18349af4eaa99a19c3 100644 (file)
 #include "brushxml.h"
 
 class BrushNode :
-        public scene::Node::Symbiot,
-        public scene::Instantiable,
-        public scene::Cloneable {
-    class TypeCasts {
-        NodeTypeCastTable m_casts;
-    public:
-        TypeCasts()
-        {
-            NodeStaticCast<BrushNode, scene::Instantiable>::install(m_casts);
-            NodeStaticCast<BrushNode, scene::Cloneable>::install(m_casts);
-            NodeContainedCast<BrushNode, Snappable>::install(m_casts);
-            NodeContainedCast<BrushNode, TransformNode>::install(m_casts);
-            NodeContainedCast<BrushNode, Brush>::install(m_casts);
-            NodeContainedCast<BrushNode, XMLImporter>::install(m_casts);
-            NodeContainedCast<BrushNode, XMLExporter>::install(m_casts);
-            NodeContainedCast<BrushNode, MapImporter>::install(m_casts);
-            NodeContainedCast<BrushNode, MapExporter>::install(m_casts);
-            NodeContainedCast<BrushNode, Nameable>::install(m_casts);
-            NodeContainedCast<BrushNode, BrushDoom3>::install(m_casts);
-        }
-
-        NodeTypeCastTable &get()
-        {
-            return m_casts;
-        }
-    };
-
-
-    scene::Node m_node;
-    InstanceSet m_instances;
-    Brush m_brush;
-    BrushTokenImporter m_mapImporter;
-    BrushTokenExporter m_mapExporter;
-    BrushXMLImporter m_xmlImporter;
-    BrushXMLExporter m_xmlExporter;
+       public scene::Node::Symbiot,
+       public scene::Instantiable,
+       public scene::Cloneable
+{
+class TypeCasts
+{
+NodeTypeCastTable m_casts;
+public:
+TypeCasts(){
+       NodeStaticCast<BrushNode, scene::Instantiable>::install( m_casts );
+       NodeStaticCast<BrushNode, scene::Cloneable>::install( m_casts );
+       NodeContainedCast<BrushNode, Snappable>::install( m_casts );
+       NodeContainedCast<BrushNode, TransformNode>::install( m_casts );
+       NodeContainedCast<BrushNode, Brush>::install( m_casts );
+       NodeContainedCast<BrushNode, XMLImporter>::install( m_casts );
+       NodeContainedCast<BrushNode, XMLExporter>::install( m_casts );
+       NodeContainedCast<BrushNode, MapImporter>::install( m_casts );
+       NodeContainedCast<BrushNode, MapExporter>::install( m_casts );
+       NodeContainedCast<BrushNode, Nameable>::install( m_casts );
+       NodeContainedCast<BrushNode, BrushDoom3>::install( m_casts );
+}
+NodeTypeCastTable& get(){
+       return m_casts;
+}
+};
+
+
+scene::Node m_node;
+InstanceSet m_instances;
+Brush m_brush;
+BrushTokenImporter m_mapImporter;
+BrushTokenExporter m_mapExporter;
+BrushXMLImporter m_xmlImporter;
+BrushXMLExporter m_xmlExporter;
 
 public:
 
-    typedef LazyStatic<TypeCasts> StaticTypeCasts;
-
-    Snappable &get(NullType<Snappable>)
-    {
-        return m_brush;
-    }
-
-    TransformNode &get(NullType<TransformNode>)
-    {
-        return m_brush;
-    }
-
-    Brush &get(NullType<Brush>)
-    {
-        return m_brush;
-    }
-
-    XMLImporter &get(NullType<XMLImporter>)
-    {
-        return m_xmlImporter;
-    }
-
-    XMLExporter &get(NullType<XMLExporter>)
-    {
-        return m_xmlExporter;
-    }
-
-    MapImporter &get(NullType<MapImporter>)
-    {
-        return m_mapImporter;
-    }
-
-    MapExporter &get(NullType<MapExporter>)
-    {
-        return m_mapExporter;
-    }
-
-    Nameable &get(NullType<Nameable>)
-    {
-        return m_brush;
-    }
-
-    BrushDoom3 &get(NullType<BrushDoom3>)
-    {
-        return m_brush;
-    }
-
-    BrushNode() :
-            m_node(this, this, StaticTypeCasts::instance().get()),
-            m_brush(m_node, InstanceSetEvaluateTransform<BrushInstance>::Caller(m_instances),
-                    InstanceSet::BoundsChangedCaller(m_instances)),
-            m_mapImporter(m_brush),
-            m_mapExporter(m_brush),
-            m_xmlImporter(m_brush),
-            m_xmlExporter(m_brush)
-    {
-    }
-
-    BrushNode(const BrushNode &other) :
-            scene::Node::Symbiot(other),
-            scene::Instantiable(other),
-            scene::Cloneable(other),
-            m_node(this, this, StaticTypeCasts::instance().get()),
-            m_brush(other.m_brush, m_node, InstanceSetEvaluateTransform<BrushInstance>::Caller(m_instances),
-                    InstanceSet::BoundsChangedCaller(m_instances)),
-            m_mapImporter(m_brush),
-            m_mapExporter(m_brush),
-            m_xmlImporter(m_brush),
-            m_xmlExporter(m_brush)
-    {
-    }
-
-    void release()
-    {
-        delete this;
-    }
-
-    scene::Node &node()
-    {
-        return m_node;
-    }
-
-    scene::Node &clone() const
-    {
-        return (new BrushNode(*this))->node();
-    }
-
-    scene::Instance *create(const scene::Path &path, scene::Instance *parent)
-    {
-        return new BrushInstance(path, parent, m_brush);
-    }
-
-    void forEachInstance(const scene::Instantiable::Visitor &visitor)
-    {
-        m_instances.forEachInstance(visitor);
-    }
-
-    void insert(scene::Instantiable::Observer *observer, const scene::Path &path, scene::Instance *instance)
-    {
-        m_instances.insert(observer, path, instance);
-    }
-
-    scene::Instance *erase(scene::Instantiable::Observer *observer, const scene::Path &path)
-    {
-        return m_instances.erase(observer, path);
-    }
+typedef LazyStatic<TypeCasts> StaticTypeCasts;
+
+Snappable& get( NullType<Snappable>){
+       return m_brush;
+}
+TransformNode& get( NullType<TransformNode>){
+       return m_brush;
+}
+Brush& get( NullType<Brush>){
+       return m_brush;
+}
+XMLImporter& get( NullType<XMLImporter>){
+       return m_xmlImporter;
+}
+XMLExporter& get( NullType<XMLExporter>){
+       return m_xmlExporter;
+}
+MapImporter& get( NullType<MapImporter>){
+       return m_mapImporter;
+}
+MapExporter& get( NullType<MapExporter>){
+       return m_mapExporter;
+}
+Nameable& get( NullType<Nameable>){
+       return m_brush;
+}
+BrushDoom3& get( NullType<BrushDoom3>){
+       return m_brush;
+}
+
+BrushNode() :
+       m_node( this, this, StaticTypeCasts::instance().get() ),
+       m_brush( m_node, InstanceSetEvaluateTransform<BrushInstance>::Caller( m_instances ), InstanceSet::BoundsChangedCaller( m_instances ) ),
+       m_mapImporter( m_brush ),
+       m_mapExporter( m_brush ),
+       m_xmlImporter( m_brush ),
+       m_xmlExporter( m_brush ){
+}
+BrushNode( const BrushNode& other ) :
+       scene::Node::Symbiot( other ),
+       scene::Instantiable( other ),
+       scene::Cloneable( other ),
+       m_node( this, this, StaticTypeCasts::instance().get() ),
+       m_brush( other.m_brush, m_node, InstanceSetEvaluateTransform<BrushInstance>::Caller( m_instances ), InstanceSet::BoundsChangedCaller( m_instances ) ),
+       m_mapImporter( m_brush ),
+       m_mapExporter( m_brush ),
+       m_xmlImporter( m_brush ),
+       m_xmlExporter( m_brush ){
+}
+void release(){
+       delete this;
+}
+scene::Node& node(){
+       return m_node;
+}
+
+scene::Node& clone() const {
+       return ( new BrushNode( *this ) )->node();
+}
+
+scene::Instance* create( const scene::Path& path, scene::Instance* parent ){
+       return new BrushInstance( path, parent, m_brush );
+}
+void forEachInstance( const scene::Instantiable::Visitor& visitor ){
+       m_instances.forEachInstance( visitor );
+}
+void insert( scene::Instantiable::Observer* observer, const scene::Path& path, scene::Instance* instance ){
+       m_instances.insert( observer, path, instance );
+}
+scene::Instance* erase( scene::Instantiable::Observer* observer, const scene::Path& path ){
+       return m_instances.erase( observer, path );
+}
 };
 
-inline Brush *Node_getBrush(scene::Node &node)
-{
-    return NodeTypeCast<Brush>::cast(node);
+inline Brush* Node_getBrush( scene::Node& node ){
+       return NodeTypeCast<Brush>::cast( node );
 }
 
 #endif