1
0
Fork 0
flightgear/src/Instrumentation/slip_skid_ball.hxx

58 lines
1.1 KiB
C++
Raw Normal View History

2003-01-25 21:13:13 +00:00
// slip_skid_ball.hxx - an slip-skid ball.
// Written by David Megginson, started 2003.
//
// This file is in the Public Domain and comes with no warranty.
#ifndef __INSTRUMENTS_SLIP_SKID_BALL_HXX
#define __INSTRUMENTS_SLIP_SKID_BALL_HXX 1
#ifndef __cplusplus
# error This library requires C++
#endif
#include <simgear/props/props.hxx>
2003-01-25 21:13:13 +00:00
#include <Main/fgfs.hxx>
#include "gyro.hxx"
/**
* Model a slip-skid ball.
*
* Input properties:
*
2003-01-26 20:21:04 +00:00
* /instrumentation/slip-skid-ball/serviceable
2003-01-25 21:13:13 +00:00
* /accelerations/pilot/y-accel-fps_sec
* /accelerations/pilot/z-accel-fps_sec
*
* Output properties:
*
* /instrumentation/slip-skid-ball/indicated-slip-skid
*/
class SlipSkidBall : public FGSubsystem
{
public:
SlipSkidBall ();
virtual ~SlipSkidBall ();
virtual void init ();
virtual void update (double dt);
private:
Gyro _gyro;
double _last_pos;
SGPropertyNode_ptr _serviceable_node;
2003-01-25 21:13:13 +00:00
SGPropertyNode_ptr _y_accel_node;
SGPropertyNode_ptr _z_accel_node;
SGPropertyNode_ptr _out_node;
};
#endif // __INSTRUMENTS_SLIP_SKID_BALL_HXX