X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAICarrier.hxx;h=c359c3fcb35f4b5aba7dd373507650f45a9f6ef3;hb=90b2d25671d60ff3c5561791676f27d31676904c;hp=c633bd4ef50d1322f22fac54320d9ee71d0b84c7;hpb=5fe860750eb8b99401a64b6aca68cc7b3da5eac9;p=flightgear.git diff --git a/src/AIModel/AICarrier.hxx b/src/AIModel/AICarrier.hxx index c633bd4ef..c359c3fcb 100644 --- a/src/AIModel/AICarrier.hxx +++ b/src/AIModel/AICarrier.hxx @@ -16,18 +16,21 @@ // // 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. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef _FG_AICARRIER_HXX #define _FG_AICARRIER_HXX #include #include -#include + +#include +#include + #include -SG_USING_STD(string); -SG_USING_STD(list); +using std::string; +using std::list; #include "AIShip.hxx" @@ -37,7 +40,7 @@ SG_USING_STD(list); class FGAIManager; class FGAICarrier; -class FGAICarrierHardware : public ssgBase { +class FGAICarrierHardware : public osg::Referenced { public: enum Type { Catapult, Wire, Solid }; @@ -84,7 +87,7 @@ public: void setSign(const string& ); void setTACANChannelID(const string &); - void getVelocityWrtEarth(sgdVec3& v, sgdVec3& omega, sgdVec3& pivot); + void getVelocityWrtEarth(SGVec3d& v, SGVec3d& omega, SGVec3d& pivot); virtual void bind(); virtual void unbind(); void UpdateWind ( double dt ); @@ -97,10 +100,10 @@ public: void TurnToLaunch(); void TurnToBase(); void ReturnToBox(); - float Horizon(float h); bool OutsideBox(); - bool init(); + bool init(bool search_in_AI_path=false); + void initModel(osg::Node *node); virtual const char* getTypeString(void) const { return "carrier"; } @@ -124,11 +127,6 @@ private: void update(double dt); - void mark_nohot(ssgEntity*); - - bool mark_wires(ssgEntity*, const list&, bool = false); - bool mark_cat(ssgEntity*, const list&, bool = false); - bool mark_solid(ssgEntity*, const list&, bool = false); double wind_from_east; // fps double wind_from_north; // fps double rel_wind_speed_kts; @@ -155,8 +153,7 @@ private: bool wave_off_lights; // these are for maneuvering the carrier - Point3D carrierpos; - Point3D initialpos; + SGGeod mOpBoxPos; double wind_speed_from_north_kts ; double wind_speed_from_east_kts ; @@ -176,17 +173,22 @@ private: SGPropertyNode_ptr _altitude_node; SGPropertyNode_ptr _surface_wind_from_deg_node; SGPropertyNode_ptr _surface_wind_speed_node; - + SGPropertyNode_ptr _launchbar_state_node; // this is for tacan string TACAN_channel_id; // these are for moving the elevators void UpdateElevator( double dt, double transition_time); - double step; double pos_norm, raw_pos_norm; double transition_time, time_constant; bool elevators; + + // 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; }; #endif // _FG_AICARRIER_HXX