]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/TreeBin.hxx
Merge branch 'maint' into next
[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, int t, float s) :
40       position(p), texture_index(t), scale(s)
41     { }
42     SGVec3f position;
43     int texture_index;
44     float scale;
45   };
46
47     typedef std::vector<Tree> TreeList;
48
49     int texture_varieties;
50     double range;
51     float height;
52     float width;
53     std::string texture;
54
55     void insert(const Tree& t)
56     { _trees.push_back(t); }
57     void insert(const SGVec3f& p, int t, float s)
58     { insert(Tree(p, t, s)); }
59
60     unsigned getNumTrees() const
61     { return _trees.size(); }
62     const Tree& getTree(unsigned i) const
63     { return _trees[i]; }
64     TreeList _trees;
65 };
66
67 osg::Geometry* createOrthQuads(float w, float h, const osg::Matrix& rotate);
68 osg::Group* createForest(TreeBin& forest, const osg::Matrix& transform);
69 }
70 #endif