]> git.mxchange.org Git - flightgear.git/blob - src/FDM/ADA.cxx
35612a185386ae1cdd6dd2ad3728daddae1b44dc
[flightgear.git] / src / FDM / ADA.cxx
1 // ADA.cxx -- interface to the "External"-ly driven ADA flight model
2 //
3 // This program is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU General Public License as
5 // published by the Free Software Foundation; either version 2 of the
6 // License, or (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful, but
9 // WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 //
17 // $Id$
18
19 // Modified by Cdr. VS Renganthan <vsranga@ada.ernet.in>, 12 Oct 2K
20
21 #include <simgear/io/iochannel.hxx>
22
23 #include <Controls/controls.hxx>
24 #include <GUI/gui.h>
25
26 #include "ADA.hxx"
27
28 #define numberofbytes 472
29
30 struct {
31     double number_of_bytes;
32     double lat_geoc;
33     double lon_geoc;
34     double altitude;
35     double psirad;
36     double thetrad;
37     double phirad;
38     double earth_posn_angle;
39     double radius_to_vehicle;
40     double sea_level_radius;
41     double latitude;
42     double longitude;
43     double Vnorth;
44     double Veast;
45     double Vdown;
46     double Vcas_kts;
47     double prad;
48     double qrad;
49     double rrad;
50     double alpharad;
51     double betarad;
52     double latitude_dot;
53     double longitude_dot;
54     double radius_dot;
55     double Gamma_vert_rad;
56     double Runway_altitude;
57     double throttle;
58     double pstick;
59     double rstick;
60     double rpedal;
61     double U_local;
62     double V_local;
63     double W_local;
64     double U_dot_local;
65     double V_dot_local;
66     double W_dot_local;
67     double Machno;
68     double anxg;
69     double anyg;
70     double anzg;
71     double aux1;
72     double aux2;
73     double aux3;
74     double aux4;
75     double aux5;
76     double aux6;
77     double aux7;
78     double aux8;
79     int iaux1;
80     int iaux2;
81     int iaux3;
82     int iaux4;
83     int iaux5;
84     int iaux6;
85     int iaux7;
86     int iaux8;
87     int iaux9;
88     int iaux10;
89     int iaux11;
90     int iaux12;
91     float aux9;
92     float aux10;
93     float aux11;
94     float aux12;
95     float aux13;
96     float aux14;
97     float aux15;
98     float aux16;
99     float aux17;
100     float aux18;
101 } sixdof_to_visuals;
102
103 #define number_of_bytes sixdof_to_visuals.number_of_bytes
104 #define U_dot_local sixdof_to_visuals.U_dot_local
105 #define V_dot_local sixdof_to_visuals.V_dot_local
106 #define W_dot_local sixdof_to_visuals.W_dot_local
107 #define U_local sixdof_to_visuals.U_local
108 #define V_local sixdof_to_visuals.V_local
109 #define W_local sixdof_to_visuals.W_local
110 #define throttle sixdof_to_visuals.throttle
111 #define pstick sixdof_to_visuals.pstick
112 #define rstick sixdof_to_visuals.rstick
113 #define rpedal sixdof_to_visuals.rpedal
114 #define V_north sixdof_to_visuals.Vnorth
115 #define V_east sixdof_to_visuals.Veast
116 #define V_down sixdof_to_visuals.Vdown
117 #define V_calibrated_kts sixdof_to_visuals.Vcas_kts
118 #define P_body sixdof_to_visuals.prad
119 #define Q_body sixdof_to_visuals.qrad
120 #define R_body sixdof_to_visuals.rrad
121 #define Latitude_dot sixdof_to_visuals.latitude_dot
122 #define Longitude_dot sixdof_to_visuals.longitude_dot
123 #define Radius_dot sixdof_to_visuals.radius_dot
124 #define Latitude sixdof_to_visuals.latitude
125 #define Longitude sixdof_to_visuals.longitude
126 #define Lat_geocentric sixdof_to_visuals.lat_geoc
127 #define Lon_geocentric sixdof_to_visuals.lon_geoc
128 #define Radius_to_vehicle sixdof_to_visuals.radius_to_vehicle
129 #define Altitude sixdof_to_visuals.altitude
130 #define Phi sixdof_to_visuals.phirad
131 #define Theta sixdof_to_visuals.thetrad
132 #define Psi sixdof_to_visuals.psirad
133 #define Alpha sixdof_to_visuals.alpharad
134 #define Beta sixdof_to_visuals.betarad
135 #define Sea_level_radius sixdof_to_visuals.sea_level_radius
136 #define Earth_position_angle sixdof_to_visuals.earth_posn_angle
137 #define Runway_altitude sixdof_to_visuals.Runway_altitude
138 #define Gamma_vert_rad sixdof_to_visuals.Gamma_vert_rad
139 #define Machno sixdof_to_visuals.Machno
140 #define anxg sixdof_to_visuals.anxg
141 #define anyg sixdof_to_visuals.anyg
142 #define anzg sixdof_to_visuals.anzg
143
144
145 // Initialize the ADA flight model, dt is the time increment
146 // for each subsequent iteration through the EOM
147 bool FGADA::init( double dt ) {
148     // cout << "FGADA::init()" << endl;
149
150     char Buffer[numberofbytes];
151
152     // set valid time for this record
153     stamp_time();
154
155     printf("\nInitialising UDP sockets\n");
156     // initialise a "udp" socket
157     fdmsock = new SGSocket( "reddy_pc", "5001", "udp" );
158
159     // open as a client
160     bool result = fdmsock->open(SG_IO_OUT);
161     if (result == false) {
162         printf ("Socket Open Error\n");
163     } else {
164         // Dummy Write FGExternal structure from socket to establish connection
165         int result = fdmsock->write(Buffer, numberofbytes);
166         printf("Connection established.\n");
167     }
168
169     return true;
170 }
171
172
173 // Run an iteration of the EOM.  This is essentially a NOP here
174 // because these values are getting filled in elsewhere based on
175 // external input.
176 bool FGADA::update( int multiloop ) {
177     // cout << "FGADA::update()" << endl;
178
179     char Buffer[numberofbytes];
180
181     // Read FGExternal structure from socket
182     int result = fdmsock->read(Buffer, numberofbytes);
183     // Loop to read from top of socket buffer - Last in first out
184     while (result == numberofbytes) {
185         result = fdmsock->read(Buffer, numberofbytes);
186     }
187
188     // Copy buffer into FGExternal structure
189     memcpy (&sixdof_to_visuals, &Buffer, sizeof (Buffer));
190
191     //cout << endl << sixdof_to_visuals.aux18 << endl;
192     // Close Visuals through message/flag from Flight model
193     if (sixdof_to_visuals.aux18 == 1) {
194         fdmsock->close();
195         ConfirmExitDialog();           
196     }
197     //cout << endl << sixdof_to_visuals.aux18 << endl;
198
199     // Convert from the FGExternal struct to the FGInterface struct (input)
200     copy_from_FGADA();
201
202     return true;
203 }
204
205 // Convert from the FGInterface struct to the FGADA struct (output)
206 bool FGADA::copy_to_FGADA () {
207
208     return true;
209 }
210
211
212 // Convert from the FGADA struct to the FGInterface struct (input)
213 bool FGADA::copy_from_FGADA() {
214
215     // Velocities
216     set_Velocities_Local( V_north, V_east, V_down );
217     set_V_calibrated_kts( V_calibrated_kts );
218
219     // Angular rates 
220     set_Omega_Body( P_body, Q_body, R_body );
221     set_Geocentric_Rates( Latitude_dot, Longitude_dot, Radius_dot );
222
223     //    FG_LOG( FG_FLIGHT, FG_DEBUG, "lon = " << Longitude 
224     //      << " lat_geoc = " << Lat_geocentric << " lat_geod = " << Latitude 
225     //      << " alt = " << Altitude << " sl_radius = " << Sea_level_radius 
226     //      << " radius_to_vehicle = " << Radius_to_vehicle );
227             
228     // Positions
229     set_Geocentric_Position( Lat_geocentric, Lon_geocentric,Radius_to_vehicle );
230     set_Geodetic_Position( Latitude, Longitude, Altitude );
231     set_Euler_Angles( Phi, Theta, Psi );
232
233     // Miscellaneous quantities
234     set_Alpha( Alpha );
235     set_Beta( Beta );
236     set_Gamma_vert_rad( Gamma_vert_rad );
237     set_Sea_level_radius( Sea_level_radius );
238     set_Earth_position_angle( Earth_position_angle );
239     set_Runway_altitude( Runway_altitude );
240     set_sin_lat_geocentric(Lat_geocentric);
241     set_cos_lat_geocentric(Lat_geocentric);
242     set_sin_cos_longitude(Longitude);
243     set_sin_cos_latitude(Latitude);
244     set_Accels_Local( U_dot_local, V_dot_local, W_dot_local );
245     set_Velocities_Ground( U_local, V_local, W_local );
246     set_Accels_CG_Body_N( anxg,anyg,anzg);
247     set_Mach_number( Machno);
248
249     //    printf("sr=%f\n",Sea_level_radius);
250     //    printf("psi = %f %f\n",Psi,Psi*RAD_TO_DEG);    
251
252     // controls
253     controls.set_throttle(0,throttle/131.0);
254     controls.set_elevator(pstick);
255     controls.set_aileron(rstick);
256     controls.set_rudder(rpedal);
257
258     // auxilliary parameters for HUD
259     set_iaux1(sixdof_to_visuals.iaux1);
260     set_iaux2(sixdof_to_visuals.iaux2);
261     set_iaux3(sixdof_to_visuals.iaux3);
262     set_iaux4(sixdof_to_visuals.iaux4);
263     set_iaux5(sixdof_to_visuals.iaux5);
264     set_iaux6(sixdof_to_visuals.iaux6);
265     set_iaux7(sixdof_to_visuals.iaux7);
266     set_iaux8(sixdof_to_visuals.iaux8);
267     set_iaux9(sixdof_to_visuals.iaux9);
268     set_iaux10(sixdof_to_visuals.iaux10);
269     set_iaux11(sixdof_to_visuals.iaux11);
270     set_iaux12(sixdof_to_visuals.iaux12);
271     set_aux1(sixdof_to_visuals.aux1);
272     set_aux2(sixdof_to_visuals.aux2);
273     set_aux3(sixdof_to_visuals.aux3);
274     set_aux4(sixdof_to_visuals.aux4);
275     set_aux5(sixdof_to_visuals.aux5);
276     set_aux6(sixdof_to_visuals.aux6);
277     set_aux7(sixdof_to_visuals.aux7);
278     set_aux8(sixdof_to_visuals.aux8);
279     set_aux9(sixdof_to_visuals.aux9);
280     set_aux10(sixdof_to_visuals.aux10);
281     set_aux11(sixdof_to_visuals.aux11);
282     set_aux12(sixdof_to_visuals.aux12);
283     set_aux13(sixdof_to_visuals.aux13);
284     set_aux14(sixdof_to_visuals.aux14);
285     set_aux15(sixdof_to_visuals.aux15);
286     set_aux16(sixdof_to_visuals.aux16);
287     set_aux17(sixdof_to_visuals.aux17);
288     set_aux18(sixdof_to_visuals.aux18);
289     
290     cout << endl << sixdof_to_visuals.aux18 << endl;
291
292     return true;
293 }