]> git.mxchange.org Git - flightgear.git/blob - src/Main/globals.cxx
Convert fgLIGHT to FGLight and make it FGSubsystem compatible. Let the subsystem...
[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 #include <simgear/misc/sg_path.hxx>
26
27 #include "globals.hxx"
28 #include "viewmgr.hxx"
29
30 #include "fg_props.hxx"
31 #include "fg_io.hxx"
32
33 \f
34 ////////////////////////////////////////////////////////////////////////
35 // Implementation of FGGlobals.
36 ////////////////////////////////////////////////////////////////////////
37
38 // global global :-)
39 FGGlobals *globals;
40
41
42 // Constructor
43 FGGlobals::FGGlobals() :
44     subsystem_mgr( new FGSubsystemMgr ),
45     sim_time_sec( 0.0 ),
46     fg_root( "" ),
47     fg_scenery( "" ),
48 #if defined(FX) && defined(XMESA)
49     fullscreen( true ),
50 #endif
51     warp( 0 ),
52     warp_delta( 0 ),
53     time_params( NULL ),
54     ephem( NULL ),
55     mag( NULL ),
56     autopilot( NULL ),
57     route( NULL ),
58     current_panel( NULL ),
59     soundmgr( NULL ),
60     airports( NULL ),
61     ATC_mgr( NULL ),
62     ATC_display( NULL ),
63     AI_mgr( NULL ),
64     controls( NULL ),
65     viewmgr( NULL ),
66     props( new SGPropertyNode ),
67     initial_state( NULL ),
68     locale( NULL ),
69     commands( new SGCommandMgr ),
70     model_lib( NULL ),
71     acmodel( NULL ),
72     model_mgr( NULL ),
73     channel_options_list( NULL ),
74     scenery( NULL ),
75     tile_mgr( NULL ),
76     io( new FGIO ),
77     cur_light_params( NULL )
78 {
79 }
80
81
82 // Destructor
83 FGGlobals::~FGGlobals() 
84 {
85   delete subsystem_mgr;
86   delete initial_state;
87   delete props;
88   delete commands;
89   delete io;
90 }
91
92
93 // set the fg_root path
94 void FGGlobals::set_fg_root (const string &root) {
95     fg_root = root;
96     
97     // append /data to root if it exists
98     SGPath tmp( fg_root );
99     tmp.append( "data" );
100     tmp.append( "version" );
101     if ( ulFileExists( tmp.c_str() ) ) {
102         fg_root += "/data";
103         }
104 }
105
106
107 FGSubsystemMgr *
108 FGGlobals::get_subsystem_mgr () const
109 {
110     return subsystem_mgr;
111 }
112
113 FGSubsystem *
114 FGGlobals::get_subsystem (const char * name)
115 {
116     return subsystem_mgr->get_subsystem(name);
117 }
118
119 void
120 FGGlobals::add_subsystem (const char * name,
121                           FGSubsystem * subsystem,
122                           FGSubsystemMgr::GroupType type,
123                           double min_time_sec)
124 {
125     subsystem_mgr->add(name, subsystem, type, min_time_sec);
126 }
127
128
129 // Save the current state as the initial state.
130 void
131 FGGlobals::saveInitialState ()
132 {
133   delete initial_state;
134   initial_state = new SGPropertyNode();
135   if (!copyProperties(props, initial_state))
136     SG_LOG(SG_GENERAL, SG_ALERT, "Error saving initial state");
137 }
138
139
140 // Restore the saved initial state, if any
141 void
142 FGGlobals::restoreInitialState ()
143 {
144     if ( initial_state == 0 ) {
145         SG_LOG(SG_GENERAL, SG_ALERT,
146                "No initial state available to restore!!!");
147         return;
148     }
149
150     SGPropertyNode *currentPresets = new SGPropertyNode;
151     SGPropertyNode *targetNode = fgGetNode( "/sim/presets" );
152
153     // stash the /sim/presets tree
154     if ( !copyProperties(targetNode, currentPresets) ) {
155         SG_LOG( SG_GENERAL, SG_ALERT, "Failed to save /sim/presets subtree" );
156     }
157     
158     if ( copyProperties(initial_state, props) ) {
159         SG_LOG( SG_GENERAL, SG_INFO, "Initial state restored successfully" );
160     } else {
161         SG_LOG( SG_GENERAL, SG_INFO,
162                 "Some errors restoring initial state (read-only props?)" );
163     }
164
165     // recover the /sim/presets tree
166     if ( !copyProperties(currentPresets, targetNode) ) {
167         SG_LOG( SG_GENERAL, SG_ALERT,
168                 "Failed to restore /sim/presets subtree" );
169     }
170
171    delete currentPresets;
172 }
173
174 FGViewer *
175 FGGlobals::get_current_view () const
176 {
177   return viewmgr->get_current_view();
178 }
179
180 // end of globals.cxx