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

66 lines
1.1 KiB
C++
Raw Normal View History

#include "Math.hpp"
#include "Thruster.hpp"
namespace yasim {
Thruster::Thruster()
{
_dir[0] = 1; _dir[1] = 0; _dir[2] = 0;
2001-12-07 20:00:59 +00:00
int i;
for(i=0; i<3; i++) _pos[i] = _wind[i] = 0;
_throttle = 0;
_mixture = 0;
2001-12-07 20:00:59 +00:00
_pressure = _temp = _rho = 0;
}
Thruster::~Thruster()
{
}
void Thruster::getPosition(float* out)
{
2001-12-07 20:00:59 +00:00
int i;
for(i=0; i<3; i++) out[i] = _pos[i];
}
void Thruster::setPosition(float* pos)
{
2001-12-07 20:00:59 +00:00
int i;
for(i=0; i<3; i++) _pos[i] = pos[i];
}
void Thruster::getDirection(float* out)
{
2001-12-07 20:00:59 +00:00
int i;
for(i=0; i<3; i++) out[i] = _dir[i];
}
void Thruster::setDirection(float* dir)
{
Math::unit3(dir, _dir);
}
void Thruster::setThrottle(float throttle)
{
2001-12-06 18:13:24 +00:00
_throttle = Math::clamp(throttle, 0, 1);
}
void Thruster::setMixture(float mixture)
{
2001-12-06 18:13:24 +00:00
_mixture = Math::clamp(mixture, 0, 1);
}
void Thruster::setWind(float* wind)
{
2001-12-07 20:00:59 +00:00
int i;
for(i=0; i<3; i++) _wind[i] = wind[i];
}
2001-12-06 18:13:24 +00:00
void Thruster::setAir(float pressure, float temp)
{
2001-12-07 20:00:59 +00:00
_pressure = pressure;
_temp = temp;
_rho = _pressure / (287.1 * _temp);
}
}; // namespace yasim