]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tsync/terrasync.hxx
Added missing terrsync make+header files...
[simgear.git] / simgear / scene / tsync / terrasync.hxx
1 // terrasync.hxx -- scenery fetcher
2 //
3 // Copyright (C) 2011  Thorsten Brehm <brehmt@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19 // $Id$
20
21 #ifndef TERRASYNC_HXX_
22 #define TERRASYNC_HXX_
23
24 #include <simgear/props/props.hxx>
25 #include <simgear/structure/subsystem_mgr.hxx>
26 #include <simgear/props/tiedpropertylist.hxx>
27 #include <OpenThreads/Thread>
28
29 class SGPath;
30
31 namespace simgear
32 {
33 const int NOWHERE = -9999;
34
35 class TileCache;
36
37 class SGTerraSync : public SGSubsystem
38 {
39 public:
40
41     SGTerraSync(SGPropertyNode_ptr root);
42     virtual ~SGTerraSync();
43     virtual void init();
44     virtual void reinit();
45     virtual void bind();
46     virtual void unbind();
47     virtual void update(double);
48
49     bool isIdle();
50     bool schedulePosition(int lat, int lon);
51     void setTileCache(TileCache* tile_cache);
52
53 protected:
54     void syncAirportsModels();
55     void syncArea(int lat, int lon);
56     void syncAreas(int lat, int lon, int lat_dir, int lon_dir);
57     void refreshScenery(SGPath path,const string& relativeDir);
58
59     class SvnThread;
60
61 private:
62     SvnThread* _svnThread;
63     int last_lat;
64     int last_lon;
65     SGPropertyNode_ptr _terraRoot;
66     SGPropertyNode_ptr _refresh_display;
67     SGPropertyNode_ptr _stalled_node;
68     TileCache* _tile_cache;
69     simgear::TiedPropertyList _tiedProperties;
70 };
71
72 }
73
74 #endif /* TERRASYNC_HXX_ */