summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Teleop.java
blob: 9675f659fc5433ee5b83b2cce5826d973487b62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package org.usfirst.frc.team4272.robot2016;

import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.GenericHID.Hand; 
import org.usfirst.frc.team4272.robotlib.PushButton;

public class Teleop {
	private final HwRobot robot;
	private final double armSoftStop = 95;//295;

	private final PushButton shootButton = new PushButton();
	private final Timer time = new Timer();
	private double lastTime;
	private double currentTime;
	private boolean state = false;

	public Teleop(HwRobot robot) {
		this.robot = robot;
	}

	private static double jsScale(Joystick j) {
		double y = j.getY();/* +:forward; -:backward */
		double z = j.getZ();/* +:more-sensitive; -:less-sensitive */
		return Math.copySign(Math.pow(Math.abs(y), 2.0-z), y);
	}

	private static double bound(double min, double v, double max) {
		return Math.min(Math.max(v, min), max);
	}

	private static double oneIf(boolean b) {
		return b ? 1 : 0;
	}
	
	public Control run(Control control, HwOI oi) {
		/* Drive */
		control.lDrive = -jsScale(oi.lStick);
		control.rDrive = -jsScale(oi.rStick);

		if (oi.lStick.getTrigger()) {
			control.highGear = false;
		} else if (oi.rStick.getTrigger()) {
			control.highGear = true;
		}

		if (oi.rStick.getRawButton(2) || oi.lStick.getRawButton(2)) { 
			currentTime = Timer.getMatchTime();
			if(currentTime-lastTime > 0.15){
				state = !state;
				lastTime = currentTime;
			}
			if (state){
				control.lDrive = 0.5;
				control.rDrive = 0;
			}
			else if(!state){
				control.lDrive = 0;
				control.rDrive = 0.5;
			}
		}
		
		if(oi.xbox.getRawAxis(1) > 0.2){
			control.climber = oi.xbox.getRawAxis(1);
		} else if (oi.xbox.getRawAxis(1) < -0.2) {
			control.climber = oi.xbox.getRawAxis(1);
		} else {
			control.climber = 0;
		}

		/* gear place */
		if (oi.xbox.getAButton()) {
			control.gedOut = true;
		}
		if (oi.xbox.getBButton()) {
			control.gedOut = false;
		}
		
		
		if(oi.xbox.getTriggerAxis(Hand.kRight) > 0)
			control.camRotate = 1;
		else if(oi.xbox.getTriggerAxis(Hand.kLeft) > 0)
			control.camRotate = -1;
		else
			control.camRotate = 0;
		control.camTilt = oi.xbox.getX(Hand.kRight);

		return control;
	}
}