Changeset 178:98121552b435


Ignore:
Timestamp:
05/13/12 08:55:07 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Allocating only as many hotkeys as really needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/gui.py

    r172 r178  
    155155
    156156        self._hotkeySetID = None
     157        self._pilotHotkeyIndex = None
     158        self._checklistHotkeyIndex = None
    157159
    158160    @property
     
    11321134        """Setup the hotkeys based on the configuration."""
    11331135        if self._hotkeySetID is None and self._simulator is not None:
    1134             self._hotkeySetID = \
    1135                 self._simulator.listenHotkeys([self.config.pilotHotkey,
    1136                                                self.config.checklistHotkey],
    1137                                               self._handleHotkeys)
     1136            self._pilotHotkeyIndex = None
     1137            self._checklistHotkeyIndex = None
     1138
     1139            hotkeys = []
     1140
     1141            config = self.config
     1142            if config.enableSounds and config.pilotControlsSounds:
     1143                self._pilotHotkeyIndex = len(hotkeys)
     1144                hotkeys.append(config.pilotHotkey)
     1145
     1146            if config.enableChecklists:
     1147                self._checklistHotkeyIndex = len(hotkeys)
     1148                hotkeys.append(config.checklistHotkey)
     1149
     1150            if hotkeys:
     1151                self._hotkeySetID = \
     1152                    self._simulator.listenHotkeys(hotkeys, self._handleHotkeys)
    11381153
    11391154    def _clearHotkeys(self):
     
    11471162        if id==self._hotkeySetID:
    11481163            for index in hotkeys:
    1149                 if index==0:
     1164                if index==self._pilotHotkeyIndex:
     1165                    print "gui.GUI._handleHotkeys: pilot hotkey pressed"
    11501166                    self._flight.pilotHotkeyPressed()
     1167                elif index==self._checklistHotkeyIndex:
     1168                    print "gui.GUI._handleHotkeys: checklist hotkey pressed"
     1169                    self._flight.checklistHotkeyPressed()
    11511170                else:
    1152                     self._flight.checklistHotkeyPressed()
     1171                    print "gui.GUI._handleHotkeys: unhandled hotkey index:", index
Note: See TracChangeset for help on using the changeset viewer.