1 // tile.cxx -- routines to handle a scenery tile
3 // Written by Curtis Olson, started May 1998.
5 // Copyright (C) 1998, 1999 Curtis L. Olson - curt@flightgear.org
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <simgear/compiler.h>
26 #ifdef FG_MATH_EXCEPTION_CLASH
30 #include STL_FUNCTIONAL
31 #include STL_ALGORITHM
33 #include <simgear/bucket/newbucket.hxx>
34 #include <simgear/debug/logstream.hxx>
36 #include "tileentry.hxx"
38 FG_USING_STD(for_each);
39 FG_USING_STD(mem_fun_ref);
43 FGTileEntry::FGTileEntry ( void )
53 FGTileEntry::~FGTileEntry ( void ) {
54 // cout << "nodes = " << nodes.size() << endl;;
59 // recurse an ssg tree and call removeKid() on every node from the
60 // bottom up. Leaves the original branch in existance, but empty so
61 // it can be removed by the calling routine.
62 static void my_remove_branch( ssgBranch * branch ) {
63 for ( ssgEntity *k = branch->getKid( 0 );
65 k = branch->getNextKid() )
67 if ( k -> isAKindOf ( ssgTypeBranch() ) ) {
68 my_remove_branch( (ssgBranch *)k );
69 branch -> removeKid ( k );
70 } else if ( k -> isAKindOf ( ssgTypeLeaf() ) ) {
71 branch -> removeKid ( k ) ;
77 // Clean up the memory used by this tile and delete the arrays used by
78 // ssg as well as the whole ssg branch
79 void FGTileEntry::free_tile() {
81 FG_LOG( FG_TERRAIN, FG_DEBUG,
82 "FREEING TILE = (" << tile_bucket << ")" );
87 FG_LOG( FG_TERRAIN, FG_DEBUG,
88 " deleting " << nodes.size() << " nodes" );
91 // delete the ssg structures
92 FG_LOG( FG_TERRAIN, FG_DEBUG,
93 " deleting (leaf data) vertex, normal, and "
94 << " texture coordinate arrays" );
96 for ( i = 0; i < (int)vec3_ptrs.size(); ++i ) {
98 delete [] vec3_ptrs[i];
105 for ( i = 0; i < (int)vec2_ptrs.size(); ++i ) {
107 delete [] vec2_ptrs[i];
114 for ( i = 0; i < (int)index_ptrs.size(); ++i ) {
115 delete index_ptrs[i];
119 // delete the ssg branch
121 int pcount = select_ptr->getNumParents();
123 // find the first parent (should only be one)
124 ssgBranch *parent = select_ptr->getParent( 0 ) ;
126 // my_remove_branch( select_ptr );
127 parent->removeKid( select_ptr );
130 FG_LOG( FG_TERRAIN, FG_ALERT,
131 "parent pointer is NULL! Dying" );
135 FG_LOG( FG_TERRAIN, FG_ALERT,
136 "Parent count is zero for an ssg tile! Dying" );
142 // when a tile is still in the cache, but not in the immediate draw
143 // list, it can still remain in the scene graph, but we use a range
144 // selector to disable it from ever being drawn.
146 FGTileEntry::ssg_disable() {
147 // cout << "TILE STATE = " << state << endl;
148 if ( state == Scheduled_for_use ) {
149 state = Scheduled_for_cache;
150 } else if ( state == Scheduled_for_cache ) {
152 } else if ( (state == Loaded) || (state == Cached) ) {
154 // cout << "DISABLING SSG NODE" << endl;
155 select_ptr->select(0);
157 FG_LOG( FG_TERRAIN, FG_ALERT,
158 "Trying to disable an unused tile! Dying" );
161 // cout << "TILE STATE = " << state << endl;