refactor isUsingTimeToPassDefense to isUsingTime
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassRockWall.java
CommitLineData
6bb7f8ac 1package org.usfirst.frc.team3501.robot.commands.auton;
d607dcbb 2
9d518a5c
CZ
3import org.usfirst.frc.team3501.robot.Constants;
4import org.usfirst.frc.team3501.robot.commands.driving.DriveDistance;
1fb6ed96
ME
5import org.usfirst.frc.team3501.robot.commands.driving.DriveForTime;
6
ebae4bde 7import edu.wpi.first.wpilibj.command.CommandGroup;
d607dcbb
ME
8
9/***
10 * This command will drive the robot through the rock wall.
11 *
1fb6ed96
ME
12 * dependency on subsystems: drivetrain
13 *
14 * dependency on other commands: DriveForTime
15 *
d607dcbb
ME
16 * pre-condition: robot is flush against the ramp of the outerworks in front of
17 * the rock wall
18 *
19 * post-condition: the robot has passed the rock wall and is in the next zone
20 *
21 * @author Meryem and Avi
22 *
23 */
d607dcbb 24
dba0b9ad 25public class PassRockWall extends CommandGroup {
d607dcbb 26
dba0b9ad 27 public PassRockWall() {
ca325a58 28 if (Constants.Auton.isUsingTime) {
600a1a1c
KZ
29 addSequential(new DriveForTime(Constants.Auton.passRockWallTime,
30 Constants.Auton.passRockWallSpeed));
9d518a5c
CZ
31 }
32 else {
33 addSequential(new DriveDistance(
600a1a1c 34 Constants.Auton.passRockWallDistance,
9d518a5c
CZ
35 Constants.DriveTrain.PASS_DEFENSE_TIMEOUT));
36 }
d607dcbb 37
d607dcbb
ME
38 }
39}