gamepad1 -> P1 , gamepad2-> P2
This commit is contained in:
parent
0fc5db4f58
commit
67cd559e5f
@ -107,8 +107,8 @@ public class GamepadInput {
|
||||
return new Vector3f(x,y);
|
||||
}
|
||||
|
||||
public String getGamepadName(){
|
||||
return glfwGetJoystickName(this.gamepadNum);
|
||||
public int getGamepadName(){
|
||||
return this.gamepadNum;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -192,13 +192,15 @@ public class match {
|
||||
if (glfwJoystickPresent(GLFW_JOYSTICK_1)) {
|
||||
gamepad1.inputRefresh();
|
||||
inputsP1.recordInputsFromGamepad(gamepad1, p1.getPosX() < p2.getPosX());
|
||||
handleInputs(p1, inputsP1);
|
||||
}
|
||||
if (glfwJoystickPresent(GLFW_JOYSTICK_2)) {
|
||||
gamepad2.inputRefresh();
|
||||
inputsP2.recordInputsFromGamepad(gamepad2, p2.getPosX() <= p1.getPosX());
|
||||
}
|
||||
handleInputs(p1, inputsP1);
|
||||
handleInputs(p2, inputsP2);
|
||||
}
|
||||
|
||||
//
|
||||
acCode = 21;
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user