-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additional Functional Suggestions #22
Comments
I've never used the YUZU emulator so I may just not understand, but to clarify. You want to be able to control the RIGHT analog stick with the keyboard, and not the mouse? Does that mean you want the mouse to control the LEFT analog stick? or no mouse use at all? OR Do you just want to be able to map more than one key at a time to the LEFT analog stick? so you can say have "W" and "UP" both work? |
The reason I asked you this question is because of Diablo 3 for YUZU. Most games have only 8-axis direction and can play the game well. The current version also works well in regular FPS games. In the case of Diablo 3 console, 14-axis analog stick operation is required for equipment replacement. I remembered that there was MouseToJoystick in CEMU, so I installed it. But CEMU was designed to replace the analog stick on the right for a typical game. Diablo 3 made the manufacturer move the equipment replacement compartment to the left analog stick used to move from the equipment replacement screen. I replaced the contents of lstick and rstick in qt-config and confirmed that the mouse was operating normally in Diablo 3. The problem was that the mouse2joystick_custom_CEMU was unable to operate the working analog stick on the keyboard at the same time. If this happens, the movement of the character should be done only with the mouse, but it is impossible. However, it was not possible to use the mouse2joystick_custom_CEMU only when replacing the equipment. https://github.com/0x384c0/MouseToJoystickYuzu Here's a program made by Auto Hotkey that works with YUZU. This program makes the analog stick(right or left) work with the mouse as the keyboard works. If the WSAD is set to the analog stick, it can work with the keyboard and also with the mouse. By the way, this program is simple and recognizes only 4 directions, so you can enter only 8 axes. https://www.autohotkey.com/boards/viewtopic.php?t=20703 Original mouse2joystick.Ahk supported the 12-axis. https://wiki.rpcs3.net/index.php?title=Help:Binding_Mouse_to_analog_sticks RPCS3/rpcs3#4461 RPCS3/rpcs3#5468 In rpcs3, the mouse2joystick method seems to be turned on and off. The solution I've come up with is:
'KeyList=XButton1|e' in the same way as 'Mouse shaft|WASD', etc. to operate simultaneously with the keyboard. it's even better if you can choose either left or right in the program.
https://www.autohotkey.com/boards/viewtopic.php?t=20703 All you have to do is insert the directional key you want to enter here and specify the toggle key. If the user specifies the specific directional key they want, they can only turn it on during equipment replacement and turn it off in normal situations.
; key bindings ; init private variables I don't know programming, so even if I change the number, it doesn't work as smoothly as mouse2joystick_custom_CEMU. The most convenient solution would be to modify the figures to make Diablo 3 and 14 axes work. |
Modifying this part will cause the mouse to adjust the left analog stick. Equipment replacement works normally. Instead, it becomes difficult to move the character with the keyboard. The character stops and does not move normally. If the mouse loses its movement, the analog stick operation on the mouse will be turned off, and if the character moves only with the keyboard, it will work normally.
This is the content of mouse2joystick, which is the prototype of this program. Originally it supports 12 directions, but the '12, 4, 7, 10' orientation is integrated with the other direction keys and only recognizes 8 directions. It seems to be because the keyboard is only 0(Off) and 1(On). |
The YUZU emulator also confirmed that it works normally when you select Vbox.
Sometimes I have to work with the keyboard instead of the mouse, but there are no duplicates.
Keyboard operation, not mouse operation, allows multiple keys to be available at the same time.
ex>
Manually setting the list has an advantage in that you can add more than one key to the same button (New as of 0.2.0.3)
This is accomplished by adding the keys together using the | symbol.
i.e. you'll notice Xbutton1|e, is what I have set for A -- allowing Mouse4 and e to both work.
If possible, I would like to create a space under D-UP, DOWN, LEFT, and RIGHT on the keylist helper screen so that you can use the keyboard to manipulate the analog stick on the left.
Or, you may want to create a space next to the keyboard movement screen.
The text was updated successfully, but these errors were encountered: