Jump to content
The simFlight Network Forums

Limit on ipc.getLvarName calls?


Recommended Posts

I'm trying to get a list of available LVARs in the Level-D 767 in FS-X Steam.

My LUA script using an example as base:

-- "LogLvars" example LUA plug-in, by Pete Dowson, February 2009

i = 0
name = ""

while i < 65536 do
  name = ipc.getLvarName(i)
  if name ~= nil then
    ipc.log(i .. " L:" .. name)
  end
      
  i = i + 1
  ipc.sleep(5)
end

LUA log file:

Quote

********* LUA: "KK_Names1" Log [from FSUIPC version 4.958] *********
    50672 System time = 07/12/2016 13:14:05, Simulator time = 13:13:44 (17:13Z)
    50672 LUA: beginning "E:\Steam\steamapps\common\FSX\Modules\KK_Names1.lua"
    50672 LUA: 0 L:LVLDLit
    50687 LUA: 1 L:LVLDWiperLeft
    50703 LUA: 2 L:LVLDLightPanelSwitch
    50719 LUA: 3 L:LVLDLightOvrdSwitch
    50734 LUA: 4 L:LVLDLightWingPower
    50750 LUA: 5 L:LVLDLightLLLeftPower
    50766 LUA: 6 L:LVLDLightLLRightPower
    50781 LUA: 7 L:LVLDLightTaxiPower
    50797 LUA: 8 L:LVLDLightLLNosePower
    50812 LUA: 9 L:LVLDLightTurnLPower
    50828 LUA: 10 L:LVLDLightTurnRPower
    50844 LUA: 11 L:LVLDLightRecogPower
    50859 LUA: 12 L:LVLDLightOvrdPower
    50875 LUA: 13 L:LVLDLightNavSwitch
    50891 LUA: 14 L:LVLDLightNavPower
    50906 LUA: 15 L:LVLDLightBeaconSwitch
    50922 LUA: 16 L:LVLDLightBeaconPower
    50937 LUA: 17 L:LVLDLightStrobeSwitch
    50953 LUA: 18 L:LVLDLightStrobePower
    50969 LUA: 19 L:LVLDLightWingSwitch
    50984 LUA: 20 L:LVLDLightRecogSwitch
    51000 LUA: 21 L:LVLDLightPanelPower
    51016 LUA: 22 L:LVLDLightPedestalSwitch
    51031 LUA: 23 L:LVLDLightPedestalPower
    51047 LUA: 24 L:LVLDLightTaxiSwitch
    51062 LUA: 25 L:LVLDLightTurnLSwitch
    51078 LUA: 26 L:LVLDLightTurnRSwitch
    51094 LUA: 27 L:LVLDLightLLLeftSwitch
    51109 LUA: 28 L:LVLDLightLLRightSwitch
    51125 LUA: 29 L:LVLDLightLLNoseSwitch
    51141 LUA: 30 L:LVLDRMICaptLSwitch
    51156 LUA: 31 L:LVLDRMICaptRSwitch
    51172 LUA: 32 L:LVLDRMIFOLSwitch
    51187 LUA: 33 L:LVLDRMIFORSwitch
    51203 LUA: 34 L:LVLMagTrueSwitch
    51219 LUA: 35 L:map_ZoomStep
    51234 LUA: 36 L:map_ZoomFactor
    51250 LUA: 37 L:MapInit
    51266 LUA: 38 L:LayerAirports
    51281 LUA: 39 L:LayerAirspaces
    51297 LUA: 40 L:LayerTerrain
    51312 LUA: 41 L:LayerVORs
    51328 LUA: 42 L:LayerILSs
    51344 LUA: 43 L:LayerNDBs
    51359 LUA: 44 L:LayerLowAirways
    51375 LUA: 45 L:LayerTags
    51391 LUA: 46 L:LayerCompass
    51406 LUA: 47 L:LayerIntersections
    51422 LUA: 48 L:LayerRangeRings
    51437 LUA: 49 L:VehicleObjectDetail
    51453 LUA: 50 L:Filter
    51469 LUA: 51 L:LVLDLeftOutboardAilerons
    51484 LUA: 52 L:LVLDOutboardAileronsLocked
    51500 LUA: 53 L:LVLDRightInboardAilerons
    51516 LUA: 54 L:LVLDRAT
    51531 LUA: 55 L:LVLDRightOutboardAilerons
    51547 LUA: 56 L:LVLDElevator
    51562 LUA: 57 L:LVLDSpoiler10
    51578 LUA: 58 L:LVLDSpoiler8
    51594 LUA: 59 L:LVLDLeftInboardAilerons
    51609 LUA: 60 L:LVLDSpoiler4
    51625 LUA: 61 L:LVLDSpoiler11
    51641 LUA: 62 L:LVLDSpoiler1
    51656 LUA: 63 L:LVLDSpoiler12
    51672 LUA: 64 L:LVLDAPUDoor
    51687 LUA: 65 L:LVLDSpoiler3
    51703 LUA: 66 L:LVLDTailSkid
    51719 LUA: 67 L:LVLDSpoiler7
    51734 LUA: 68 L:LVLDSpoiler6
    51750 LUA: 69 L:LVLDSpoiler5
    51766 LUA: 70 L:LVLDSpoiler2
    51781 LUA: 71 L:LVLDSpoiler9
    51797 LUA: 72 L:LVLDATSwitch
    51812 LUA: 73 L:LVLDCaptFD
    51828 LUA: 74 L:LVLDFOFD
    51844 LUA: 75 L:LVLDAutobrakes
   141625 System time = 07/12/2016 13:15:36, Simulator time = 13:15:06 (17:15Z)
********* LUA execution terminated: Log Closed *********

It always stops at 75.  I must be missing something, I expected a LOT more variables.

Robert

EDIT 1: Re-reading the manual, I believe I am hitting my nose against this LuaRerunDeley=66; For plug-ins which
take more than that amount of time to load and execute...

Nope, bumped it to 9999 and removed the 5ms delay in LUA script and still 76 entries.  I must be missing some other limitting factor or setting.

EDIT 2: Found another option in your manual, assigned List Local Panel Variables to TILDE and it always listed the same variables.  I tried with all LDS767 panels on, and one panel at a time, same list of variables.

Quote

********* FSUIPC4, Version 4.958 (8th November 2016) by Pete Dowson *********
Windows version reported as 6.2.?.9200
fsx.exe version = 10.0.62615.0
Reading options from "E:\Steam\steamapps\common\FSX\Modules\FSUIPC4.ini"
Running inside FSX Steam Edition on Windows 8.0 or later
Module base=58040000
User Name=xxxxx
User Addr=xxxxx
FSUIPC4 Key is provided
WideFS7 Key is provided
       46 System time = 07/12/2016 13:59:18
       46 FLT UNC path = "f:\Documents\Flight Simulator X Files\"
       46 ------ Module Version Check ------
       46        acontain.dll: 10.0.62615.0
       46             api.dll: 10.0.62615.0
       46        controls.dll: 10.0.62615.0
       46      fs-traffic.dll: 10.0.62615.0
       46             G3D.dll: 10.0.62615.0
       46        language.dll: 10.0.62615.0
       46            sim1.dll: 10.0.62615.0
       46        visualfx.dll: 10.0.62615.0
       62         weather.dll: 10.0.62615.0
       62          window.dll: 10.0.62615.0
       62 ----------------------------------
       78 Trying to connect to SimConnect Steam ...
       93 FS UNC path = "E:\Steam\steamapps\common\FSX\"
      171 ---------------------- Joystick Device Scan -----------------------
      171 -------------------------------------------------------------------
      187 LogOptions=80000000 00000001
      187 -------------------------------------------------------------------
      187 ------ Setting the hooks and direct calls into the simulator ------
      187 --- CONTROLS timer memory location obtained ok
      187 --- SIM1 Frictions access gained
      328 --- FS Controls Table located ok
      328 --- Installed Mouse Macro hooks ok.
      328 --- Wind smoothing fix is fully installed
      328 --- SimConnect intercept for texts and menus option is off
      328 --- All links checked okay
      328 -------------------------------------------------------------------
      328 SimConnect_Open succeeded: waiting to check version okay
      328 Trying to use SimConnect Steam
      328 Opened separate AI Traffic client okay
     9171 Running in "Microsoft Flight Simulator X", Version: 10.0.62615.0 (SimConnect: 10.0.62615.0)
     9171 Initialising SimConnect data requests now
     9171 FSUIPC Menu entry added
     9171 f:\Documents\Flight Simulator X Files\KK all panels.FLT
     9171 E:\Steam\steamapps\common\FSX\SimObjects\Airplanes\LVLD_B763_Winglet\B767-300.air
    83687 Weather Mode now = Theme
   103859 System time = 07/12/2016 14:01:02, Simulator time = 14:00:41 (18:00Z)
   103859 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   107515 Starting everything now ...
   109453 Advanced Weather Interface Enabled
   150593 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   150593    Panel includes these local variables:
   150593       L:LVLDLit = 0.000000
   150593       L:LVLDWiperLeft = 0.000000
   150593       L:LVLDLightPanelSwitch = 0.000000
   150593       L:LVLDLightOvrdSwitch = 1.000000
   150593       L:LVLDLightWingPower = 0.000000
   150593       L:LVLDLightLLLeftPower = 0.000000
   150593       L:LVLDLightLLRightPower = 0.000000
   150593       L:LVLDLightTaxiPower = 0.000000
   150593       L:LVLDLightLLNosePower = 0.000000
   150593       L:LVLDLightTurnLPower = 0.000000
   150593       L:LVLDLightTurnRPower = 0.000000
   150593       L:LVLDLightRecogPower = 0.000000
   150593       L:LVLDLightOvrdPower = 1.000000
   150593       L:LVLDLightNavSwitch = 0.000000
   150593       L:LVLDLightNavPower = 0.000000
   150593       L:LVLDLightBeaconSwitch = 0.000000
   150593       L:LVLDLightBeaconPower = 0.000000
   150593       L:LVLDLightStrobeSwitch = 0.000000
   150593       L:LVLDLightStrobePower = 0.000000
   150593       L:LVLDLightWingSwitch = 0.000000
   150593       L:LVLDLightRecogSwitch = 0.000000
   150593       L:LVLDLightPanelPower = 0.000000
   150593       L:LVLDLightPedestalSwitch = 0.000000
   150593       L:LVLDLightPedestalPower = 0.000000
   150593       L:LVLDLightTaxiSwitch = 0.000000
   150593       L:LVLDLightTurnLSwitch = 0.000000
   150593       L:LVLDLightTurnRSwitch = 0.000000
   150593       L:LVLDLightLLLeftSwitch = 0.000000
   150593       L:LVLDLightLLRightSwitch = 0.000000
   150593       L:LVLDLightLLNoseSwitch = 0.000000
   150593       L:LVLDRMICaptLSwitch = 1.000000
   150593       L:LVLDRMICaptRSwitch = 0.000000
   150593       L:LVLDRMIFOLSwitch = 0.000000
   150593       L:LVLDRMIFORSwitch = 0.000000
   150593       L:LVLMagTrueSwitch = 0.000000
   150593       L:map_ZoomStep = 0.000000
   150593       L:map_ZoomFactor = 0.000000
   150593       L:MapInit = 0.000000
   150593       L:LayerAirports = 0.000000
   150593       L:LayerAirspaces = 0.000000
   150593       L:LayerTerrain = 0.000000
   150593       L:LayerVORs = 0.000000
   150593       L:LayerILSs = 0.000000
   150593       L:LayerNDBs = 0.000000
   150593       L:LayerLowAirways = 0.000000
   150593       L:LayerTags = 0.000000
   150593       L:LayerCompass = 0.000000
   150593       L:LayerIntersections = 0.000000
   150593       L:LayerRangeRings = 0.000000
   150593       L:VehicleObjectDetail = 0.000000
   150593       L:Filter = 0.000000
   150593       L:LVLDLeftOutboardAilerons = 1.000000
   150593       L:LVLDOutboardAileronsLocked = 0.000000
   150593       L:LVLDRightInboardAilerons = 1.000000
   150593       L:LVLDRAT = 0.000000
   150593       L:LVLDRightOutboardAilerons = 1.000000
   150593       L:LVLDElevator = 1.000000
   150593       L:LVLDSpoiler10 = 1.000000
   150593       L:LVLDSpoiler8 = 1.000000
   150593       L:LVLDLeftInboardAilerons = 1.000000
   150593       L:LVLDSpoiler4 = 1.000000
   150593       L:LVLDSpoiler11 = 1.000000
   150593       L:LVLDSpoiler1 = 1.000000
   150593       L:LVLDSpoiler12 = 1.000000
   150593       L:LVLDAPUDoor = 1.000000
   150593       L:LVLDSpoiler3 = 1.000000
   150593       L:LVLDTailSkid = 1.000000
   150593       L:LVLDSpoiler7 = 1.000000
   150593       L:LVLDSpoiler6 = 1.000000
   150593       L:LVLDSpoiler5 = 1.000000
   150593       L:LVLDSpoiler2 = 1.000000
   150593       L:LVLDSpoiler9 = 1.000000
   150593       L:LVLDATSwitch = 0.000000
   150593       L:LVLDCaptFD = 1.000000
   150593       L:LVLDFOFD = 0.000000
   150593       L:LVLDAutobrakes = 2.000000
   196031 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   196031    Panel includes these local variables:
   196031       L:LVLDLit = 0.000000
   196031       L:LVLDWiperLeft = 0.000000
   196031       L:LVLDLightPanelSwitch = 0.000000
   196031       L:LVLDLightOvrdSwitch = 1.000000
   196031       L:LVLDLightWingPower = 0.000000
   196031       L:LVLDLightLLLeftPower = 0.000000
   196031       L:LVLDLightLLRightPower = 0.000000
   196031       L:LVLDLightTaxiPower = 0.000000
   196031       L:LVLDLightLLNosePower = 0.000000
   196031       L:LVLDLightTurnLPower = 0.000000
   196031       L:LVLDLightTurnRPower = 0.000000
   196031       L:LVLDLightRecogPower = 0.000000
   196031       L:LVLDLightOvrdPower = 1.000000
   196031       L:LVLDLightNavSwitch = 0.000000
   196031       L:LVLDLightNavPower = 0.000000
   196031       L:LVLDLightBeaconSwitch = 0.000000
   196031       L:LVLDLightBeaconPower = 0.000000
   196031       L:LVLDLightStrobeSwitch = 0.000000
   196031       L:LVLDLightStrobePower = 0.000000
   196031       L:LVLDLightWingSwitch = 0.000000
   196031       L:LVLDLightRecogSwitch = 0.000000
   196031       L:LVLDLightPanelPower = 0.000000
   196031       L:LVLDLightPedestalSwitch = 0.000000
   196031       L:LVLDLightPedestalPower = 0.000000
   196031       L:LVLDLightTaxiSwitch = 0.000000
   196031       L:LVLDLightTurnLSwitch = 0.000000
   196031       L:LVLDLightTurnRSwitch = 0.000000
   196031       L:LVLDLightLLLeftSwitch = 0.000000
   196031       L:LVLDLightLLRightSwitch = 0.000000
   196031       L:LVLDLightLLNoseSwitch = 0.000000
   196031       L:LVLDRMICaptLSwitch = 1.000000
   196031       L:LVLDRMICaptRSwitch = 0.000000
   196031       L:LVLDRMIFOLSwitch = 0.000000
   196031       L:LVLDRMIFORSwitch = 0.000000
   196031       L:LVLMagTrueSwitch = 0.000000
   196031       L:map_ZoomStep = 0.000000
   196031       L:map_ZoomFactor = 0.000000
   196031       L:MapInit = 0.000000
   196031       L:LayerAirports = 0.000000
   196031       L:LayerAirspaces = 0.000000
   196031       L:LayerTerrain = 0.000000
   196031       L:LayerVORs = 0.000000
   196031       L:LayerILSs = 0.000000
   196031       L:LayerNDBs = 0.000000
   196031       L:LayerLowAirways = 0.000000
   196031       L:LayerTags = 0.000000
   196031       L:LayerCompass = 0.000000
   196031       L:LayerIntersections = 0.000000
   196031       L:LayerRangeRings = 0.000000
   196031       L:VehicleObjectDetail = 0.000000
   196031       L:Filter = 0.000000
   196031       L:LVLDLeftOutboardAilerons = 1.000000
   196031       L:LVLDOutboardAileronsLocked = 0.000000
   196031       L:LVLDRightInboardAilerons = 1.000000
   196031       L:LVLDRAT = 0.000000
   196031       L:LVLDRightOutboardAilerons = 1.000000
   196031       L:LVLDElevator = 1.000000
   196031       L:LVLDSpoiler10 = 1.000000
   196031       L:LVLDSpoiler8 = 1.000000
   196031       L:LVLDLeftInboardAilerons = 1.000000
   196031       L:LVLDSpoiler4 = 1.000000
   196031       L:LVLDSpoiler11 = 1.000000
   196031       L:LVLDSpoiler1 = 1.000000
   196031       L:LVLDSpoiler12 = 1.000000
   196031       L:LVLDAPUDoor = 1.000000
   196031       L:LVLDSpoiler3 = 1.000000
   196031       L:LVLDTailSkid = 1.000000
   196031       L:LVLDSpoiler7 = 1.000000
   196031       L:LVLDSpoiler6 = 1.000000
   196031       L:LVLDSpoiler5 = 1.000000
   196031       L:LVLDSpoiler2 = 1.000000
   196031       L:LVLDSpoiler9 = 1.000000
   196031       L:LVLDATSwitch = 0.000000
   196031       L:LVLDCaptFD = 1.000000
   196031       L:LVLDFOFD = 0.000000
   196031       L:LVLDAutobrakes = 2.000000
   252546 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   252546    Panel includes these local variables:
   252546       L:LVLDLit = 0.000000
   252546       L:LVLDWiperLeft = 0.000000
   252546       L:LVLDLightPanelSwitch = 0.000000
   252546       L:LVLDLightOvrdSwitch = 1.000000
   252546       L:LVLDLightWingPower = 0.000000
   252546       L:LVLDLightLLLeftPower = 0.000000
   252546       L:LVLDLightLLRightPower = 0.000000
   252546       L:LVLDLightTaxiPower = 0.000000
   252546       L:LVLDLightLLNosePower = 0.000000
   252546       L:LVLDLightTurnLPower = 0.000000
   252546       L:LVLDLightTurnRPower = 0.000000
   252546       L:LVLDLightRecogPower = 0.000000
   252546       L:LVLDLightOvrdPower = 1.000000
   252546       L:LVLDLightNavSwitch = 0.000000
   252546       L:LVLDLightNavPower = 0.000000
   252546       L:LVLDLightBeaconSwitch = 0.000000
   252546       L:LVLDLightBeaconPower = 0.000000
   252546       L:LVLDLightStrobeSwitch = 0.000000
   252546       L:LVLDLightStrobePower = 0.000000
   252546       L:LVLDLightWingSwitch = 0.000000
   252546       L:LVLDLightRecogSwitch = 0.000000
   252546       L:LVLDLightPanelPower = 0.000000
   252546       L:LVLDLightPedestalSwitch = 0.000000
   252546       L:LVLDLightPedestalPower = 0.000000
   252546       L:LVLDLightTaxiSwitch = 0.000000
   252546       L:LVLDLightTurnLSwitch = 0.000000
   252546       L:LVLDLightTurnRSwitch = 0.000000
   252546       L:LVLDLightLLLeftSwitch = 0.000000
   252546       L:LVLDLightLLRightSwitch = 0.000000
   252546       L:LVLDLightLLNoseSwitch = 0.000000
   252546       L:LVLDRMICaptLSwitch = 1.000000
   252546       L:LVLDRMICaptRSwitch = 0.000000
   252546       L:LVLDRMIFOLSwitch = 0.000000
   252546       L:LVLDRMIFORSwitch = 0.000000
   252546       L:LVLMagTrueSwitch = 0.000000
   252546       L:map_ZoomStep = 0.000000
   252546       L:map_ZoomFactor = 0.000000
   252546       L:MapInit = 0.000000
   252546       L:LayerAirports = 0.000000
   252546       L:LayerAirspaces = 0.000000
   252546       L:LayerTerrain = 0.000000
   252546       L:LayerVORs = 0.000000
   252546       L:LayerILSs = 0.000000
   252546       L:LayerNDBs = 0.000000
   252546       L:LayerLowAirways = 0.000000
   252546       L:LayerTags = 0.000000
   252546       L:LayerCompass = 0.000000
   252546       L:LayerIntersections = 0.000000
   252546       L:LayerRangeRings = 0.000000
   252546       L:VehicleObjectDetail = 0.000000
   252546       L:Filter = 0.000000
   252546       L:LVLDLeftOutboardAilerons = 1.000000
   252546       L:LVLDOutboardAileronsLocked = 0.000000
   252546       L:LVLDRightInboardAilerons = 1.000000
   252546       L:LVLDRAT = 0.000000
   252546       L:LVLDRightOutboardAilerons = 1.000000
   252546       L:LVLDElevator = 1.000000
   252546       L:LVLDSpoiler10 = 1.000000
   252546       L:LVLDSpoiler8 = 1.000000
   252546       L:LVLDLeftInboardAilerons = 1.000000
   252546       L:LVLDSpoiler4 = 1.000000
   252546       L:LVLDSpoiler11 = 1.000000
   252546       L:LVLDSpoiler1 = 1.000000
   252546       L:LVLDSpoiler12 = 1.000000
   252546       L:LVLDAPUDoor = 1.000000
   252546       L:LVLDSpoiler3 = 1.000000
   252546       L:LVLDTailSkid = 1.000000
   252546       L:LVLDSpoiler7 = 1.000000
   252546       L:LVLDSpoiler6 = 1.000000
   252546       L:LVLDSpoiler5 = 1.000000
   252546       L:LVLDSpoiler2 = 1.000000
   252546       L:LVLDSpoiler9 = 1.000000
   252546       L:LVLDATSwitch = 0.000000
   252546       L:LVLDCaptFD = 1.000000
   252546       L:LVLDFOFD = 0.000000
   252546       L:LVLDAutobrakes = 2.000000
   382359 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   382359    Panel includes these local variables:
   382359       L:LVLDLit = 0.000000
   382359       L:LVLDWiperLeft = 0.000000
   382359       L:LVLDLightPanelSwitch = 0.000000
   382359       L:LVLDLightOvrdSwitch = 1.000000
   382359       L:LVLDLightWingPower = 0.000000
   382359       L:LVLDLightLLLeftPower = 0.000000
   382359       L:LVLDLightLLRightPower = 0.000000
   382359       L:LVLDLightTaxiPower = 0.000000
   382359       L:LVLDLightLLNosePower = 0.000000
   382359       L:LVLDLightTurnLPower = 0.000000
   382359       L:LVLDLightTurnRPower = 0.000000
   382359       L:LVLDLightRecogPower = 0.000000
   382359       L:LVLDLightOvrdPower = 1.000000
   382359       L:LVLDLightNavSwitch = 0.000000
   382359       L:LVLDLightNavPower = 0.000000
   382359       L:LVLDLightBeaconSwitch = 0.000000
   382359       L:LVLDLightBeaconPower = 0.000000
   382359       L:LVLDLightStrobeSwitch = 0.000000
   382359       L:LVLDLightStrobePower = 0.000000
   382359       L:LVLDLightWingSwitch = 0.000000
   382359       L:LVLDLightRecogSwitch = 0.000000
   382359       L:LVLDLightPanelPower = 0.000000
   382359       L:LVLDLightPedestalSwitch = 0.000000
   382359       L:LVLDLightPedestalPower = 0.000000
   382359       L:LVLDLightTaxiSwitch = 0.000000
   382359       L:LVLDLightTurnLSwitch = 0.000000
   382359       L:LVLDLightTurnRSwitch = 0.000000
   382359       L:LVLDLightLLLeftSwitch = 0.000000
   382359       L:LVLDLightLLRightSwitch = 0.000000
   382359       L:LVLDLightLLNoseSwitch = 0.000000
   382359       L:LVLDRMICaptLSwitch = 1.000000
   382359       L:LVLDRMICaptRSwitch = 0.000000
   382359       L:LVLDRMIFOLSwitch = 0.000000
   382359       L:LVLDRMIFORSwitch = 0.000000
   382359       L:LVLMagTrueSwitch = 0.000000
   382359       L:map_ZoomStep = 0.000000
   382359       L:map_ZoomFactor = 0.000000
   382359       L:MapInit = 0.000000
   382359       L:LayerAirports = 0.000000
   382359       L:LayerAirspaces = 0.000000
   382359       L:LayerTerrain = 0.000000
   382359       L:LayerVORs = 0.000000
   382359       L:LayerILSs = 0.000000
   382359       L:LayerNDBs = 0.000000
   382359       L:LayerLowAirways = 0.000000
   382359       L:LayerTags = 0.000000
   382359       L:LayerCompass = 0.000000
   382359       L:LayerIntersections = 0.000000
   382359       L:LayerRangeRings = 0.000000
   382359       L:VehicleObjectDetail = 0.000000
   382359       L:Filter = 0.000000
   382359       L:LVLDLeftOutboardAilerons = 1.000000
   382359       L:LVLDOutboardAileronsLocked = 0.000000
   382359       L:LVLDRightInboardAilerons = 1.000000
   382359       L:LVLDRAT = 0.000000
   382359       L:LVLDRightOutboardAilerons = 1.000000
   382359       L:LVLDElevator = 1.000000
   382359       L:LVLDSpoiler10 = 1.000000
   382359       L:LVLDSpoiler8 = 1.000000
   382359       L:LVLDLeftInboardAilerons = 1.000000
   382359       L:LVLDSpoiler4 = 1.000000
   382359       L:LVLDSpoiler11 = 1.000000
   382359       L:LVLDSpoiler1 = 1.000000
   382359       L:LVLDSpoiler12 = 1.000000
   382359       L:LVLDAPUDoor = 1.000000
   382359       L:LVLDSpoiler3 = 1.000000
   382359       L:LVLDTailSkid = 1.000000
   382359       L:LVLDSpoiler7 = 1.000000
   382359       L:LVLDSpoiler6 = 1.000000
   382359       L:LVLDSpoiler5 = 1.000000
   382359       L:LVLDSpoiler2 = 1.000000
   382359       L:LVLDSpoiler9 = 1.000000
   382359       L:LVLDATSwitch = 0.000000
   382359       L:LVLDCaptFD = 1.000000
   382359       L:LVLDFOFD = 0.000000
   382359       L:LVLDAutobrakes = 2.000000
   449078 Aircraft="Level D Simulations B767-300ER Winglet - CVA B767-300ER Winglet"
   449078    Panel includes these local variables:
   449078       L:LVLDLit = 0.000000
   449078       L:LVLDWiperLeft = 0.000000
   449078       L:LVLDLightPanelSwitch = 0.000000
   449078       L:LVLDLightOvrdSwitch = 1.000000
   449078       L:LVLDLightWingPower = 0.000000
   449078       L:LVLDLightLLLeftPower = 0.000000
   449078       L:LVLDLightLLRightPower = 0.000000
   449078       L:LVLDLightTaxiPower = 0.000000
   449078       L:LVLDLightLLNosePower = 0.000000
   449078       L:LVLDLightTurnLPower = 0.000000
   449078       L:LVLDLightTurnRPower = 0.000000
   449078       L:LVLDLightRecogPower = 0.000000
   449078       L:LVLDLightOvrdPower = 1.000000
   449078       L:LVLDLightNavSwitch = 0.000000
   449078       L:LVLDLightNavPower = 0.000000
   449078       L:LVLDLightBeaconSwitch = 0.000000
   449078       L:LVLDLightBeaconPower = 0.000000
   449078       L:LVLDLightStrobeSwitch = 0.000000
   449078       L:LVLDLightStrobePower = 0.000000
   449078       L:LVLDLightWingSwitch = 0.000000
   449078       L:LVLDLightRecogSwitch = 0.000000
   449078       L:LVLDLightPanelPower = 0.000000
   449078       L:LVLDLightPedestalSwitch = 0.000000
   449078       L:LVLDLightPedestalPower = 0.000000
   449078       L:LVLDLightTaxiSwitch = 0.000000
   449078       L:LVLDLightTurnLSwitch = 0.000000
   449078       L:LVLDLightTurnRSwitch = 0.000000
   449078       L:LVLDLightLLLeftSwitch = 0.000000
   449078       L:LVLDLightLLRightSwitch = 0.000000
   449078       L:LVLDLightLLNoseSwitch = 0.000000
   449078       L:LVLDRMICaptLSwitch = 1.000000
   449078       L:LVLDRMICaptRSwitch = 0.000000
   449078       L:LVLDRMIFOLSwitch = 0.000000
   449078       L:LVLDRMIFORSwitch = 0.000000
   449078       L:LVLMagTrueSwitch = 0.000000
   449078       L:map_ZoomStep = 0.000000
   449078       L:map_ZoomFactor = 0.000000
   449078       L:MapInit = 0.000000
   449078       L:LayerAirports = 0.000000
   449078       L:LayerAirspaces = 0.000000
   449078       L:LayerTerrain = 0.000000
   449078       L:LayerVORs = 0.000000
   449078       L:LayerILSs = 0.000000
   449078       L:LayerNDBs = 0.000000
   449078       L:LayerLowAirways = 0.000000
   449078       L:LayerTags = 0.000000
   449078       L:LayerCompass = 0.000000
   449078       L:LayerIntersections = 0.000000
   449078       L:LayerRangeRings = 0.000000
   449078       L:VehicleObjectDetail = 0.000000
   449078       L:Filter = 0.000000
   449078       L:LVLDLeftOutboardAilerons = 1.000000
   449078       L:LVLDOutboardAileronsLocked = 0.000000
   449078       L:LVLDRightInboardAilerons = 1.000000
   449078       L:LVLDRAT = 0.000000
   449078       L:LVLDRightOutboardAilerons = 1.000000
   449078       L:LVLDElevator = 1.000000
   449078       L:LVLDSpoiler10 = 1.000000
   449078       L:LVLDSpoiler8 = 1.000000
   449078       L:LVLDLeftInboardAilerons = 1.000000
   449078       L:LVLDSpoiler4 = 1.000000
   449078       L:LVLDSpoiler11 = 1.000000
   449078       L:LVLDSpoiler1 = 1.000000
   449078       L:LVLDSpoiler12 = 1.000000
   449078       L:LVLDAPUDoor = 1.000000
   449078       L:LVLDSpoiler3 = 1.000000
   449078       L:LVLDTailSkid = 1.000000
   449078       L:LVLDSpoiler7 = 1.000000
   449078       L:LVLDSpoiler6 = 1.000000
   449078       L:LVLDSpoiler5 = 1.000000
   449078       L:LVLDSpoiler2 = 1.000000
   449078       L:LVLDSpoiler9 = 1.000000
   449078       L:LVLDATSwitch = 0.000000
   449078       L:LVLDCaptFD = 1.000000
   449078       L:LVLDFOFD = 0.000000
   449078       L:LVLDAutobrakes = 2.000000
   616765 Sim stopped: average frame rate for last 509 secs = 67.7 fps
   616765              Max AI traffic was 1 aircraft
   629140 System time = 07/12/2016 14:09:47, Simulator time = 14:09:11 (18:09Z)
   629140 *** FSUIPC log file being closed
Minimum frame rate was 30.3 fps, Maximum was 74.0 fps
Minimum available memory recorded was 2512Mb
Average frame rate for running time of 509 secs = 67.7 fps
Maximum AI traffic for session was 1 aircraft
Memory managed: 256 Allocs, 256 Freed
********* FSUIPC Log file closed ***********
 

 

Link to comment
Share on other sites

1 hour ago, Demon said:

It always stops at 75.  I must be missing something, I expected a LOT more variables.

If there's a limit it isn't imposed by anything in FSUIPC. FSUIPC simply calls the appropriate functions in the panels interface to FS, same as a gauge might.

1 hour ago, Demon said:

Re-reading the manual, I believe I am hitting my nose against this LuaRerunDeley=66; For plug-ins which
take more than that amount of time to load and execute...

That is related to how long to allow if you try to re-run the same plug-in, to alloww it to terminate before killing it and starting it again.

1 hour ago, Demon said:

EDIT 2: Found another option in your manual, assigned List Local Panel Variables to TILDE and it always listed the same variables.  I tried with all LDS767 panels on, and one panel at a time, same list of variables.

The list is the same for each in any case. I suspect they are created by a common component, not a specific gauge. Maybe a DLL for that aircraft

And how are you stopping the gauges not being checked from running in any case? You'd need to keep editing the PANEL.CFG file and reloading the aircraft.

Pete

 

Link to comment
Share on other sites

1 hour ago, Pete Dowson said:

...

The list is the same for each in any case. I suspect they are created by a common component, not a specific gauge. Maybe a DLL for that aircraft.

...

Yup, must be that.  The Level-D 767 has a DLL.

Thanks for your time Pete.

Robert

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.