]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBallistic.hxx
b6bf789d843d633f2da440069a9aa39d0e6eb766
[flightgear.git] / src / AIModel / AIBallistic.hxx
1 // FGAIBallistic - AIBase derived class creates an AI ballistic object
2 //
3 // Written by David Culp, started November 2003.
4 // - davidculp2@comcast.net
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License as
8 // published by the Free Software Foundation; either version 2 of the
9 // License, or (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 #ifndef _FG_AIBALLISTIC_HXX
21 #define _FG_AIBALLISTIC_HXX
22
23 #include "AIManager.hxx"
24 #include "AIBase.hxx"
25
26
27 class FGAIBallistic : public FGAIBase {
28         
29 public:
30         
31     FGAIBallistic(FGAIManager* mgr);
32     ~FGAIBallistic();
33         
34     bool init();
35     virtual void bind();
36     virtual void unbind();
37     void update(double dt);
38
39     void setAzimuth( double az );
40     void setElevation( double el );
41     void setStabilization( bool val );
42     void setDragArea( double a );
43
44 private:
45
46     double azimuth;         // degrees true
47     double elevation;       // degrees
48     double hs;              // horizontal speed (fps)
49     bool aero_stabilized;   // if true, object will point where it's going
50     double drag_area;       // equivalent drag area in ft2
51     void Run(double dt);
52 };
53
54 #endif  // _FG_AIBALLISTIC_HXX