]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/submodel.hxx
Use InputValue for yaw-offset and pitch-offset
[flightgear.git] / src / AIModel / submodel.hxx
1 // submodel.hxx - models a releasable submodel.
2 // Written by Dave Culp, started Aug 2004
3 //
4 // This file is in the Public Domain and comes with no warranty.
5
6
7 #ifndef __SYSTEMS_SUBMODEL_HXX
8 #define __SYSTEMS_SUBMODEL_HXX 1
9
10 #ifndef __cplusplus
11 # error This library requires C++
12 #endif
13
14 #include <simgear/props/props.hxx>
15 #include <simgear/structure/subsystem_mgr.hxx>
16 #include <simgear/math/SGMath.hxx>
17
18 #include <Autopilot/inputvalue.hxx>
19
20 #include <vector>
21 #include <string>
22
23 using FGXMLAutopilot::InputValue_ptr;
24
25 class FGAIBase;
26 class FGAIManager;
27
28 class FGSubmodelMgr : public SGSubsystem, public SGPropertyChangeListener
29 {
30
31 public:
32
33     typedef struct {
34         SGPropertyNode_ptr trigger_node;
35         SGPropertyNode_ptr prop;
36         SGPropertyNode_ptr contents_node;
37         SGPropertyNode_ptr submodel_node;
38         SGPropertyNode_ptr speed_node;
39         InputValue_ptr yaw_node;
40         InputValue_ptr pitch_node;
41
42         std::string        name;
43         std::string        model;
44         double             speed;
45         bool               slaved;
46         bool               repeat;
47         double             delay;
48         double             timer;
49         int                count;
50         double             x_offset;
51         double             y_offset;
52         double             z_offset;
53         double             drag_area;
54         double             life;
55         double             buoyancy;
56         double             randomness;
57         bool               wind;
58         bool               first_time;
59         double             cd;
60         double             weight;
61         double             mass;
62         double             contents;
63         bool               aero_stabilised;
64         int                id;
65         bool               no_roll;
66         bool               serviceable;
67         bool               random;
68         bool               collision;
69         bool               expiry;
70         bool               impact;
71         std::string        impact_report;
72         double             fuse_range;
73         std::string        submodel;
74         int                sub_id;
75         bool               force_stabilised;
76         bool               ext_force;
77         std::string        force_path;
78     }   submodel;
79
80     typedef struct {
81         double     lat;
82         double     lon;
83         double     alt;
84         double     roll;
85         double     azimuth;
86         double     elevation;
87         double     speed;
88         double     wind_from_east;
89         double     wind_from_north;
90         double     speed_down_fps;
91         double     speed_east_fps;
92         double     speed_north_fps;
93         double     total_speed_down;
94         double     total_speed_east;
95         double     total_speed_north;
96         double     mass;
97         int        id;
98         bool       no_roll;
99         int        parent_id;
100     }   IC_struct;
101
102     FGSubmodelMgr();
103     ~FGSubmodelMgr();
104
105     void load();
106     void init();
107     void postinit();
108     void bind();
109     void unbind();
110     void update(double dt);
111     void updatelat(double lat);
112
113 private:
114
115     typedef std::vector <submodel*> submodel_vector_type;
116     typedef submodel_vector_type::iterator submodel_vector_iterator;
117
118     submodel_vector_type       submodels;
119     submodel_vector_type       subsubmodels;
120     submodel_vector_iterator   submodel_iterator, subsubmodel_iterator;
121
122     //double Rx, Ry, Rz;
123     //double Sx, Sy, Sz;
124     //double Tx, Ty, Tz;
125
126     float cosRx, sinRx;
127     float cosRy, sinRy;
128     float cosRz, sinRz;
129
130     int index;
131
132     double ft_per_deg_longitude;
133     double ft_per_deg_latitude;
134
135     double x_offset, y_offset, z_offset;
136     double pitch_offset, yaw_offset;
137
138     double _parent_lat;
139     double _parent_lon;
140     double _parent_elev;
141     double _parent_hdg;
142     double _parent_pitch;
143     double _parent_roll;
144     double _parent_speed;
145     //double _parent_ID;
146
147     double _x_offset;
148     double _y_offset;
149     double _z_offset;
150
151
152     static const double lbs_to_slugs; //conversion factor
153
154     double contrail_altitude;
155
156     bool _impact;
157     bool _hit;
158     bool _expiry;
159     bool _found_sub;
160
161     SGPropertyNode_ptr _serviceable_node;
162     SGPropertyNode_ptr _user_lat_node;
163     SGPropertyNode_ptr _user_lon_node;
164     SGPropertyNode_ptr _user_heading_node;
165     SGPropertyNode_ptr _user_alt_node;
166     SGPropertyNode_ptr _user_pitch_node;
167     SGPropertyNode_ptr _user_roll_node;
168     SGPropertyNode_ptr _user_yaw_node;
169     SGPropertyNode_ptr _user_alpha_node;
170     SGPropertyNode_ptr _user_speed_node;
171     SGPropertyNode_ptr _user_wind_from_east_node;
172     SGPropertyNode_ptr _user_wind_from_north_node;
173     SGPropertyNode_ptr _user_speed_down_fps_node;
174     SGPropertyNode_ptr _user_speed_east_fps_node;
175     SGPropertyNode_ptr _user_speed_north_fps_node;
176     SGPropertyNode_ptr _contrail_altitude_node;
177     SGPropertyNode_ptr _contrail_trigger;
178     SGPropertyNode_ptr _count_node;
179     SGPropertyNode_ptr _trigger_node;
180     SGPropertyNode_ptr props;
181     SGPropertyNode_ptr _model_added_node;
182     SGPropertyNode_ptr _path_node;
183     SGPropertyNode_ptr _selected_ac;
184
185     IC_struct  IC;
186     
187     /**
188      * Helper to retrieve the AI manager, if it currently exists
189      */
190     FGAIManager* aiManager();
191     
192     void loadAI();
193     void loadSubmodels();
194     void setData(int id, const std::string& path, bool serviceable);
195     void setSubData(int id, const std::string& path, bool serviceable);
196     void valueChanged (SGPropertyNode *);
197     void transform(submodel *);
198     void setParentNode(int parent_id);
199
200     bool release(submodel *, double dt);
201
202
203     int _count;
204
205     SGGeod userpos;
206     SGGeod offsetpos;
207     SGVec3d getCartOffsetPos() const;
208     void setOffsetPos();
209
210 };
211
212 #endif // __SYSTEMS_SUBMODEL_HXX