use wait command and move if statements from shoot at high goal to resetcatapult
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / shooter / ShootAtHighGoal.java
index 5ecc8091a64de82af8b18863ca9cdc729840c25c..6d15cde8362194c3ca7ef19763a6a3f49929a827 100755 (executable)
@@ -1,29 +1,39 @@
 package org.usfirst.frc.team3501.robot.commands.shooter;
 
+import org.usfirst.frc.team3501.robot.Constants.IntakeArm;
+import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArm;
+
 import edu.wpi.first.wpilibj.command.CommandGroup;
+import edu.wpi.first.wpilibj.command.WaitCommand;
 
 /**
  * This command group performs the sequence of steps to shoot at the high goal
  *
- * pre-conditions: the catapult is down, a ball is in the intake, and the intake
- * is in the up position
+ * pre-conditions: a ball is in the intake
  *
  * post-conditions: catapult is retracted, intake is extended
  */
 public class ShootAtHighGoal extends CommandGroup {
+  private static final double WAIT_SECONDS = 0.4;
 
   public ShootAtHighGoal() {
-    // check that the catapult is down and change accordingly
-
-    // (if photogate) check if ball is in intake
+    // make sure catapult is down
+    addSequential(new ResetCatapult());
 
-    // make sure intake is in up position and change accordingly
+    // make sure intake is in up position
+    addSequential(new MoveIntakeArm(IntakeArm.RETRACT));
 
     // shoot catapult pistons
+    addSequential(new FireCatapult());
 
     // extend intake (ball actually shoots here)
+    addSequential(new MoveIntakeArm(IntakeArm.EXTEND));
+
+    // wait a bit
+    addSequential(new WaitCommand(WAIT_SECONDS));
 
     // retract catapult pistons
+    addSequential(new ResetCatapult());
 
   }
 }