]> git.mxchange.org Git - simgear.git/blob - simgear/bvh/BVHStaticData.hxx
Fix PagedLOD for random objects.
[simgear.git] / simgear / bvh / BVHStaticData.hxx
1 // Copyright (C) 2008 - 2009  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef BVHStaticData_hxx
19 #define BVHStaticData_hxx
20
21 #include <vector>
22 #include <simgear/structure/SGReferenced.hxx>
23 #include <simgear/structure/SGSharedPtr.hxx>
24 #include <simgear/math/SGGeometry.hxx>
25 #include "BVHMaterial.hxx"
26
27 namespace simgear {
28
29 class BVHStaticData : public SGReferenced {
30 public:
31     virtual ~BVHStaticData() {}
32     
33     unsigned addVertex(const SGVec3f& vertex)
34     { _vertices.push_back(vertex); return _vertices.size() - 1; }
35     const SGVec3f& getVertex(unsigned i) const
36     { return _vertices[i]; }
37     
38     
39     unsigned addMaterial(const BVHMaterial* material)
40     { _materials.push_back(material); return _materials.size() - 1; }
41     const BVHMaterial* getMaterial(unsigned i) const
42     { if (_materials.size() <= i) return 0; return _materials[i]; }
43
44     void trim()
45     {
46         std::vector<SGVec3f>(_vertices).swap(_vertices);
47         std::vector<SGSharedPtr<const BVHMaterial> >(_materials).swap(_materials);
48     }
49     
50 private:
51     std::vector<SGVec3f> _vertices;
52     std::vector<SGSharedPtr<const BVHMaterial> > _materials;
53 };
54
55 }
56
57 #endif