]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/attitude_indicator.cxx
Make the AI models a bit more intelligent. The Gear should be extended and retracted...
[flightgear.git] / src / Instrumentation / attitude_indicator.cxx
index 3badf205557b7bcd16d9d81bcd2278eeeabfdd40..a6cdfba2628a0e66192f4c1e90c9afefcc12455c 100644 (file)
@@ -14,7 +14,6 @@
 
 
 AttitudeIndicator::AttitudeIndicator ()
-    : _tumble(0)
 {
 }
 
@@ -33,6 +32,16 @@ AttitudeIndicator::init ()
     _tumble_flag_node =
         fgGetNode("/instrumentation/attitude-indicator/config/tumble-flag",
                   true);
+    _caged_node =
+        fgGetNode("/instrumentation/attitude-indicator/caged-flag", true);
+    _tumble_node =
+        fgGetNode("/instrumentation/attitude-indicator/tumble-norm", true);
+    _pitch_int_node =
+        fgGetNode("/instrumentation/attitude-indicator/internal-pitch-deg",
+                  true);
+    _roll_int_node =
+        fgGetNode("/instrumentation/attitude-indicator/internal-roll-deg",
+                  true);
     _pitch_out_node =
         fgGetNode("/instrumentation/attitude-indicator/indicated-pitch-deg",
                   true);
@@ -60,6 +69,13 @@ AttitudeIndicator::unbind ()
 void
 AttitudeIndicator::update (double dt)
 {
+                                // If it's caged, it doesn't indicate
+    if (_caged_node->getBoolValue()) {
+        _roll_int_node->setDoubleValue(0.0);
+        _pitch_int_node->setDoubleValue(0.0);
+        return;
+    }
+
                                 // Get the spin from the gyro
     _gyro.set_power_norm(_suction_node->getDoubleValue()/5.0);
     _gyro.update(dt);
@@ -75,39 +91,59 @@ AttitudeIndicator::update (double dt)
                                 // Calculate the tumble for the
                                 // next pass.
     if (_tumble_flag_node->getBoolValue()) {
-        if (_tumble < 1.0) {
-            if (fabs(roll) > 45.0) {
-                double target = (fabs(roll) - 45.0) / 45.0;
-                if (_tumble < target)
-                    _tumble = target;
-            }
-            if (fabs(pitch) > 45.0) {
-                double target = (fabs(pitch) - 45.0) / 45.0;
-                if (_tumble < target)
-                    _tumble = target;
-            }
-            if (_tumble > 1.0) {
-                _tumble = 1.0;
-            }
+        double tumble = _tumble_node->getDoubleValue();
+        if (fabs(roll) > 45.0) {
+            double target = (fabs(roll) - 45.0) / 45.0;
+            target *= target;   // exponential past +-45 degrees
+            if (roll < 0)
+                target = -target;
+
+            if (fabs(target) > fabs(tumble))
+                tumble = target;
+
+            if (tumble > 1.0)
+                tumble = 1.0;
+            else if (tumble < -1.0)
+                tumble = -1.0;
         }
-                                // Reerect in 5 minutes
-        _tumble -= dt/300.0;
-        if (_tumble < 0.0)
-            _tumble = 0.0;
-
-        responsiveness *= ((1.0 - _tumble) * (1.0 - _tumble) *
-                           (1.0 - _tumble) * (1.0 - _tumble));
-
+                                    // Reerect in 5 minutes
+        double step = dt/300.0;
+        if (tumble < -step)
+            tumble += step;
+        else if (tumble > step)
+            tumble -= step;
+
+        roll += tumble * 45;
+        _tumble_node->setDoubleValue(tumble);
     }
 
-    roll = fgGetLowPass(_roll_out_node->getDoubleValue(), roll,
+    roll = fgGetLowPass(_roll_int_node->getDoubleValue(), roll,
                         responsiveness);
-    pitch = fgGetLowPass(_pitch_out_node->getDoubleValue(), pitch,
+    pitch = fgGetLowPass(_pitch_int_node->getDoubleValue(), pitch,
                          responsiveness);
 
                                 // Assign the new values
-    _roll_out_node->setDoubleValue(roll);
-    _pitch_out_node->setDoubleValue(pitch);
+    _roll_int_node->setDoubleValue(roll);
+    _pitch_int_node->setDoubleValue(pitch);
+
+    // add in a gyro underspin "error" if gyro is spinning too slowly
+    const double spin_thresh = 0.8;
+    const double max_roll_error = 40.0;
+    const double max_pitch_error = 12.0;
+    double roll_error;
+    double pitch_error;
+    if ( spin <= spin_thresh ) {
+        double roll_error_factor = (spin_thresh - spin) / spin_thresh;
+        double pitch_error_factor = (spin_thresh - spin) / spin_thresh;
+        roll_error = roll_error_factor * roll_error_factor * max_roll_error;
+        pitch_error = pitch_error_factor * pitch_error_factor * max_pitch_error;
+    } else {
+        roll_error = 0.0;
+        pitch_error = 0.0;
+    }
+
+    _roll_out_node->setDoubleValue(roll + roll_error);
+    _pitch_out_node->setDoubleValue(pitch + pitch_error);
 }
 
 // end of attitude_indicator.cxx