source: GTP/trunk/Lib/Vis/Preprocessing/src/SceneGraph.h @ 2709

Revision 2709, 2.8 KB checked in by mattausch, 16 years ago (diff)

sheduling dynamic object only when necessary

Line 
1#ifndef _SceneGraph_H__
2#define _SceneGraph_H__
3
4#include <string>
5#include "Containers.h"
6#include "AxisAlignedBox3.h"
7#include "Matrix4x4.h"
8
9namespace GtpVisibilityPreprocessor {
10
11class SceneGraphLeafIntersectable;
12class CKTB;
13
14
15/** Basic scene graph node, we are interested only in bounding boxes and topology
16    of the scene graph
17*/
18class SceneGraphNode
19{
20public:
21
22        virtual ~SceneGraphNode();
23        virtual bool IsLeaf() const = 0;
24
25        virtual void UpdateBox() = 0;
26
27        virtual AxisAlignedBox3 GetBox() const { return mBox; }
28
29protected:
30
31        AxisAlignedBox3 mBox;
32};
33 
34
35
36/** Scene graph interior node.
37*/
38class SceneGraphInterior: public SceneGraphNode
39{
40public:
41        virtual bool IsLeaf() const { return false; }
42        virtual void UpdateBox();
43
44        ~SceneGraphInterior();
45
46//protected:
47
48        SceneGraphNodeContainer mChildren;
49};
50
51
52/** Scene graph leaf node.
53*/
54class SceneGraphLeaf: public SceneGraphNode
55{
56public:
57        /** Copy constructor.
58        */
59        SceneGraphLeaf(SceneGraphLeaf const&);
60        SceneGraphLeaf();
61        SceneGraphLeaf(bool isDynamic);
62        ~SceneGraphLeaf();
63       
64        void LoadTransform(const Matrix4x4 &m);
65
66        void GetTransform(Matrix4x4 &m) const;
67
68        virtual AxisAlignedBox3 GetBox() const;
69        /** Returns the box without the trafo.
70        */
71        virtual AxisAlignedBox3 GetOriginalBox() const;
72
73        virtual void ApplyTransform(const Matrix4x4 &trafo);
74        virtual bool IsDynamic() const { return mIsDynamic;}
75        virtual bool IsLeaf() const { return true; }
76        virtual void UpdateBox();
77
78        bool HasChanged() { return mHasChanged; }
79
80        void SetHasChanged(bool hasChanged) {mHasChanged = hasChanged;}
81        SceneGraphLeafIntersectable *GetIntersectable() { return mIntersectable; }
82
83        const Matrix4x4 &GetTransformation() const { return mTrafo; }
84
85        //void SetGeometry(ObjectContainer *geometry);
86
87        /// used as actual pvs entry: note should be pointer to geometry!!
88        ObjectContainer mGeometry;
89
90protected:
91
92        SceneGraphLeafIntersectable *mIntersectable;
93
94        bool mIsDynamic;
95        bool mHasChanged;
96
97        Matrix4x4 mTrafo;
98};
99
100
101
102/** Scene graph class
103*/
104class SceneGraph
105{
106
107public:
108
109        SceneGraph();
110        ~SceneGraph();
111       
112        bool Export(const std::string filename);
113 
114        int CollectObjects(ObjectContainer &instances);
115 
116        int AssignObjectIds();
117 
118        void GetStatistics(int &intersectables, int &faces) const;
119
120        AxisAlignedBox3 GetBox() const { return mRoot->GetBox(); }
121        /** Exports binary version of the scene.
122        */
123        void ExportScene(const std::string filename);
124        /** Loads binary version of the scene.
125        */
126        void LoadScene(const std::string filename);
127
128        SceneGraphInterior *GetRoot();
129
130        //void SetRoot(SceneGraphNode *sgNnode);
131        void SetRoot(SceneGraphInterior *sgNnode);
132
133        void AddChild(SceneGraphNode *node);
134
135        int GetSize() const;
136
137protected:
138
139         SceneGraphInterior *mRoot;
140};
141
142
143}
144
145#endif
Note: See TracBrowser for help on using the repository browser.