1
0
Fork 0
flightgear/src/Main/positioninit.hxx
James Turner ffbb0a0e5d Sink position-init code into its own file.
Separate other init functions from position init, since they are unrelated, and made fg_init.cxx very complex. Next step will be brining some sanity to the position init logic :)
2012-09-18 20:50:28 +01:00

40 lines
1.3 KiB
C++

// positioninit.hxx - helpers relating to setting initial aircraft position
//
// Copyright (C) 2012 James Turner zakalawe@mac.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef FG_POSITION_INIT_HXX
#define FG_POSITION_INIT_HXX
#include <string>
namespace flightgear
{
// Set the initial position based on presets (or defaults)
bool initPosition();
// Listen to /sim/tower/airport-id and set tower view position accordingly
void initTowerLocationListener();
// FIXME - only public becuase of the evil runway-selection hack in main.cxx
bool setPosFromAirportIDandHdg( const std::string& id, double tgt_hdg );
} // of namespace flightgear
#endif // of FG_POSITION_INIT_HXX