Search found 31 matches

by asrael
Sat Jan 26, 2019 10:18 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

Can you try this? Repeat DebugPrint(IsLeftMouse()) VWait Forever Run the code and click and release the left mouse button a few times. Does it immediately report 1 when you click and 0 when you release it? Or is there a delay until the output shows the correct mouse button state? There is a delay o...
by asrael
Tue Jan 22, 2019 8:20 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

Which garbage would there be on a program that just has launched?
by asrael
Sun Jan 20, 2019 4:26 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

I tried your example on my A1200/060/P96 machine, and didn't notice any delays. The two lines printed instantly when I clicked around. Yeah, exactly. The delay doesn't exist on non vampire machines. See some posts earlier: "OK, Tested on an A1200 with ACA card. Seems like the delay is not pres...
by asrael
Sat Jan 19, 2019 10:20 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

I have build a basic C program (on Vampire machine) that creates a window and waits for IDCMP_MOUSEBUTTONS (SELECTUP/SELECTDOWN) events.
But I couldn't see any delays there.

What else can I do to troubleshoot?


Manfred
by asrael
Fri Jan 18, 2019 11:49 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

Before I bother the Apollo guys I'll put together a simple POC trying to replicate this using plain C.
Vacation is over, time is more tight again.

Manfred
by asrael
Tue Jan 08, 2019 7:53 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

OK, can you elaborate a bit on how the this function works in lower levels?


Manfred
by asrael
Tue Jan 08, 2019 10:49 am
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

OK, Tested on an A1200 with ACA card.
Seems like the delay is not present there.


Manfred
by asrael
Sat Jan 05, 2019 10:51 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

This is on two Vampirized systems. A600 and A2000. Pretty much stock otherwise, previously 3.9, now 3.1.4.
I'll give it a try on a few more none Vampire systems.


Manfred
by asrael
Sat Jan 05, 2019 7:19 pm
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

I'm doing a mouse button click - press, and immediately release.
I've just tested again and the delay varies. But it's 2-4 seconds.
Which feels like an eternity.
On MorphOS there is no such delay.


Manfred
by asrael
Fri Jan 04, 2019 10:14 am
Forum: General programming
Topic: WaitLeftMouse takes 4 seconds to react on m68k
Replies: 20
Views: 12170

Re: WaitLeftMouse takes 4 seconds to react on m68k

It's pretty simple. I've stripped it down to this: /* Some @Xyz setup. Most notably: */ @DISPLAY { Title = "", Width = 400, Height = 460, Color = #BLUE } Repeat DebugPrint(GetDate(#DATELOCAL), "Waiting for left mouse...") WaitLeftMouse DebugPrint(GetDate(#DATELOCAL), Left mouse p...