]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/obj.cxx
Rotate the scenery tiles so that the horizont is axis aligned.
[simgear.git] / simgear / scene / tgdb / obj.cxx
1 // obj.cxx -- routines to handle loading scenery and building the plib
2 //            scene graph.
3 //
4 // Written by Curtis Olson, started October 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <simgear_config.h>
27 #endif
28
29 #include "obj.hxx"
30
31 #include <simgear/compiler.h>
32
33 #include <osg/Fog>
34 #include <osg/Geode>
35 #include <osg/Geometry>
36 #include <osg/Group>
37 #include <osg/LOD>
38 #include <osg/MatrixTransform>
39 #include <osg/Point>
40 #include <osg/StateSet>
41 #include <osg/Switch>
42
43 #include <simgear/debug/logstream.hxx>
44 #include <simgear/io/sg_binobj.hxx>
45 #include <simgear/math/sg_geodesy.hxx>
46 #include <simgear/math/sg_random.h>
47 #include <simgear/scene/material/mat.hxx>
48 #include <simgear/scene/material/matlib.hxx>
49 #include <simgear/scene/model/SGOffsetTransform.hxx>
50 #include <simgear/scene/util/SGUpdateVisitor.hxx>
51 #include <simgear/scene/util/SGNodeMasks.hxx>
52 #include <simgear/scene/util/QuadTreeBuilder.hxx>
53
54 #include "SGTexturedTriangleBin.hxx"
55 #include "SGLightBin.hxx"
56 #include "SGModelBin.hxx"
57 #include "TreeBin.hxx"
58 #include "SGDirectionalLightBin.hxx"
59 #include "GroundLightManager.hxx"
60
61
62 #include "userdata.hxx"
63 #include "pt_lights.hxx"
64
65 using namespace simgear;
66
67 typedef std::map<std::string,SGTexturedTriangleBin> SGMaterialTriangleMap;
68 typedef std::list<SGLightBin> SGLightListBin;
69 typedef std::list<SGDirectionalLightBin> SGDirectionalLightListBin;
70
71 struct SGTileGeometryBin {
72   SGMaterialTriangleMap materialTriangleMap;
73   SGLightBin tileLights;
74   SGLightBin randomTileLights;
75   TreeBin randomForest;
76   SGDirectionalLightBin runwayLights;
77   SGDirectionalLightBin taxiLights;
78   SGDirectionalLightListBin vasiLights;
79   SGDirectionalLightListBin rabitLights;
80   SGLightListBin odalLights;
81   SGDirectionalLightListBin reilLights;
82   SGMatModelBin randomModels;
83
84   static SGVec4f
85   getMaterialLightColor(const SGMaterial* material)
86   {
87     if (!material)
88       return SGVec4f(1, 1, 1, 0.8);
89     return material->get_light_color();
90   }
91
92   static void
93   addPointGeometry(SGLightBin& lights,
94                    const std::vector<SGVec3d>& vertices,
95                    const SGVec4f& color,
96                    const int_list& pts_v)
97   {
98     for (unsigned i = 0; i < pts_v.size(); ++i)
99       lights.insert(toVec3f(vertices[pts_v[i]]), color);
100   }
101
102   static void
103   addPointGeometry(SGDirectionalLightBin& lights,
104                    const std::vector<SGVec3d>& vertices,
105                    const std::vector<SGVec3f>& normals,
106                    const SGVec4f& color,
107                    const int_list& pts_v,
108                    const int_list& pts_n)
109   {
110     // If the normal indices match the vertex indices, use seperate
111     // normal indices. Else reuse the vertex indices for the normals.
112     if (pts_v.size() == pts_n.size()) {
113       for (unsigned i = 0; i < pts_v.size(); ++i)
114         lights.insert(toVec3f(vertices[pts_v[i]]), normals[pts_n[i]], color);
115     } else {
116       for (unsigned i = 0; i < pts_v.size(); ++i)
117         lights.insert(toVec3f(vertices[pts_v[i]]), normals[pts_v[i]], color);
118     }
119   }
120
121   bool
122   insertPtGeometry(const SGBinObject& obj, SGMaterialLib* matlib)
123   {
124     if (obj.get_pts_v().size() != obj.get_pts_n().size()) {
125       SG_LOG(SG_TERRAIN, SG_ALERT,
126              "Group list sizes for points do not match!");
127       return false;
128     }
129
130     for (unsigned grp = 0; grp < obj.get_pts_v().size(); ++grp) {
131       std::string materialName = obj.get_pt_materials()[grp];
132       SGMaterial* material = matlib->find(materialName);
133       SGVec4f color = getMaterialLightColor(material);
134
135       if (3 <= materialName.size() && materialName.substr(0, 3) != "RWY") {
136         // Just plain lights. Not something for the runway.
137         addPointGeometry(tileLights, obj.get_wgs84_nodes(), color,
138                          obj.get_pts_v()[grp]);
139       } else if (materialName == "RWY_BLUE_TAXIWAY_LIGHTS"
140                  || materialName == "RWY_GREEN_TAXIWAY_LIGHTS") {
141         addPointGeometry(taxiLights, obj.get_wgs84_nodes(), obj.get_normals(),
142                          color, obj.get_pts_v()[grp], obj.get_pts_n()[grp]);
143       } else if (materialName == "RWY_VASI_LIGHTS") {
144         vasiLights.push_back(SGDirectionalLightBin());
145         addPointGeometry(vasiLights.back(), obj.get_wgs84_nodes(),
146                          obj.get_normals(), color, obj.get_pts_v()[grp],
147                          obj.get_pts_n()[grp]);
148       } else if (materialName == "RWY_SEQUENCED_LIGHTS") {
149         rabitLights.push_back(SGDirectionalLightBin());
150         addPointGeometry(rabitLights.back(), obj.get_wgs84_nodes(),
151                          obj.get_normals(), color, obj.get_pts_v()[grp],
152                          obj.get_pts_n()[grp]);
153       } else if (materialName == "RWY_ODALS_LIGHTS") {
154         odalLights.push_back(SGLightBin());
155         addPointGeometry(odalLights.back(), obj.get_wgs84_nodes(),
156                          color, obj.get_pts_v()[grp]);
157       } else if (materialName == "RWY_REIL_LIGHTS") {
158         reilLights.push_back(SGDirectionalLightBin());
159         addPointGeometry(reilLights.back(), obj.get_wgs84_nodes(),
160                          obj.get_normals(), color, obj.get_pts_v()[grp],
161                          obj.get_pts_n()[grp]);
162       } else {
163         // what is left must be runway lights
164         addPointGeometry(runwayLights, obj.get_wgs84_nodes(),
165                          obj.get_normals(), color, obj.get_pts_v()[grp],
166                          obj.get_pts_n()[grp]);
167       }
168     }
169
170     return true;
171   }
172
173
174   static SGVec2f
175   getTexCoord(const std::vector<SGVec2f>& texCoords, const int_list& tc,
176               const SGVec2f& tcScale, unsigned i)
177   {
178     if (tc.empty())
179       return tcScale;
180     else if (tc.size() == 1)
181       return mult(texCoords[tc[0]], tcScale);
182     else
183       return mult(texCoords[tc[i]], tcScale);
184   }
185
186   static void
187   addTriangleGeometry(SGTexturedTriangleBin& triangles,
188                       const std::vector<SGVec3d>& vertices,
189                       const std::vector<SGVec3f>& normals,
190                       const std::vector<SGVec2f>& texCoords,
191                       const int_list& tris_v,
192                       const int_list& tris_n,
193                       const int_list& tris_tc,
194                       const SGVec2f& tcScale)
195   {
196     if (tris_v.size() != tris_n.size()) {
197       // If the normal indices do not match, they should be inmplicitly
198       // the same than the vertex indices. So just call ourselves again
199       // with the matching index vector.
200       addTriangleGeometry(triangles, vertices, normals, texCoords,
201                           tris_v, tris_v, tris_tc, tcScale);
202       return;
203     }
204
205     for (unsigned i = 2; i < tris_v.size(); i += 3) {
206       SGVertNormTex v0;
207       v0.vertex = toVec3f(vertices[tris_v[i-2]]);
208       v0.normal = normals[tris_n[i-2]];
209       v0.texCoord = getTexCoord(texCoords, tris_tc, tcScale, i-2);
210       SGVertNormTex v1;
211       v1.vertex = toVec3f(vertices[tris_v[i-1]]);
212       v1.normal = normals[tris_n[i-1]];
213       v1.texCoord = getTexCoord(texCoords, tris_tc, tcScale, i-1);
214       SGVertNormTex v2;
215       v2.vertex = toVec3f(vertices[tris_v[i]]);
216       v2.normal = normals[tris_n[i]];
217       v2.texCoord = getTexCoord(texCoords, tris_tc, tcScale, i);
218       triangles.insert(v0, v1, v2);
219     }
220   }
221
222   static void
223   addStripGeometry(SGTexturedTriangleBin& triangles,
224                    const std::vector<SGVec3d>& vertices,
225                    const std::vector<SGVec3f>& normals,
226                    const std::vector<SGVec2f>& texCoords,
227                    const int_list& strips_v,
228                    const int_list& strips_n,
229                    const int_list& strips_tc,
230                    const SGVec2f& tcScale)
231   {
232     if (strips_v.size() != strips_n.size()) {
233       // If the normal indices do not match, they should be inmplicitly
234       // the same than the vertex indices. So just call ourselves again
235       // with the matching index vector.
236       addStripGeometry(triangles, vertices, normals, texCoords,
237                        strips_v, strips_v, strips_tc, tcScale);
238       return;
239     }
240
241     for (unsigned i = 2; i < strips_v.size(); ++i) {
242       SGVertNormTex v0;
243       v0.vertex = toVec3f(vertices[strips_v[i-2]]);
244       v0.normal = normals[strips_n[i-2]];
245       v0.texCoord = getTexCoord(texCoords, strips_tc, tcScale, i-2);
246       SGVertNormTex v1;
247       v1.vertex = toVec3f(vertices[strips_v[i-1]]);
248       v1.normal = normals[strips_n[i-1]];
249       v1.texCoord = getTexCoord(texCoords, strips_tc, tcScale, i-1);
250       SGVertNormTex v2;
251       v2.vertex = toVec3f(vertices[strips_v[i]]);
252       v2.normal = normals[strips_n[i]];
253       v2.texCoord = getTexCoord(texCoords, strips_tc, tcScale, i);
254       if (i%2)
255         triangles.insert(v1, v0, v2);
256       else
257         triangles.insert(v0, v1, v2);
258     }
259   }
260   
261   static void
262   addFanGeometry(SGTexturedTriangleBin& triangles,
263                  const std::vector<SGVec3d>& vertices,
264                  const std::vector<SGVec3f>& normals,
265                  const std::vector<SGVec2f>& texCoords,
266                  const int_list& fans_v,
267                  const int_list& fans_n,
268                  const int_list& fans_tc,
269                  const SGVec2f& tcScale)
270   {
271     if (fans_v.size() != fans_n.size()) {
272       // If the normal indices do not match, they should be implicitly
273       // the same than the vertex indices. So just call ourselves again
274       // with the matching index vector.
275       addFanGeometry(triangles, vertices, normals, texCoords,
276                      fans_v, fans_v, fans_tc, tcScale);
277       return;
278     }
279
280     SGVertNormTex v0;
281     v0.vertex = toVec3f(vertices[fans_v[0]]);
282     v0.normal = normals[fans_n[0]];
283     v0.texCoord = getTexCoord(texCoords, fans_tc, tcScale, 0);
284     SGVertNormTex v1;
285     v1.vertex = toVec3f(vertices[fans_v[1]]);
286     v1.normal = normals[fans_n[1]];
287     v1.texCoord = getTexCoord(texCoords, fans_tc, tcScale, 1);
288     for (unsigned i = 2; i < fans_v.size(); ++i) {
289       SGVertNormTex v2;
290       v2.vertex = toVec3f(vertices[fans_v[i]]);
291       v2.normal = normals[fans_n[i]];
292       v2.texCoord = getTexCoord(texCoords, fans_tc, tcScale, i);
293       triangles.insert(v0, v1, v2);
294       v1 = v2;
295     }
296   }
297
298   SGVec2f getTexCoordScale(const std::string& name, SGMaterialLib* matlib)
299   {
300     if (!matlib)
301       return SGVec2f(1, 1);
302     SGMaterial* material = matlib->find(name);
303     if (!material)
304       return SGVec2f(1, 1);
305
306     return material->get_tex_coord_scale();
307   }
308
309   bool
310   insertSurfaceGeometry(const SGBinObject& obj, SGMaterialLib* matlib)
311   {
312     if (obj.get_tris_n().size() < obj.get_tris_v().size() ||
313         obj.get_tris_tc().size() < obj.get_tris_v().size()) {
314       SG_LOG(SG_TERRAIN, SG_ALERT,
315              "Group list sizes for triangles do not match!");
316       return false;
317     }
318
319     for (unsigned grp = 0; grp < obj.get_tris_v().size(); ++grp) {
320       std::string materialName = obj.get_tri_materials()[grp];
321       SGVec2f tcScale = getTexCoordScale(materialName, matlib);
322       addTriangleGeometry(materialTriangleMap[materialName],
323                           obj.get_wgs84_nodes(), obj.get_normals(),
324                           obj.get_texcoords(), obj.get_tris_v()[grp],
325                           obj.get_tris_n()[grp], obj.get_tris_tc()[grp],
326                           tcScale);
327     }
328
329     if (obj.get_strips_n().size() < obj.get_strips_v().size() ||
330         obj.get_strips_tc().size() < obj.get_strips_v().size()) {
331       SG_LOG(SG_TERRAIN, SG_ALERT,
332              "Group list sizes for strips do not match!");
333       return false;
334     }
335     for (unsigned grp = 0; grp < obj.get_strips_v().size(); ++grp) {
336       std::string materialName = obj.get_strip_materials()[grp];
337       SGVec2f tcScale = getTexCoordScale(materialName, matlib);
338       addStripGeometry(materialTriangleMap[materialName],
339                        obj.get_wgs84_nodes(), obj.get_normals(),
340                        obj.get_texcoords(), obj.get_strips_v()[grp],
341                        obj.get_strips_n()[grp], obj.get_strips_tc()[grp],
342                        tcScale);
343     }
344
345     if (obj.get_fans_n().size() < obj.get_fans_v().size() ||
346         obj.get_fans_tc().size() < obj.get_fans_v().size()) {
347       SG_LOG(SG_TERRAIN, SG_ALERT,
348              "Group list sizes for fans do not match!");
349       return false;
350     }
351     for (unsigned grp = 0; grp < obj.get_fans_v().size(); ++grp) {
352       std::string materialName = obj.get_fan_materials()[grp];
353       SGVec2f tcScale = getTexCoordScale(materialName, matlib);
354       addFanGeometry(materialTriangleMap[materialName],
355                      obj.get_wgs84_nodes(), obj.get_normals(),
356                      obj.get_texcoords(), obj.get_fans_v()[grp],
357                      obj.get_fans_n()[grp], obj.get_fans_tc()[grp],
358                      tcScale);
359     }
360     return true;
361   }
362
363   osg::Node* getSurfaceGeometry(SGMaterialLib* matlib) const
364   {
365     if (materialTriangleMap.empty())
366       return 0;
367
368     osg::Geode* geode = new osg::Geode;
369     SGMaterialTriangleMap::const_iterator i;
370     for (i = materialTriangleMap.begin(); i != materialTriangleMap.end(); ++i) {
371       // CHUNCKED (sic) here splits up unconnected triangles parts of
372       // the mesh into different Geometry sets, presumably for better
373       // culling. I (timoore) believe it is more performant to build
374       // the biggest indexed sets possible at the expense of tight
375       // culling.
376 //#define CHUNCKED
377 #ifdef CHUNCKED
378       SGMaterial *mat = matlib->find(i->first);
379
380       std::list<SGTexturedTriangleBin::TriangleVector> connectSets;
381       i->second.getConnectedSets(connectSets);
382
383       std::list<SGTexturedTriangleBin::TriangleVector>::iterator j;
384       for (j = connectSets.begin(); j != connectSets.end(); ++j) {
385         osg::Geometry* geometry = i->second.buildGeometry(*j);
386         if (mat)
387           geometry->setStateSet(mat->get_state());
388         geode->addDrawable(geometry);
389       }
390 #else
391       osg::Geometry* geometry = i->second.buildGeometry();
392       SGMaterial *mat = matlib->find(i->first);
393       if (mat)
394         geometry->setStateSet(mat->get_state());
395       geode->addDrawable(geometry);
396 #endif
397     }
398     return geode;
399   }
400
401   void computeRandomSurfaceLights(SGMaterialLib* matlib)
402   {
403     SGMaterialTriangleMap::iterator i;
404         
405     // generate a repeatable random seed
406     mt seed;
407     mt_init(&seed, unsigned(123));
408     
409     for (i = materialTriangleMap.begin(); i != materialTriangleMap.end(); ++i) {
410       SGMaterial *mat = matlib->find(i->first);
411       if (!mat)
412         continue;
413
414       float coverage = mat->get_light_coverage();
415       if (coverage <= 0)
416         continue;
417       if (coverage < 10000.0) {
418         SG_LOG(SG_INPUT, SG_ALERT, "Light coverage is "
419                << coverage << ", pushing up to 10000");
420         coverage = 10000;
421       }
422       
423       std::vector<SGVec3f> randomPoints;
424       i->second.addRandomSurfacePoints(coverage, 3, randomPoints);
425       std::vector<SGVec3f>::iterator j;
426       for (j = randomPoints.begin(); j != randomPoints.end(); ++j) {
427         float zombie = mt_rand(&seed);
428         // factor = sg_random() ^ 2, range = 0 .. 1 concentrated towards 0
429         float factor = mt_rand(&seed);
430         factor *= factor;
431
432         float bright = 1;
433         SGVec4f color;
434         if ( zombie > 0.5 ) {
435           // 50% chance of yellowish
436           color = SGVec4f(0.9f, 0.9f, 0.3f, bright - factor * 0.2f);
437         } else if (zombie > 0.15f) {
438           // 35% chance of whitish
439           color = SGVec4f(0.9, 0.9f, 0.8f, bright - factor * 0.2f);
440         } else if (zombie > 0.05f) {
441           // 10% chance of orangish
442           color = SGVec4f(0.9f, 0.6f, 0.2f, bright - factor * 0.2f);
443         } else {
444           // 5% chance of redish
445           color = SGVec4f(0.9f, 0.2f, 0.2f, bright - factor * 0.2f);
446         }
447         randomTileLights.insert(*j, color);
448       }
449     }
450   }
451
452   void computeRandomForest(SGMaterialLib* matlib)
453   {
454     SGMaterialTriangleMap::iterator i;
455
456     // generate a repeatable random seed
457     mt seed;
458     mt_init(&seed, unsigned(586));
459
460     for (i = materialTriangleMap.begin(); i != materialTriangleMap.end(); ++i) {
461       SGMaterial *mat = matlib->find(i->first);
462       if (!mat)
463         continue;
464
465       float coverage = mat->get_tree_coverage();
466       if (coverage <= 0)
467         continue;
468
469       // Attributes that don't vary by tree
470       randomForest.texture = mat->get_tree_texture();
471       randomForest.range   = mat->get_tree_range();
472       randomForest.width   = mat->get_tree_width();
473       randomForest.height  = mat->get_tree_height();
474       randomForest.texture_varieties = mat->get_tree_varieties();
475
476       std::vector<SGVec3f> randomPoints;
477       i->second.addRandomSurfacePoints(coverage, 0, randomPoints);
478       std::vector<SGVec3f>::iterator j;
479       for (j = randomPoints.begin(); j != randomPoints.end(); ++j) {
480
481         // Apply a random scaling factor and texture index.
482         float scale = (mt_rand(&seed) + mt_rand(&seed)) / 2.0f + 0.5f;
483         int v = (int) (mt_rand(&seed) * mat->get_tree_varieties());
484         if (v == mat->get_tree_varieties()) v--;         
485         randomForest.insert(*j, v, scale);
486       }
487     }
488   }
489
490   void computeRandomObjects(SGMaterialLib* matlib)
491   {
492     SGMaterialTriangleMap::iterator i;
493
494     // generate a repeatable random seed
495     mt seed;
496     mt_init(&seed, unsigned(123));
497
498     for (i = materialTriangleMap.begin(); i != materialTriangleMap.end(); ++i) {
499       SGMaterial *mat = matlib->find(i->first);
500       if (!mat)
501         continue;
502
503       int group_count = mat->get_object_group_count();
504
505       if (group_count > 0)
506       {
507         for (int j = 0; j < group_count; j++)
508         {
509           SGMatModelGroup *object_group =  mat->get_object_group(j);
510           int nObjects = object_group->get_object_count();
511
512           if (nObjects > 0)
513           {
514             // For each of the random models in the group, determine an appropriate
515             // number of random placements and insert them.
516             for (int k = 0; k < nObjects; k++) {
517               SGMatModel * object = object_group->get_object(k);
518
519               std::vector<SGVec3f> randomPoints;
520
521               i->second.addRandomPoints(object->get_coverage_m2(), randomPoints);
522               std::vector<SGVec3f>::iterator l;
523               for (l = randomPoints.begin(); l != randomPoints.end(); ++l) {
524                 randomModels.insert(*l, object, (int)object->get_randomized_range_m(&seed));
525               }
526             }
527           }
528         }
529       }
530     }
531   }
532
533   bool insertBinObj(const SGBinObject& obj, SGMaterialLib* matlib)
534   {
535     if (!insertPtGeometry(obj, matlib))
536       return false;
537     if (!insertSurfaceGeometry(obj, matlib))
538       return false;
539     return true;
540   }
541 };
542
543 typedef std::pair<osg::Node*, int> ModelLOD;
544 struct MakeQuadLeaf {
545     osg::LOD* operator() () const { return new osg::LOD; }
546 };
547 struct AddModelLOD {
548     void operator() (osg::LOD* leaf, ModelLOD& mlod) const
549     {
550         leaf->addChild(mlod.first, 0, mlod.second);
551     }
552 };
553 struct GetModelLODCoord {
554     GetModelLODCoord() {}
555     GetModelLODCoord(const GetModelLODCoord& rhs)
556     {}
557     osg::Vec3 operator() (const ModelLOD& mlod) const
558     {
559         return mlod.first->getBound().center();
560     }
561 };
562
563 typedef QuadTreeBuilder<osg::LOD*, ModelLOD, MakeQuadLeaf, AddModelLOD,
564                         GetModelLODCoord>  RandomObjectsQuadtree;
565
566 osg::Node*
567 SGLoadBTG(const std::string& path, SGMaterialLib *matlib, bool calc_lights, bool use_random_objects, bool use_random_vegetation)
568 {
569   SGBinObject tile;
570   if (!tile.read_bin(path))
571     return false;
572
573   SGVec3d center = tile.get_gbs_center2();
574   SGGeod geodPos = SGGeod::fromCart(center);
575   SGQuatd hlOr = SGQuatd::fromLonLat(geodPos)*SGQuatd::fromEulerDeg(0, 0, 180);
576
577   // rotate the tiles so that the bounding boxes get nearly axis aligned.
578   // this will help the collision tree's bounding boxes a bit ...
579   std::vector<SGVec3d> nodes = tile.get_wgs84_nodes();
580   for (unsigned i = 0; i < nodes.size(); ++i)
581     nodes[i] = hlOr.transform(nodes[i]);
582   tile.set_wgs84_nodes(nodes);
583
584   SGQuatf hlOrf(hlOr[0], hlOr[1], hlOr[2], hlOr[3]);
585   std::vector<SGVec3f> normals = tile.get_normals();
586   for (unsigned i = 0; i < normals.size(); ++i)
587     normals[i] = hlOrf.transform(normals[i]);
588   tile.set_normals(normals);
589
590   SGTileGeometryBin tileGeometryBin;
591   if (!tileGeometryBin.insertBinObj(tile, matlib))
592     return false;
593
594   SGVec3f up(0, 0, 1);
595   GroundLightManager* lightManager = GroundLightManager::instance();
596
597   osg::ref_ptr<osg::Group> lightGroup = new SGOffsetTransform(0.94);
598   osg::ref_ptr<osg::Group> randomObjects;
599   osg::ref_ptr<osg::Group> randomForest;
600   osg::Group* terrainGroup = new osg::Group;
601
602   osg::Node* node = tileGeometryBin.getSurfaceGeometry(matlib);
603   if (node)
604     terrainGroup->addChild(node);
605
606   if (use_random_objects || use_random_vegetation) {
607     if (use_random_objects) {
608       tileGeometryBin.computeRandomObjects(matlib);
609     
610       if (tileGeometryBin.randomModels.getNumModels() > 0) {
611         // Generate a repeatable random seed
612         mt seed;
613         mt_init(&seed, unsigned(123));
614
615         std::vector<ModelLOD> models;
616         for (unsigned int i = 0;
617              i < tileGeometryBin.randomModels.getNumModels(); i++) {
618           SGMatModelBin::MatModel obj
619             = tileGeometryBin.randomModels.getMatModel(i);
620           osg::Node* node = sgGetRandomModel(obj.model);
621         
622           // Create a matrix to place the object in the correct
623           // location, and then apply the rotation matrix created
624           // above, with an additional random heading rotation if appropriate.
625           osg::Matrix transformMat;
626           transformMat = osg::Matrix::translate(obj.position.osg());
627           if (obj.model->get_heading_type() == SGMatModel::HEADING_RANDOM) {
628             // Rotate the object around the z axis.
629             double hdg = mt_rand(&seed) * M_PI * 2;
630             transformMat.preMult(osg::Matrix::rotate(hdg,
631                                                      osg::Vec3d(0.0, 0.0, 1.0)));
632           }
633           osg::MatrixTransform* position =
634             new osg::MatrixTransform(transformMat);
635           position->addChild(node);
636           models.push_back(ModelLOD(position, obj.lod));
637         }
638         RandomObjectsQuadtree quadtree((GetModelLODCoord()), (AddModelLOD()));
639         quadtree.buildQuadTree(models.begin(), models.end());
640         randomObjects = quadtree.getRoot();
641         randomObjects->setName("random objects");
642       }
643     }
644
645     if (use_random_vegetation) {
646       // Now add some random forest.
647       tileGeometryBin.computeRandomForest(matlib);
648
649       if (tileGeometryBin.randomForest.getNumTrees() > 0) {
650         randomForest = createForest(tileGeometryBin.randomForest,
651                                     osg::Matrix::identity());
652         randomForest->setName("random trees");
653       }
654     } 
655   }
656
657   if (calc_lights) {
658     // FIXME: ugly, has a side effect
659     tileGeometryBin.computeRandomSurfaceLights(matlib);
660
661     if (tileGeometryBin.tileLights.getNumLights() > 0
662         || tileGeometryBin.randomTileLights.getNumLights() > 0) {
663       osg::Group* groundLights0 = new osg::Group;
664       groundLights0->setStateSet(lightManager->getGroundLightStateSet());
665       groundLights0->setNodeMask(GROUNDLIGHTS0_BIT);
666       osg::Geode* geode = new osg::Geode;
667       geode->addDrawable(SGLightFactory::getLights(tileGeometryBin.tileLights));
668       geode->addDrawable(SGLightFactory::getLights(tileGeometryBin.randomTileLights, 4, -0.3f));
669       groundLights0->addChild(geode);
670       lightGroup->addChild(groundLights0);
671     }
672     if (tileGeometryBin.randomTileLights.getNumLights() > 0) {
673       osg::Group* groundLights1 = new osg::Group;
674       groundLights1->setStateSet(lightManager->getGroundLightStateSet());
675       groundLights1->setNodeMask(GROUNDLIGHTS1_BIT);
676       osg::Group* groundLights2 = new osg::Group;
677       groundLights2->setStateSet(lightManager->getGroundLightStateSet());
678       groundLights2->setNodeMask(GROUNDLIGHTS2_BIT);
679       osg::Geode* geode = new osg::Geode;
680       geode->addDrawable(SGLightFactory::getLights(tileGeometryBin.randomTileLights, 2, -0.15f));
681       groundLights1->addChild(geode);
682       lightGroup->addChild(groundLights1);
683       geode = new osg::Geode;
684       geode->addDrawable(SGLightFactory::getLights(tileGeometryBin.randomTileLights));
685       groundLights2->addChild(geode);
686       lightGroup->addChild(groundLights2);
687     }
688   }
689
690   if (!tileGeometryBin.vasiLights.empty()) {
691     osg::Geode* vasiGeode = new osg::Geode;
692     SGVec4f red(1, 0, 0, 1);
693     SGMaterial* mat = matlib->find("RWY_RED_LIGHTS");
694     if (mat)
695       red = mat->get_light_color();
696     SGVec4f white(1, 1, 1, 1);
697     mat = matlib->find("RWY_WHITE_LIGHTS");
698     if (mat)
699       white = mat->get_light_color();
700
701     SGDirectionalLightListBin::const_iterator i;
702     for (i = tileGeometryBin.vasiLights.begin();
703          i != tileGeometryBin.vasiLights.end(); ++i) {
704       vasiGeode->addDrawable(SGLightFactory::getVasi(up, *i, red, white));
705     }
706     vasiGeode->setCullCallback(new SGPointSpriteLightCullCallback(osg::Vec3(1, 0.0001, 0.000001), 6));
707     vasiGeode->setStateSet(lightManager->getRunwayLightStateSet());
708     lightGroup->addChild(vasiGeode);
709   }
710
711   if (tileGeometryBin.runwayLights.getNumLights() > 0
712       || !tileGeometryBin.rabitLights.empty()
713       || !tileGeometryBin.reilLights.empty()
714       || !tileGeometryBin.odalLights.empty()) {
715     osg::Group* rwyLights = new osg::Group;
716     rwyLights->setCullCallback(new SGPointSpriteLightCullCallback);
717     rwyLights->setStateSet(lightManager->getRunwayLightStateSet());
718     rwyLights->setNodeMask(RUNWAYLIGHTS_BIT);
719     if (tileGeometryBin.runwayLights.getNumLights() != 0) {
720       osg::Geode* geode = new osg::Geode;
721       geode->addDrawable(SGLightFactory::getLights(tileGeometryBin
722                                                    .runwayLights));
723       rwyLights->addChild(geode);
724     }
725     SGDirectionalLightListBin::const_iterator i;
726     for (i = tileGeometryBin.rabitLights.begin();
727          i != tileGeometryBin.rabitLights.end(); ++i) {
728       rwyLights->addChild(SGLightFactory::getSequenced(*i));
729     }
730     for (i = tileGeometryBin.reilLights.begin();
731          i != tileGeometryBin.reilLights.end(); ++i) {
732       rwyLights->addChild(SGLightFactory::getSequenced(*i));
733     }
734     SGLightListBin::const_iterator j;
735     for (j = tileGeometryBin.odalLights.begin();
736          j != tileGeometryBin.odalLights.end(); ++j) {
737       rwyLights->addChild(SGLightFactory::getOdal(*j));
738     }
739     lightGroup->addChild(rwyLights);
740   }
741
742   if (tileGeometryBin.taxiLights.getNumLights() > 0) {
743     osg::Group* taxiLights = new osg::Group;
744     taxiLights->setCullCallback(new SGPointSpriteLightCullCallback);
745     taxiLights->setStateSet(lightManager->getTaxiLightStateSet());
746     taxiLights->setNodeMask(RUNWAYLIGHTS_BIT);
747     osg::Geode* geode = new osg::Geode;
748     geode->addDrawable(SGLightFactory::getLights(tileGeometryBin.taxiLights));
749     taxiLights->addChild(geode);
750     lightGroup->addChild(taxiLights);
751   }
752
753   // The toplevel transform for that tile.
754   osg::MatrixTransform* transform = new osg::MatrixTransform;
755   transform->setName(path);
756   transform->setMatrix(osg::Matrix::rotate(hlOr.osg())*
757                        osg::Matrix::translate(center.osg()));
758   transform->addChild(terrainGroup);
759   if (lightGroup->getNumChildren() > 0) {
760     osg::LOD* lightLOD = new osg::LOD;
761     lightLOD->addChild(lightGroup.get(), 0, 30000);
762     // VASI is always on, so doesn't use light bits.
763     lightLOD->setNodeMask(LIGHTS_BITS | MODEL_BIT); 
764     transform->addChild(lightLOD);
765   }
766   
767   if (randomObjects.valid() || randomForest.valid()) {
768   
769     // Add a LoD node, so we don't try to display anything when the tile center
770     // is more than 20km away.
771     osg::LOD* objectLOD = new osg::LOD;
772     
773     if (randomObjects.valid()) objectLOD->addChild(randomObjects.get(), 0, 20000);
774     if (randomForest.valid())  objectLOD->addChild(randomForest.get(), 0, 20000);
775     
776     unsigned nodeMask = SG_NODEMASK_CASTSHADOW_BIT | SG_NODEMASK_RECIEVESHADOW_BIT | SG_NODEMASK_TERRAIN_BIT;
777     objectLOD->setNodeMask(nodeMask);
778     transform->addChild(objectLOD);
779   }
780   
781   return transform;
782 }