]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Added a "Presets" menu.
[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 #if defined(FX) && defined(XMESA)
48     fullscreen( true ),
49 #endif
50     warp( 0 ),
51     warp_delta( 0 ),
52     props(new SGPropertyNode),
53     initial_state(0),
54     locale(NULL),
55     commands(new SGCommandMgr),
56     io(new FGIO)
57 {
58 }
59
60
61 // Destructor
62 FGGlobals::~FGGlobals() 
63 {
64   delete subsystem_mgr;
65   delete initial_state;
66   delete props;
67   delete commands;
68   delete io;
69 }
70
71
72 // Save the current state as the initial state.
73 void
74 FGGlobals::saveInitialState ()
75 {
76   delete initial_state;
77   initial_state = new SGPropertyNode();
78   if (!copyProperties(props, initial_state))
79     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
80 }
81
82
83 // Restore the saved initial state, if any
84 void
85 FGGlobals::restoreInitialState ()
86 {
87     if ( initial_state == 0 ) {
88         SG_LOG(SG_GENERAL, SG_ALERT,
89                "No initial state available to restore!!!");
90         return;
91     }
92
93     SGPropertyNode *currentPresets = new SGPropertyNode;
94     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
95
96     // stash the /sim/presets tree
97     if ( !copyProperties(targetNode, currentPresets) ) {
98         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
99     }
100     
101     if ( copyProperties(initial_state, props) ) {
102         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
103     } else {
104         SG_LOG( SG_GENERAL, SG_INFO,
105                 "Some errors restoring initial state (read-only props?)" );
106     }
107
108     // recover the /sim/presets tree
109     if ( !copyProperties(currentPresets, targetNode) ) {
110         SG_LOG( SG_GENERAL, SG_ALERT,
111                 "Failed to restore /sim/presets subtree" );
112     }
113
114    delete currentPresets;
115 }
116
117 FGViewer *
118 FGGlobals::get_current_view () const
119 {
120   return viewmgr->get_current_view();
121 }
122
123 // end of globals.cxx