2002-09-27 22:03:48 +00:00
|
|
|
// heading_indicator.hxx - a vacuum-powered heading indicator.
|
|
|
|
// Written by David Megginson, started 2002.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain and comes with no warranty.
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INSTRUMENTS_HEADING_INDICATOR_HXX
|
|
|
|
#define __INSTRUMENTS_HEADING_INDICATOR_HXX 1
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
|
2002-09-27 22:03:48 +00:00
|
|
|
#include <Main/fgfs.hxx>
|
|
|
|
|
2003-01-25 19:49:27 +00:00
|
|
|
#include "gyro.hxx"
|
|
|
|
|
2002-09-27 22:03:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Model a vacuum-powered heading indicator.
|
|
|
|
*
|
|
|
|
* This first, simple draft is hard-wired to vacuum pump #1.
|
|
|
|
*
|
|
|
|
* Input properties:
|
|
|
|
*
|
|
|
|
* /instrumentation/heading-indicator/serviceable
|
2002-09-29 18:26:24 +00:00
|
|
|
* /instrumentation/heading-indicator/spin
|
2002-09-27 22:03:48 +00:00
|
|
|
* /instrumentation/heading-indicator/offset-deg
|
|
|
|
* /orientation/heading-deg
|
|
|
|
* /systems/vacuum[0]/suction-inhg
|
|
|
|
*
|
|
|
|
* Output properties:
|
|
|
|
*
|
|
|
|
* /instrumentation/heading-indicator/indicated-heading-deg
|
|
|
|
*/
|
|
|
|
class HeadingIndicator : public FGSubsystem
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
HeadingIndicator ();
|
|
|
|
virtual ~HeadingIndicator ();
|
|
|
|
|
|
|
|
virtual void init ();
|
|
|
|
virtual void bind ();
|
|
|
|
virtual void unbind ();
|
|
|
|
virtual void update (double dt);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2003-01-25 19:49:27 +00:00
|
|
|
Gyro _gyro;
|
2002-09-27 22:03:48 +00:00
|
|
|
double _last_heading_deg;
|
|
|
|
|
|
|
|
SGPropertyNode_ptr _offset_node;
|
|
|
|
SGPropertyNode_ptr _heading_in_node;
|
|
|
|
SGPropertyNode_ptr _suction_node;
|
|
|
|
SGPropertyNode_ptr _heading_out_node;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __INSTRUMENTS_HEADING_INDICATOR_HXX
|