2005-12-29 13:58:21 +00:00
|
|
|
// parking.cxx - Implementation of a class to manage aircraft parking in
|
|
|
|
// FlightGear. This code is intended to be used by AI code and
|
|
|
|
// initial user-startup location selection.
|
|
|
|
//
|
|
|
|
// Written by Durk Talsma, started December 2004.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2004 Durk Talsma.
|
|
|
|
//
|
|
|
|
// 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
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-12-29 13:58:21 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
2005-12-29 13:58:21 +00:00
|
|
|
|
|
|
|
#include "parking.hxx"
|
- Ground network XML parsing code reads the new attributes "holdPointType"
and "isOnRunway".
- Added initial support for AI controlled pushback operations, making use of the
current editing capabilities of TaxiDraw CVS / New_GUI_CODE. The current
implementation is slightly more computationally intensive than strictly
required, due to the currently inability of taxidraw to link one specific
pushBack point to to a particular startup location. FlightGear now determines
this dynamically, and once we have that functionality in TaxiDraw, the
initialization part of createPushBack() can be further simplified.
- Smoother transition from pushback to taxi. No more skipping of waypoints, and
aircraft wait for two minutes at pushback point.
- The classes FGTaxiNode, FGTaxiSegment, and FGParking, now have copy
constructors, and assignment operators.
- Removed declaration of undefined constructor FGTaxiNode(double, double, int)
- Array boundry checks and cleanup.
- Modified Dijkstra path search algoritm to solve partial problems. Currently
limited to include pushback points and routes only, but can probably be
extended to a more general approach.
- Added initial support for giving certain routes in the network a penalty, in
order to discourage the use of certain routes over others.
2007-08-08 06:09:58 +00:00
|
|
|
#include "groundnetwork.hxx"
|
2005-12-29 13:58:21 +00:00
|
|
|
|
|
|
|
/*********************************************************************************
|
|
|
|
* FGParking
|
|
|
|
********************************************************************************/
|
2012-09-25 00:31:17 +01:00
|
|
|
|
|
|
|
FGParking::FGParking(PositionedID aGuid, int index, const SGGeod& pos,
|
|
|
|
double aHeading, double aRadius,
|
|
|
|
const std::string& name, const std::string& aType,
|
|
|
|
const std::string& codes) :
|
|
|
|
FGTaxiNode(aGuid, index, pos, false, 0),
|
|
|
|
heading(aHeading),
|
|
|
|
radius(aRadius),
|
|
|
|
parkingName(name),
|
|
|
|
type(aType),
|
|
|
|
airlineCodes(codes),
|
|
|
|
available(true),
|
|
|
|
pushBackPoint(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
FGParking::~FGParking()
|
|
|
|
{
|
2005-12-29 13:58:21 +00:00
|
|
|
}
|