-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLightningRobot.java
More file actions
268 lines (231 loc) · 8.34 KB
/
LightningRobot.java
File metadata and controls
268 lines (231 loc) · 8.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package frc.thunder;
import edu.wpi.first.wpilibj.TimedRobot;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.CommandScheduler;
import edu.wpi.first.wpilibj.DataLogManager;
import edu.wpi.first.wpilibj.DriverStation;
import edu.wpi.first.wpilibj.Filesystem;
import edu.wpi.first.wpilibj.DriverStation.Alliance;
import frc.thunder.testing.SystemTest;
import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;
import java.util.Properties;
/**
* Base robot class, provides
* {@link frc.thunder.fault.FaultMonitor fault monitoring} and loops with
* varying
* periods {@link LightningRobot#robotBackgroundPeriodic() background},
* {@link LightningRobot#robotLowPriorityPeriodic() low}, and
* {@link LightningRobot#robotMediumPriorityPeriodic() medium} priority
* loops.
*
* Uses {@link frc.thunder.auto.Autonomous} to configure autonomous
* commands. Also includes
* self-testing support with
* {@link frc.thunder.testing.SystemTestCommand}.
*/
public class LightningRobot extends TimedRobot {
private LightningContainer container;
private final static double SETTLE_TIME = 3.0;
private final static double LOOP_TIME = 0.02;
private int counter = 0;
private int medPriorityFreq = (int) Math.round(0.1 / getPeriod());
private double loopTime;
private int lowPriorityFreq = (int) Math.round(1 / getPeriod());
private int backgroundPriorityFreq = (int) Math.round(10 / getPeriod());
private Command autonomousCommand;
public LightningRobot(LightningContainer container) {
// timed robot has default constructor of 20ms and we want it at 10ms.
super(LOOP_TIME);
this.container = container;
}
public double getSettleTime() {
return SETTLE_TIME;
}
/**
* Getter for the configured robot container.
*
* @return the {@link frc.thunder.LightningContainer} for the robot.
*/
public LightningContainer getContainer() {
return container;
}
public boolean haveDriverStation = false;
/**
* Nothing should happen here.
*/
@Override
public void disabledPeriodic() {
if (!haveDriverStation && DriverStation.getAlliance().isPresent()) {
haveDriverStation = true;
allianceKnown(DriverStation.getAlliance().get());
System.out.println("SET FORWARD");
}
}
protected void allianceKnown(Alliance alliance) {
}
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*
* If you override it, be sure to call super.robotInit
*/
@Override
public void robotInit() {
System.out.println("LightningRobot.robotInit");
// Starts WPILIB data logging
final var envLogPath = System.getenv("LOG_PATH");
if (envLogPath != null) {
DataLogManager.start(envLogPath);
} else if (Paths.get("/u/logs").toFile().exists()) {
DataLogManager.start("/u/logs");
} else {
DataLogManager.start("/home/lvuser/logs");
}
// Start logging driverstation
DriverStation.startDataLog(DataLogManager.getLog());
// No Live Window for now
LiveWindow.disableAllTelemetry();
// Note our start time
System.out.println("Starting time: " + Timer.getFPGATimestamp());
// Read our version properties
try {
Properties props = new Properties();
var stream = ClassLoader.getSystemResourceAsStream("version.properties");
if (stream != null) {
props.load(stream);
System.out.println("Version: " + props.getProperty("VERSION_NAME", "n/a"));
System.out.println("Build: " + props.getProperty("VERSION_BUILD", "n/a"));
System.out.println("Built at: " + props.getProperty("BUILD_TIME", "n/a"));
System.out.println("Git branch: " + props.getProperty("GIT_BRANCH", "n/a"));
System.out.println("Git hash: " + props.getProperty("GIT_HASH", "n/a"));
System.out.println("Git status: " + props.getProperty("BUILD_STATUS", "n/a"));
}
} catch (IOException e) {
System.out.println("Unable to read build version information.");
}
// Load our system tests to the dashboard
SystemTest.loadTests();
}
/**
* This function is called every robot packet, no matter the mode. Use
* this for items like diagnostics that you want ran during disabled,
* autonomous, teleoperated and test.
*
* <p>
* This runs after the mode specific periodic functions, but before
* LiveWindow and Shuffleboard integrated updating.
*
* If you override this method, be sure to call super.robotPeriod() as
* it drives our lower priority loops, datalogging, fault monitoring,
* etc.
*/
@Override
public void robotPeriodic() {
double time = Timer.getFPGATimestamp();
if (time > SETTLE_TIME) {
counter += 1;
if (counter % medPriorityFreq == 0) {
robotMediumPriorityPeriodic();
}
if (counter % lowPriorityFreq == 0) {
robotLowPriorityPeriodic();
}
if (counter % backgroundPriorityFreq == 0) {
robotBackgroundPeriodic();
}
loopTime = Timer.getFPGATimestamp() - time;
}
CommandScheduler.getInstance().run();
}
/**
* A slower loop, running once every 10 seconds
*
* Note as currently implemented it still needs to
* complete in our loop time or it delay higher
* priority opterations. If you have a low priority,
* long running operation, consider creating a background
* thread.
*/
protected void robotBackgroundPeriodic() {
}
/**
* A slow loop, running once a second
*
* Note as currently implemented it still needs to
* complete in our loop time or it delay higher
* priority opterations. If you have a low priority,
* long running operation, consider creating a background
* thread.
*/
protected void robotLowPriorityPeriodic() {
}
/**
* A loop, running 10 times a second
*
* Note as currently implemented it still needs to
* complete in our loop time or it delay higher
* priority opterations. If you have a low priority,
* long running operation, consider creating a background
* thread.
*/
protected void robotMediumPriorityPeriodic() {
}
/**
* Getter for robot loop time.
*/
private double getLoopTime() {
return loopTime;
}
/**
* The default implementation handles getting the selected command
* from Shuffleboard.
*
* If you override this method, be sure to call {@code super.autonomousInit()}
* or
* the selected registered command will not be executed.
*/
@Override
public void autonomousInit() {
System.out.println("LightningRobot.autonomousInit");
autonomousCommand = container.getAutonomousCommand();
if (autonomousCommand != null)
autonomousCommand.schedule();
}
/**
* The default implementation handles canceling the autonomous command.
*
* If you override this method, be sure to call {@code super.teleopInit()} or
* the autonomous command will not be canceled when teleop starts.
*
* Alternatively, if you want the autonomous command to finish running
* into teleop, you may override this method w/o calling
* {@code super.teleopInit()}
*/
@Override
public void teleopInit() {
System.out.println("LightningRobot.teleopInit");
if (autonomousCommand != null)
autonomousCommand.cancel();
}
@Override
public void testInit() {
System.out.println("LightningRobot.testInit");
}
@Override
public void testPeriodic() {
}
/**
* The default implementation configures the default commands in the event they
* have
* been disabled by {@link LightningRobot#testInit()}.
*/
@Override
public void disabledInit() {
System.out.println("LightningRobot.disabledInit");
getContainer().configureDefaultCommands();
}
}