]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/tileentry.cxx
Added first stab at a socket class.
[flightgear.git] / src / Scenery / tileentry.cxx
1 // tile.cxx -- routines to handle a scenery tile
2 //
3 // Written by Curtis Olson, started May 1998.
4 //
5 // Copyright (C) 1998, 1999  Curtis L. Olson  - curt@flightgear.org
6 //
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.
11 //
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.
16 //
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.
20 //
21 // $Id$
22
23
24 #include <Include/compiler.h>
25
26 #ifdef FG_MATH_EXCEPTION_CLASH
27 #  include <math.h>
28 #endif
29
30 #include STL_FUNCTIONAL
31 #include STL_ALGORITHM
32
33 #include <Debug/logstream.hxx>
34 #include <Bucket/newbucket.hxx>
35
36 #include "tileentry.hxx"
37
38 FG_USING_STD(for_each);
39 FG_USING_STD(mem_fun_ref);
40
41
42 // Constructor
43 FGTileEntry::FGTileEntry ( void )
44     : ncount(0),
45       state(Unused)
46 {
47     nodes.clear();
48 }
49
50
51 // Destructor
52 FGTileEntry::~FGTileEntry ( void ) {
53     // cout << "nodes = " << nodes.size() << endl;;
54     // delete[] nodes;
55 }
56
57
58 // recurse an ssg tree and call removeKid() on every node from the
59 // bottom up.  Leaves the original branch in existance, but empty so
60 // it can be removed by the calling routine.
61 static void my_remove_branch( ssgBranch * branch ) {
62     for ( ssgEntity *k = branch->getKid( 0 );
63           k != NULL; 
64           k = branch->getNextKid() )
65     {
66         if ( k -> isAKindOf ( ssgTypeBranch() ) ) {
67             my_remove_branch( (ssgBranch *)k );
68             branch -> removeKid ( k );
69         } else if ( k -> isAKindOf ( ssgTypeLeaf() ) ) {
70             branch -> removeKid ( k ) ;
71         }
72     }
73 }
74
75
76 // Step through the fragment list, deleting the display list, then the
77 // fragment, until the list is empty.  Also delete the arrays used by
78 // ssg as well as the whole ssg branch
79 void FGTileEntry::free_tile() {
80     int i;
81     FG_LOG( FG_TERRAIN, FG_DEBUG,
82             "FREEING TILE = (" << tile_bucket << ")" );
83
84     // mark tile unused
85     mark_unused();
86
87     // delete fragment list and node list
88     FG_LOG( FG_TERRAIN, FG_DEBUG,
89             "  deleting " << fragment_list.size() << " fragments" );
90     fragment_list.clear();
91     FG_LOG( FG_TERRAIN, FG_DEBUG,
92             "  deleting " << nodes.size() << " nodes" );
93     nodes.clear();
94
95     // delete the ssg structures
96     FG_LOG( FG_TERRAIN, FG_DEBUG,
97             "  deleting (leaf data) vertex, normal, and "
98             << " texture coordinate arrays" );
99
100     for ( i = 0; i < (int)vec3_ptrs.size(); ++i ) {
101         delete vec3_ptrs[i];
102     }
103     vec3_ptrs.clear();
104
105     for ( i = 0; i < (int)vec2_ptrs.size(); ++i ) {
106         delete vec2_ptrs[i];
107     }
108     vec2_ptrs.clear();
109
110     for ( i = 0; i < (int)index_ptrs.size(); ++i ) {
111         delete index_ptrs[i];
112     }
113     index_ptrs.clear();
114
115     // delete the ssg branch
116
117     int pcount = select_ptr->getNumParents();
118     if ( pcount > 0 ) {
119         // find the first parent (should only be one)
120         ssgBranch *parent = select_ptr->getParent( 0 ) ;
121         if( parent ) {
122             // my_remove_branch( select_ptr );
123             parent->removeKid( select_ptr );
124         } else {
125             FG_LOG( FG_TERRAIN, FG_ALERT,
126                     "parent pointer is NULL!  Dying" );
127             exit(-1);
128         }
129     } else {
130         FG_LOG( FG_TERRAIN, FG_ALERT,
131                 "Parent count is zero for an ssg tile!  Dying" );
132         exit(-1);
133     }
134 }
135
136
137 // when a tile is still in the cache, but not in the immediate draw
138 // list, it can still remain in the scene graph, but we use a range
139 // selector to disable it from ever being drawn.
140 void 
141 FGTileEntry::ssg_disable() {
142     // cout << "TILE STATE = " << state << endl;
143     if ( state == Scheduled_for_use ) {
144         state = Scheduled_for_cache;
145     } else if ( state == Scheduled_for_cache ) {
146         // do nothing
147     } else if ( (state == Loaded) || (state == Cached) ) {
148         state = Cached;
149         // cout << "DISABLING SSG NODE" << endl;
150         select_ptr->select(0);
151     } else {
152         FG_LOG( FG_TERRAIN, FG_ALERT,
153                 "Trying to disable an unused tile!  Dying" );
154         exit(-1);
155     }   
156     // cout << "TILE STATE = " << state << endl;
157 }