JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGJSBBase.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGJSBBase.cpp
4 Author: Jon S. Berndt
5 Date started: 07/01/01
6 Purpose: Encapsulates the JSBBase object
7
8 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.org) -------------
9
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU Lesser General Public License as published by the Free
12 Software Foundation; either version 2 of the License, or (at your option) any
13 later version.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18 details.
19
20 You should have received a copy of the GNU Lesser General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be
25 found on the world wide web at http://www.gnu.org.
26
27FUNCTIONAL DESCRIPTION
28--------------------------------------------------------------------------------
29
30HISTORY
31--------------------------------------------------------------------------------
3207/01/01 JSB Created
33
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35INCLUDES
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38#include "FGJSBBase.h"
39#include "models/FGAtmosphere.h"
40
41using namespace std;
42
43namespace JSBSim {
44
45/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46CLASS IMPLEMENTATION
47%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49char FGJSBBase::highint[5] = {27, '[', '1', 'm', '\0' };
50char FGJSBBase::halfint[5] = {27, '[', '2', 'm', '\0' };
51char FGJSBBase::normint[6] = {27, '[', '2', '2', 'm', '\0' };
52char FGJSBBase::reset[5] = {27, '[', '0', 'm', '\0' };
53char FGJSBBase::underon[5] = {27, '[', '4', 'm', '\0' };
54char FGJSBBase::underoff[6] = {27, '[', '2', '4', 'm', '\0' };
55char FGJSBBase::fgblue[6] = {27, '[', '3', '4', 'm', '\0' };
56char FGJSBBase::fgcyan[6] = {27, '[', '3', '6', 'm', '\0' };
57char FGJSBBase::fgred[6] = {27, '[', '3', '1', 'm', '\0' };
58char FGJSBBase::fggreen[6] = {27, '[', '3', '2', 'm', '\0' };
59char FGJSBBase::fgdef[6] = {27, '[', '3', '9', 'm', '\0' };
60
61const string FGJSBBase::needed_cfg_version = "2.0";
62const string FGJSBBase::JSBSim_version = JSBSIM_VERSION " " __DATE__ " " __TIME__ ;
63
64short FGJSBBase::debug_lvl = 1;
65
66//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
67
69{
70 highint[0]='\0';
71 halfint[0]='\0';
72 normint[0]='\0';
73 reset[0]='\0';
74 underon[0]='\0';
75 underoff[0]='\0';
76 fgblue[0]='\0';
77 fgcyan[0]='\0';
78 fgred[0]='\0';
79 fggreen[0]='\0';
80 fgdef[0]='\0';
81}
82
83//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84
85string FGJSBBase::CreateIndexedPropertyName(const string& Property, int index)
86{
87 ostringstream buf;
88 buf << Property << '[' << index << ']';
89 return buf.str();
90}
91//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92
93} // namespace JSBSim
94
static char fgcyan[6]
cyan text
Definition FGJSBBase.h:164
static char fggreen[6]
green text
Definition FGJSBBase.h:168
static char normint[6]
normal intensity text
Definition FGJSBBase.h:154
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char fgblue[6]
blue text
Definition FGJSBBase.h:162
void disableHighLighting(void)
Disables highlighting in the console output.
Definition FGJSBBase.cpp:68
static char underon[5]
underlines text
Definition FGJSBBase.h:158
static char halfint[5]
low intensity text
Definition FGJSBBase.h:152
static char fgdef[6]
default text
Definition FGJSBBase.h:170
static char reset[5]
resets text properties
Definition FGJSBBase.h:156
static char underoff[6]
underline off
Definition FGJSBBase.h:160
static char highint[5]
highlights text
Definition FGJSBBase.h:150