-4

我一直在尝试使用我的 Wii U 游戏手柄来控制我的 PC,并且遇到了一些障碍。我第一次尝试使用一个名为 Useendmii 的应用程序,但按钮和光标更新轮询速率仅为我所读到的 50 毫秒。这绝对不够快,并且在任何需要移动相机的东西上都会导致超级卡顿的游戏玩法。

所以我转向其他选项,找到了由 Chris Manning 编写的 GamepadToPC.rar。它解决了口吃问题,但会导致光标在屏幕上非常缓慢地移动。我一直在尝试找到一种方法来编辑源代码,但它是用节点 jQuery 和 HTML 编写的。我在 jQuery 或 node 方面没有大量经验,所以我认为仅查看 HTML 文件就缺少一个设置。

还需要注意的是,我已将 Windows 光标灵敏度提高到最大和游戏内灵敏度。

请帮忙!

因为这里有几个文件是链接(只需点击 4 月 1 日

https://web.archive.org/web/ */ http://lhite.com/wiiu/GamePadtoPC.rar

4

1 回答 1

0

I just want to mention a few things about UsendMii. Since version 0.1.0, the WebSocket protocol is used to transmit data from the Wii U Internet Browser to the PC. For that to work, you will need to have Wii U update 4.0.0. Without this version, POST requests are used.

So what it means is that if you have newer version of the software you could transfer the button states at each 20ms. Without that, it will be set to 40ms.

If you need to test that, simply start the application with the -d switch. At the bottom you will see the average time for an HTTP request.

Current version of UsendMii is 0.2.3 and by the way it has a Mouse Speed setting.

于 2015-11-18T03:23:56.697 回答