]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Added static port system and a new altimeter model connected to it.
[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 #include <Instrumentation/instrument_mgr.hxx>
28 #include <Systems/system_mgr.hxx>
29
30 #include "globals.hxx"
31 #include "viewmgr.hxx"
32
33 #include "fg_props.hxx"
34 #include "fg_io.hxx"
35
36 \f
37 ////////////////////////////////////////////////////////////////////////
38 // Implementation of FGGlobals.
39 ////////////////////////////////////////////////////////////////////////
40
41 // global global :-)
42 FGGlobals *globals;
43
44
45 // Constructor
46 FGGlobals::FGGlobals() :
47     sim_time_sec(0.0),
48 #if defined(FX) && defined(XMESA)
49     fullscreen( true ),
50 #endif
51     warp( 0 ),
52     warp_delta( 0 ),
53     logger(0),
54     systemmgr(new FGSystemMgr),
55     instrumentmgr(new FGInstrumentMgr),
56     props(new SGPropertyNode),
57     initial_state(0),
58     commands(new SGCommandMgr),
59     io(new FGIO)
60 {
61 }
62
63
64 // Destructor
65 FGGlobals::~FGGlobals() 
66 {
67   delete initial_state;
68   delete props;
69   delete commands;
70   delete io;
71 }
72
73
74 // Save the current state as the initial state.
75 void
76 FGGlobals::saveInitialState ()
77 {
78   delete initial_state;
79   initial_state = new SGPropertyNode();
80   if (!copyProperties(props, initial_state))
81     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
82 }
83
84
85 // Restore the saved initial state, if any
86 void
87 FGGlobals::restoreInitialState ()
88 {
89   if (initial_state == 0) {
90     SG_LOG(SG_GENERAL, SG_ALERT, "No initial state available to restore!!!");
91   } else if (!copyProperties(initial_state, props)) {
92     SG_LOG(SG_GENERAL, SG_INFO,
93            "Some errors restoring initial state (probably just read-only props)");
94   } else {
95     SG_LOG(SG_GENERAL, SG_INFO, "Initial state restored successfully");
96   }
97 }
98
99 FGViewer *
100 FGGlobals::get_current_view () const
101 {
102   return viewmgr->get_current_view();
103 }
104
105 // end of globals.cxx