]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/TreeBin.cxx
Minor cleanup of Stuart Buchanan's tree patch.
[simgear.git] / simgear / scene / tgdb / TreeBin.cxx
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 #include <algorithm>
23 #include <string>
24 #include <map>
25
26 #include <osg/AlphaFunc>
27 #include <osg/Billboard>
28 #include <osg/BlendFunc>
29 #include <osg/Geode>
30 #include <osg/Geometry>
31 #include <osg/Material>
32 #include <osg/Math>
33 #include <osg/MatrixTransform>
34 #include <osg/Matrix>
35 #include <osg/StateSet>
36 #include <osg/Texture2D>
37 #include <osg/TexEnv>
38
39 #include <osgDB/ReadFile>
40 #include <osgDB/FileUtils>
41
42 #include <simgear/misc/sg_path.hxx>
43 #include <simgear/scene/util/QuadTreeBuilder.hxx>
44 #include <simgear/scene/util/RenderConstants.hxx>
45 #include <simgear/scene/util/StateAttributeFactory.hxx>
46
47 #include "ShaderGeometry.hxx"
48 #include "TreeBin.hxx"
49
50 #define SG_TREE_QUAD_TREE_DEPTH 3
51
52 // Comments from Tim Moore:
53 // Some work remains for this code. Stuart's enhancement for multiple
54 // textures per forest should be integrated. We should try to use one
55 // ShaderGeometry for *all* the trees in the scene graph and do the
56 // rotation and scale with a MatrixTransform above the trees quad
57 // tree. The positions would of course have to be transformed by the
58 // inverse of that transform. Also, we should investigate whether it
59 // would be better to instantiate trees as polygons in a osg::Geometry
60 // object instead of using the ShaderGeometry instancing technique.
61
62 using namespace osg;
63
64 namespace simgear
65 {
66
67 osg::Geometry* createOrthQuads(float w, float h, int varieties, const osg::Matrix& rotate)
68 {
69
70     //const osg::Vec3& pos = osg::Vec3(0.0f,0.0f,0.0f),
71     // set up the coords
72     // Create front and back polygons so we don't need to screw around
73     // with two-sided lighting in the shader.
74     osg::Vec3Array& v = *(new osg::Vec3Array(8));
75     osg::Vec3Array& n = *(new osg::Vec3Array(8));
76     osg::Vec2Array& t = *(new osg::Vec2Array(8));
77     
78     float cw = w*0.5f;
79
80     v[0].set(0.0f,-cw,0.0f);
81     v[1].set(0.0f, cw,0.0f);
82     v[2].set(0.0f, cw,h);
83     v[3].set(0.0f,-cw,h);
84
85     v[4].set(-cw,0.0f,0.0f);
86     v[5].set( cw,0.0f,0.0f);
87     v[6].set( cw,0.0f,h);
88     v[7].set(-cw,0.0f,h);
89
90     // The texture coordinate range is not the
91     // entire coordinate space - as the texture
92     // has a number of different trees on it.
93     float tx = 1.0f/varieties;
94
95     t[0].set(0.0f,0.0f);
96     t[1].set(  tx,0.0f);
97     t[2].set(  tx,1.0f);
98     t[3].set(0.0f,1.0f);
99
100     t[4].set(0.0f,0.0f);
101     t[5].set(  tx,0.0f);
102     t[6].set(  tx,1.0f);
103     t[7].set(0.0f,1.0f);
104
105     // For now the normal is normal to the quad. If we want to get
106     // fancier and approximate a cylindrical tree or something, then
107     // we would really want more geometry.
108     std::fill(n.begin(), n.begin() + 4, Vec3f(1.0f, 0.0f, 0.0f));
109     std::fill(n.begin() + 4, n.end(), Vec3f(0.0f, -1.0f, 0.0f));
110     for (unsigned int i = 0; i < 8; i++) {
111         v[i] = v[i] * rotate;
112         // Should be the inverse transpose, but assume that rotate is
113         // orthonormal.
114         n[i] = n[i] * rotate;     
115     }
116
117     osg::Geometry *geom = new osg::Geometry;
118
119     geom->setVertexArray(&v);
120     geom->setTexCoordArray(0, &t);
121     geom->setNormalArray(&n);
122     geom->setNormalBinding(Geometry::BIND_PER_VERTEX);
123     // No color for now; that's used to pass the position.
124     geom->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::QUADS,0,8));
125
126     return geom;
127 }
128
129  static char vertexShaderSource[] = 
130     "varying vec2 texcoord;\n"
131     "varying float fogFactor;\n"
132     "attribute float textureIndex;\n"
133     "\n"
134     "void main(void)\n"
135     "{\n"
136     "  texcoord = gl_MultiTexCoord0.st + vec2(textureIndex, 0.0);\n"
137     "  vec3 position = gl_Vertex.xyz * gl_Color.w + gl_Color.xyz;\n"
138     "  gl_Position   = gl_ModelViewProjectionMatrix * vec4(position,1.0);\n"
139     "  vec3 ecPosition = vec3(gl_ModelViewMatrix * vec4(position, 1.0));\n"
140     "  vec3 N = normalize(gl_NormalMatrix * gl_Normal);\n"
141     "  vec3 diffuse = gl_FrontMaterial.diffuse.rgb * max(0.0, dot(N, gl_LightSource[0].position.xyz));\n"
142     "  vec3 backDiffuse = gl_FrontMaterial.diffuse.rgb * max(0.0, dot(-N, gl_LightSource[0].position.xyz));\n"
143     " vec4 ambientColor = gl_FrontLightModelProduct.sceneColor + gl_LightSource[0].ambient * gl_FrontMaterial.ambient;\n"
144     " gl_FrontColor = ambientColor + gl_LightSource[0].diffuse * vec4(diffuse, 1.0);\n"
145     " gl_BackColor = ambientColor + gl_LightSource[0].diffuse * vec4(backDiffuse, 1.0)\n;"
146 //    "  gl_TexCoord[0] = gl_MultiTexCoord0;\n"
147     " float fogCoord = abs(ecPosition.z);\n"
148     "  fogFactor = exp( -gl_Fog.density * gl_Fog.density * fogCoord * fogCoord);\n"
149     "  fogFactor = clamp(fogFactor, 0.0, 1.0);\n"
150     "}\n";
151
152 static char fragmentShaderSource[] = 
153     "uniform sampler2D baseTexture; \n"
154     "varying vec2 texcoord;\n"
155 //        "varying vec3 N;\n"
156 //        "varying vec3 v;\n"
157     "varying float fogFactor;\n"
158     "\n"
159     "void main(void) \n"
160     "{ \n"
161     "  vec4 base = texture2D( baseTexture, texcoord);\n"
162     
163     "  vec4 finalColor = base * gl_Color;\n"
164     "  gl_FragColor = mix(gl_Fog.color, finalColor, fogFactor );\n"
165     "}\n";
166
167 typedef std::map<std::string, osg::ref_ptr<StateSet> > StateSetMap;
168
169 static StateSetMap treeTextureMap;
170
171 // Helper classes for creating the quad tree
172 namespace
173 {
174 struct MakeTreesLeaf
175 {
176     MakeTreesLeaf(float range, Geometry* geometry, int varieties) :
177         _range(range), _geometry(geometry), _varieties(varieties)
178     {}
179     MakeTreesLeaf(const MakeTreesLeaf& rhs) :
180         _range(rhs._range), _geometry(rhs._geometry), _varieties(rhs._varieties) {}
181     LOD* operator() () const
182     {
183         LOD* result = new LOD;
184         Geode* geode = new Geode;
185         ShaderGeometry* sg = new ShaderGeometry(_varieties);
186         sg->setGeometry(_geometry);
187         geode->addDrawable(sg);
188         result->addChild(geode, 0, _range);
189         return result;
190     }
191     float _range;
192     int _varieties;
193     Geometry* _geometry;
194 };
195
196 struct AddTreesLeafObject
197 {
198     void operator() (LOD* lod, const TreeBin::Tree& tree) const
199     {
200         Geode* geode = static_cast<Geode*>(lod->getChild(0));
201         ShaderGeometry* sg
202             = static_cast<ShaderGeometry*>(geode->getDrawable(0));
203         sg->addTree(tree);
204     }
205 };
206
207 struct GetTreeCoord
208 {
209     GetTreeCoord(const Matrix& transform) : _transform(transform) {}
210     GetTreeCoord(const GetTreeCoord& rhs) : _transform(rhs._transform) {}
211     Vec3 operator() (const TreeBin::Tree& tree) const
212     {
213         return tree.position.osg() * _transform;
214     }
215     Matrix _transform;
216 };
217
218 typedef QuadTreeBuilder<LOD*, TreeBin::Tree, MakeTreesLeaf, AddTreesLeafObject,
219                         GetTreeCoord> ShaderGeometryQuadtree;
220 }
221
222 osg::Group* createForest(TreeBin& forest, const osg::Matrix& transform)
223 {
224     // Set up some shared structures. 
225     osg::Geometry* shared_geometry = createOrthQuads(forest.width, 
226                                                      forest.height, 
227                                                      forest.texture_varieties,
228                                                      transform);
229
230     ref_ptr<Group> group;
231
232     osg::StateSet* stateset = 0;
233     StateSetMap::iterator iter = treeTextureMap.find(forest.texture);
234     if (iter == treeTextureMap.end()) {
235         osg::Texture2D *tex = new osg::Texture2D;
236         tex->setWrap( osg::Texture2D::WRAP_S, osg::Texture2D::CLAMP );
237         tex->setWrap( osg::Texture2D::WRAP_T, osg::Texture2D::CLAMP );
238         tex->setImage(osgDB::readImageFile(forest.texture));
239
240         static ref_ptr<AlphaFunc> alphaFunc;
241         static ref_ptr<Program> program;
242         static ref_ptr<Uniform> baseTextureSampler;
243         static ref_ptr<Material> material;
244     
245         stateset = new osg::StateSet;
246         stateset->setTextureAttributeAndModes(0, tex, osg::StateAttribute::ON );
247         stateset->setRenderBinDetails(RANDOM_OBJECTS_BIN, "DepthSortedBin");
248         if (!program.valid()) {
249             alphaFunc = new AlphaFunc;
250             alphaFunc->setFunction(AlphaFunc::GEQUAL,0.33f);
251             program  = new Program;
252             baseTextureSampler = new osg::Uniform("baseTexture", 0);
253             Shader* vertex_shader = new Shader(Shader::VERTEX, vertexShaderSource);
254             program->addShader(vertex_shader);
255             program->addBindAttribLocation("textureIndex", 1);
256
257             Shader* fragment_shader = new Shader(Shader::FRAGMENT,
258                                                  fragmentShaderSource);
259             program->addShader(fragment_shader);
260             material = new Material;
261             // DonĀ“t track vertex color
262             material->setColorMode(Material::OFF);
263             material->setAmbient(Material::FRONT_AND_BACK,
264                                  Vec4(.8f, .8f, .8f, 1.0f));
265             material->setDiffuse(Material::FRONT_AND_BACK,
266                                  Vec4(.2f, .2f, .2f, 1.0f));
267         }
268         stateset->setAttributeAndModes(alphaFunc.get());
269         stateset->setAttribute(program.get());
270         stateset->addUniform(baseTextureSampler.get());
271         stateset->setMode(GL_VERTEX_PROGRAM_TWO_SIDE, StateAttribute::ON);
272         stateset->setAttribute(material.get());
273
274         treeTextureMap.insert(StateSetMap::value_type(forest.texture,
275                                                       stateset));
276     } else {
277         stateset = iter->second.get();
278     }
279     // Now, create a quadtree for the forest.
280     {
281         ShaderGeometryQuadtree quadtree(GetTreeCoord(Matrix::inverse(transform)),
282                                         AddTreesLeafObject(),
283                                         SG_TREE_QUAD_TREE_DEPTH,
284                                         MakeTreesLeaf(forest.range,
285                                                       shared_geometry,
286                                                       forest.texture_varieties));
287         quadtree.buildQuadTree(forest._trees.begin(), forest._trees.end());
288         group = quadtree.getRoot();
289     }
290     group->setStateSet(stateset);
291     return group.release();    
292 }
293
294 }