]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tsync/terrasync.hxx
Terrasync: Expose transfer rate as a property.
[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
28 class SGPath;
29 class SGBucket;
30
31 namespace simgear
32 {
33 const int NOWHERE = -9999;
34
35 class BufferedLogCallback;
36
37 typedef void (*SGTerraSyncCallback)(void* userData, long tileIndex);
38
39 class SGTerraSync : public SGSubsystem
40 {
41 public:
42
43     SGTerraSync(SGPropertyNode_ptr root);
44     virtual ~SGTerraSync();
45     
46     virtual void init();    
47     virtual void reinit();
48     virtual void bind();
49     virtual void unbind();
50     virtual void update(double);
51
52     bool isIdle();
53     bool schedulePosition(int lat, int lon);
54     
55     bool scheduleTile(const SGBucket& bucket);
56     
57     void setTileRefreshCb(SGTerraSyncCallback refreshCb, void* userData = NULL);
58
59     /// retrive the associated log object, for displaying log
60     /// output somewhere (a UI, presumably)
61     BufferedLogCallback* log() const
62         { return _log; }
63 protected:
64     void syncAirportsModels();
65     void syncArea(int lat, int lon);
66     void syncAreas(int lat, int lon, int lat_dir, int lon_dir);
67     void refreshScenery(SGPath path,const std::string& relativeDir);
68
69     class SvnThread;
70
71 private:
72     SvnThread* _svnThread;
73     int last_lat;
74     int last_lon;
75     SGPropertyNode_ptr _terraRoot;
76     SGPropertyNode_ptr _refreshDisplay;
77     SGPropertyNode_ptr _stalledNode;
78     SGPropertyNode_ptr _cacheHits;
79     
80     // we manually bind+init TerraSync during early startup
81     // to get better overlap of slow operations (Shared Models sync
82     // and nav-cache rebuild). As a result we need to track the bind/init
83     // state explicitly to avoid duplicate calls.
84     bool _bound, _inited;
85     
86     SGTerraSyncCallback _refreshCb;
87     void* _userCbData;
88     simgear::TiedPropertyList _tiedProperties;
89     BufferedLogCallback* _log;
90 };
91
92 }
93
94 #endif /* TERRASYNC_HXX_ */