2004-10-28 08:33:55 +00:00
|
|
|
// FGAICarrier - AIShip-derived class creates an AI aircraft carrier
|
|
|
|
//
|
|
|
|
// Written by David Culp, started October 2004.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2004 David P. Culp - 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
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-10-28 08:33:55 +00:00
|
|
|
|
|
|
|
#ifndef _FG_AICARRIER_HXX
|
|
|
|
#define _FG_AICARRIER_HXX
|
|
|
|
|
2004-11-26 10:24:48 +00:00
|
|
|
#include <string>
|
|
|
|
#include <list>
|
2006-10-29 19:30:21 +00:00
|
|
|
|
2004-11-26 10:24:48 +00:00
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::string;
|
|
|
|
using std::list;
|
2004-11-26 10:24:48 +00:00
|
|
|
|
2004-10-28 08:33:55 +00:00
|
|
|
#include "AIShip.hxx"
|
2005-08-16 09:37:23 +00:00
|
|
|
|
|
|
|
#include "AIManager.hxx"
|
|
|
|
#include "AIBase.hxx"
|
|
|
|
|
2004-10-28 08:33:55 +00:00
|
|
|
class FGAIManager;
|
2004-11-26 10:24:48 +00:00
|
|
|
class FGAICarrier;
|
|
|
|
|
2004-10-28 08:33:55 +00:00
|
|
|
class FGAICarrier : public FGAIShip {
|
|
|
|
public:
|
2005-12-08 15:03:08 +00:00
|
|
|
|
2006-02-11 13:16:56 +00:00
|
|
|
FGAICarrier();
|
|
|
|
virtual ~FGAICarrier();
|
|
|
|
|
|
|
|
virtual void readFromScenario(SGPropertyNode* scFileNode);
|
2005-12-08 15:03:08 +00:00
|
|
|
|
|
|
|
void setSign(const string& );
|
|
|
|
void setTACANChannelID(const string &);
|
|
|
|
|
|
|
|
virtual void bind();
|
2004-11-30 12:34:11 +00:00
|
|
|
virtual void unbind();
|
2005-08-16 09:37:23 +00:00
|
|
|
void UpdateWind ( double dt );
|
|
|
|
void setWind_from_east( double fps );
|
|
|
|
void setWind_from_north( double fps );
|
|
|
|
void setMaxLat( double deg );
|
|
|
|
void setMinLat( double deg );
|
|
|
|
void setMaxLong( double deg );
|
|
|
|
void setMinLong( double deg );
|
2009-05-04 14:16:00 +00:00
|
|
|
void setMPControl( bool c );
|
2010-05-29 14:31:05 +00:00
|
|
|
void setAIControl( bool c );
|
2005-08-16 09:37:23 +00:00
|
|
|
void TurnToLaunch();
|
2009-05-04 14:16:00 +00:00
|
|
|
void TurnToRecover();
|
2005-08-16 09:37:23 +00:00
|
|
|
void TurnToBase();
|
|
|
|
void ReturnToBox();
|
2005-12-08 15:03:08 +00:00
|
|
|
bool OutsideBox();
|
2005-11-29 16:38:49 +00:00
|
|
|
|
2007-01-13 16:04:28 +00:00
|
|
|
bool init(bool search_in_AI_path=false);
|
2004-11-26 10:24:48 +00:00
|
|
|
|
2006-02-11 13:16:56 +00:00
|
|
|
virtual const char* getTypeString(void) const { return "carrier"; }
|
|
|
|
|
2006-02-19 17:28:31 +00:00
|
|
|
bool getParkPosition(const string& id, SGGeod& geodPos,
|
|
|
|
double& hdng, SGVec3d& uvw);
|
2005-03-19 09:57:18 +00:00
|
|
|
|
2004-10-28 08:33:55 +00:00
|
|
|
private:
|
2006-02-11 13:16:56 +00:00
|
|
|
/// Is sufficient to be private, stores a possible position to place an
|
|
|
|
/// aircraft on start
|
|
|
|
struct ParkPosition {
|
|
|
|
ParkPosition(const ParkPosition& pp)
|
|
|
|
: name(pp.name), offset(pp.offset), heading_deg(pp.heading_deg)
|
|
|
|
{}
|
2006-02-19 17:28:31 +00:00
|
|
|
ParkPosition(const string& n, const SGVec3d& off = SGVec3d(), double heading = 0)
|
2006-02-11 13:16:56 +00:00
|
|
|
: name(n), offset(off), heading_deg(heading)
|
|
|
|
{}
|
|
|
|
string name;
|
2006-02-19 17:28:31 +00:00
|
|
|
SGVec3d offset;
|
2006-02-11 13:16:56 +00:00
|
|
|
double heading_deg;
|
|
|
|
};
|
|
|
|
|
2004-10-28 08:33:55 +00:00
|
|
|
|
2005-12-08 15:03:08 +00:00
|
|
|
void update(double dt);
|
|
|
|
double wind_from_east; // fps
|
2005-08-16 09:37:23 +00:00
|
|
|
double wind_from_north; // fps
|
|
|
|
double rel_wind_speed_kts;
|
|
|
|
double rel_wind_from_deg;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
|
|
|
|
2009-05-04 14:16:00 +00:00
|
|
|
|
2005-12-08 15:03:08 +00:00
|
|
|
list<ParkPosition> ppositions; // List of positions where an aircraft can start.
|
|
|
|
string sign; // The sign of this carrier.
|
|
|
|
|
|
|
|
// these describe the flols
|
2006-02-19 17:28:31 +00:00
|
|
|
SGVec3d flols_off;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
|
|
|
double dist; // the distance of the eyepoint from the flols
|
|
|
|
double angle;
|
|
|
|
int source; // the flols light which is visible at the moment
|
2005-08-16 09:37:23 +00:00
|
|
|
bool wave_off_lights;
|
2009-05-04 14:16:00 +00:00
|
|
|
bool in_to_wind;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
|
|
|
// these are for maneuvering the carrier
|
2006-06-15 08:29:43 +00:00
|
|
|
SGGeod mOpBoxPos;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
double wind_speed_from_north_kts ;
|
|
|
|
double wind_speed_from_east_kts ;
|
|
|
|
double wind_speed_kts; //true wind speed
|
|
|
|
double wind_from_deg; //true wind direction
|
|
|
|
double rel_wind;
|
|
|
|
double max_lat, min_lat, max_long, min_long;
|
|
|
|
double base_course, base_speed;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
bool turn_to_launch_hdg;
|
2009-05-04 14:16:00 +00:00
|
|
|
bool turn_to_recovery_hdg;
|
|
|
|
bool turn_to_base_course;
|
2005-08-16 09:37:23 +00:00
|
|
|
bool returning; // set if the carrier is returning to an operating box
|
2005-12-08 15:03:08 +00:00
|
|
|
bool InToWind(); // set if the carrier is in to wind
|
2009-12-09 06:44:50 +00:00
|
|
|
bool MPControl, AIControl;
|
2005-11-29 16:38:49 +00:00
|
|
|
|
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
SGPropertyNode_ptr _longitude_node;
|
|
|
|
SGPropertyNode_ptr _latitude_node;
|
|
|
|
SGPropertyNode_ptr _altitude_node;
|
|
|
|
SGPropertyNode_ptr _surface_wind_from_deg_node;
|
|
|
|
SGPropertyNode_ptr _surface_wind_speed_node;
|
2006-03-18 16:31:09 +00:00
|
|
|
SGPropertyNode_ptr _launchbar_state_node;
|
2005-11-29 16:38:49 +00:00
|
|
|
// this is for tacan
|
2005-12-08 15:03:08 +00:00
|
|
|
|
2005-08-16 09:37:23 +00:00
|
|
|
string TACAN_channel_id;
|
2005-12-08 15:03:08 +00:00
|
|
|
|
2005-11-29 16:38:49 +00:00
|
|
|
// these are for moving the elevators
|
|
|
|
void UpdateElevator( double dt, double transition_time);
|
|
|
|
double pos_norm, raw_pos_norm;
|
|
|
|
double transition_time, time_constant;
|
|
|
|
bool elevators;
|
2006-03-18 16:31:09 +00:00
|
|
|
|
|
|
|
// these are for moving the jet blast deflectors
|
|
|
|
void UpdateJBD( double dt, double jbd_transition_time);
|
|
|
|
double jbd_pos_norm, raw_jbd_pos_norm;
|
|
|
|
double jbd_transition_time, jbd_time_constant;
|
|
|
|
bool jbd;
|
2004-10-28 08:33:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _FG_AICARRIER_HXX
|