110 lines
2.2 KiB
C++
110 lines
2.2 KiB
C++
|
// route_mgr.hxx - manage a route (i.e. a collection of waypoints)
|
||
|
//
|
||
|
// Written by Curtis Olson, started January 2004.
|
||
|
//
|
||
|
// Copyright (C) 2004 Curtis L. Olson - curt@flightgear.org
|
||
|
//
|
||
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
//
|
||
|
// $Id$
|
||
|
|
||
|
|
||
|
#ifndef _ROUTE_MGR_HXX
|
||
|
#define _ROUTE_MGR_HXX 1
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
# error This library requires C++
|
||
|
#endif
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
# include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <simgear/compiler.h>
|
||
|
|
||
|
#include STL_STRING
|
||
|
#include <vector>
|
||
|
|
||
|
SG_USING_STD(string);
|
||
|
SG_USING_STD(vector);
|
||
|
|
||
|
#include <simgear/props/props.hxx>
|
||
|
#include <simgear/route/route.hxx>
|
||
|
#include <simgear/structure/subsystem_mgr.hxx>
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Top level route manager class
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
class FGRouteMgr : public SGSubsystem
|
||
|
{
|
||
|
|
||
|
private:
|
||
|
|
||
|
SGRoute *route;
|
||
|
|
||
|
// automatic inputs
|
||
|
SGPropertyNode *lon;
|
||
|
SGPropertyNode *lat;
|
||
|
SGPropertyNode *alt;
|
||
|
|
||
|
// automatic outputs
|
||
|
SGPropertyNode *true_hdg_deg;
|
||
|
|
||
|
SGPropertyNode *wp0_id;
|
||
|
SGPropertyNode *wp0_dist;
|
||
|
SGPropertyNode *wp0_eta;
|
||
|
|
||
|
SGPropertyNode *wp1_id;
|
||
|
SGPropertyNode *wp1_dist;
|
||
|
SGPropertyNode *wp1_eta;
|
||
|
|
||
|
SGPropertyNode *wpn_id;
|
||
|
SGPropertyNode *wpn_dist;
|
||
|
SGPropertyNode *wpn_eta;
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
FGRouteMgr();
|
||
|
~FGRouteMgr();
|
||
|
|
||
|
void init ();
|
||
|
void bind ();
|
||
|
void unbind ();
|
||
|
void update (double dt);
|
||
|
|
||
|
bool build ();
|
||
|
|
||
|
void add_waypoint( SGWayPoint wp ) {
|
||
|
route->add_waypoint( wp );
|
||
|
}
|
||
|
|
||
|
SGWayPoint get_waypoint( int i ) const {
|
||
|
return route->get_waypoint(i);
|
||
|
}
|
||
|
|
||
|
SGWayPoint pop_waypoint();
|
||
|
|
||
|
int size() const {
|
||
|
return route->size();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _ROUTE_MGR_HXX
|