<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jun 13, 2016 at 11:23 PM, DavidL <span dir="ltr"><<a href="mailto:david.dljunk@gmail.com" target="_blank">david.dljunk@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, Jun 13, 2016 at 2:46 PM, Ken Thomases <span dir="ltr"><<a href="mailto:ken@codeweavers.com" target="_blank">ken@codeweavers.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span>On Jun 13, 2016, at 12:11 AM, David Lawrie <<a href="mailto:david.dljunk@gmail.com" target="_blank">david.dljunk@gmail.com</a>> wrote:<br>
><br>
> Sliders, Dials, and Wheels now map to Z, U (Ry), or V (Rx) depending on<br>
> availability. Thus, also adds support for up to 3 such HID elements.<br>
<br>
</span><span>> dlls/winejoystick.drv/joystick_osx.c | 20 +++++++++++++++++++-<br>
> 1 file changed, 19 insertions(+), 1 deletion(-)<br>
><br>
> diff --git a/dlls/winejoystick.drv/joystick_osx.c b/dlls/winejoystick.drv/joystick_osx.c<br>
> index 77dbef8..4e59ca3 100644<br>
> --- a/dlls/winejoystick.drv/joystick_osx.c<br>
> +++ b/dlls/winejoystick.drv/joystick_osx.c<br>
> @@ -442,8 +442,26 @@ static void collect_joystick_elements(joystick_t* joystick, IOHIDElementRef coll<br>
>                         break;<br>
>                     }<br>
>                     case kHIDUsage_GD_Slider:<br>
> -                        TRACE("kIOHIDElementTypeInput_Misc / kHIDUsage_GD_Slider; ignoring\n");<br>
> +                    case kHIDUsage_GD_Dial:<br>
> +                    case kHIDUsage_GD_Wheel:<br>
> +                    {<br>
> +                        //if one axis is taken, fall to the next until axes are filled<br>
<br>
</span>Line comments (//) are not allowed in most of Wine.<br></blockquote></div></div></div></div></div></blockquote><div><br></div><div>Sorry, I'll change that to a comment block.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><div class="h5"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<span><br>
> +                        int possible_axes[3] = {AXIS_Z,AXIS_RY,AXIS_RX};<br>
> +                        int axis = 0;<br>
> +                        TRACE("kIOHIDElementTypeInput_Misc / kHIDUsage_GD_<axis> (%d)", usage);<br>
> +                        while(axis < 3 && joystick->axes[possible_axes[axis]].element)<br>
> +                            axis++;<br>
> +                        if (axis == 3)<br>
> +                            TRACE("    ignoring\n");<br>
> +                        else<br>
> +                        {<br>
> +                            TRACE(" axis %d\n", possible_axes[axis]);<br>
<br>
</span>Rather than breaking the trace line across multiple TRACEs, you should just move the TRACE to after the selection of an axis.  Note that in the existing code, the "ignoring" TRACEs are on a separate line, which is why they are indented.  It doesn't make sense to have that extra space if that isn't on a separate line.<br>
<br>
Alternatively, you could put a newline on the first TRACE and indent the axis trace as a subordinate line.<br></blockquote><div><br></div></div></div><div>I'll try rationalize the TRACE commands.</div><span class=""><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<span><br>
<br>
> +                            joystick->axes[possible_axes[axis]].element = (IOHIDElementRef)CFRetain(child);<br>
> +                            joystick->axes[possible_axes[axis]].min_value = IOHIDElementGetLogicalMin(child);<br>
> +                            joystick->axes[possible_axes[axis]].max_value = IOHIDElementGetLogicalMax(child);<br>
> +                        }<br>
>                         break;<br>
> +                    }<br>
<br>
</span>Is there reason to expect that these elements (sliders, dials, wheels) will be listed after the "proper" axes (x, y, z, etc.) in the children array?  Since the proper axes are specific and these elements should only be mapped to unused axes, I think they should be enumerated in a separate pass after everything else has had a shot.  Note that collect_joystick_elements() is recursive, so it's not right to do it in a separate loop within collect_joystick_elements().  Probably, you'll want to call it twice from open_joystick(), with a flag to indicate which mode it should operate in.<br></blockquote><div><br></div></span><div>This where the Microsoft source documentation get *really* fuzzy. There are all sorts of possible mappings in the rare case where there is both a HID/Dinput Z-axis and a slider/dial/wheel. Microsoft gave 4-5 different variations of how it could go and in some of these mappings, the slider would take precedence over the reported HID Z-axis when mapping to the Winmm Z-axis such that slider -> WinmmZ is correct and the HID Z-axis is then ignored. So I decided to follow the Linux Winmm version and simply have whichever element is listed by the joystick first, wins. If it is the axis, it's the axis, if it is the slider, it's the slider. This actually is one of the ways Microsoft says to decide proper HID mappings to Winmm (and it seems like that for the elements within a joystick, the elements are always reported in the same order such that a user shouldn't experience the axes mappings changing each time they start up Wine/reconnect a device*). There is no 1 correct mapping for all cases. I guess ideally we would have a way of allowing the user to remap the joystick axes in the registry (maybe that would work even now? I don't know - I've seen some emails on that already in the wine-devel list serve but I don't know what the status of that kind of capability is) but even Microsoft states on of their pages that this is a pretty rare corner case.</div><div><br></div><div>*Note: in my testing this is *not* the same for OS X (I guess macOS now) reporting back devices - which human interface device is reported first seems to be random in my testing when I had both a virtual and physical joystick setup. Historically Winmm games would only take input from the first reported device - under Mac-Wine, I've noticed the games seem to be taking input from both my physical and virtual joysticks (sometimes regardless of what the game was saying it was doing!). This has both good and bad potential and is not necessarily behavior we should spend effort trying to get rid of. Not sure how the Linux version behaves in this situation in terms of joystick order and input from multiple sources. </div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<span><font color="#888888"><br>
-Ken<br>
<br>
</font></span></blockquote></div><br></div></div>
</blockquote></div><br></div></div>