4.2 bugs

Discuss suspected bugs with other users and Sim Innovations Staff

Moderators: russ, Ralph

Message
Author
SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#231 Post by SimPassion »

Hi @Detlef, I guess FS plugin BETA 13 is more in sync with 4.2 BETA 27, worth the try !?

Detlef
Posts: 309
Joined: Mon Nov 16, 2020 9:43 am
Location: Bavaria

Re: 4.2 bugs

#232 Post by Detlef »

Hi @Simpassion,

I am not sure. I took some time today to make backups, then install the latest Airmanager and Plug-in. With my aircraft instruments for the Asobo ATR-72 I still see big delays from turning a knob to the aircraft "seeing" that input. It is not related to the Knobster as I first thought, but is also the case when using the mouse.

I tried to make a simple instrument for a default aircraft to get to the base of the problem. But - unfortunate for me - the instrument for the Cessna works fine.
Generic - Slow Actions Demo.siff
(27.01 KiB) Downloaded 64 times
The instrument is for the Cessna 172 Skyhawk default FS2020 aircraft. It just operates the Transponder mode switch. But as I said, that does work.

My ATR-72 600 instrument shows the delays when turning knobs. It uses Lvars, maybe that is the reason. Still, the old Airmanager Beta and Plugin from August 2 do work for me. So something must be different related to Lvars I think, in later versions.
ATR 72-600 - Lights Engine Start.siff
(233.62 KiB) Downloaded 56 times
This part of the instrument has that "delay problem":

Code: Select all

-- LVAR:MSATR_ENGS_MODE 0..4  OFF .. START A&B

local gEngMode = 0


fs2020_variable_subscribe("L:MSATR_ENGS_MODE", "number", function(v)
  gEngMode = v
  rotate(gImgKnob, -30 * v, "LOG", .1)
end)

dial_add(nil, 157, 98, 80, 80, function(rotac)
  if rotac>0 then
    fs2020_rpn(" " .. var_cap(gEngMode-1, 0, 4)//1 .. " (>L:MSATR_ENGS_MODE)")
  else
    fs2020_rpn(" " .. var_cap(gEngMode+1, 0, 4)//1 .. " (>L:MSATR_ENGS_MODE)")
  end
end)

And not only that instrument, others also. Maybe @Corjan can have a look and/or comment.

Thank you
Detlef

SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#233 Post by SimPassion »

Hi @Detlef, just checked it's almost instantaneous with this on my own :

checked each single value below

Code: Select all

-- fs2020_rpn("0 (>L:MSATR_ENGS_MODE)")
-- fs2020_rpn("1 (>L:MSATR_ENGS_MODE)")
-- fs2020_rpn("2 (>L:MSATR_ENGS_MODE)")
-- fs2020_rpn("3 (>L:MSATR_ENGS_MODE)")
fs2020_rpn("4 (>L:MSATR_ENGS_MODE)")
and checking your instrument doesn't trigger any issue

image.png

It could be there's some background interference with FSUIPC or any additional plugin/tool ?

Detlef
Posts: 309
Joined: Mon Nov 16, 2020 9:43 am
Location: Bavaria

Re: 4.2 bugs

#234 Post by Detlef »

Hi @Simpassion,

thank you for testing this in your system and thank you for your comments. I will try tomorrow without FSUIPC, but that tool has no role here I think. I am not using any features from it with the ATR 72 aircraft as far as I am aware. And I did not change FSUIPC, whereas the Simplugin has changed. Maybe it has to do with the thousands of Lvars that come from the aircrafts I use, PMDG 737, Asobo ATR-72 600, Flybywire A320 to name the complexest ones. Those Lvars are still present somehow in FS2020 even if the aircraft has not been loaded. My guess still is, that the Airmanager "communication with the Sim" (sorry I have not better knowledge to find a better term) changed in a way making at least some communication less efficient.

I will try to record videos, that show what happens in my system.

Thanks again,
Detlef

SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#235 Post by SimPassion »

Detlef wrote: Mon Oct 02, 2023 6:43 pm Hi @Simpassion,

thank you for testing this in your system and thank you for your comments. I will try tomorrow without FSUIPC, but that tool has no role here I think. I am not using any features from it with the ATR 72 aircraft as far as I am aware. And I did not change FSUIPC, whereas the Simplugin has changed. Maybe it has to do with the thousands of Lvars that come from the aircrafts I use, PMDG 737, Asobo ATR-72 600, Flybywire A320 to name the complexest ones. Those Lvars are still present somehow in FS2020 even if the aircraft has not been loaded. My guess still is, that the Airmanager "communication with the Sim" (sorry I have not better knowledge to find a better term) changed in a way making at least some communication less efficient.

I will try to record videos, that show what happens in my system.

Thanks again,
Detlef
If it's not FSUIPC involved it could be any tool, or instrument, or joystick which could potentially making some interference
As an example, I've just seen the PowerMgmt Knob is not that simple to build and require a bit of additional work than usual for it to work properly in both ways

Detlef
Posts: 309
Joined: Mon Nov 16, 2020 9:43 am
Location: Bavaria

Re: 4.2 bugs

#236 Post by Detlef »

Hi @Simpasssion and @Corjan,

just two short videos, one where everything works with the old beta and one showing the delay I experience when using the latest beta plugin:

https://www.dropbox.com/scl/fi/yi481kbd ... uue7&dl=0

https://www.dropbox.com/scl/fi/ab9xk4ja ... 4peyq&dl=0
icon.png
icon.png (67.46 KiB) Viewed 1591 times
I am just being this insistent because if the AM 4.2 is being released I may get a problem. So thank you for your help.

This is the instrument I use:
ATR 72-600 - Autopilot.siff
(150.04 KiB) Downloaded 56 times
image.png
Thank you
Detlef

User avatar
Corjan
Posts: 2964
Joined: Thu Nov 19, 2015 9:04 am

Re: 4.2 bugs

#237 Post by Corjan »

Hi,


There was a bug in sending messages from Air Manager to the sim.

Please update to the latest BETA if you have this problem:
https://siminnovations.com/wiki/index.p ... ugins_BETA


Corjan

SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#238 Post by SimPassion »

Thanks @Corjan for the fix 👍

SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#239 Post by SimPassion »

Just to mention there's stills some regression not yet fixed in the [Create/Edit] tab
  • The instrument location is missed on next run (which indeed was a nice feature)
  • The previous hardware binding made by ourselves, is also missed on next run
These issues occurs when we run an instrument from the left pane in [Create/Edit] tab performing hardware binding and instrument relocation, then choose another instrument in the left pane and come back to the initial instrument.

SimPassion
Posts: 5363
Joined: Thu Jul 27, 2017 12:22 am

Re: 4.2 bugs

#240 Post by SimPassion »

[EDIT] But not only, I've just seen the hardware unbind appears also by itself after some time having stopped the running instrument ... very weird btw !!! 😮🤔

Post Reply