]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear...
[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     autopilot( NULL ),
58     route( NULL ),
59     current_panel( NULL ),
60     soundmgr( NULL ),
61     airports( NULL ),
62     ATC_mgr( NULL ),
63     ATC_display( NULL ),
64     AI_mgr( NULL ),
65     controls( NULL ),
66     viewmgr( NULL ),
67     props( new SGPropertyNode ),
68     initial_state( NULL ),
69     locale( NULL ),
70     commands( new SGCommandMgr ),
71     model_lib( NULL ),
72     acmodel( NULL ),
73     model_mgr( NULL ),
74     channel_options_list( NULL ),
75     scenery( NULL ),
76     tile_mgr( NULL ),
77     io( new FGIO )
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
93
94 // set the fg_root path
95 void FGGlobals::set_fg_root (const string &root) {
96     fg_root = root;
97     
98     // append /data to root if it exists
99     SGPath tmp( fg_root );
100     tmp.append( "data" );
101     tmp.append( "version" );
102     if ( ulFileExists( tmp.c_str() ) ) {
103         fg_root += "/data";
104         }
105 }
106
107
108 SGSubsystemMgr *
109 FGGlobals::get_subsystem_mgr () const
110 {
111     return subsystem_mgr;
112 }
113
114 SGSubsystem *
115 FGGlobals::get_subsystem (const char * name)
116 {
117     return subsystem_mgr->get_subsystem(name);
118 }
119
120 void
121 FGGlobals::add_subsystem (const char * name,
122                           SGSubsystem * subsystem,
123                           SGSubsystemMgr::GroupType type,
124                           double min_time_sec)
125 {
126     subsystem_mgr->add(name, subsystem, type, min_time_sec);
127 }
128
129
130 SGEventMgr *
131 FGGlobals::get_event_mgr () const
132 {
133     return event_mgr;
134 }
135
136
137 void
138 FGGlobals::add_event (const char * name,
139                       int repeat_value,
140                       int initial_value)
141 {
142     event_mgr->add(name, subsystem_mgr->get_subsystem(name),
143                    repeat_value, initial_value);
144 }
145
146 void
147 FGGlobals::add_event (const char * name,
148                       const SGSubsystem * subsystem,
149                       int repeat_value,
150                       int initial_value)
151 {
152     event_mgr->add(name, subsystem, repeat_value, initial_value);
153 }
154
155
156
157 // Save the current state as the initial state.
158 void
159 FGGlobals::saveInitialState ()
160 {
161   delete initial_state;
162   initial_state = new SGPropertyNode();
163
164   if (!copyProperties(props, initial_state))
165     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
166 }
167
168
169 // Restore the saved initial state, if any
170 void
171 FGGlobals::restoreInitialState ()
172 {
173     if ( initial_state == 0 ) {
174         SG_LOG(SG_GENERAL, SG_ALERT,
175                "No initial state available to restore!!!");
176         return;
177     }
178
179     SGPropertyNode *currentPresets = new SGPropertyNode;
180     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
181
182     // stash the /sim/presets tree
183     if ( !copyProperties(targetNode, currentPresets) ) {
184         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
185     }
186     
187     if ( copyProperties(initial_state, props) ) {
188         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
189     } else {
190         SG_LOG( SG_GENERAL, SG_INFO,
191                 "Some errors restoring initial state (read-only props?)" );
192     }
193
194     // recover the /sim/presets tree
195     if ( !copyProperties(currentPresets, targetNode) ) {
196         SG_LOG( SG_GENERAL, SG_ALERT,
197                 "Failed to restore /sim/presets subtree" );
198     }
199
200    delete currentPresets;
201 }
202
203 FGViewer *
204 FGGlobals::get_current_view () const
205 {
206   return viewmgr->get_current_view();
207 }
208
209 // end of globals.cxx