]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
e26abf6949549be8449c1a0ac498f02242303f22
[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 <Environment/environment_mgr.hxx>
25
26 #include "globals.hxx"
27 #include "fg_props.hxx"
28
29
30 \f
31 ////////////////////////////////////////////////////////////////////////
32 // Implementation of FGGlobals.
33 ////////////////////////////////////////////////////////////////////////
34
35 // global global :-)
36 FGGlobals *globals;
37
38
39 // Constructor
40 FGGlobals::FGGlobals() :
41 #if defined(FX) && defined(XMESA)
42     fullscreen( true ),
43 #endif
44     warp( 0 ),
45     warp_delta( 0 ),
46     props(new SGPropertyNode),
47     initial_state(0),
48     commands(new SGCommandMgr)
49 {
50 }
51
52
53 // Destructor
54 FGGlobals::~FGGlobals() 
55 {
56   delete initial_state;
57   delete props;
58   delete commands;
59 }
60
61
62 // Save the current state as the initial state.
63 void
64 FGGlobals::saveInitialState ()
65 {
66   delete initial_state;
67   initial_state = new SGPropertyNode();
68   if (!copyProperties(props, initial_state))
69     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
70 }
71
72
73 // Restore the saved initial state, if any
74 void
75 FGGlobals::restoreInitialState ()
76 {
77   if (initial_state == 0) {
78     SG_LOG(SG_GENERAL, SG_ALERT, "No initial state available to restore!!!");
79   } else if (!copyProperties(initial_state, props)) {
80     SG_LOG(SG_GENERAL, SG_INFO,
81            "Some errors restoring initial state (probably just read-only props)");
82   } else {
83     SG_LOG(SG_GENERAL, SG_INFO, "Initial state restored successfully");
84   }
85 }
86
87 const FGEnvironment *
88 FGGlobals::get_environment () const
89 {
90   return environment_mgr->getEnvironment();
91 }
92
93 const FGEnvironment *
94 FGGlobals::get_environment (double lat, double lon, double alt) const
95 {
96   return environment_mgr->getEnvironment(lat, lon, alt);
97 }
98
99
100 // end of globals.cxx