The code is easy to understand and works in all cases except one.
It does not work when you get to that point after clicking with the mouse, for example on a menu item. Evidently the mouse buffer is not empty and by entering the do-loop it immediately passes over.
With the following code I think it is possible to clear the mouse buffer:
Advice (that you may already know): try a code 10 times. if it doesn't work, get up and go for a ride, maybe outdoors. then come back and try again... I fall every time: before getting up I try 35,000 times and for many hours... even days!
Title: Re: Mouse question
Post by: OldMoses on February 08, 2020, 08:56:56 am
Not sure if I'm understanding the problem completely here, just throwing this out for your consideration.
When I'm getting a mouse button input, I add the following code after I've gotten the result I want in order to stop accidental "click through" to other procedures that might read remnant clicks in the buffer.
While the code is specifically for mousebutton 1, it gives the basic idea.
You could also define the mouse actions to not execute until the buttons were released or execute when pressed, but not execute again until released Those "features" would require additional internal LOOPs.
Pete
Title: Re: Mouse question
Post by: bplus on February 08, 2020, 12:00:52 pm
Quote
It does not work when you get to that point after clicking with the mouse, for example on a menu item. Evidently the mouse buffer is not empty and by entering the do-loop it immediately passes over.
Here is Steve's oldMouse trick that after responding to a _MOUSEBUTTON waits for a release of that button before responding to a (new) click:
Title: Re: Mouse question
Post by: Pete on February 08, 2020, 12:35:14 pm
Yep, it all depends on what you need to do. For instance, some programs require timers to detect double clicks. Some can have loops to wait for press release combos, but like Mark's example using Steve's code, you might need that flow-through ability, which allows for other events to not be held up by a prolonged mouse action. Drag and drop, or drag to highlight are other mouse coding events you could add, if needed. All of these require the user think through what is required first, and then build an engine to support those requirements. Hell, I should talk. I've done all of the above and got there mostly by run and gun. :D
Pete
Title: Re: Mouse question
Post by: krovit on February 11, 2020, 07:27:21 am
Thank you for your contributions!
This 3D has become a useful catalog of solutions to manage the mouse and keyboard.
I have not verified all the examples but I can confirm that when the mouse buffer is not null they do NOT work as we would expect. I confirm that the solution I inserted in any case.
Title: Re: Mouse question
Post by: TempodiBasic on February 12, 2020, 08:16:27 pm
Strange!
It doesn't clear the buffer of mouse! The oldX and x are the same, and so for OldY and y.
Title: Re: Mouse question
Post by: TempodiBasic on February 13, 2020, 02:19:20 pm
going deeper! it seems that the _mouseinput event is so much in a second that we must stop the time for a bit to see that just for that so little bit mouse buffer is empty
Mouse input, by itself, is a very simple thing. Basically, all the commands tell us is: Where’s the cursor and which buttons are up and down.
It’s up to the programmer to setermine what their program actually needs to function properly.
In a game, you might just want to know if the button is up or down to shoot at enemies.
You might need a “click event” for a button — so you need to decide exactly what qualifies as a click event in your program. My example above may not suit your needs, if you need a click to be counted as an “UP-DOWN-UP” event. All my little demo above worries about is “was it up, and is it now down?; it doesn’t track “is it now up again?”
Decide what you need for your mouse events and then code for them.
Click — Up, Down. Double Click — Click + Click within X miliseconds. Down and Hold — Down for X+ miliseconds Hover — Up for X seconds without mouse x/y changing
And so on...
Title: Re: Mouse question
Post by: TempodiBasic on February 13, 2020, 04:07:03 pm
Thanks Steve you're right! For my problem I have had searched where to put loop washing out buffer of mouse and how to solve the bad passage through it! My problem (now solved thanks to your encouragement) is a simple issue to put (more bad app design than bad coding) in the same place two different buttons that are activated in different but sequential events... so when the user did click on the first button it activated the second button in the same place of the first and the program activated also the second button as clicked! A bad event cascade! :-)