Make 2 methods for gyro to getAngle and setSensitivity in DriveTrain class
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
1 package org.usfirst.frc.team3501.robot;
2
3 import org.usfirst.frc.team3501.robot.Constants.Defense;
4 import org.usfirst.frc.team3501.robot.subsystems.DefenseArm;
5 import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
6 import org.usfirst.frc.team3501.robot.subsystems.IntakeArm;
7 import org.usfirst.frc.team3501.robot.subsystems.Scaler;
8 import org.usfirst.frc.team3501.robot.subsystems.Shooter;
9
10 import edu.wpi.first.wpilibj.IterativeRobot;
11 import edu.wpi.first.wpilibj.command.Scheduler;
12 import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
13 import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
14
15 public class Robot extends IterativeRobot {
16 public static OI oi;
17 public static DriveTrain driveTrain;
18 public static Shooter shooter;
19 public static Scaler scaler;
20 public static IntakeArm intakeArm;
21 public static DefenseArm defenseArm;
22
23 // Sendable Choosers send a drop down menu to the Smart Dashboard.
24 SendableChooser positionChooser;
25 SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense,
26 positionFourDefense, positionFiveDefense;
27
28 @Override
29 public void robotInit() {
30 driveTrain = new DriveTrain();
31 oi = new OI();
32 shooter = new Shooter();
33 scaler = new Scaler();
34 intakeArm = new IntakeArm();
35
36 // Sendable Choosers allows the driver to select the position of the
37 // robot
38 // and the positions of the defenses from a drop-down menu on the Smart
39 // Dashboard
40 // make the Sendable Choosers
41 initializeSendableChoosers();
42 addPositionChooserOptions();
43 addDefensesToAllDefenseSendableChooosers();
44 sendSendableChoosersToSmartDashboard();
45
46 }
47
48 private void initializeSendableChoosers() {
49 positionChooser = new SendableChooser();
50 positionOneDefense = new SendableChooser();
51 positionTwoDefense = new SendableChooser();
52 positionThreeDefense = new SendableChooser();
53 positionFourDefense = new SendableChooser();
54 positionFiveDefense = new SendableChooser();
55 }
56
57 private void addPositionChooserOptions() {
58 positionChooser.addDefault("Position 1", 1);
59 positionChooser.addObject("Position 2", 2);
60 positionChooser.addObject("Position 3", 3);
61 positionChooser.addObject("Position 4", 4);
62 positionChooser.addObject("Position 5", 5);
63 }
64
65 private void addDefensesToAllDefenseSendableChooosers() {
66 addDefenseOptions(positionOneDefense);
67 addDefenseOptions(positionTwoDefense);
68 addDefenseOptions(positionThreeDefense);
69 addDefenseOptions(positionFourDefense);
70 addDefenseOptions(positionFiveDefense);
71 }
72
73 private void addDefenseOptions(SendableChooser chooser) {
74 chooser.addDefault("Portcullis", Defense.PORTCULLIS);
75 chooser.addObject("Sally Port", Defense.SALLY_PORT);
76 chooser.addObject("Rough Terrain", Defense.ROUGH_TERRAIN);
77 chooser.addObject("Low Bar", Defense.LOW_BAR);
78 chooser.addObject("Cheval De Frise", Defense.CHEVAL_DE_FRISE);
79 chooser.addObject("Drawbridge", Defense.DRAWBRIDGE);
80 chooser.addObject("Moat", Defense.MOAT);
81 chooser.addObject("Rock Wall", Defense.ROCK_WALL);
82 }
83
84 private void sendSendableChoosersToSmartDashboard() {
85 SmartDashboard.putData("PositionChooser", positionChooser);
86 SmartDashboard.putData("Position One Defense Chooser", positionOneDefense);
87 SmartDashboard.putData("Position Two Defense Chooser", positionTwoDefense);
88 SmartDashboard.putData("Position Three Defense Chooser",
89 positionThreeDefense);
90 SmartDashboard.putData("Position Four Defense Chooser",
91 positionFourDefense);
92 SmartDashboard.putData("Position Five Defense Chooser",
93 positionFiveDefense);
94 SmartDashboard.putData("Position Four Defense Chooser",
95 positionFourDefense);
96 SmartDashboard.putData("Position Five Defense Chooser",
97 positionFiveDefense);
98
99 shooter = new Shooter();
100 }
101
102 @Override
103 public void autonomousInit() {
104 Scheduler.getInstance().run();
105
106 // get options chosen from drop down menu
107 Integer chosenPosition = (Integer) positionChooser.getSelected();
108 Integer chosenDefense = 0;
109
110 switch (chosenPosition) {
111 case 1:
112 chosenDefense = (Integer) positionOneDefense.getSelected();
113 case 2:
114 chosenDefense = (Integer) positionTwoDefense.getSelected();
115 case 3:
116 chosenDefense = (Integer) positionThreeDefense.getSelected();
117 case 4:
118 chosenDefense = (Integer) positionFourDefense.getSelected();
119 case 5:
120 chosenDefense = (Integer) positionFiveDefense.getSelected();
121 }
122
123 System.out.println("Chosen Position: " + chosenPosition);
124 System.out.println("Chosen Defense: " + chosenDefense);
125 }
126
127 @Override
128 public void autonomousPeriodic() {
129 Scheduler.getInstance().run();
130 }
131
132 @Override
133 public void teleopInit() {
134 }
135
136 @Override
137 public void teleopPeriodic() {
138 Scheduler.getInstance().run();
139
140 }
141 }