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