]> git.mxchange.org Git - flightgear.git/blob - src/WeatherCM/FGWindItem.h
1376e453debf8d2da6a15141fe92f3894357a652
[flightgear.git] / src / WeatherCM / FGWindItem.h
1 /*****************************************************************************
2
3  Header:       FGWindItem.h     
4  Author:       Christian Mayer
5  Date started: 28.05.99
6
7  ---------- Copyright (C) 1999  Christian Mayer (vader@t-online.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 wind 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 *****************************************************************************/
36
37 /****************************************************************************/
38 /* SENTRY                                                                   */
39 /****************************************************************************/
40 #ifndef FGWindItem_H
41 #define FGWindItem_H
42
43 /****************************************************************************/
44 /* INCLUDES                                                                 */
45 /****************************************************************************/
46 #include <Math/point3d.hxx>
47 #include "FGWeatherDefs.h"
48                 
49 /****************************************************************************/
50 /* DEFINES                                                                  */
51 /****************************************************************************/
52 class FGWindItem;
53 FGWindItem operator-(const FGWindItem& arg);
54
55 /****************************************************************************/
56 /* CLASS DECLARATION                                                        */
57 /****************************************************************************/
58 class FGWindItem
59 {
60 private:
61     Point3D value;
62     WeatherPrecition alt;
63
64 protected:
65 public:
66
67     FGWindItem(const WeatherPrecition& a, const Point3D& v) {alt = a; value = v;}
68     FGWindItem(const Point3D& v)                            {alt = 0.0; value = v;}
69     FGWindItem()                                            {alt = 0.0; value = Point3D(0.0);}
70
71     Point3D          getValue() const { return value; };
72     WeatherPrecition getAlt()   const { return alt;   };
73
74     FGWindItem& operator*= (const WeatherPrecition& arg);
75     FGWindItem& operator+= (const FGWindItem& arg);
76     FGWindItem& operator-= (const FGWindItem& arg);
77
78     friend bool operator<(const FGWindItem& arg1, const FGWindItem& arg2);
79     friend FGWindItem operator-(const FGWindItem& arg);
80
81 };
82
83 inline FGWindItem& FGWindItem::operator*= (const WeatherPrecition& arg)
84 {
85   value *= arg;
86   return *this;
87 }
88
89 inline FGWindItem& FGWindItem::operator+= (const FGWindItem& arg)
90 {
91   value += arg.value;
92   return *this;
93 }
94
95 inline FGWindItem& FGWindItem::operator-= (const FGWindItem& arg)
96 {
97   value -= arg.value;
98   return *this;
99 }
100
101
102 inline FGWindItem operator-(const FGWindItem& arg)
103 {
104     return FGWindItem(arg.alt, -arg.value);
105 }
106 /****************************************************************************/
107 #endif /*FGWindItem_H*/