]> git.mxchange.org Git - flightgear.git/blob - src/WeatherCM/FGTurbulenceItem.h
Additional changes including updates to JSBSim to try to get interface and
[flightgear.git] / src / WeatherCM / FGTurbulenceItem.h
1 /*****************************************************************************
2
3  Header:       FGTurbulenceItem.h       
4  Author:       Christian Mayer
5  Date started: 28.05.99
6
7  -------- Copyright (C) 1999 Christian Mayer (fgfs@christianmayer.de) --------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  details.
18
19  You should have received a copy of the GNU General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 FUNCTIONAL DESCRIPTION
27 ------------------------------------------------------------------------------
28 turbulence item that gets stored in the micro weather class
29
30 HISTORY
31 ------------------------------------------------------------------------------
32 28.05.1999 Christian Mayer      Created
33 16.06.1999 Durk Talsma          Portability for Linux
34 20.06.1999 Christian Mayer      added lots of consts
35 11.10.1999 Christian Mayer      changed set<> to map<> on Bernie Bright's 
36                                 suggestion
37 19.10.1999 Christian Mayer      change to use PLIB's sg instead of Point[2/3]D
38                                 and lots of wee code cleaning
39 21.12.1999 Christian Mayer      Added a fix for compatibility to gcc 2.8 which
40                                 suggested by Oliver Delise
41 *****************************************************************************/
42
43 /****************************************************************************/
44 /* SENTRY                                                                   */
45 /****************************************************************************/
46 #ifndef FGTurbulenceItem_H
47 #define FGTurbulenceItem_H
48
49 /****************************************************************************/
50 /* INCLUDES                                                                 */
51 /****************************************************************************/
52
53 #ifdef HAVE_CONFIG_H
54 #  include <config.h>
55 #endif
56
57 #include <simgear/compiler.h>
58
59 #ifdef HAVE_WINDOWS_H
60 #  include <windows.h>
61 #endif
62
63 #include <plib/sg.h>
64
65 #include "FGWeatherDefs.h"
66
67 /****************************************************************************/
68 /* DEFINES                                                                  */
69 /****************************************************************************/
70 class FGTurbulenceItem;
71 FGTurbulenceItem operator-(const FGTurbulenceItem& arg);
72
73 #if ( __GNU_C__ == 2 && __GNU_MAJOR__ < 9 )
74 #  define const_sgVec3 const sgVec3
75 #else
76 #  define const_sgVec3 const sgVec3&
77 #endif
78
79 /****************************************************************************/
80 /* CLASS DECLARATION                                                        */
81 /****************************************************************************/
82 class FGTurbulenceItem
83 {
84 private:
85     sgVec3 value;
86
87 protected:
88 public:
89     FGTurbulenceItem(const_sgVec3 v)    { sgCopyVec3(value, v);}
90     FGTurbulenceItem()                  { sgZeroVec3(value);   }
91
92     void          getValue(sgVec3 ret) const { sgCopyVec3(ret, value); };
93     const sgVec3* getValue(void)       const { return &value; };
94
95     WeatherPrecision x(void) const { return value[0]; };
96     WeatherPrecision y(void) const { return value[1]; };
97     WeatherPrecision z(void) const { return value[2]; };
98
99     FGTurbulenceItem& operator*= (const WeatherPrecision  arg);
100     FGTurbulenceItem& operator+= (const FGTurbulenceItem& arg);
101     FGTurbulenceItem& operator-= (const FGTurbulenceItem& arg);
102
103     friend FGTurbulenceItem operator-(const FGTurbulenceItem& arg);
104 };
105
106 inline FGTurbulenceItem& FGTurbulenceItem::operator*= (const WeatherPrecision arg)
107 {
108   sgScaleVec3(value, arg);
109   return *this;
110 }
111
112 inline FGTurbulenceItem& FGTurbulenceItem::operator+= (const FGTurbulenceItem& arg)
113 {
114   sgAddVec3(value, *arg.getValue());
115   return *this;
116 }
117
118 inline FGTurbulenceItem& FGTurbulenceItem::operator-= (const FGTurbulenceItem& arg)
119 {
120   sgSubVec3(value, *arg.getValue());
121   return *this;
122 }
123
124 inline FGTurbulenceItem operator-(const FGTurbulenceItem& arg)
125 {
126     sgVec3 temp;
127
128     sgNegateVec3(temp, *arg.getValue());
129
130     return FGTurbulenceItem(temp);
131 }
132
133 /****************************************************************************/
134 #endif /*FGTurbulenceItem_H*/
135
136
137
138