]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Removed debug statement.
[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
26 #include <Environment/environment_mgr.hxx>
27
28 #include "globals.hxx"
29 #include "viewmgr.hxx"
30
31 #include "fg_props.hxx"
32 #include "fg_io.hxx"
33
34 \f
35 ////////////////////////////////////////////////////////////////////////
36 // Implementation of FGGlobals.
37 ////////////////////////////////////////////////////////////////////////
38
39 // global global :-)
40 FGGlobals *globals;
41
42
43 // Constructor
44 FGGlobals::FGGlobals() :
45     subsystem_mgr( new FGSubsystemMgr ),
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     soundmgr( NULL ),
60     current_panel( NULL ),
61     environment_mgr( 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_loader( NULL ),
72     texture_loader( 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 FGSubsystemMgr *
95 FGGlobals::get_subsystem_mgr () const
96 {
97     return subsystem_mgr;
98 }
99
100 FGSubsystem *
101 FGGlobals::get_subsystem (const char * name)
102 {
103     return subsystem_mgr->get_subsystem(name);
104 }
105
106 void
107 FGGlobals::add_subsystem (const char * name,
108                           FGSubsystem * subsystem,
109                           FGSubsystemMgr::GroupType type,
110                           double min_time_sec)
111 {
112     subsystem_mgr->add(name, subsystem, type, min_time_sec);
113 }
114
115
116 // Save the current state as the initial state.
117 void
118 FGGlobals::saveInitialState ()
119 {
120   delete initial_state;
121   initial_state = new SGPropertyNode();
122   if (!copyProperties(props, initial_state))
123     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
124 }
125
126
127 // Restore the saved initial state, if any
128 void
129 FGGlobals::restoreInitialState ()
130 {
131     if ( initial_state == 0 ) {
132         SG_LOG(SG_GENERAL, SG_ALERT,
133                "No initial state available to restore!!!");
134         return;
135     }
136
137     SGPropertyNode *currentPresets = new SGPropertyNode;
138     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
139
140     // stash the /sim/presets tree
141     if ( !copyProperties(targetNode, currentPresets) ) {
142         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
143     }
144     
145     if ( copyProperties(initial_state, props) ) {
146         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
147     } else {
148         SG_LOG( SG_GENERAL, SG_INFO,
149                 "Some errors restoring initial state (read-only props?)" );
150     }
151
152     // recover the /sim/presets tree
153     if ( !copyProperties(currentPresets, targetNode) ) {
154         SG_LOG( SG_GENERAL, SG_ALERT,
155                 "Failed to restore /sim/presets subtree" );
156     }
157
158    delete currentPresets;
159 }
160
161 FGViewer *
162 FGGlobals::get_current_view () const
163 {
164   return viewmgr->get_current_view();
165 }
166
167 // end of globals.cxx