]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
b6a932760287f986a205f4b694ac3dced31d1649
[flightgear.git] / src / Main / globals.cxx
1 // globals.cxx -- Global state that needs to be shared among the sim modules
2 //
3 // Written by Curtis Olson, started July 2000.
4 //
5 // Copyright (C) 2000  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 <simgear/structure/commands.hxx>
25 #include <simgear/misc/sg_path.hxx>
26
27 #include "globals.hxx"
28 #include "viewmgr.hxx"
29
30 #include "fg_props.hxx"
31 #include "fg_io.hxx"
32
33 \f
34 ////////////////////////////////////////////////////////////////////////
35 // Implementation of FGGlobals.
36 ////////////////////////////////////////////////////////////////////////
37
38 // global global :-)
39 FGGlobals *globals;
40
41
42 // Constructor
43 FGGlobals::FGGlobals() :
44     subsystem_mgr( new SGSubsystemMgr ),
45     event_mgr( new SGEventMgr ),
46     sim_time_sec( 0.0 ),
47     fg_root( "" ),
48     fg_scenery( "" ),
49 #if defined(FX) && defined(XMESA)
50     fullscreen( true ),
51 #endif
52     warp( 0 ),
53     warp_delta( 0 ),
54     time_params( NULL ),
55     ephem( NULL ),
56     mag( NULL ),
57     route_mgr( NULL ),
58     current_panel( NULL ),
59     soundmgr( NULL ),
60     airports( NULL ),
61     ATC_mgr( NULL ),
62     ATC_display( NULL ),
63     AI_mgr( NULL ),
64     controls( NULL ),
65     viewmgr( NULL ),
66     props( new SGPropertyNode ),
67     initial_state( NULL ),
68     locale( NULL ),
69     commands( new SGCommandMgr ),
70     model_lib( NULL ),
71     acmodel( NULL ),
72     model_mgr( NULL ),
73     channel_options_list( NULL ),
74     scenery( NULL ),
75     tile_mgr( NULL ),
76     io( new FGIO ),
77     initial_waypoints(0)
78 {
79 }
80
81
82 // Destructor
83 FGGlobals::~FGGlobals() 
84 {
85   delete subsystem_mgr;
86   delete event_mgr;
87   delete initial_state;
88   delete props;
89   delete commands;
90   delete io;
91   
92   // make sure only to delete the initial waypoints list if it acually
93   // still exists. 
94   if (initial_waypoints)
95     delete initial_waypoints;
96 }
97
98
99 // set the fg_root path
100 void FGGlobals::set_fg_root (const string &root) {
101     fg_root = root;
102     
103     // append /data to root if it exists
104     SGPath tmp( fg_root );
105     tmp.append( "data" );
106     tmp.append( "version" );
107     if ( ulFileExists( tmp.c_str() ) ) {
108         fg_root += "/data";
109         }
110 }
111
112
113 SGSubsystemMgr *
114 FGGlobals::get_subsystem_mgr () const
115 {
116     return subsystem_mgr;
117 }
118
119 SGSubsystem *
120 FGGlobals::get_subsystem (const char * name)
121 {
122     return subsystem_mgr->get_subsystem(name);
123 }
124
125 void
126 FGGlobals::add_subsystem (const char * name,
127                           SGSubsystem * subsystem,
128                           SGSubsystemMgr::GroupType type,
129                           double min_time_sec)
130 {
131     subsystem_mgr->add(name, subsystem, type, min_time_sec);
132 }
133
134
135 SGEventMgr *
136 FGGlobals::get_event_mgr () const
137 {
138     return event_mgr;
139 }
140
141
142 // Save the current state as the initial state.
143 void
144 FGGlobals::saveInitialState ()
145 {
146   delete initial_state;
147   initial_state = new SGPropertyNode();
148
149   if (!copyProperties(props, initial_state))
150     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
151 }
152
153
154 // Restore the saved initial state, if any
155 void
156 FGGlobals::restoreInitialState ()
157 {
158     if ( initial_state == 0 ) {
159         SG_LOG(SG_GENERAL, SG_ALERT,
160                "No initial state available to restore!!!");
161         return;
162     }
163
164     SGPropertyNode *currentPresets = new SGPropertyNode;
165     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
166
167     // stash the /sim/presets tree
168     if ( !copyProperties(targetNode, currentPresets) ) {
169         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
170     }
171     
172     if ( copyProperties(initial_state, props) ) {
173         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
174     } else {
175         SG_LOG( SG_GENERAL, SG_INFO,
176                 "Some errors restoring initial state (read-only props?)" );
177     }
178
179     // recover the /sim/presets tree
180     if ( !copyProperties(currentPresets, targetNode) ) {
181         SG_LOG( SG_GENERAL, SG_ALERT,
182                 "Failed to restore /sim/presets subtree" );
183     }
184
185    delete currentPresets;
186 }
187
188 FGViewer *
189 FGGlobals::get_current_view () const
190 {
191   return viewmgr->get_current_view();
192 }
193
194 // end of globals.cxx