]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGColumnVector4.cpp
Updated to match changes in radiostack.[ch]xx
[flightgear.git] / src / FDM / JSBSim / FGColumnVector4.cpp
index 30a100913e38ab20ff6ac19d19d93cc49a4b3132..8a0cd99f2bd82440663b44f9400d4e3146243c17 100644 (file)
@@ -32,7 +32,7 @@ FGColumnVector4::FGColumnVector4(void)
   rowCtr = 1;
   data[1]=0;data[2]=0;data[3]=0;data[4]=0;
 
-  if (debug_lvl & 2) cout << "Instantiated: FGColumnVector4" << endl;
+  Debug(0);
 }
 
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -42,14 +42,14 @@ FGColumnVector4::FGColumnVector4(double A, double B, double C, double D)
   rowCtr = 1;
   data[1]=0;data[2]=0;data[3]=0;data[4]=0;
 
-  if (debug_lvl & 2) cout << "Instantiated: FGColumnVector4" << endl;
+  Debug(0);
 }
 
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 FGColumnVector4::~FGColumnVector4(void)
 {
-  if (debug_lvl & 2) cout << "Destroyed:    FGColumnVector4" << endl;
+  Debug(1);
 }
 
 
@@ -64,7 +64,7 @@ FGColumnVector4::FGColumnVector4(const FGColumnVector4& b)
 
   rowCtr = 1;
 
-  if (debug_lvl & 2) cout << "Instantiated: FGColumnVector4" << endl;
+  Debug(0);
 }
 
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -76,9 +76,6 @@ FGColumnVector4 FGColumnVector4::operator=(const FGColumnVector4& b)
   data[3] = b.data[3];
   data[4] = b.data[4];
   rowCtr = 1;
-
-  if (debug_lvl & 2) cout << "Instantiated: FGColumnVector4" << endl;
-  
   return *this;
 }
 
@@ -270,11 +267,47 @@ FGColumnVector4& FGColumnVector4::operator<<(const double ff)
   if (++rowCtr > 4) rowCtr = 1;
   return *this;
 }
-
-//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
+//    The bitmasked value choices are as follows:
+//    unset: In this case (the default) JSBSim would only print
+//       out the normally expected messages, essentially echoing
+//       the config files as they are read. If the environment
+//       variable is not set, debug_lvl is set to 1 internally
+//    0: This requests JSBSim not to output any messages
+//       whatsoever.
+//    1: This value explicity requests the normal JSBSim
+//       startup messages
+//    2: This value asks for a message to be printed out when
+//       a class is instantiated
+//    4: When this value is set, a message is displayed when a
+//       FGModel object executes its Run() method
+//    8: When this value is set, various runtime state variables
+//       are printed out periodically
+//    16: When set various parameters are sanity checked and
+//       a message is printed out when they go out of bounds
 
 void FGColumnVector4::Debug(int from)
 {
-    //TODO: Add your source code here
+  if (debug_lvl <= 0) return;
+
+  if (debug_lvl & 1) { // Standard console startup message output
+  }
+  if (debug_lvl & 2 ) { // Instantiation/Destruction notification
+    if (from == 0) cout << "Instantiated: FGColumnVector4" << endl;
+    if (from == 1) cout << "Destroyed:    FGColumnVector4" << endl;
+  }
+  if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
+  }
+  if (debug_lvl & 8 ) { // Runtime state variables
+  }
+  if (debug_lvl & 16) { // Sanity checking
+  }
+  if (debug_lvl & 64) { // Sanity checking
+    if (from == 0) { // Constructor
+      cout << IdSrc << endl;
+      cout << IdHdr << endl;
+    }
+  }
 }
 
+