]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/TreeBin.hxx
Random trees from Stuart Buchanan
[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
27 #include <osg/Geometry>
28 #include <osg/Group>
29 #include <osg/Matrix>
30
31 #include <simgear/math/SGVec3.hxx>
32
33 namespace simgear
34 {
35 class TreeBin {
36 public:
37     struct Tree {
38         Tree(const SGVec3f& p, string t, float h, float w, double r) :
39             position(p), texture(t), height(h), width(w), range(r)
40         { }
41         SGVec3f position;
42         string texture;
43         float height;
44         float width;
45         double range;
46     };
47     typedef std::vector<Tree> TreeList;
48
49     void insert(const Tree& t)
50     { _trees.push_back(t); }
51     void insert(const SGVec3f& p, string t, float h, float w, double r)
52     { insert(Tree(p, t, h, w, r)); }
53
54     unsigned getNumTrees() const
55     { return _trees.size(); }
56     const Tree& getTree(unsigned i) const
57     { return _trees[i]; }
58
59 private:
60     TreeList _trees;
61 };
62
63 osg::Geometry* createOrthQuads(float w, float h, const osg::Matrix& rotate);
64 osg::Group* createForest(const TreeBin& forest, const osg::Matrix& transform);
65 }
66 #endif