News:

SimuTranslator
Make Simutrans speak your language.

[Linux] Delay when pressing buttons in the pak selector

Started by Roboron, January 19, 2022, 08:32:53 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Roboron

The pak selector and the integrated installer have a delay when pressing buttons, that can vary from an extra second when you click an entry up to 10 seconds when you try to move the scrollbar.

Such delay is not in the game itself, only in this initial screen.

This started happening to me around 2 months ago, but only recently another user confirmed this to me.

EDIT: r10186 cause this problem.

_Hajo_

I can confirm this too. It was not in the first version that I downloaded, but after pulling sources from git to compile them myself I got the delay. Must be post 123.0

Ranran(retired)

ひめしという日本人が開発者達の助言を無視して自分好みの機能をextendedに"強引に"実装し、
コードをぐちゃぐちゃにしてメンテナンスを困難にし(とりわけ道路と建物関連)、
挙句にバグを大量に埋め込み、それを知らんぷりして放置し(隠居するなどと言って)別のところに逃げ隠れて自分のフォーク(OTRP)は開発を続けている
その事実と彼の無責任さに日本人プレイヤーは目を向けるべき。らんらんはそれでやる気をなくした(´・ω・`)
他人の振り見て我が振り直せ。ひめしのようにならないために、らんらんが生み出したバグや問題は自分で修正しなくちゃね(´・ω・`)

Roboron

After some investigation compiling older revisions, it seems that r10186 cause this problem.

makie

I can confirm this too.
The wait (roundabout 10sec) is before loading pakset.

prissi

Have the devices a touchpad? If finger handling is on SDL2 translates one touch to about 50 events, each moving the finger by 0.00001 pixel (since these are floats). Simutrans handles one event per loop and then sleeps 20 ms in modal mode. Apparently, the SDL2 does a denial of service attack on such an event queue.

Please try r10370