Tagged Questions
JInput is a Java API for accessing input controllers, originally intended for game controllers.
2
votes
3answers
445 views
Time delay problem
Ok, I don't know how to word this questions but maybe my code will spell out the problem:
public class ControllerTest
{
public static void main(String [] args)
{
GamePadController ...
0
votes
1answer
25 views
Checking for similar Controllers in JInput
I'm trying to have several gamepad at the same time in JInput, while also checking for newly plugged gamepad. Here is the code used to check for new controllers.
new ...
0
votes
1answer
261 views
Jinput library not found in java.library.path
I am trying to use jinput with a wrapper library (procontroll) in a Java application on OS X.
The problem is in the jinput library. When control gets to net.java.games.input.OSXEnvironmentPlugin's ...
0
votes
1answer
505 views
Using Keyboards in JInput without root privileges
I'm writing a program that needs to poll keyboard keys at specific times, and rather than going through the effort of writing my own event-driven keyboard polling class, I thought I'd use JInput's ...
0
votes
2answers
106 views
How to interpret gamepad-rumblers?
I'm experimenting with the rumblers on my gamepad and when I 'read' the gamepad
(with JInput),
it finds 5 rumblers.
So I expected the gamepad to have two rumblers on each side and one in the middle.
...
0
votes
1answer
926 views
JInput “no jinput-dx8 in java.library.path” Error
Hi I'm trying to make a game in java that gives users the option to a joystick or gamepad to control movement. So I found something called "JInput" that is suppose to make it easy to detect all ...
0
votes
1answer
190 views
Jinput init's controllers with up and left as true
I tried using it on this simple code, and JInput makes the controller automatically go up and left! IT seeems that input.isControllerUp(Input.ANY_CONTROLLER) starts out as true! How can I fix this?
...