]> git.mxchange.org Git - flightgear.git/blob - src/Main/save.cxx
Updates to time parsing and setting by David Megginson.
[flightgear.git] / src / Main / save.cxx
1 // save.cxx -- class to save and restore a flight.
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  David Megginson - david@megginson.com
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 #include <simgear/compiler.h>
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include <iostream>
30
31 #include <simgear/misc/props.hxx>
32
33                                 // FIXME: just for the temporary
34                                 // tile cache update stuff.
35 #include <simgear/debug/logstream.hxx>
36 #include <simgear/constants.h>
37 #include <Aircraft/aircraft.hxx>
38 #include <GUI/gui.h>
39 #include <Scenery/tilemgr.hxx>
40 #include "globals.hxx"
41                                 // end FIXME
42
43 using std::istream;
44 using std::ostream;
45
46
47 /**
48  * Save the current state of the simulator to a stream.
49  */
50 bool
51 fgSaveFlight (ostream &output)
52 {
53   return writePropertyList(output, &current_properties);
54 }
55
56
57 /**
58  * Restore the current state of the simulator from a stream.
59  */
60 bool
61 fgLoadFlight (istream &input)
62 {
63   bool retval = readPropertyList(input, &current_properties);
64
65                                 // FIXME: from keyboard.cxx
66                                 // this makes sure that the tile
67                                 // cache is updated after a restore;
68                                 // it would be better if FGFS just
69                                 // noticed the new lat/lon.
70   if (retval) {
71     bool freeze = globals->get_freeze();
72     FG_LOG(FG_INPUT, FG_INFO, "ReIniting TileCache");
73     if ( !freeze ) 
74       globals->set_freeze( true );
75     BusyCursor(0);
76     if ( global_tile_mgr.init() ) {
77       // Load the local scenery data
78       global_tile_mgr.update( 
79                              cur_fdm_state->get_Longitude() * RAD_TO_DEG,
80                              cur_fdm_state->get_Latitude() * RAD_TO_DEG );
81     } else {
82       FG_LOG( FG_GENERAL, FG_ALERT, 
83               "Error in Tile Manager initialization!" );
84       exit(-1);
85     }
86     BusyCursor(1);
87     if ( !freeze )
88       globals->set_freeze( false );
89   }
90                                 // end FIXME
91
92   return retval;
93 }
94
95 // end of save.cxx