1
0
Fork 0
flightgear/src/FDM/YASim/Thruster.hpp

61 lines
1.4 KiB
C++
Raw Normal View History

#ifndef _THRUSTER_HPP
#define _THRUSTER_HPP
namespace yasim {
2001-12-06 18:13:24 +00:00
class Jet;
class PropEngine;
class Propeller;
class PistonEngine;
class Thruster {
public:
Thruster();
virtual ~Thruster();
2001-12-06 18:13:24 +00:00
// Typing info, these are the possible sub-type (or sub-parts)
// that a thruster might have. Any might return null. A little
// clumsy, but much simpler than an RTTI-based implementation.
virtual Jet* getJet() { return 0; }
virtual PropEngine* getPropEngine() { return 0; }
virtual Propeller* getPropeller() { return 0; }
virtual PistonEngine* getPistonEngine() { return 0; }
// Static data
void getPosition(float* out);
void setPosition(float* pos);
void getDirection(float* out);
void setDirection(float* dir);
// Controls
void setThrottle(float throttle);
void setMixture(float mixture);
// Dynamic output
virtual void getThrust(float* out)=0;
virtual void getTorque(float* out)=0;
virtual void getGyro(float* out)=0;
virtual float getFuelFlow()=0;
// Runtime instructions
void setWind(float* wind);
2001-12-06 18:13:24 +00:00
void setAir(float pressure, float temp);
virtual void integrate(float dt)=0;
2001-12-06 18:13:24 +00:00
virtual void stabilize()=0;
protected:
float _pos[3];
float _dir[3];
float _throttle;
float _mixture;
float _wind[3];
2001-12-07 20:00:59 +00:00
float _pressure;
float _temp;
float _rho;
};
}; // namespace yasim
#endif // _THRUSTER_HPP