64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
|
// turn_indicator.hxx - an electric-powered turn indicator.
|
||
|
// Written by David Megginson, started 2003.
|
||
|
//
|
||
|
// This file is in the Public Domain and comes with no warranty.
|
||
|
|
||
|
|
||
|
#ifndef __INSTRUMENTS_TURN_INDICATOR_HXX
|
||
|
#define __INSTRUMENTS_TURN_INDICATOR_HXX 1
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
# error This library requires C++
|
||
|
#endif
|
||
|
|
||
|
#include <simgear/misc/props.hxx>
|
||
|
#include <Main/fgfs.hxx>
|
||
|
|
||
|
#include "gyro.hxx"
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Model an electric-powered turn indicator.
|
||
|
*
|
||
|
* This class does not model the slip/skid ball; that is properly
|
||
|
* a separate instrument.
|
||
|
*
|
||
|
* Input properties:
|
||
|
*
|
||
|
* /instrumentation/turn-indicator/serviceable
|
||
|
* /instrumentation/turn-indicator/spin
|
||
|
* /orientation/roll-rate-degps
|
||
|
* /orientation/yaw-rate-degps
|
||
|
* /systems/electrical/outputs/turn-coordinator
|
||
|
*
|
||
|
* Output properties:
|
||
|
*
|
||
|
* /instrumentation/turn-indicator/indicated-turn-rate
|
||
|
*/
|
||
|
class TurnIndicator : public FGSubsystem
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
TurnIndicator ();
|
||
|
virtual ~TurnIndicator ();
|
||
|
|
||
|
virtual void init ();
|
||
|
virtual void bind ();
|
||
|
virtual void unbind ();
|
||
|
virtual void update (double dt);
|
||
|
|
||
|
private:
|
||
|
|
||
|
Gyro _gyro;
|
||
|
double _last_rate;
|
||
|
|
||
|
SGPropertyNode_ptr _roll_rate_node;
|
||
|
SGPropertyNode_ptr _yaw_rate_node;
|
||
|
SGPropertyNode_ptr _electric_current_node;
|
||
|
SGPropertyNode_ptr _rate_out_node;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // __INSTRUMENTS_TURN_INDICATOR_HXX
|