]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tsync/terrasync.hxx
Random buildings - initial commit.
[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
30 namespace simgear
31 {
32 const int NOWHERE = -9999;
33
34 typedef void (*SGTerraSyncCallback)(void* userData, long tileIndex);
35
36 class SGTerraSync : public SGSubsystem
37 {
38 public:
39
40     SGTerraSync(SGPropertyNode_ptr root);
41     virtual ~SGTerraSync();
42     virtual void init();
43     virtual void reinit();
44     virtual void bind();
45     virtual void unbind();
46     virtual void update(double);
47
48     bool isIdle();
49     bool schedulePosition(int lat, int lon);
50     void setTileRefreshCb(SGTerraSyncCallback refreshCb, void* userData = NULL);
51
52 protected:
53     void syncAirportsModels();
54     void syncArea(int lat, int lon);
55     void syncAreas(int lat, int lon, int lat_dir, int lon_dir);
56     void refreshScenery(SGPath path,const std::string& relativeDir);
57
58     class SvnThread;
59
60 private:
61     SvnThread* _svnThread;
62     int last_lat;
63     int last_lon;
64     SGPropertyNode_ptr _terraRoot;
65     SGPropertyNode_ptr _refreshDisplay;
66     SGPropertyNode_ptr _stalledNode;
67     SGTerraSyncCallback _refreshCb;
68     void* _userCbData;
69     simgear::TiedPropertyList _tiedProperties;
70 };
71
72 }
73
74 #endif /* TERRASYNC_HXX_ */