]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/FGTileLoader.cxx
Tile loading is interleaved now when not threaded. Threaded loader is
[flightgear.git] / src / Scenery / FGTileLoader.cxx
1 // FGTileLoader - Queue scenery tiles for loading.
2 //
3 // Written by Bernie Bright, started March 2001.
4 //
5 // Copyright (C) 2001  Bernard Bright - bbright@bigpond.net.au
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 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <Main/globals.hxx>
28 #include "FGTileLoader.hxx"
29 #include "tileentry.hxx"
30 #include "tilemgr.hxx"
31
32 extern ssgBranch *terrain;
33 extern ssgBranch *ground;
34
35 /**
36  * 
37  */
38 FGTileLoader::FGTileLoader()
39 {
40 #ifdef ENABLE_THREADS
41     // Create and start the loader threads.
42     for (int i = 0; i < MAX_THREADS; ++i)
43     {
44         threads[i] = new LoaderThread(this);
45         threads[i]->start();
46     }
47 #endif // ENABLE_THREADS
48 }
49
50 /**
51  * Terminate all threads.
52  */
53 FGTileLoader::~FGTileLoader()
54 {
55 #ifdef ENABLE_THREADS
56     // Wake up its time to die.
57     // queue_cond.broadcast();
58
59     for (int i = 0; i < MAX_THREADS; ++i)
60     {
61         threads[i]->cancel();
62         threads[i]->join();
63     }    
64 #endif // ENABLE_THREADS
65 }
66
67 /**
68  * 
69  */
70 void
71 FGTileLoader::add( FGTileEntry* tile )
72 {
73     /**
74      * Initialise tile_path here and not in ctor to avoid problems
75      * with the initialastion order of global objects.
76      */
77     static bool beenhere = false;
78     if (!beenhere)
79     {
80         if ( globals->get_fg_scenery() != (string)"" ) {
81             tile_path.set( globals->get_fg_scenery() );
82         } else {
83             tile_path.set( globals->get_fg_root() );
84             tile_path.append( "Scenery" );
85         }
86         beenhere = true;
87     }
88
89     tile_load_queue.push( tile );
90 }
91
92 /**
93  * 
94  */
95 void
96 FGTileLoader::update()
97 {
98 #ifdef ENABLE_THREADS
99     // send a signal to the pager thread that it is allowed to load
100     // another tile
101     mutex.lock();
102     frame_cond.signal();
103     mutex.unlock();
104 #else
105     if ( !tile_load_queue.empty() ) {
106         cout << "loading next tile ..." << endl;
107         // load the next tile in the queue
108         FGTileEntry* tile = tile_load_queue.front();
109         tile_load_queue.pop();
110         tile->load( tile_path, true );
111         FGTileMgr::loaded( tile );
112     }
113 #endif // ENABLE_THREADS
114 }
115
116
117 #ifdef ENABLE_THREADS
118 /**
119  * 
120  */
121 void
122 FGTileLoader::LoaderThread::run()
123 {
124     pthread_cleanup_push( cleanup_handler, loader );
125     while ( true ) {
126         // Wait for a load request to be placed in the queue.
127         FGTileEntry* tile = loader->tile_load_queue.pop();
128
129         // Wait for the next frame signal before we load a tile from the queue
130         loader->mutex.lock();
131         loader->frame_cond.wait( loader->mutex );
132         loader->mutex.unlock();
133
134         set_cancel( SGThread::CANCEL_DISABLE );
135         tile->load( loader->tile_path, true );
136         set_cancel( SGThread::CANCEL_DEFERRED );
137
138         FGTileMgr::loaded( tile );
139     }
140     pthread_cleanup_pop(1);
141 }
142
143 /**
144  * Ensure mutex is unlocked.
145  */
146 void 
147 cleanup_handler( void* arg )
148 {
149     FGTileLoader* loader = (FGTileLoader*) arg;
150     loader->mutex.unlock();
151 }
152 #endif // ENABLE_THREADS