X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAICarrier.hxx;h=da3380502fc44e5e045b7c48b5e9b39071052162;hb=bb2d1f55e9912d3b9b81b6d5e12900f77eef4365;hp=d76e1ed0eae8525aac7bac9a608bcdabae1b384a;hpb=b0f9d24f9dbab9eb2de07c48e8bfe48f3851d7e4;p=flightgear.git diff --git a/src/AIModel/AICarrier.hxx b/src/AIModel/AICarrier.hxx index d76e1ed0e..da3380502 100644 --- a/src/AIModel/AICarrier.hxx +++ b/src/AIModel/AICarrier.hxx @@ -24,13 +24,10 @@ #include #include -#include -#include - #include -SG_USING_STD(string); -SG_USING_STD(list); +using std::string; +using std::list; #include "AIShip.hxx" @@ -40,42 +37,6 @@ SG_USING_STD(list); class FGAIManager; class FGAICarrier; -class FGAICarrierHardware : public osg::Referenced { -public: - - enum Type { Catapult, Wire, Solid }; - - FGAICarrier *carrier; - int id; - Type type; - - static FGAICarrierHardware* newCatapult(FGAICarrier *c) { - FGAICarrierHardware* ch = new FGAICarrierHardware; - ch->carrier = c; - ch->type = Catapult; - ch->id = unique_id++; - return ch; - } - static FGAICarrierHardware* newWire(FGAICarrier *c) { - FGAICarrierHardware* ch = new FGAICarrierHardware; - ch->carrier = c; - ch->type = Wire; - ch->id = unique_id++; - return ch; - } - static FGAICarrierHardware* newSolid(FGAICarrier *c) { - FGAICarrierHardware* ch = new FGAICarrierHardware; - ch->carrier = c; - ch->type = Solid; - ch->id = unique_id++; - return ch; - } - -private: - static int unique_id; -}; - - class FGAICarrier : public FGAIShip { public: @@ -87,7 +48,6 @@ public: void setSign(const string& ); void setTACANChannelID(const string &); - void getVelocityWrtEarth(SGVec3d& v, SGVec3d& omega, SGVec3d& pivot); virtual void bind(); virtual void unbind(); void UpdateWind ( double dt ); @@ -97,12 +57,15 @@ public: void setMinLat( double deg ); void setMaxLong( double deg ); void setMinLong( double deg ); + void setMPControl( bool c ); + void setAIControl( bool c ); void TurnToLaunch(); + void TurnToRecover(); void TurnToBase(); void ReturnToBox(); bool OutsideBox(); - bool init(); + bool init(bool search_in_AI_path=false); virtual const char* getTypeString(void) const { return "carrier"; } @@ -132,17 +95,10 @@ private: double rel_wind_from_deg; - list solid_objects; // List of solid object names - list wire_objects; // List of wire object names - list catapult_objects; // List of catapult object names + list ppositions; // List of positions where an aircraft can start. string sign; // The sign of this carrier. - // Velocity wrt earth. - SGVec3d vel_wrt_earth; - SGVec3d rot_wrt_earth; - SGVec3d rot_pivot_wrt_earth; - // these describe the flols SGVec3d flols_off; @@ -150,6 +106,7 @@ private: double angle; int source; // the flols light which is visible at the moment bool wave_off_lights; + bool in_to_wind; // these are for maneuvering the carrier SGGeod mOpBoxPos; @@ -163,8 +120,11 @@ private: double base_course, base_speed; bool turn_to_launch_hdg; + bool turn_to_recovery_hdg; + bool turn_to_base_course; bool returning; // set if the carrier is returning to an operating box bool InToWind(); // set if the carrier is in to wind + bool MPControl, AIControl; SGPropertyNode_ptr _longitude_node;