]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/TreeBin.hxx
Merge branch 'jmt/ref_ptr-conv'
[simgear.git] / simgear / scene / tgdb / TreeBin.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2008 Stuart Buchanan
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef TREE_BIN_HXX
23 #define TREE_BIN_HXX
24
25 #include <vector>
26 #include <string>
27
28 #include <osg/Geometry>
29 #include <osg/Group>
30 #include <osg/Matrix>
31
32 #include <simgear/math/SGMath.hxx>
33
34 namespace simgear
35 {
36 class TreeBin {
37 public:
38   struct Tree {
39     Tree(const SGVec3f& p) :
40       position(p)
41     { }
42     SGVec3f position;
43   };
44
45     typedef std::vector<Tree> TreeList;
46
47     int texture_varieties;
48     double range;
49     float height;
50     float width;
51     std::string texture;
52
53     void insert(const Tree& t)
54     { _trees.push_back(t); }
55     void insert(const SGVec3f& p, int t, float s)
56     { insert(Tree(p)); }
57
58     unsigned getNumTrees() const
59     { return _trees.size(); }
60     const Tree& getTree(unsigned i) const
61     { return _trees[i]; }
62     TreeList _trees;
63 };
64
65 osg::Group* createForest(TreeBin& forest, const osg::Matrix& transform);
66 }
67 #endif