JInput is a Java API for accessing input controllers, originally intended for game controllers.
0
votes
0answers
60 views
Getting a hidraw stream in java
I am trying to access a usb controller for a java app. I was using jinput however it only gets devices that are /dev/input/event0, /dev/input/event1, ect. I have only been able to find my device in ...
2
votes
0answers
43 views
Can't save filenames into the database with JInput
I have a form with input fields of type text and file. I have a problem of the filenames not saving in the database but everything else does. I vardumped $myForm and everything is there but the files, ...
-1
votes
2answers
145 views
How to get file tmp_name using JInput
I'm a bit stuck with this. I have this bit of code which manages to get the filename of my file:
class AControllerA extends JControllerForm
{
function save()
{
//Upload file
...
0
votes
1answer
137 views
lwjgl + slick2d + jinput error on 64-bit linux
I am using Linux (Ubuntu 12.04) with 64-bit java 7 and Eclipse (Indigo).
On the game project we are using slick2d and along with it lwjgl. I was halted by the following errors.
(fixes explained in the ...
0
votes
0answers
31 views
Signing JInput to be used in an applet in a web browser
My friends and I are creating a game for the Jam this weekend, and we have most of it done, but we are trying to put the applet in the web browser, but we can't load jInput because it requires native ...
1
vote
0answers
37 views
New Option for Each Controller Found [duplicate]
Possible Duplicate:
Values of JComboBox
I have a code like this:
import net.java.games.input.Controller;
import net.java.games.input.Controller.Type;
import ...
0
votes
1answer
235 views
Using the JInput
I have done A LOT of researching but I can't seem to find a basic code for JInput that gets the X and Y axis of the controller. Also, to "select"/set your controller, how do you filter out the mouse ...
0
votes
3answers
634 views
Java Working Directory
I'm pretty new to programming, so this should be an easy one. I'm switching from eclipse to netbeans and I am trying to add libjinput-osx.jnilib to my working directory. I have step by step ...
1
vote
1answer
106 views
Using Jinput to pop up a JFrame WIndow alarm
Using Jinput and Java in Netbeans, I'm working on a very small project that simply Pops up a JFrame alarm window when lets say a user presses down on the 'K' on the keyboard and terminates the JFrame ...
0
votes
1answer
97 views
JInput doesn't update / refresh
I'm using JInput for Gamepad control on Win7 64bit. I ran into a problem: Once I get the DefaultEnvironment the controller list doesn't get updated or refreshed.
for (Controller c : ...
-1
votes
1answer
172 views
JInput won't detect Controller Win 7 64 bit
I'm trying to detect a Controller device with JInput. It works fine on my Win7 32 bit PC and Java 32 bit VM. But unfortunally it doesn't find the controller, when i start the programm on a Win7 64 bit ...
0
votes
1answer
370 views
LWJGL input with PS3 controller?
I'm kind of new to LWJGL (I have done some things with it in Minecraft), and I need some help. I want to make a mod for Minecraft where the user could have the option of using their PS3 controller. I ...
-1
votes
1answer
74 views
Possible JInput memory leak
This post checking-for-similar-controllers would seem to indicate that controller connection/disconnection functionality doesn't exist. Our GUI has a requirement to detect when a device gets removed ...
0
votes
1answer
139 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
934 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
1k 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
214 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.
...
2
votes
3answers
805 views
Time delay and JInput
OK, I don't know how to word this question, but maybe my code will spell out the problem:
public class ControllerTest
{
public static void main(String [] args)
{
GamePadController ...
0
votes
1answer
2k 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 ...
1
vote
2answers
365 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?
...

