LeCuvier Posted February 3, 2020 Posted February 3, 2020 (edited) The file "default.lua" for both joystick and keyboard has wrong device ID for the buttons in the RWR Threat Warning Aux Panel. These are the lines I found affected (there might be more): -- THREAT WARNING AUX Panel { pressed = rwr_commands.BrtKnob_ITER, cockpit_device_id = devices.AN_ALR56, value_pressed = -0.3, name = _('RWR Indicator Control DIM Knob - CCW/Decrease'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { pressed = rwr_commands.BrtKnob_ITER, cockpit_device_id = devices.AN_ALR56, value_pressed = 0.3, name = _('RWR Indicator Control DIM Knob - CW/Increase'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.Power, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, name = _('RWR Indicator Control POWER Button - Depressed'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.Power, cockpit_device_id = devices.AN_ALR56, value_down = 0.0, name = _('RWR Indicator Control POWER Button - Released'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.Power_ITER, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, name = _('RWR Indicator Control POWER Button - Depressed/Released'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.Search, up = rwr_commands.Search, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control SEARCH Button'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.ActPwr, up = rwr_commands.ActPwr, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control ACT/PWR Button'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}}, { down = rwr_commands.Altitude, up = rwr_commands.Altitude, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control ALTITUDE Button'), category = {_('Left Auxiliary Console'), _('THREAT WARNING AUX Panel')}},These lines show "AN_ALR56" as device ID. This must be replaced with "RWR". I checked the file "devices.lua" and in fact there is an entry for "RWR" but none for "AN_ALR56". Due to this bug we cannot bind any of the commands in the Threat Warning Aux Panel. Therefore this should be treated with priorty. It doesn't even take a developer to make the correction. Edit: These lines are concerned as well: -- THREAT WARNING Panel { pressed = rwr_commands.IntKnob_ITER, cockpit_device_id = devices.AN_ALR56, value_pressed = -0.3, name = _('RWR Intensity Knob - CCW/Decrease'), category = {_('Instrument Panel')}}, { pressed = rwr_commands.IntKnob_ITER, cockpit_device_id = devices.AN_ALR56, value_pressed = 0.3, name = _('RWR Intensity Knob - CW/Increase'), category = {_('Instrument Panel')}}, { down = rwr_commands.Handoff, up = rwr_commands.Handoff, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control HANDOFF Button'), category = {_('Instrument Panel')}}, { down = rwr_commands.Launch, up = rwr_commands.Launch, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control LAUNCH Button'), category = {_('Instrument Panel')}}, { down = rwr_commands.Mode, up = rwr_commands.Mode, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control MODE Button'), category = {_('Instrument Panel')}}, { down = rwr_commands.UnknownShip, up = rwr_commands.UnknownShip, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control UNKNOWN SHIP Button'), category = {_('Instrument Panel')}}, { down = rwr_commands.SysTest, up = rwr_commands.SysTest, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control SYS TEST Button'), category = {_('Instrument Panel')}}, { down = rwr_commands.TgtSep, up = rwr_commands.TgtSep, cockpit_device_id = devices.AN_ALR56, value_down = 1.0, value_up = 0.0, name = _('RWR Indicator Control T Button'), category = {_('Instrument Panel')}}, Edited February 3, 2020 by LeCuvier LeCuvier Windows 10 Pro 64Bit | i7-4790 CPU |16 GB RAM|SSD System Disk|SSD Gaming Disk| MSI GTX-1080 Gaming 8 GB| Acer XB270HU | TM Warthog HOTAS | VKB Gladiator Pro | MongoosT-50 | MFG Crosswind Pedals | TrackIR 5
Recommended Posts