POLARIS1 Posted June 8, 2018 Posted June 8, 2018 Although the command has two values for down (1.0) and up (0.0) instead of having one movement for each switch position it acts as toggle, as if only the down command/ value is correct. Reference default.lua gear_commands.LaunchBarSw
Bullant Posted June 8, 2018 Posted June 8, 2018 I noticed this for both the Launch Bar and Hook Bypass switches. Only the up (1.0) command has an effect (to toggle the switch). Resulted in the following switch definition for DCS-BIOS. moduleBeingDefined.inputProcessors[msg] = function(toState) local fromState = GetDevice(0):get_argument_value(arg_number) if fromState == 0 and toState == "1" then GetDevice(device_id):performClickableAction(command, 1) end if fromState == 1 and toState == "0" then GetDevice(device_id):performClickableAction(command, 1) end end Intel i7 13700K @ 5.3 GHz / ASUS TUF Gaming Z490-Plus / 64 Gb G.Skill DDR4-3600 / RTX 4090 / 2TB Kingston KC3000 NVME / Win 10 x64 Pro / Pimax Crystal / WINWING F/A-18 HOTAS A-10C, AJS-37, AV-8B, F-4E, F-5E, F-14, F-15E, F-16, F/A-18C, F-86F, FC3, Christen Eagle 2, FW190D-9, Mosquito, P-47D, P-51D, Spitfire, AH-64D, KA-50, UH-1H Combined Arms, WWII Asset Pack, China Assets Pack, Super Carrier, Falklands Assets Nevada, Normandy, Persian Gulf, The Channel, Syria, Mariana Islands, South Atlantic, Sinai, Kola, Afghanistan
Laithar Posted June 17, 2018 Posted June 17, 2018 Checked again and fixed Despite being assigned to my RDR ALTM switch on the Warthog Throttle, I have to push the switch on for both states so mine is toggling. How did you fix it? I looked in the default lua and despite having 0.0 for value_down, it seems like it's only accepting 1.0 for both states. { down = gear_commands.LaunchBarSw, up = gear_commands.LaunchBarSw, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('Launch Bar Control Switch - EXTEND/RETRACT'), category = {_('Left Vertical Panel')}}, This was confirmed when I changed the up_value to 1.0 also. Problem with that is I often get a reversal in operation when I enter the pit. As far as my system is concerned, this is still a bug. Can it be explained?
POLARIS1 Posted June 17, 2018 Author Posted June 17, 2018 You are correct Laithar. Same for me. One time in one flight worked OK and that was the last time. Symptoms as you described.
Laithar Posted June 18, 2018 Posted June 18, 2018 Oh. How can this be UNABLE TO REPRODUCE then? If it is working as it should be in other members F18 then there must be something we are not doing. Can someone either confirm that this is working as it should or change the UNABLE TO REPRODUCE header, please.
Bullant Posted June 18, 2018 Posted June 18, 2018 Not sure why this is marked unable to reproduce either. This is definitely an issue. Intel i7 13700K @ 5.3 GHz / ASUS TUF Gaming Z490-Plus / 64 Gb G.Skill DDR4-3600 / RTX 4090 / 2TB Kingston KC3000 NVME / Win 10 x64 Pro / Pimax Crystal / WINWING F/A-18 HOTAS A-10C, AJS-37, AV-8B, F-4E, F-5E, F-14, F-15E, F-16, F/A-18C, F-86F, FC3, Christen Eagle 2, FW190D-9, Mosquito, P-47D, P-51D, Spitfire, AH-64D, KA-50, UH-1H Combined Arms, WWII Asset Pack, China Assets Pack, Super Carrier, Falklands Assets Nevada, Normandy, Persian Gulf, The Channel, Syria, Mariana Islands, South Atlantic, Sinai, Kola, Afghanistan
muehlema Posted June 18, 2018 Posted June 18, 2018 I got something strange, maybe same thing. If I use the Hotas switch to lower the launch bar, after getting of deck, it is not being retracted and stays down. If i click in cockpit and leave the HW switch where it is, the LB is automatically moved up after cat shot. X-Plane 11.5x / DCS 2.5.6 / P3Dv5 / Aerofly FS 2 / War Thunder Win10-x64 | ASUS Z390 Maximus VI | Intel i7-9700K @3.6GHz | Corsair Vengeance LPX 32 GB DDR4 | 6TB SSD Samsung 850 Pro | 2TB M2 PCI 4x | ASUS GTX 1080 ROG STRIX 8GB DDR5X | TM Hotas Warthog | Saitek Combat Pedals | Oculus Rift S
LeCuvier Posted June 18, 2018 Posted June 18, 2018 I messed around with the default.lua, but cannot get it to behave like a maintained ON/OFF switch. And maybe it shouldn'T? I noticed that after carrier takeoff, when I retract the landing gear, the launch bar seems to fold up and away. Unfortunately I do not understand the carrier process well enough, and the Early Access Guide does not cover the subject. PS: can someone explain what the command "Catapult Hook UP" is for? 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
POLARIS1 Posted June 23, 2018 Author Posted June 23, 2018 Another check and a partial solution: 1. Since the switch's inflight position is graphically up I did a custom command where I replaced the 0.0 value with the 1.0 value. 2. When in a cold and dark pit you move the switch before startup it works after a couple of clicks. 3. When spawning into a warm plane the switch doesn't work and is a toggle. Section 3 needs a fix.
Recommended Posts