ea7910b607f05090ca31e46446fa6f0f33ee2654
[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
22 // Sendable Choosers send a drop down menu to the Smart Dashboard.
23 SendableChooser positionChooser;
24 SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense,
25 positionFourDefense,
26 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
91 .putData("Position Four Defense Chooser", positionFourDefense);
92 SmartDashboard
93 .putData("Position Five Defense Chooser", positionFiveDefense);
94 }
95
96 @Override
97 public void autonomousInit() {
98 Scheduler.getInstance().run();
99
100 // get options chosen from drop down menu
101 Integer chosenPosition = (Integer) positionChooser.getSelected();
102 Integer chosenDefense = 0;
103
104 switch (chosenPosition) {
105 case 1:
106 chosenDefense = (Integer) positionOneDefense.getSelected();
107 case 2:
108 chosenDefense = (Integer) positionTwoDefense.getSelected();
109 case 3:
110 chosenDefense = (Integer) positionThreeDefense.getSelected();
111 case 4:
112 chosenDefense = (Integer) positionFourDefense.getSelected();
113 case 5:
114 chosenDefense = (Integer) positionFiveDefense.getSelected();
115 }
116
117 System.out.println("Chosen Position: " + chosenPosition);
118 System.out.println("Chosen Defense: " + chosenDefense);
119 }
120
121 @Override
122 public void autonomousPeriodic() {
123 Scheduler.getInstance().run();
124 }
125
126 @Override
127 public void teleopInit() {
128 }
129
130 @Override
131 public void teleopPeriodic() {
132 Scheduler.getInstance().run();
133
134 }
135 }