12
12
import edu .wpi .first .wpilibj2 .command .WrapperCommand ;
13
13
import edu .wpi .first .wpilibj2 .command .button .Trigger ;
14
14
import lombok .experimental .ExtensionMethod ;
15
+ import org .littletonrobotics .frc2024 .Robot ;
15
16
import org .littletonrobotics .frc2024 .RobotState ;
16
17
import org .littletonrobotics .frc2024 .subsystems .drive .Drive ;
17
18
import org .littletonrobotics .frc2024 .subsystems .leds .Leds ;
26
27
public class ClimbingCommands {
27
28
private static final LoggedTunableNumber chainToBack =
28
29
new LoggedTunableNumber ("ClimbingCommands/ChainToBackOffset" , 0.3 );
30
+ private static final LoggedTunableNumber autoUntrapTime =
31
+ new LoggedTunableNumber ("ClimbingCommands/AutoUntrapTime" , 134.5 );
29
32
30
33
public static Command trapSequence (
31
34
Drive drive ,
32
35
Superstructure superstructure ,
33
36
Rollers rollers ,
34
37
Trigger forwardTrigger ,
35
38
Trigger reverseTrigger ) {
39
+ Trigger endOfMatch = Robot .createTeleopTimeTrigger (autoUntrapTime );
36
40
SteppableCommandGroup sequence =
37
41
new SteppableCommandGroup (
38
- forwardTrigger .and (superstructure ::atGoal ),
42
+ forwardTrigger
43
+ .and (superstructure ::atArmGoal )
44
+ .or (
45
+ endOfMatch .and (
46
+ () ->
47
+ superstructure .getDesiredGoal () == Superstructure .Goal .TRAP
48
+ && rollers .getGoal () == Rollers .Goal .TRAP_SCORE )),
39
49
reverseTrigger ,
40
50
41
51
// Move arm to prepare prepare climb setpoint while moving climbers up
@@ -57,15 +67,16 @@ public static Command trapSequence(
57
67
.alongWith (
58
68
superstructure .setGoalWithConstraintsCommand (
59
69
Superstructure .Goal .PREPARE_CLIMB ,
60
- Arm .prepareClimbProfileConstraints .get ())),
70
+ Arm .prepareClimbProfileConstraints .get ()),
71
+ rollers .setGoalCommand (Rollers .Goal .SHUFFLE_BACKPACK )),
61
72
62
73
// Allow driver to line up and climb
63
- superstructure
64
- .setGoalCommand (Superstructure .Goal .CLIMB )
65
- .alongWith (rollers .setGoalCommand (Rollers .Goal .SHUFFLE_BACKPACK )),
74
+ superstructure .setGoalCommand (Superstructure .Goal .CLIMB ),
66
75
67
76
// Extend backpack
68
- superstructure .setGoalCommand (Superstructure .Goal .TRAP ),
77
+ superstructure
78
+ .setGoalCommand (Superstructure .Goal .TRAP )
79
+ .alongWith (rollers .setGoalCommand (Rollers .Goal .TRAP_PRESCORE )),
69
80
70
81
// Trap.
71
82
superstructure
0 commit comments