[PATCH v10 9/9] winex11.drv: Don't react to small slow mouse movements.

Rémi Bernon rbernon at codeweavers.com
Fri Aug 2 03:30:11 CDT 2019


On 8/2/19 8:24 AM, Derek Lesho wrote:
> From: Jordan Galby <gravemind2a+wine at gmail.com>
> 
> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=42631
> From: Jordan Galby <gravemind2a+wine at gmail.com>
> Signed-off-by: Derek Lesho <dereklesho52 at Gmail.com>
> ---
>   dlls/winex11.drv/mouse.c  | 50 +++++++++++++++++++++++++++++----------
>   dlls/winex11.drv/x11drv.h |  1 +
>   2 files changed, 39 insertions(+), 12 deletions(-)
> 
> diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c
> index 650e81204d..b53bad8144 100644
> --- a/dlls/winex11.drv/mouse.c
> +++ b/dlls/winex11.drv/mouse.c
> @@ -261,6 +261,10 @@ static void update_relative_valuators(XIAnyClassInfo **valuators, int n_valuator
>       thread_data->y_rel_valuator.number = -1;
>       thread_data->wheel_valuator.number = -1;
>   
> +    thread_data->x_rel_valuator.accum = 0;
> +    thread_data->y_rel_valuator.accum = 0;
> +    thread_data->wheel_valuator.accum = 0;
> +
>       for (i = 0; i < n_valuators; i++)
>       {
>           XIValuatorClassInfo *class = (XIValuatorClassInfo *)valuators[i];
> @@ -1815,8 +1819,6 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev )
>       input.u.mi.dwFlags     = MOUSEEVENTF_MOVE;
>       input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
>       input.u.mi.dwExtraInfo = 0;
> -    input.u.mi.dx = 0;
> -    input.u.mi.dy = 0;
>   
>       raw_input.header.dwType = RIM_TYPEMOUSE;
>       raw_input.data.mouse.u.usButtonFlags = 0;
> @@ -1834,18 +1836,18 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev )
>           raw_val = *raw_values++;
>           if (i == x_rel->number)
>           {
> -            input.u.mi.dx = dx = val;
> +            dx = val;
>               if (x_rel->min < x_rel->max)
> -                input.u.mi.dx = val * (virtual_rect.right - virtual_rect.left)
> +                dx = val * (virtual_rect.right - virtual_rect.left)
>                                       / (x_rel->max - x_rel->min);
>   
>               raw_input.data.mouse.lLastX = raw_dx = raw_val;
>           }
>           if (i == y_rel->number)
>           {
> -            input.u.mi.dy = dy = val;
> +            dy = val;
>               if (y_rel->min < y_rel->max)
> -                input.u.mi.dy = val * (virtual_rect.bottom - virtual_rect.top)
> +                dy = val * (virtual_rect.bottom - virtual_rect.top)
>                                       / (y_rel->max - y_rel->min);
>   
>               raw_input.data.mouse.lLastY = raw_dy = raw_val;
> @@ -1856,20 +1858,44 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev )
>   
>       if (broken_rawevents && is_old_motion_event( xev->serial ))
>       {
> -        TRACE( "pos %d,%d old serial %lu, ignoring\n", input.u.mi.dx, input.u.mi.dy, xev->serial );
> +        TRACE( "pos %d,%d old serial %lu, ignoring\n", (LONG) dx, (LONG) dy, xev->serial );
>           return FALSE;
>       }
>   
> -    if (thread_data->xi2_state == xi_extra)
> +    /* Accumulate the *double* motions so sub-pixel motions
> +     * wont be lost when sent/cast to *LONG* target fields.
> +     */
> +
> +    x_rel->accum += dx;
> +    y_rel->accum += dy;
> +    if (fabs(x_rel->accum) < 1.0 && fabs(y_rel->accum) < 1.0)
>       {
> -        TRACE( "pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy );
> -        __wine_send_input( 0, &input );
> +        TRACE( "accumulating raw motion (event %f,%f, accum %f,%f)\n", dx, dy, x_rel->accum, y_rel->accum );
>       }
> +    else
> +    {
> +        input.u.mi.dx = x_rel->accum;
> +        input.u.mi.dy = y_rel->accum;
> +        x_rel->accum -= input.u.mi.dx;
> +        y_rel->accum -= input.u.mi.dy;
>   
> -    if (dwheel)
> +        if (thread_data->xi2_state == xi_extra)
> +        {
> +            TRACE( "pos %d,%d (event %f,%f)\n", input.u.mi.dx, input.u.mi.dy, dx, dy );
> +            __wine_send_input( 0, &input );
> +        } > +    }
> +
> +    wheel->accum += dwheel;
> +    if (fabs(wheel->accum) < 1.0)

As there's a 8x factor below it could be 0.125, or you could accumulate 
the 8x values instead. Note that my testing with touchpad showed a 
higher threshold of +-120.0 for minimum wheel movement (+-15.0 in 
XInput2 raw values) but it wasn't very extensive though.

> +    {
> +        TRACE("accumulating wheel motion (event %f, accum %f)\n", dwheel, wheel->accum);
> +    }
> +    else
>       {
>           raw_input.data.mouse.u.usButtonFlags = RI_MOUSE_WHEEL;
> -        raw_input.data.mouse.u.usButtonData  = dwheel * 8;
> +        raw_input.data.mouse.u.usButtonData  = wheel->accum * 8;
> +        wheel->accum -= dwheel;
>       }
>   
>       TRACE("raw event %f,%f + %f\n",  raw_dx, raw_dy, dwheel);
> diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h
> index c74f1493c0..8a59874251 100644
> --- a/dlls/winex11.drv/x11drv.h
> +++ b/dlls/winex11.drv/x11drv.h
> @@ -320,6 +320,7 @@ struct x11drv_valuator_data
>       double min;
>       double max;
>       int number;
> +    double accum;
>   };
>   
>   struct x11drv_thread_data
> 


-- 
Rémi Bernon <rbernon at codeweavers.com>



More information about the wine-devel mailing list