Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Mouse movement causing framerate drop  (Read 8585 times)

0 Members and 1 Guest are viewing this topic.

Brendon

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
    • http://blendogames.com
Mouse movement causing framerate drop
« on: March 16, 2011, 08:48:48 am »
I'm wondering if anyone else has seen this before: a lot of my users are reporting that when they move the mouse around, the game framerate drops to what seems like 1 fps.  If the user doesn't move the mouse, the framerate returns to the expected ~60.

The problem is that this is very inconsistent across machines, making it difficult to debug. I never get it on my dev machine, some others always have it, and for others the problem goes away after restarting the computer.

The input code is very straightforward:
Code: [Select]
public void Update(float elapsedTime)
{
      this.App.DispatchEvents();

      this.mouseX = this.App.Input.GetMouseX();
      this.mouseY = this.App.Input.GetMouseY();
}


I'm using the sfml dotnet 1.6 build.

Anyone have any thoughts on why this is happening?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Mouse movement causing framerate drop
« Reply #1 on: March 16, 2011, 08:50:20 am »
I have absolutely no idea, sorry. This is really weird.

Is this happening on Windows only? Have you been able to test it on other platforms?
Laurent Gomila - SFML developer

devlin

  • Full Member
  • ***
  • Posts: 128
    • View Profile
Mouse movement causing framerate drop
« Reply #2 on: March 16, 2011, 08:54:28 am »
What does your mainloop look like?

It could be that their computers are "drowning" in events from the mouse movement and thus it's just looping through those events instead of updating your game.

Groogy

  • Hero Member
  • *****
  • Posts: 1469
    • MSN Messenger - groogy@groogy.se
    • View Profile
    • http://www.groogy.se
    • Email
Mouse movement causing framerate drop
« Reply #3 on: March 16, 2011, 09:15:58 am »
I'm wondering, wouldn't a high-dps mouse generate more mouse movement events than what a low-dps mouse would generate?

Just thinking on that it varied from different computers.
Developer and Maker of rbSFML and Programmer at Paradox Development Studio

Brendon

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
    • http://blendogames.com
Mouse movement causing framerate drop
« Reply #4 on: March 16, 2011, 09:49:43 am »
@Laurent - my game is available on pc, mac, & linux; I've only heard the issue reported on the pc.

@devlin - Can you explain a bit on how one would do that?  I figured DispatchEvents() is what updates all the events, and I'm only calling that once per frame.

@Groogy - that's an interesting idea - I'll ask my users if they have special mice.

I also found these other thread regarding mouse movement & framerate drop, but the issue seemed to have been fixed in his case-
http://www.sfml-dev.org/forum/viewtopic.php?t=2394

devlin

  • Full Member
  • ***
  • Posts: 128
    • View Profile
Mouse movement causing framerate drop
« Reply #5 on: March 16, 2011, 03:35:08 pm »
Well - I haven't looked at the DotNet bindings for SFML - but I do know that Application.DoEvents() will suspend the current thread while processing all waiting window messages.
Unless of course the DotNet bindings use PInvoke of the Peek/Translate/DispatchMessage instead of DoEvents to limit the amount of messages processed any one frame.

I bet Groogy is onto something - high dpi mice generate an awful lot of WM_INPUT messages, if any substantial work is done on those messages - it will slow things down.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Mouse movement causing framerate drop
« Reply #6 on: March 16, 2011, 03:44:56 pm »
Quote
Well - I haven't looked at the DotNet bindings for SFML - but I do know that Application.DoEvents() will suspend the current thread while processing all waiting window messages.
Unless of course the DotNet bindings use PInvoke of the Peek/Translate/DispatchMessage instead of DoEvents to limit the amount of messages processed any one frame.

SFML.Net's DispatchEvents function calls the GetEvent function imported from SFML, which internally uses Peek/Translate/DispatchMessage. But there's no limit, it processes all messages.

Quote
I bet Groogy is onto something - high dpi mice generate an awful lot of WM_INPUT messages, if any substantial work is done on those messages - it will slow things down.

WM_INPUT is not caught by SFML, so if something happens there it's internal to Windows.
Laurent Gomila - SFML developer

Brendon

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
    • http://blendogames.com
Mouse movement causing framerate drop
« Reply #7 on: March 17, 2011, 02:17:18 am »
Some of my users are using high-dps mice - if I were to make a test executable for these people, is there some way I can somehow limit the amount of events received per frame?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Mouse movement causing framerate drop
« Reply #8 on: March 17, 2011, 07:40:06 am »
No, you can't.
Laurent Gomila - SFML developer

Tank

  • SFML Team
  • Hero Member
  • *****
  • Posts: 1486
    • View Profile
    • Blog
    • Email
Mouse movement causing framerate drop
« Reply #9 on: March 17, 2011, 09:23:10 am »
Actually he can, like this:

Code: [Select]
unsigned int catched_events( 0 );

while( window.IsOpened() ) {
while( catched_events < 10 && window.GetEvent( event ) ) {
// ...
++catched_events;
}

catched_events = 0;

// ...
}


I think those mice really can be the problem. Do you have any idea how many messages they generate per second?

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Mouse movement causing framerate drop
« Reply #10 on: March 17, 2011, 09:31:37 am »
He can limit the number of mouse events he processes, but not those processed by SFML.

Quote
Do you have any idea how many messages they generate per second?

That should be the first thing to test, before investigating further in this direction ;)
Laurent Gomila - SFML developer

devlin

  • Full Member
  • ***
  • Posts: 128
    • View Profile
Mouse movement causing framerate drop
« Reply #11 on: March 17, 2011, 02:38:26 pm »
Movement should generate at least one message * CPI for every inch the player moves the mouse. Some of the newer mice are 5500+ "DPI"... which could easily flood a message loop if they move the mouse more than a few inches at a time - if the eventhandling is non-trivial and their computers slow.

Brendon

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
    • http://blendogames.com
Mouse movement causing framerate drop
« Reply #12 on: March 17, 2011, 07:07:13 pm »
Counting how many messages are generated per second sounds like a good place to start.  Here's my test app:

Catch the events when user moves mouse:
Code: [Select]
appWindow.MouseMoved += new EventHandler<MouseMoveEventArgs>(appWindow_MouseMoved);

Increment a counter each time the mouse moves:
Code: [Select]
void appWindow_MouseMoved(object sender, SFML.Window.MouseMoveEventArgs e)
{
       this.mousemoveCounter++;
}

Once per second, display mousemoveCounter's value before resetting it to zero.

Does that sound like how one would count the messages per second?

Brendon

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
    • http://blendogames.com
Mouse movement causing framerate drop
« Reply #13 on: March 17, 2011, 09:04:06 pm »
I set up the event-test program.  

My mouse gets ~125 mouse-movement events per second. My user with the problem is getting ~500 events per second.

For those curious, here's a link to the program: http://blendogames.com/dev/windowtest04.zip

Groogy

  • Hero Member
  • *****
  • Posts: 1469
    • MSN Messenger - groogy@groogy.se
    • View Profile
    • http://www.groogy.se
    • Email
Mouse movement causing framerate drop
« Reply #14 on: March 18, 2011, 04:24:31 am »
500 still looks like a bit low to actually make the application lag. Though depends on the host machine and what you actually do with the event.

Easy fix for Laurent is to add a bool to mouse moved event that tells the end user if this is the last mouse moved event currently in the queue. Giving us the option to:

Code: [Select]

while( window.GetEvent( event ) == true )
{
        switch( event.Type )
        {
         case sf::Event::MouseMoved:
                if( event.MouseMove.IsLast == false )
                        continue;
        }
}


Unless you depend on precise relative movement, this should help out with the lag as you now instead just ignores all mouse movement that you anyway don't care about.

High DPI mices are a joke. They slow down both the hardware and the software <_< (Clogging up traffic unnecessary)
Why do people buy them?
Developer and Maker of rbSFML and Programmer at Paradox Development Studio

 

anything