2003-11-28 15:48:05 +00:00
|
|
|
// FGAIShip - FGAIBase-derived class creates an AI ship
|
|
|
|
//
|
|
|
|
// Written by David Culp, started October 2003.
|
|
|
|
// - davidculp2@comcast.net
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <simgear/math/point3d.hxx>
|
|
|
|
#include <math.h>
|
|
|
|
|
2006-02-11 13:16:56 +00:00
|
|
|
#include "AIFlightPlan.hxx"
|
2003-11-28 15:48:05 +00:00
|
|
|
#include "AIShip.hxx"
|
|
|
|
|
|
|
|
|
2006-02-11 13:16:56 +00:00
|
|
|
FGAIShip::FGAIShip(object_type ot) : FGAIBase(ot) {
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FGAIShip::~FGAIShip() {
|
|
|
|
}
|
|
|
|
|
2006-02-11 13:16:56 +00:00
|
|
|
void FGAIShip::readFromScenario(SGPropertyNode* scFileNode) {
|
|
|
|
if (!scFileNode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
FGAIBase::readFromScenario(scFileNode);
|
|
|
|
|
|
|
|
setRudder(scFileNode->getFloatValue("rudder", 0.0));
|
|
|
|
setName(scFileNode->getStringValue("name", "Titanic"));
|
|
|
|
|
|
|
|
std::string flightplan = scFileNode->getStringValue("flightplan");
|
|
|
|
if (!flightplan.empty()){
|
|
|
|
FGAIFlightPlan* fp = new FGAIFlightPlan(flightplan);
|
|
|
|
setFlightPlan(fp);
|
|
|
|
}
|
|
|
|
}
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
bool FGAIShip::init() {
|
2005-08-16 09:37:23 +00:00
|
|
|
|
|
|
|
hdg_lock = false;
|
|
|
|
rudder = 0.0;
|
|
|
|
no_roll = false;
|
|
|
|
|
|
|
|
rudder_constant = 0.5;
|
|
|
|
roll_constant = 0.001;
|
|
|
|
speed_constant = 0.05;
|
|
|
|
hdg_constant = 0.01;
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
return FGAIBase::init();
|
|
|
|
}
|
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
void FGAIShip::bind() {
|
|
|
|
FGAIBase::bind();
|
2003-12-22 10:24:15 +00:00
|
|
|
|
2004-11-13 14:45:57 +00:00
|
|
|
props->tie("surface-positions/rudder-pos-deg",
|
2005-08-16 09:37:23 +00:00
|
|
|
SGRawValuePointer<float>(&rudder));
|
|
|
|
props->tie("controls/heading-lock",
|
|
|
|
SGRawValuePointer<bool>(&hdg_lock));
|
|
|
|
props->tie("controls/tgt-speed-kts",
|
|
|
|
SGRawValuePointer<double>(&tgt_speed));
|
|
|
|
props->tie("controls/tgt-heading-degs",
|
|
|
|
SGRawValuePointer<double>(&tgt_heading));
|
|
|
|
props->tie("controls/constants/rudder",
|
|
|
|
SGRawValuePointer<double>(&rudder_constant));
|
|
|
|
props->tie("controls/constants/roll",
|
|
|
|
SGRawValuePointer<double>(&roll_constant));
|
|
|
|
props->tie("controls/constants/rudder",
|
|
|
|
SGRawValuePointer<double>(&rudder_constant));
|
|
|
|
props->tie("controls/constants/speed",
|
|
|
|
SGRawValuePointer<double>(&speed_constant));
|
2005-03-19 09:57:18 +00:00
|
|
|
|
|
|
|
props->setStringValue("name", name.c_str());
|
2003-12-21 20:12:55 +00:00
|
|
|
}
|
2003-11-28 15:48:05 +00:00
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
void FGAIShip::unbind() {
|
|
|
|
FGAIBase::unbind();
|
2004-11-13 14:45:57 +00:00
|
|
|
props->untie("surface-positions/rudder-pos-deg");
|
2005-08-16 09:37:23 +00:00
|
|
|
props->untie("controls/heading-lock");
|
|
|
|
props->untie("controls/tgt-speed-kts");
|
|
|
|
props->untie("controls/tgt-heading-degs");
|
|
|
|
props->untie("controls/constants/roll");
|
|
|
|
props->untie("controls/constants/rudder");
|
|
|
|
props->untie("controls/constants/speed");
|
|
|
|
|
2003-12-21 20:12:55 +00:00
|
|
|
}
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
void FGAIShip::update(double dt) {
|
|
|
|
|
2004-06-11 13:49:07 +00:00
|
|
|
FGAIBase::update(dt);
|
2003-11-28 15:48:05 +00:00
|
|
|
Run(dt);
|
|
|
|
Transform();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void FGAIShip::Run(double dt) {
|
|
|
|
|
2004-05-29 11:39:10 +00:00
|
|
|
if (fp) ProcessFlightPlan(dt);
|
|
|
|
|
2004-11-13 14:45:57 +00:00
|
|
|
double sp_turn_radius_ft;
|
|
|
|
double rd_turn_radius_ft;
|
2003-11-28 15:48:05 +00:00
|
|
|
double speed_north_deg_sec;
|
|
|
|
double speed_east_deg_sec;
|
|
|
|
double dist_covered_ft;
|
|
|
|
double alpha;
|
2005-08-16 09:37:23 +00:00
|
|
|
double rudder_limit;
|
|
|
|
double raw_roll;
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
// adjust speed
|
|
|
|
double speed_diff = tgt_speed - speed;
|
|
|
|
if (fabs(speed_diff) > 0.1) {
|
2005-08-16 09:37:23 +00:00
|
|
|
if (speed_diff > 0.0) speed += speed_constant * dt;
|
|
|
|
if (speed_diff < 0.0) speed -= speed_constant * dt;
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// convert speed to degrees per second
|
2004-11-19 12:33:08 +00:00
|
|
|
speed_north_deg_sec = cos( hdg / SGD_RADIANS_TO_DEGREES )
|
2003-12-22 10:24:15 +00:00
|
|
|
* speed * 1.686 / ft_per_deg_lat;
|
2004-11-19 12:33:08 +00:00
|
|
|
speed_east_deg_sec = sin( hdg / SGD_RADIANS_TO_DEGREES )
|
2003-12-22 10:24:15 +00:00
|
|
|
* speed * 1.686 / ft_per_deg_lon;
|
2003-11-28 15:48:05 +00:00
|
|
|
|
|
|
|
// set new position
|
|
|
|
pos.setlat( pos.lat() + speed_north_deg_sec * dt);
|
|
|
|
pos.setlon( pos.lon() + speed_east_deg_sec * dt);
|
|
|
|
|
2004-11-13 14:45:57 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
// adjust heading based on current rudder angle
|
2005-08-18 09:17:39 +00:00
|
|
|
if (rudder <= -0.25 || rudder >= 0.25) {
|
2004-11-16 19:48:09 +00:00
|
|
|
/* turn_radius_ft = 0.088362 * speed * speed
|
2003-12-22 10:24:15 +00:00
|
|
|
/ tan( fabs(rudder) / SG_RADIANS_TO_DEGREES );
|
2004-11-16 19:48:09 +00:00
|
|
|
turn_circum_ft = SGD_2PI * turn_radius_ft;
|
2003-11-28 15:48:05 +00:00
|
|
|
dist_covered_ft = speed * 1.686 * dt;
|
2004-11-13 14:45:57 +00:00
|
|
|
alpha = dist_covered_ft / turn_circum_ft * 360.0;*/
|
|
|
|
|
2004-11-16 19:48:09 +00:00
|
|
|
if (turn_radius_ft <= 0) turn_radius_ft = 0; // don't allow nonsense values
|
2005-08-16 09:37:23 +00:00
|
|
|
if (rudder > 45) rudder = 45;
|
|
|
|
if (rudder < -45) rudder = -45;
|
2004-11-13 14:45:57 +00:00
|
|
|
|
|
|
|
// adjust turn radius for speed. The equation is very approximate.
|
2004-11-16 19:48:09 +00:00
|
|
|
sp_turn_radius_ft = 10 * pow ((speed - 15),2) + turn_radius_ft;
|
2005-08-16 09:37:23 +00:00
|
|
|
// cout << " speed turn radius " << sp_turn_radius_ft ;
|
2004-11-13 14:45:57 +00:00
|
|
|
|
|
|
|
// adjust turn radius for rudder angle. The equation is even more approximate.
|
2005-08-16 09:37:23 +00:00
|
|
|
float a = 19;
|
|
|
|
float b = -0.2485;
|
|
|
|
float c = 0.543;
|
|
|
|
|
|
|
|
rd_turn_radius_ft = (a * exp(b * fabs(rudder)) + c) * sp_turn_radius_ft;
|
|
|
|
|
|
|
|
// cout <<" rudder turn radius " << rd_turn_radius_ft << endl;
|
2004-11-13 14:45:57 +00:00
|
|
|
|
|
|
|
// calculate the angle, alpha, subtended by the arc traversed in time dt
|
|
|
|
alpha = ((speed * 1.686 * dt)/rd_turn_radius_ft) * SG_RADIANS_TO_DEGREES;
|
|
|
|
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
// make sure that alpha is applied in the right direction
|
2003-11-28 15:48:05 +00:00
|
|
|
hdg += alpha * sign( rudder );
|
|
|
|
if ( hdg > 360.0 ) hdg -= 360.0;
|
|
|
|
if ( hdg < 0.0) hdg += 360.0;
|
2004-11-13 14:45:57 +00:00
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
//adjust roll for rudder angle and speed. Another bit of voodoo
|
|
|
|
raw_roll = -0.0166667 * speed * rudder;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// rudder angle is 0
|
|
|
|
raw_roll = 0;
|
|
|
|
// cout << " roll "<< roll << endl;
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
//low pass filter
|
|
|
|
roll = (raw_roll * roll_constant) + (roll * (1 - roll_constant));
|
|
|
|
|
2005-10-01 09:56:53 +00:00
|
|
|
/*cout << " rudder: " << rudder << " raw roll: "<< raw_roll<<" roll: " << roll ;
|
|
|
|
cout << " hdg: " << hdg << endl ;*/
|
2005-08-16 09:37:23 +00:00
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
// adjust target rudder angle if heading lock engaged
|
|
|
|
if (hdg_lock) {
|
|
|
|
double rudder_sense = 0.0;
|
|
|
|
double diff = fabs(hdg - tgt_heading);
|
|
|
|
if (diff > 180) diff = fabs(diff - 360);
|
|
|
|
double sum = hdg + diff;
|
|
|
|
if (sum > 360.0) sum -= 360.0;
|
|
|
|
if (fabs(sum - tgt_heading) < 1.0) {
|
|
|
|
rudder_sense = 1.0;
|
|
|
|
} else {
|
|
|
|
rudder_sense = -1.0;
|
|
|
|
}
|
2005-08-16 09:37:23 +00:00
|
|
|
if (diff < 15){
|
|
|
|
tgt_rudder = diff * rudder_sense;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tgt_rudder = 45 * rudder_sense;
|
|
|
|
}
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// adjust rudder angle
|
2005-08-16 09:37:23 +00:00
|
|
|
double rudder_diff = tgt_rudder - rudder;
|
|
|
|
// set the rudder limit by speed
|
|
|
|
if (speed <= 40 ){
|
|
|
|
rudder_limit = (-0.825 * speed) + 35;
|
|
|
|
}else{
|
|
|
|
rudder_limit = 2;
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
if (fabs(rudder_diff) > 0.1) {
|
|
|
|
if (rudder_diff > 0.0){
|
|
|
|
rudder += rudder_constant * dt;
|
|
|
|
if (rudder > rudder_limit) rudder = rudder_limit;// apply the rudder limit
|
|
|
|
} else if (rudder_diff < 0.0){
|
|
|
|
rudder -= rudder_constant * dt;
|
|
|
|
if (rudder < -rudder_limit) rudder = -rudder_limit;
|
|
|
|
}
|
2003-11-28 15:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
|
|
|
|
}//end function
|
|
|
|
|
|
|
|
|
2003-11-28 15:48:05 +00:00
|
|
|
void FGAIShip::AccelTo(double speed) {
|
|
|
|
tgt_speed = speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FGAIShip::PitchTo(double angle) {
|
|
|
|
tgt_pitch = angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FGAIShip::RollTo(double angle) {
|
|
|
|
tgt_roll = angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FGAIShip::YawTo(double angle) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FGAIShip::ClimbTo(double altitude) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FGAIShip::TurnTo(double heading) {
|
|
|
|
tgt_heading = heading;
|
|
|
|
hdg_lock = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double FGAIShip::sign(double x) {
|
|
|
|
|
|
|
|
if ( x < 0.0 ) { return -1.0; }
|
|
|
|
else { return 1.0; }
|
|
|
|
}
|
2004-05-29 11:39:10 +00:00
|
|
|
|
|
|
|
void FGAIShip::setFlightPlan(FGAIFlightPlan* f) {
|
|
|
|
fp = f;
|
|
|
|
}
|
|
|
|
|
2005-03-19 09:57:18 +00:00
|
|
|
void FGAIShip::setName(const string& n) {
|
|
|
|
name = n;
|
|
|
|
}
|
|
|
|
|
2004-05-29 11:39:10 +00:00
|
|
|
void FGAIShip::ProcessFlightPlan(double dt) {
|
|
|
|
// not implemented yet
|
|
|
|
}
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
void FGAIShip::setRudder(float r) {
|
|
|
|
rudder = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FGAIShip::setRoll(double rl) {
|
|
|
|
roll = rl;
|
|
|
|
}
|