FlightGear next
parking.cxx
Go to the documentation of this file.
1// parking.cxx - Implementation of a class to manage aircraft parking in
2// FlightGear. This code is intended to be used by AI code and
3// initial user-startup location selection.
4//
5// Written by Durk Talsma, started December 2004.
6//
7// Copyright (C) 2004 Durk Talsma.
8//
9// This program is free software; you can redistribute it and/or
10// modify it under the terms of the GNU General Public License as
11// published by the Free Software Foundation; either version 2 of the
12// License, or (at your option) any later version.
13//
14// This program is distributed in the hope that it will be useful, but
15// WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17// General Public License for more details.
18//
19// You should have received a copy of the GNU General Public License
20// along with this program; if not, write to the Free Software
21// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22//
23// $Id$
24
25#include <config.h>
26
27#include <simgear/compiler.h>
28
29#include <string>
30
31#include "parking.hxx"
32
33/*********************************************************************************
34 * FGParking
35 ********************************************************************************/
36
38 const SGGeod& pos,
39 double aHeading, double aRadius,
40 const std::string& name,
41 const std::string& aType,
42 const std::string& codes) :
43 FGTaxiNode(FGPositioned::PARKING, index, pos, false, 0, name),
44 heading(aHeading),
45 radius(aRadius),
46 type(aType),
47 airlineCodes(codes)
48{
49}
50
52{
53 pushBackPoint = node;
54}
SGSharedPtr< FGTaxiNode > FGTaxiNodeRef
FGParking(int index, const SGGeod &pos, double heading, double radius, const std::string &name, const std::string &type, const std::string &codes)
Definition parking.cxx:37
void setPushBackPoint(const FGTaxiNodeRef &node)
Definition parking.cxx:51
FGPositioned(PositionedID aGuid, Type ty, const std::string &aIdent, const SGGeod &aPos)
virtual const std::string & name() const
Return the name of this positioned.
@ PARKING
parking position - might be a gate, or stand
FGTaxiNode(FGPositioned::Type ty, int index, const SGGeod &pos, bool aOnRunway, int aHoldType, const std::string &ident={})
Definition gnnode.cxx:17