X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIAircraft.hxx;h=fd4fd2ad0813c2423006304b6ef6ccc4c823a613;hb=7e73a8788223c9c2af3c26435162e0667b412279;hp=36d315f7ac5fd9599275a65b4f8e07ed3125f466;hpb=db22f457b5f82551591a8b7955b98a00722b74b3;p=flightgear.git diff --git a/src/AIModel/AIAircraft.hxx b/src/AIModel/AIAircraft.hxx index 36d315f7a..fd4fd2ad0 100644 --- a/src/AIModel/AIAircraft.hxx +++ b/src/AIModel/AIAircraft.hxx @@ -26,99 +26,126 @@ #include #include +#include #include -SG_USING_STD(string); +using std::string; +class PerformanceData; class FGAIAircraft : public FGAIBase { -private: - - typedef struct { - double accel; - double decel; - double climb_rate; - double descent_rate; - double takeoff_speed; - double climb_speed; - double cruise_speed; - double descent_speed; - double land_speed; - } PERF_STRUCT; - public: - enum aircraft_e {LIGHT=0, WW2_FIGHTER, JET_TRANSPORT, JET_FIGHTER, TANKER}; - static const PERF_STRUCT settings[]; - - FGAIAircraft(FGAISchedule *ref=0); - ~FGAIAircraft(); - - virtual void readFromScenario(SGPropertyNode* scFileNode); - - virtual bool init(); - virtual void bind(); - virtual void unbind(); - virtual void update(double dt); - - void setPerformance(const std::string& perfString); - void SetPerformance(const PERF_STRUCT *ps); - void setFlightPlan(const std::string& fp, bool repat = false); - void SetFlightPlan(FGAIFlightPlan *f); - FGAIFlightPlan* GetFlightPlan() const { return fp; }; - void AccelTo(double speed); - void PitchTo(double angle); - void RollTo(double angle); - void YawTo(double angle); - void ClimbTo(double altitude); - void TurnTo(double heading); - void ProcessFlightPlan( double dt, time_t now ); - void setCallSign(const string& ); - void setTACANChannelID(const string& ); - - void getGroundElev(double dt); - void doGroundAltitude(); - void loadNextLeg (); - - void setAcType(const string& ac) { acType = ac; }; - void setCompany(const string& comp) { company = comp;}; - - inline void SetTanker(bool setting) { isTanker = setting; }; - - virtual const char* getTypeString(void) const { return "aircraft"; } + FGAIAircraft(FGAISchedule *ref=0); + ~FGAIAircraft(); + + virtual void readFromScenario(SGPropertyNode* scFileNode); + + // virtual bool init(bool search_in_AI_path=false); + virtual void bind(); + virtual void unbind(); + virtual void update(double dt); + + void setPerformance(const std::string& perfString); + void setPerformance(PerformanceData *ps); + + void setFlightPlan(const std::string& fp, bool repat = false); + void SetFlightPlan(FGAIFlightPlan *f); + void initializeFlightPlan(); + FGAIFlightPlan* GetFlightPlan() const { return fp; }; + void ProcessFlightPlan( double dt, time_t now ); + + void AccelTo(double speed); + void PitchTo(double angle); + void RollTo(double angle); + void YawTo(double angle); + void ClimbTo(double altitude); + void TurnTo(double heading); + + void getGroundElev(double dt); //TODO these 3 really need to be public? + void doGroundAltitude(); + bool loadNextLeg (); + + void setAcType(const string& ac) { acType = ac; }; + void setCompany(const string& comp) { company = comp;}; + + void announcePositionToController(); //TODO have to be public? + void processATC(FGATCInstruction instruction); + FGAISchedule * getTrafficRef() { return trafficRef; }; + + virtual const char* getTypeString(void) const { return "aircraft"; } + + // included as performance data needs them, who else? + inline PerformanceData* getPerformance() { return _performance; }; + inline bool onGround() const { return no_roll; }; + inline double getSpeed() const { return speed; }; + inline double getRoll() const { return roll; }; + inline double getPitch() const { return pitch; }; + inline double getAltitude() const { return altitude_ft; }; + inline double getVerticalSpeed() const { return vs; }; + inline double altitudeAGL() const { return props->getFloatValue("position/altitude-agl-ft");}; + inline double airspeed() const { return props->getFloatValue("velocities/airspeed-kt");}; + string atGate(); + +protected: + void Run(double dt); private: - FGAISchedule *trafficRef; - - bool hdg_lock; - bool alt_lock; - double dt_count; - double dt_elev_count; - double headingChangeRate; - double groundTargetSpeed; - double groundOffset; - double dt; - - const PERF_STRUCT *performance; - bool use_perf_vs; - SGPropertyNode* refuel_node; - bool isTanker; - - void Run(double dt); - double sign(double x); - - string acType; - string company; - - int spinCounter; - double prevSpeed; - double prev_dist_to_go; - - bool _getGearDown() const; - bool reachedWaypoint; - string callsign; // The callsign of this tanker. - string TACAN_channel_id; // The TACAN channel of this tanker - bool contact; // set if this tanker is within fuelling range + FGAISchedule *trafficRef; + FGATCController *controller, *prevController; + + bool hdg_lock; + bool alt_lock; + double dt_count; + double dt_elev_count; + double headingChangeRate; + double headingError; + double groundTargetSpeed; + double groundOffset; + double dt; + + bool use_perf_vs; + SGPropertyNode_ptr refuel_node; + + // helpers for Run + //TODO sort out which ones are better protected virtuals to allow + //subclasses to override specific behaviour + bool fpExecutable(time_t now); + void handleFirstWaypoint(void); + bool leadPointReached(FGAIFlightPlan::waypoint* curr); + bool handleAirportEndPoints(FGAIFlightPlan::waypoint* prev, time_t now); + bool aiTrafficVisible(void); + void controlHeading(FGAIFlightPlan::waypoint* curr); + void controlSpeed(FGAIFlightPlan::waypoint* curr, + FGAIFlightPlan::waypoint* next); + void updatePrimaryTargetValues(); + void updateSecondaryTargetValues(); + void updatePosition(); + void updateHeading(); + void updateBankAngleTarget(); + void updateVerticalSpeedTarget(); + void updatePitchAngleTarget(); + void updateActualState(); + void handleATCRequests(); + void checkVisibility(); + + double sign(double x); + + string acType; + string company; + + int spinCounter; + double prevSpeed; + double prev_dist_to_go; + + bool holdPos; + + bool _getGearDown() const; + + bool reachedWaypoint; + time_t timeElapsed; + + PerformanceData* _performance; // the performance data for this aircraft };