fix merge conflicts
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot;
2
53d61b3e 3import org.usfirst.frc.team3501.robot.Constants.Defense;
2947642e 4import org.usfirst.frc.team3501.robot.subsystems.DefenseArm;
047383c3 5import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
e47f0862 6import org.usfirst.frc.team3501.robot.subsystems.IntakeArm;
02cb494e 7import org.usfirst.frc.team3501.robot.subsystems.Scaler;
40348cab
E
8import org.usfirst.frc.team3501.robot.subsystems.Shooter;
9
38a404b3
KZ
10import edu.wpi.first.wpilibj.IterativeRobot;
11import edu.wpi.first.wpilibj.command.Scheduler;
3366a59a
ME
12import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
13import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
38a404b3
KZ
14
15public class Robot extends IterativeRobot {
16 public static OI oi;
17 public static DriveTrain driveTrain;
40348cab 18 public static Shooter shooter;
02cb494e 19 public static Scaler scaler;
a96fa926 20 public static IntakeArm intakeArm;
38a404b3 21
88e66b4e 22 // Sendable Choosers send a drop down menu to the Smart Dashboard.
3366a59a 23 SendableChooser positionChooser;
6947c8a4 24 SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense,
a96fa926
D
25 positionFourDefense,
26 positionFiveDefense;
3366a59a 27
38a404b3
KZ
28 @Override
29 public void robotInit() {
30 driveTrain = new DriveTrain();
31 oi = new OI();
40348cab 32 shooter = new Shooter();
02cb494e 33 scaler = new Scaler();
a96fa926 34 intakeArm = new IntakeArm();
3366a59a 35
a96fa926
D
36 // Sendable Choosers allows the driver to select the position of the
37 // robot
88e66b4e
ME
38 // and the positions of the defenses from a drop-down menu on the Smart
39 // Dashboard
29d59f48
ME
40 // make the Sendable Choosers
41 initializeSendableChoosers();
42 addPositionChooserOptions();
43 addDefensesToAllDefenseSendableChooosers();
44 sendSendableChoosersToSmartDashboard();
45
3366a59a
ME
46 }
47
6947c8a4
ME
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
29d59f48
ME
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) {
3366a59a
ME
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);
38a404b3
KZ
82 }
83
29d59f48
ME
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);
a96fa926
D
90 SmartDashboard
91 .putData("Position Four Defense Chooser", positionFourDefense);
92 SmartDashboard
93 .putData("Position Five Defense Chooser", positionFiveDefense);
29d59f48
ME
94 }
95
38a404b3
KZ
96 @Override
97 public void autonomousInit() {
3366a59a
ME
98 Scheduler.getInstance().run();
99
100 // get options chosen from drop down menu
101 Integer chosenPosition = (Integer) positionChooser.getSelected();
e13d2293 102 Integer chosenDefense = 0;
3366a59a 103
33981335
ME
104 switch (chosenPosition) {
105 case 1:
3366a59a 106 chosenDefense = (Integer) positionOneDefense.getSelected();
33981335 107 case 2:
3366a59a 108 chosenDefense = (Integer) positionTwoDefense.getSelected();
33981335 109 case 3:
3366a59a 110 chosenDefense = (Integer) positionThreeDefense.getSelected();
33981335 111 case 4:
3366a59a 112 chosenDefense = (Integer) positionFourDefense.getSelected();
33981335 113 case 5:
3366a59a 114 chosenDefense = (Integer) positionFiveDefense.getSelected();
33981335 115 }
3366a59a
ME
116
117 System.out.println("Chosen Position: " + chosenPosition);
118 System.out.println("Chosen Defense: " + chosenDefense);
38a404b3
KZ
119 }
120
121 @Override
122 public void autonomousPeriodic() {
123 Scheduler.getInstance().run();
38a404b3
KZ
124 }
125
126 @Override
127 public void teleopInit() {
128 }
129
130 @Override
131 public void teleopPeriodic() {
132 Scheduler.getInstance().run();
133
134 }
135}