]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AICarrier.hxx
bd7bc405d578f2a8b46cbcafa37b5509f8a4d918
[flightgear.git] / src / AIModel / AICarrier.hxx
1 // FGAICarrier - AIShip-derived class creates an AI aircraft carrier
2 //
3 // Written by David Culp, started October 2004.
4 //
5 // Copyright (C) 2004  David P. Culp - davidculp2@comcast.net
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef _FG_AICARRIER_HXX
22 #define _FG_AICARRIER_HXX
23
24 #include <string>
25 #include <list>
26
27 #include <osg/Referenced>
28 #include <osg/Node>
29
30 #include <simgear/compiler.h>
31
32 using std::string;
33 using std::list;
34
35 #include "AIShip.hxx"
36
37 #include "AIManager.hxx"
38 #include "AIBase.hxx"
39
40 class FGAIManager;
41 class FGAICarrier;
42
43 class FGAICarrier  : public FGAIShip {
44 public:
45
46     FGAICarrier();
47     virtual ~FGAICarrier();
48
49     virtual void readFromScenario(SGPropertyNode* scFileNode);
50
51     void setSign(const string& );
52     void setTACANChannelID(const string &);
53
54     virtual void bind();
55     virtual void unbind();
56     void UpdateWind ( double dt );
57     void setWind_from_east( double fps );
58     void setWind_from_north( double fps );
59     void setMaxLat( double deg );
60     void setMinLat( double deg );
61     void setMaxLong( double deg );
62     void setMinLong( double deg );
63     void setMPControl( bool c );
64     void TurnToLaunch();
65     void TurnToRecover();
66     void TurnToBase();
67     void ReturnToBox();
68     bool OutsideBox();
69
70     bool init(bool search_in_AI_path=false);
71     void initModel(osg::Node *node);
72
73     virtual const char* getTypeString(void) const { return "carrier"; }
74
75     bool getParkPosition(const string& id, SGGeod& geodPos,
76                          double& hdng, SGVec3d& uvw);
77
78 private:
79   /// Is sufficient to be private, stores a possible position to place an
80   /// aircraft on start
81   struct ParkPosition {
82     ParkPosition(const ParkPosition& pp)
83       : name(pp.name), offset(pp.offset), heading_deg(pp.heading_deg)
84     {}
85     ParkPosition(const string& n, const SGVec3d& off = SGVec3d(), double heading = 0)
86       : name(n), offset(off), heading_deg(heading)
87     {}
88     string name;
89     SGVec3d offset;
90     double heading_deg;
91   };
92
93
94     void update(double dt);
95     double wind_from_east;  // fps
96     double wind_from_north; // fps
97     double rel_wind_speed_kts;
98     double rel_wind_from_deg;
99
100
101
102     list<string> wire_objects;        // List of wire object names
103     list<string> catapult_objects;    // List of catapult object names
104     list<ParkPosition> ppositions;    // List of positions where an aircraft can start.
105     string sign;                      // The sign of this carrier.
106
107     // these describe the flols
108     SGVec3d flols_off;
109
110     double dist;            // the distance of the eyepoint from the flols
111     double angle;
112     int source;             // the flols light which is visible at the moment
113     bool wave_off_lights;
114     bool in_to_wind;
115
116     // these are for maneuvering the carrier
117     SGGeod mOpBoxPos;
118
119     double wind_speed_from_north_kts ;
120     double wind_speed_from_east_kts  ;
121     double wind_speed_kts;  //true wind speed
122     double wind_from_deg;   //true wind direction
123     double rel_wind;
124     double max_lat, min_lat, max_long, min_long;
125     double base_course, base_speed;
126
127     bool turn_to_launch_hdg;
128     bool turn_to_recovery_hdg;
129     bool turn_to_base_course;
130     bool returning;      // set if the carrier is returning to an operating box
131     bool InToWind();     // set if the carrier is in to wind
132     bool MPControl;
133
134
135     SGPropertyNode_ptr _longitude_node;
136     SGPropertyNode_ptr _latitude_node;
137     SGPropertyNode_ptr _altitude_node;
138     SGPropertyNode_ptr _surface_wind_from_deg_node;
139     SGPropertyNode_ptr _surface_wind_speed_node;
140     SGPropertyNode_ptr _launchbar_state_node;
141     // this is for tacan
142
143     string TACAN_channel_id;
144
145     // these are for moving the elevators
146     void UpdateElevator( double dt, double transition_time);
147     double pos_norm, raw_pos_norm;
148     double transition_time, time_constant;
149     bool elevators;
150
151     // these are for moving the jet blast deflectors
152     void UpdateJBD( double dt, double jbd_transition_time);
153     double jbd_pos_norm, raw_jbd_pos_norm;
154     double jbd_transition_time, jbd_time_constant;
155     bool jbd;
156 };
157
158 #endif  // _FG_AICARRIER_HXX