]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/CheckSceneryVisitor.cxx
Merge branch 'timoore/aptsign' into next
[simgear.git] / simgear / scene / model / CheckSceneryVisitor.cxx
1 // Copyright (C) 2008 Till Busch buti@bux.at
2 //
3 // This program is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU General Public License as
5 // published by the Free Software Foundation; either version 2 of the
6 // License, or (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful, but
9 // WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16
17 #ifdef HAVE_CONFIG_H
18 #  include <simgear_config.h>
19 #endif
20
21 #include <osg/Transform>
22
23 #include <simgear/debug/logstream.hxx>
24
25 #include "CheckSceneryVisitor.hxx"
26 #include "SGPagedLOD.hxx"
27
28 #include <simgear/math/SGMath.hxx>
29
30 using namespace simgear;
31
32 CheckSceneryVisitor::CheckSceneryVisitor(osgDB::DatabasePager* dbp, const osg::Vec3 &position, double range)
33 :osg::NodeVisitor(osg::NodeVisitor::NODE_VISITOR,
34                   osg::NodeVisitor::TRAVERSE_ACTIVE_CHILDREN),
35 _position(position), _range(range), _loaded(true), _dbp(dbp)
36 {
37     _viewMatrices.push_back(osg::Matrix::identity());
38 }
39
40 void CheckSceneryVisitor::apply(osg::Node& node)
41 {
42     traverse(node);
43 }
44
45 void CheckSceneryVisitor::apply(osg::PagedLOD& node)
46 {
47     SGPagedLOD *sgplod = dynamic_cast<SGPagedLOD*>(&node);
48     if (sgplod) {
49         osg::Vec3 pos = sgplod->getCenter() * _viewMatrices.back();
50         double dist = (pos-_position).length();
51         if (dist < _range) {
52             if (sgplod->getNumChildren() < 1) {
53                 // if the DatabasePager would load LODs while the splashscreen
54                 // is there, we could just wait for the models to be loaded
55                 // by only setting setLoaded(false) here
56                 sgplod->forceLoad(_dbp);
57                 setLoaded(false);
58             }
59         }
60     }
61     traverse(node);
62 }
63
64 void CheckSceneryVisitor::apply(osg::Transform &node)
65 {
66     osg::Matrix currMatrix = _viewMatrices.back();
67     bool pushMatrix = node.computeLocalToWorldMatrix(currMatrix, this);
68
69     if (pushMatrix) {
70         _viewMatrices.push_back(currMatrix);
71     }
72     traverse(node);
73     if (pushMatrix) {
74         _viewMatrices.pop_back();
75     }
76 }