]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Moved random ground cover object management code (userdata.[ch]xx) over
[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/misc/commands.hxx>
25 #include <simgear/misc/sg_path.hxx>
26
27 #include <Environment/environment_mgr.hxx>
28
29 #include "globals.hxx"
30 #include "viewmgr.hxx"
31
32 #include "fg_props.hxx"
33 #include "fg_io.hxx"
34
35 \f
36 ////////////////////////////////////////////////////////////////////////
37 // Implementation of FGGlobals.
38 ////////////////////////////////////////////////////////////////////////
39
40 // global global :-)
41 FGGlobals *globals;
42
43
44 // Constructor
45 FGGlobals::FGGlobals() :
46     subsystem_mgr( new FGSubsystemMgr ),
47     sim_time_sec( 0.0 ),
48     fg_root( "" ),
49     fg_scenery( "" ),
50 #if defined(FX) && defined(XMESA)
51     fullscreen( true ),
52 #endif
53     warp( 0 ),
54     warp_delta( 0 ),
55     time_params( NULL ),
56     ephem( NULL ),
57     mag( NULL ),
58     autopilot( NULL ),
59     route( NULL ),
60     current_panel( NULL ),
61     soundmgr( NULL ),
62     environment_mgr( NULL ),
63     ATC_mgr( NULL ),
64     ATC_display( NULL ),
65     AI_mgr( NULL ),
66     controls( NULL ),
67     viewmgr( NULL ),
68     props( new SGPropertyNode ),
69     initial_state( NULL ),
70     locale( NULL ),
71     commands( new SGCommandMgr ),
72     model_lib( NULL ),
73     acmodel( NULL ),
74     model_mgr( NULL ),
75     channel_options_list( NULL ),
76     scenery( NULL ),
77     tile_mgr( NULL ),
78     io( new FGIO )
79 {
80 }
81
82
83 // Destructor
84 FGGlobals::~FGGlobals() 
85 {
86   delete subsystem_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 FGSubsystemMgr *
109 FGGlobals::get_subsystem_mgr () const
110 {
111     return subsystem_mgr;
112 }
113
114 FGSubsystem *
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                           FGSubsystem * subsystem,
123                           FGSubsystemMgr::GroupType type,
124                           double min_time_sec)
125 {
126     subsystem_mgr->add(name, subsystem, type, min_time_sec);
127 }
128
129
130 // Save the current state as the initial state.
131 void
132 FGGlobals::saveInitialState ()
133 {
134   delete initial_state;
135   initial_state = new SGPropertyNode();
136   if (!copyProperties(props, initial_state))
137     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
138 }
139
140
141 // Restore the saved initial state, if any
142 void
143 FGGlobals::restoreInitialState ()
144 {
145     if ( initial_state == 0 ) {
146         SG_LOG(SG_GENERAL, SG_ALERT,
147                "No initial state available to restore!!!");
148         return;
149     }
150
151     SGPropertyNode *currentPresets = new SGPropertyNode;
152     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
153
154     // stash the /sim/presets tree
155     if ( !copyProperties(targetNode, currentPresets) ) {
156         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
157     }
158     
159     if ( copyProperties(initial_state, props) ) {
160         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
161     } else {
162         SG_LOG( SG_GENERAL, SG_INFO,
163                 "Some errors restoring initial state (read-only props?)" );
164     }
165
166     // recover the /sim/presets tree
167     if ( !copyProperties(currentPresets, targetNode) ) {
168         SG_LOG( SG_GENERAL, SG_ALERT,
169                 "Failed to restore /sim/presets subtree" );
170     }
171
172    delete currentPresets;
173 }
174
175 FGViewer *
176 FGGlobals::get_current_view () const
177 {
178   return viewmgr->get_current_view();
179 }
180
181 // end of globals.cxx