]> git.mxchange.org Git - flightgear.git/blob - Slew/slew.cxx
07e4bcab77a07020b80c8bae7677416fa938e81f
[flightgear.git] / Slew / slew.cxx
1 // slew.cxx -- the "slew" flight model
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #include <math.h>
26
27 #include "slew.hxx"
28
29 #include <Flight/flight.hxx>
30 #include <Aircraft/aircraft.hxx>
31 #include <Controls/controls.hxx>
32 #include <Include/fg_constants.h>
33
34
35 // reset flight params to a specific position
36 void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading) {
37     FGState *f;
38     
39     f = current_aircraft.fdm_state;
40
41     /*
42     f->pos_x = pos_x;
43     f->pos_y = pos_y;
44     f->pos_z = pos_z;
45
46     f->vel_x = 0.0;
47     f->vel_y = 0.0;
48     f->vel_z = 0.0;
49
50     f->Phi = 0.0;
51     f->Theta = 0.0;
52     f->Psi = 0.0;
53
54     f->vel_Phi = 0.0;
55     f->vel_Theta = 0.0;
56     f->vel_Psi = 0.0;
57
58     f->Psi = heading;
59     */
60 }
61
62
63 // update position based on inputs, positions, velocities, etc.
64 void fgSlewUpdate( void ) {
65     FGState *f;
66     fgCONTROLS *c;
67
68     f = current_aircraft.fdm_state;
69     c = current_aircraft.controls;
70
71     /* f->Psi += ( c->aileron / 8 );
72     if ( f->Psi > FG_2PI ) {
73         f->Psi -= FG_2PI;
74     } else if ( f->Psi < 0 ) {
75         f->Psi += FG_2PI;
76     }
77
78     f->vel_x = -c->elev;
79
80     f->pos_x = f->pos_x + (cos(f->Psi) * f->vel_x);
81     f->pos_y = f->pos_y + (sin(f->Psi) * f->vel_x); */
82 }
83
84
85 // $Log$
86 // Revision 1.3  1998/12/05 15:54:16  curt
87 // Renamed class fgFLIGHT to class FGState as per request by JSB.
88 //
89 // Revision 1.2  1998/10/17 01:34:17  curt
90 // C++ ifying ...
91 //
92 // Revision 1.1  1998/10/16 23:27:50  curt
93 // C++-ifying.
94 //
95 // Revision 1.13  1998/04/25 22:06:29  curt
96 // Edited cvs log messages in source files ... bad bad bad!
97 //
98 // Revision 1.12  1998/04/08 23:35:30  curt
99 // Tweaks to Gnu automake/autoconf system.
100 //
101 // Revision 1.11  1998/02/07 15:29:39  curt
102 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
103 // <chotchkiss@namg.us.anritsu.com>
104 //
105 // Revision 1.10  1998/01/27 00:47:53  curt
106 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
107 // system and commandline/config file processing code.
108 //
109 // Revision 1.9  1998/01/19 19:27:06  curt
110 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
111 // This should simplify things tremendously.
112 //
113 // Revision 1.8  1998/01/19 18:40:30  curt
114 // Tons of little changes to clean up the code and to remove fatal errors
115 // when building with the c++ compiler.
116 //
117 // Revision 1.7  1997/12/15 23:54:42  curt
118 // Add xgl wrappers for debugging.
119 // Generate terrain normals on the fly.
120 //
121 // Revision 1.6  1997/08/27 03:30:11  curt
122 // Changed naming scheme of basic shared structures.
123 //
124 // Revision 1.5  1997/07/19 22:35:06  curt
125 // Moved fiddled with PI to avoid compiler warnings.
126 //
127 // Revision 1.4  1997/06/21 17:12:51  curt
128 // Capitalized subdirectory names.
129 //
130 // Revision 1.3  1997/05/29 22:40:00  curt
131 // Working on incorporating the LaRCsim flight model.
132 //
133 // Revision 1.2  1997/05/29 12:30:19  curt
134 // Some initial mods to work better in a timer environment.
135 //
136 // Revision 1.1  1997/05/29 02:29:42  curt
137 // Moved to their own directory.
138 //
139 // Revision 1.2  1997/05/23 15:40:37  curt
140 // Added GNU copyright headers.
141 //
142 // Revision 1.1  1997/05/16 16:04:45  curt
143 // Initial revision.
144 //
145