]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Centralized most view-management code in FGViewMgr. It's still a
[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     elapsed_time_ms(0L),
42 #if defined(FX) && defined(XMESA)
43     fullscreen( true ),
44 #endif
45     warp( 0 ),
46     warp_delta( 0 ),
47     logger(0),
48     props(new SGPropertyNode),
49     initial_state(0),
50     commands(new SGCommandMgr)
51 {
52 }
53
54
55 // Destructor
56 FGGlobals::~FGGlobals() 
57 {
58   delete initial_state;
59   delete props;
60   delete commands;
61 }
62
63
64 // Save the current state as the initial state.
65 void
66 FGGlobals::saveInitialState ()
67 {
68   delete initial_state;
69   initial_state = new SGPropertyNode();
70   if (!copyProperties(props, initial_state))
71     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
72 }
73
74
75 // Restore the saved initial state, if any
76 void
77 FGGlobals::restoreInitialState ()
78 {
79   if (initial_state == 0) {
80     SG_LOG(SG_GENERAL, SG_ALERT, "No initial state available to restore!!!");
81   } else if (!copyProperties(initial_state, props)) {
82     SG_LOG(SG_GENERAL, SG_INFO,
83            "Some errors restoring initial state (probably just read-only props)");
84   } else {
85     SG_LOG(SG_GENERAL, SG_INFO, "Initial state restored successfully");
86   }
87 }
88
89 const FGEnvironment *
90 FGGlobals::get_environment () const
91 {
92   return environment_mgr->getEnvironment();
93 }
94
95 const FGEnvironment *
96 FGGlobals::get_environment (double lat, double lon, double alt) const
97 {
98   return environment_mgr->getEnvironment(lat, lon, alt);
99 }
100
101
102 // end of globals.cxx