Changeset 183:97e7e9479e0a for src/mlx
- Timestamp:
- 05/15/12 15:15:05 (13 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r170 r183 549 549 const.AIRCRAFT_T154] 550 550 return (flight.stage!=const.STAGE_PARKING or \ 551 not flight. options.fs2Crew) and \551 not flight.config.usingFS2Crew) and \ 552 552 not state.antiCollisionLightsOn and \ 553 553 ((isTupolev and max(state.n1[1:])>5) or \ … … 721 721 limit = self.getLimit(flight, aircraft, state) 722 722 if limit is not None: 723 if flight.options.compensation is not None:724 limit += flight.options.compensation723 #if flight.options.compensation is not None: 724 # limit += flight.options.compensation 725 725 return self.getWeight(state)>limit 726 726 -
src/mlx/config.py
r175 r183 125 125 self._flareTimeFromFS = False 126 126 self._syncFSTime = False 127 self._usingFS2Crew = False 127 128 128 129 self._pirepDirectory = None … … 260 261 if syncFSTime!=self._syncFSTime: 261 262 self._syncFSTime = syncFSTime 263 self._modified = True 264 265 @property 266 def usingFS2Crew(self): 267 """Get whether the FS2Crew addon is being used.""" 268 return self._usingFS2Crew 269 270 @usingFS2Crew.setter 271 def usingFS2Crew(self, usingFS2Crew): 272 """Set whether the FS2Crew addon is being used.""" 273 if usingFS2Crew!=self._usingFS2Crew: 274 self._usingFS2Crew = usingFS2Crew 262 275 self._modified = True 263 276 … … 439 452 "syncFSTime", 440 453 False) 454 self._usingFS2Crew = self._getBoolean(config, "general", 455 "usingFS2Crew", 456 False) 441 457 self._pirepDirectory = self._get(config, "general", 442 458 "pirepDirectory", None) … … 499 515 config.set("general", "syncFSTime", 500 516 "yes" if self._syncFSTime else "no") 517 config.set("general", "usingFS2Crew", 518 "yes" if self._usingFS2Crew else "no") 501 519 502 520 if self._pirepDirectory is not None: -
src/mlx/flight.py
r176 r183 9 9 10 10 import threading 11 12 #---------------------------------------------------------------------------------------13 14 class Options(object):15 """Various configuration options."""16 def __init__(self):17 """Construct the object with default values."""18 self.fs2Crew = False19 self.compensation = None20 11 21 12 #--------------------------------------------------------------------------------------- … … 39 30 self.flareTimeFromFS = False 40 31 self.entranceExam = False 41 42 self.options = Options()43 32 44 33 self.aircraftType = None -
src/mlx/gui/prefs.py
r174 r183 228 228 self._flareTimeFromFS.set_active(config.flareTimeFromFS) 229 229 self._syncFSTime.set_active(config.syncFSTime) 230 self._usingFS2Crew.set_active(config.usingFS2Crew) 230 231 231 232 pirepDirectory = config.pirepDirectory … … 267 268 config.flareTimeFromFS = self._flareTimeFromFS.get_active() 268 269 config.syncFSTime = self._syncFSTime.get_active() 270 config.usingFS2Crew = self._usingFS2Crew.get_active() 269 271 config.pirepDirectory = text2unicode(self._pirepDirectory.get_text()) 270 272 … … 353 355 self._syncFSTime.set_tooltip_text(xstr("prefs_syncFSTime_tooltip")) 354 356 mainBox.pack_start(self._syncFSTime, False, False, 4) 357 358 self._usingFS2Crew = gtk.CheckButton(xstr("prefs_usingFS2Crew")) 359 self._usingFS2Crew.set_use_underline(True) 360 self._usingFS2Crew.set_tooltip_text(xstr("prefs_usingFS2Crew_tooltip")) 361 mainBox.pack_start(self._usingFS2Crew, False, False, 4) 355 362 356 363 pirepBox = gtk.HBox() -
src/mlx/i18n.py
r181 r183 631 631 "S_ynchronize the time in FS with the computer's clock") 632 632 self.add("prefs_syncFSTime_tooltip", 633 "If this is checked the flight simulator's internal clock "633 "If this is checked, the flight simulator's internal clock " 634 634 "will always be synchronized to the computer's clock.") 635 self.add("prefs_usingFS2Crew", 636 "Using FS_2Crew") 637 self.add("prefs_usingFS2Crew_tooltip", 638 "If this is checked, the logger will take into account, " 639 "that you are using the FS2Crew addon.") 635 640 self.add("prefs_pirepDirectory", 636 641 "_PIREP directory:") … … 1335 1340 "Ha ez bejelölöd, a szimulátor belső óráját a program " 1336 1341 "szinkronban tartja a számítógép órájával.") 1342 self.add("prefs_usingFS2Crew", 1343 "Használom az FS_2Crew kiegészítőt") 1344 self.add("prefs_usingFS2Crew_tooltip", 1345 "Ha ezt bejelölöd, a program figyelembe veszi, " 1346 "hogy az FS2Crew kiegészítőt használod.") 1337 1347 self.add("prefs_pirepDirectory", 1338 1348 "_PIREP-ek könyvtára:")
Note:
See TracChangeset
for help on using the changeset viewer.