Changeset 197:93f89e9049be
- Timestamp:
- 05/27/12 11:15:19 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r191 r197 12 12 import traceback 13 13 14 from collections import deque 15 16 #--------------------------------------------------------------------------------------- 17 18 class SmoothedValue(object): 19 """A smoothed value.""" 20 def __init__(self): 21 """Construct the value.""" 22 self._deque = deque() 23 self._sum = 0 24 25 def add(self, length, value): 26 """Add the given value and smooth with the given length.""" 27 dequeLength = len(self._deque) 28 while dequeLength>=length: 29 self._sum -= self._deque.popleft() 30 dequeLength -= 1 31 32 self._sum += value 33 self._deque.append(value) 34 35 def get(self): 36 """Get the average.""" 37 return self._sum / len(self._deque) 38 14 39 #--------------------------------------------------------------------------------------- 15 40 … … 36 61 self._checkers = [] 37 62 63 config = flight.config 38 64 # Loggers 39 65 … … 58 84 self._checkers.append(checks.SpoilerLogger()) 59 85 60 if flight.config.isMessageTypeFS(const.MESSAGETYPE_VISIBILITY):86 if config.isMessageTypeFS(const.MESSAGETYPE_VISIBILITY): 61 87 self._checkers.append(checks.VisibilityChecker()) 62 88 … … 66 92 # queried from it, so the model should have a reference to the GUI as 67 93 # well and access such data via the GUI! 68 if flight.config.onlineACARS and not flight.entranceExam:94 if config.onlineACARS and not flight.entranceExam: 69 95 self._checkers.append(checks.ACARSSender(flight._gui)) 70 96 … … 93 119 self._checkers.append(checks.SpeedChecker()) 94 120 self._checkers.append(checks.VSChecker()) 95 self._checkers.append(checks.OverspeedChecker()) 121 122 timeout = 5.0 + config.realIASSmoothingLength - 1 123 self._checkers.append(checks.OverspeedChecker(timeout = timeout)) 124 96 125 self._checkers.append(checks.StallChecker()) 97 126 … … 99 128 100 129 self._checkers.append(checks.ReverserChecker()) 130 131 self._smoothedIAS = SmoothedValue() 132 self._smoothedVS = SmoothedValue() 101 133 102 134 @property … … 132 164 133 165 def handleState(self, aircraftState): 134 """Called when the state of the aircraft changes.""" 166 """Called when the state of the aircraft changes. 167 168 This is the function that the simulator calls directly with the new 169 state.""" 170 config = self._flight.config 171 172 self._smoothedIAS.add(config.realIASSmoothingLength, aircraftState.ias) 173 aircraftState.smoothedIAS = self._smoothedIAS.get() 174 175 print "handleState, realVSSmoothingLength:", config.realVSSmoothingLength 176 self._smoothedVS.add(config.realVSSmoothingLength, aircraftState.vs) 177 aircraftState.smoothedVS = self._smoothedVS.get() 178 135 179 for checker in self._checkers: 136 180 try: … … 753 797 754 798 #--------------------------------------------------------------------------------------- 799 800 if __name__ == "__main__": 801 value = SmoothedValue() 802 803 print "Adding 1, 12.0" 804 value.add(1, 12.0) 805 print value.get() 806 807 print "Adding 1, 15.0" 808 value.add(1, 15.0) 809 print value.get() 810 811 print "Adding 2, 18.0" 812 value.add(2, 18.0) 813 print value.get() 814 815 print "Adding 2, 20.0" 816 value.add(2, 20.0) 817 print value.get() 818 819 print "Adding 5, 22.0" 820 value.add(5, 22.0) 821 print value.get() 822 823 print "Adding 5, 25.0" 824 value.add(5, 25.0) 825 print value.get() 826 827 print "Adding 5, 29.0" 828 value.add(5, 29.0) 829 print value.get() 830 831 print "Adding 5, 21.0" 832 value.add(5, 21.0) 833 print value.get() 834 835 print "Adding 5, 26.0" 836 value.add(5, 26.0) 837 print value.get() 838 839 print "Adding 2, 30.0" 840 value.add(2, 30.0) 841 print value.get() 842 843 print "Adding 2, 55.0" 844 value.add(2, 55.0) 845 print value.get() 846 847 #--------------------------------------------------------------------------------------- -
src/mlx/checks.py
r192 r197 619 619 """Check if the fault condition holds.""" 620 620 speedLimit = aircraft.getFlapsSpeedLimit(state.flapsSet) 621 return speedLimit is not None and state. ias>speedLimit621 return speedLimit is not None and state.smoothedIAS>speedLimit 622 622 623 623 def logFault(self, flight, aircraft, logger, oldState, state): … … 649 649 def isCondition(self, flight, aircraft, oldState, state): 650 650 """Check if the fault condition holds.""" 651 return state.gearsDown and state. ias>aircraft.gearSpeedLimit651 return state.gearsDown and state.smoothedIAS>aircraft.gearSpeedLimit 652 652 653 653 def logFault(self, flight, aircraft, logger, oldState, state): … … 803 803 class OverspeedChecker(PatientFaultChecker): 804 804 """Check if Vne has been exceeded.""" 805 def __init__(self ):805 def __init__(self, timeout = 5.0): 806 806 """Construct the checker.""" 807 super(OverspeedChecker, self).__init__(timeout = 5.0)807 super(OverspeedChecker, self).__init__(timeout = timeout) 808 808 809 809 def isCondition(self, flight, aircraft, oldState, state): … … 974 974 def isCondition(self, flight, aircraft, oldState, state): 975 975 """Check if the fault condition holds.""" 976 vs = state. vs976 vs = state.smoothedVS 977 977 altitude = state.altitude 978 978 return vs < -8000 or vs > 8000 or \ … … 988 988 def logFault(self, flight, aircraft, logger, oldState, state): 989 989 """Log the fault.""" 990 vs = state. vs990 vs = state.smoothedVS 991 991 992 992 message = "Vertical speed was %.0f feet/min" % (vs,) -
src/mlx/config.py
r183 r197 126 126 self._syncFSTime = False 127 127 self._usingFS2Crew = False 128 self._iasSmoothingLength = -2 129 self._vsSmoothingLength = -2 128 130 129 131 self._pirepDirectory = None … … 273 275 if usingFS2Crew!=self._usingFS2Crew: 274 276 self._usingFS2Crew = usingFS2Crew 277 self._modified = True 278 279 @property 280 def iasSmoothingLength(self): 281 """Get the number of samples over which the IAS is averaged for the 282 smoothed IAS calculation. It may be negative, in which case smoothing 283 is disabled, but we nevertheless store the number of seconds in case it 284 may become useful later.""" 285 return self._iasSmoothingLength 286 287 @property 288 def realIASSmoothingLength(self): 289 """Get the real smoothing length of IAS.""" 290 return max(self._iasSmoothingLength, 1) 291 292 @iasSmoothingLength.setter 293 def iasSmoothingLength(self, iasSmoothingLength): 294 """Set the number of samples over which the IAS is averaged for the 295 smoothed IAS calculation.""" 296 if iasSmoothingLength!=self._iasSmoothingLength: 297 self._iasSmoothingLength = iasSmoothingLength 298 self._modified = True 299 300 @property 301 def vsSmoothingLength(self): 302 """Get the number of samples over which the VS is averaged for the 303 smoothed VS calculation. It may be negative, in which case smoothing 304 is disabled, but we nevertheless store the number of seconds in case it 305 may become useful later.""" 306 return self._vsSmoothingLength 307 308 @property 309 def realVSSmoothingLength(self): 310 """Get the real smoothing length of VS.""" 311 return max(self._vsSmoothingLength, 1) 312 313 @vsSmoothingLength.setter 314 def vsSmoothingLength(self, vsSmoothingLength): 315 """Set the number of samples over which the VS is averaged for the 316 smoothed VS calculation.""" 317 if vsSmoothingLength!=self._vsSmoothingLength: 318 self._vsSmoothingLength = vsSmoothingLength 275 319 self._modified = True 276 320 … … 455 499 "usingFS2Crew", 456 500 False) 501 self._iasSmoothingLength = int(self._get(config, "general", 502 "iasSmoothingLength", 503 -2)) 504 self._vsSmoothingLength = int(self._get(config, "general", 505 "vsSmoothingLength", 506 -2)) 457 507 self._pirepDirectory = self._get(config, "general", 458 508 "pirepDirectory", None) … … 517 567 config.set("general", "usingFS2Crew", 518 568 "yes" if self._usingFS2Crew else "no") 569 config.set("general", "iasSmoothingLength", 570 str(self._iasSmoothingLength)) 571 config.set("general", "vsSmoothingLength", 572 str(self._vsSmoothingLength)) 519 573 520 574 if self._pirepDirectory is not None: -
src/mlx/const.py
r191 r197 4 4 5 5 # The version of the program 6 VERSION="0. 1"6 VERSION="0.2" 7 7 8 8 #------------------------------------------------------------------------------- -
src/mlx/fs.py
r170 r197 173 173 - bank: the bank of the aircraft in degrees. Positive means bank left, 174 174 negative means bank right (float) 175 - ias: the indicated airspeed in knots (float) 175 - ias: the indicated airspeed in knots (float) 176 - smoothedIAS: the smoothed IAS in knots (float) 176 177 - mach: the airspeed in mach (float) 177 178 - groundSpeed: the ground speed (float) 178 179 - vs: the vertical speed in feet/minutes (float) 180 - smoothedVS: the smoothed VS in feet/minutes (float) 179 181 - radioAltitude: the radio altitude of the aircraft in feet (float) 180 182 - altitude: the altitude of the aircraft in feet (float) -
src/mlx/gui/monitor.py
r89 r197 72 72 table.attach(self._bank, 9, 10, 1, 2) 73 73 74 (label, self._vs) = self._createLabeledEntry("VS:", 5)74 (label, self._vs) = self._createLabeledEntry("VS:", 13) 75 75 table.attach(label, 10, 11, 1, 2) 76 76 table.attach(self._vs, 11, 12, 1, 2) 77 77 78 (label, self._ias) = self._createLabeledEntry("IAS:", 4)78 (label, self._ias) = self._createLabeledEntry("IAS:", 11) 79 79 table.attach(label, 0, 1, 2, 3) 80 80 table.attach(self._ias, 1, 2, 2, 3) … … 259 259 self._pitch.set_text("%.0f" % (aircraftState.pitch,)) 260 260 self._bank.set_text("%.0f" % (aircraftState.bank,)) 261 self._vs.set_text("%.0f" % (aircraftState.vs,)) 262 self._ias.set_text("%.0f" % (aircraftState.ias,)) 261 self._vs.set_text("%.0f (%.0f)" % (aircraftState.vs, 262 aircraftState.smoothedVS)) 263 self._ias.set_text("%.0f (%.0f)" % (aircraftState.ias, 264 aircraftState.smoothedIAS)) 263 265 self._mach.set_text("%.2f" % (aircraftState.mach,)) 264 266 self._groundSpeed.set_text("%.0f" % (aircraftState.groundSpeed,)) -
src/mlx/gui/prefs.py
r186 r197 229 229 self._syncFSTime.set_active(config.syncFSTime) 230 230 self._usingFS2Crew.set_active(config.usingFS2Crew) 231 232 self._setSmoothing(self._iasSmoothingEnabled, self._iasSmoothingLength, 233 config.iasSmoothingLength) 234 self._setSmoothing(self._vsSmoothingEnabled, self._vsSmoothingLength, 235 config.vsSmoothingLength) 231 236 232 237 pirepDirectory = config.pirepDirectory … … 269 274 config.syncFSTime = self._syncFSTime.get_active() 270 275 config.usingFS2Crew = self._usingFS2Crew.get_active() 276 config.iasSmoothingLength = self._getSmoothing(self._iasSmoothingEnabled, 277 self._iasSmoothingLength) 278 config.vsSmoothingLength = self._getSmoothing(self._vsSmoothingEnabled, 279 self._vsSmoothingLength) 271 280 config.pirepDirectory = text2unicode(self._pirepDirectory.get_text()) 272 281 … … 366 375 self._usingFS2Crew.set_tooltip_text(xstr("prefs_usingFS2Crew_tooltip")) 367 376 simulatorBox.pack_start(self._usingFS2Crew, False, False, 4) 377 378 (iasSmoothingBox, self._iasSmoothingEnabled, 379 self._iasSmoothingLength) = \ 380 self._createSmoothingBox(xstr("prefs_iasSmoothingEnabled"), 381 xstr("prefs_iasSmoothingEnabledTooltip")) 382 simulatorBox.pack_start(iasSmoothingBox, False, False, 4) 383 384 (vsSmoothingBox, self._vsSmoothingEnabled, 385 self._vsSmoothingLength) = \ 386 self._createSmoothingBox(xstr("prefs_vsSmoothingEnabled"), 387 xstr("prefs_vsSmoothingEnabledTooltip")) 388 simulatorBox.pack_start(vsSmoothingBox, False, False, 4) 368 389 369 390 pirepBox = gtk.HBox() … … 401 422 402 423 return vbox 424 425 def _createSmoothingBox(self, checkBoxLabel, checkBoxTooltip, 426 maxSeconds = 10): 427 """Create a HBox that contains entry fields for smoothing some value.""" 428 smoothingBox = gtk.HBox() 429 430 smoothingEnabled = gtk.CheckButton(checkBoxLabel) 431 smoothingEnabled.set_use_underline(True) 432 smoothingEnabled.set_tooltip_text(checkBoxTooltip) 433 434 smoothingBox.pack_start(smoothingEnabled, False, False, 0) 435 436 smoothingLength = gtk.SpinButton() 437 smoothingLength.set_numeric(True) 438 smoothingLength.set_range(2, maxSeconds) 439 smoothingLength.set_increments(1, 1) 440 smoothingLength.set_alignment(1.0) 441 smoothingLength.set_width_chars(2) 442 443 smoothingBox.pack_start(smoothingLength, False, False, 0) 444 445 smoothingBox.pack_start(gtk.Label(xstr("prefs_smoothing_seconds")), 446 False, False, 4) 447 448 smoothingEnabled.connect("toggled", self._smoothingToggled, 449 smoothingLength) 450 smoothingLength.set_sensitive(False) 451 452 return (smoothingBox, smoothingEnabled, smoothingLength) 403 453 404 454 def _setLanguage(self, language): … … 434 484 dialog.hide() 435 485 self._warnedRestartNeeded = True 436 486 487 def _smoothingToggled(self, smoothingEnabled, smoothingLength): 488 """Called when a smoothing enabled check box is toggled.""" 489 sensitive = smoothingEnabled.get_active() 490 smoothingLength.set_sensitive(sensitive) 491 if sensitive: 492 smoothingLength.grab_focus() 493 494 def _setSmoothing(self, smoothingEnabled, smoothingLength, smoothing): 495 """Set the smoothing controls from the given value. 496 497 If the value is less than 2, smoothing is disabled. The smoothing 498 length is the absolute value of the value.""" 499 smoothingEnabled.set_active(smoothing>=2) 500 smoothingLength.set_value(abs(smoothing)) 501 502 def _getSmoothing(self, smoothingEnabled, smoothingLength): 503 """Get the smoothing value from the given controls. 504 505 The returned value is the value of smoothingLength multiplied by -1, if 506 smoothing is disabled.""" 507 value = smoothingLength.get_value_as_int() 508 if not smoothingEnabled.get_active(): 509 value *= -1 510 return value 511 437 512 def _pirepDirectoryButtonClicked(self, button): 438 513 """Called when the PIREP directory button is clicked.""" -
src/mlx/i18n.py
r195 r197 662 662 "If this is checked, the logger will take into account, " 663 663 "that you are using the FS2Crew addon.") 664 self.add("prefs_iasSmoothingEnabled", 665 "Enable the smoothing of _IAS over ") 666 self.add("prefs_iasSmoothingEnabledTooltip", 667 "If enabled, the IAS value will be averaged over the " 668 "given number of seconds, and in some checks " 669 "this averaged value will be considered.") 670 self.add("prefs_vsSmoothingEnabled", 671 "Enable the smoothing of _VS over ") 672 self.add("prefs_vsSmoothingEnabledTooltip", 673 "If enabled, the VS value will be averaged over the " 674 "given number of seconds, and in some checks " 675 "this averaged value will be considered.") 676 self.add("prefs_smoothing_seconds", "sec.") 664 677 self.add("prefs_pirepDirectory", 665 678 "_PIREP directory:")
Note:
See TracChangeset
for help on using the changeset viewer.