Formatting and Conventions Work pt2

This commit is contained in:
HFocus
2019-08-07 18:47:51 -06:00
parent 745d55342d
commit 4c90f039ef
@@ -50,14 +50,14 @@ public class XboxController implements IHandController
private static final double DEADZONE = 0.1; private static final double DEADZONE = 0.1;
private Joystick stick; private Joystick m_stick;
public XboxController(int portNumber){ public XboxController(int portNumber){
stick = new Joystick(portNumber); m_stick = new Joystick(portNumber);
} }
public Joystick getJoyStick() { public Joystick getJoyStick() {
return stick; return m_stick;
} }
/** /**
@@ -83,67 +83,67 @@ public class XboxController implements IHandController
} }
public boolean getAButton(){ public boolean getAButton(){
return stick.getRawButton(A_BUTTON); return m_stick.getRawButton(A_BUTTON);
} }
public boolean getXButton(){ public boolean getXButton(){
return stick.getRawButton(X_BUTTON); return m_stick.getRawButton(X_BUTTON);
} }
public boolean getBButton(){ public boolean getBButton(){
return stick.getRawButton(B_BUTTON); return m_stick.getRawButton(B_BUTTON);
} }
public boolean getYButton(){ public boolean getYButton(){
return stick.getRawButton(Y_BUTTON); return m_stick.getRawButton(Y_BUTTON);
} }
public boolean getBackButton(){ public boolean getBackButton(){
return stick.getRawButton(BACK_BUTTON); return m_stick.getRawButton(BACK_BUTTON);
} }
public boolean getStartButton(){ public boolean getStartButton(){
return stick.getRawButton(START_BUTTON); return m_stick.getRawButton(START_BUTTON);
} }
public boolean getLeftBumperButton(){ public boolean getLeftBumperButton(){
return stick.getRawButton(LEFT_BUMPER_BUTTON); return m_stick.getRawButton(LEFT_BUMPER_BUTTON);
} }
public boolean getRightBumperButton(){ public boolean getRightBumperButton(){
return stick.getRawButton(RIGHT_BUMPER_BUTTON); return m_stick.getRawButton(RIGHT_BUMPER_BUTTON);
} }
public boolean getLeftJoystickButton(){ public boolean getLeftJoystickButton(){
return stick.getRawButton(LEFT_JOYSTICK_BUTTON); return m_stick.getRawButton(LEFT_JOYSTICK_BUTTON);
} }
public boolean getRightJoystickButton(){ public boolean getRightJoystickButton(){
return stick.getRawButton(RIGHT_JOYSTICK_BUTTON); return m_stick.getRawButton(RIGHT_JOYSTICK_BUTTON);
} }
public double getLeftXAxis(){ public double getLeftXAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(LEFT_X_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(LEFT_X_AXIS));
} }
public double getLeftYAxis(){ public double getLeftYAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(LEFT_Y_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(LEFT_Y_AXIS));
} }
public double getRightXAxis(){ public double getRightXAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(RIGHT_X_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(RIGHT_X_AXIS));
} }
public double getRightYAxis(){ public double getRightYAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(RIGHT_Y_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(RIGHT_Y_AXIS));
} }
public double getLeftTriggerAxis(){ public double getLeftTriggerAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(LEFT_TRIGGER_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(LEFT_TRIGGER_AXIS));
} }
public double getRightTriggerAxis(){ public double getRightTriggerAxis(){
return getAxisWithDeadZoneCheck(stick.getRawAxis(RIGHT_TRIGGER_AXIS)); return getAxisWithDeadZoneCheck(m_stick.getRawAxis(RIGHT_TRIGGER_AXIS));
} }
/** /**
@@ -151,23 +151,23 @@ public class XboxController implements IHandController
* @return -1 if nothing is pressed, or the angle of the button pressed. 0 = up, 90 = right, etc. * @return -1 if nothing is pressed, or the angle of the button pressed. 0 = up, 90 = right, etc.
*/ */
public int getDpadAngle() { public int getDpadAngle() {
return stick.getPOV(0); return m_stick.getPOV(0);
} }
public boolean getDPadLeft(){ public boolean getDPadLeft(){
return (stick.getRawAxis(LEFT_RIGHT_DPAD_AXIS) < LEFT_DPAD_TOLERANCE); return (m_stick.getRawAxis(LEFT_RIGHT_DPAD_AXIS) < LEFT_DPAD_TOLERANCE);
} }
public boolean getDPadRight(){ public boolean getDPadRight(){
return (stick.getRawAxis(LEFT_RIGHT_DPAD_AXIS) > RIGHT_DPAD_TOLERANCE); return (m_stick.getRawAxis(LEFT_RIGHT_DPAD_AXIS) > RIGHT_DPAD_TOLERANCE);
} }
public boolean getDPadTop(){ public boolean getDPadTop(){
return (stick.getRawAxis(TOP_BOTTOM_DPAD_AXIS) < TOP_DPAD_TOLERANCE); return (m_stick.getRawAxis(TOP_BOTTOM_DPAD_AXIS) < TOP_DPAD_TOLERANCE);
} }
public boolean getDPadBottom(){ public boolean getDPadBottom(){
return (stick.getRawAxis(TOP_BOTTOM_DPAD_AXIS) > BOTTOM_DPAD_TOLERANCE); return (m_stick.getRawAxis(TOP_BOTTOM_DPAD_AXIS) > BOTTOM_DPAD_TOLERANCE);
} }
public boolean getLeftTrigger(){ public boolean getLeftTrigger(){