mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
309 lines
9.5 KiB
Java
309 lines
9.5 KiB
Java
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.nio.charset.StandardCharsets;
|
|
import java.nio.file.Files;
|
|
import java.util.function.Supplier;
|
|
|
|
import edu.wpi.cscore.CameraServerJNI;
|
|
import edu.wpi.first.cameraserver.CameraServerShared;
|
|
import edu.wpi.first.cameraserver.CameraServerSharedStore;
|
|
import edu.wpi.first.hal.FRCNetComm.tInstances;
|
|
import edu.wpi.first.hal.FRCNetComm.tResourceType;
|
|
import edu.wpi.first.hal.HAL;
|
|
import edu.wpi.first.hal.HALUtil;
|
|
import edu.wpi.first.networktables.NetworkTableInstance;
|
|
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
|
|
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
|
import edu.wpi.first.wpilibj.util.WPILibVersion;
|
|
|
|
/**
|
|
* Implement a Robot Program framework. The RobotBase class is intended to be subclassed by a user
|
|
* creating a robot program. Overridden autonomous() and operatorControl() methods are called at the
|
|
* appropriate time as the match proceeds. In the current implementation, the Autonomous code will
|
|
* run to completion before the OperatorControl code could start. In the future the Autonomous code
|
|
* might be spawned as a task, then killed at the end of the Autonomous period.
|
|
*/
|
|
public abstract class RobotBase implements AutoCloseable {
|
|
/**
|
|
* The ID of the main Java thread.
|
|
*/
|
|
// This is usually 1, but it is best to make sure
|
|
private static long m_threadId = -1;
|
|
|
|
private static void setupCameraServerShared() {
|
|
CameraServerShared shared = new CameraServerShared() {
|
|
|
|
@Override
|
|
public void reportVideoServer(int id) {
|
|
HAL.report(tResourceType.kResourceType_PCVideoServer, id);
|
|
}
|
|
|
|
@Override
|
|
public void reportUsbCamera(int id) {
|
|
HAL.report(tResourceType.kResourceType_UsbCamera, id);
|
|
}
|
|
|
|
@Override
|
|
public void reportDriverStationError(String error) {
|
|
DriverStation.reportError(error, true);
|
|
}
|
|
|
|
@Override
|
|
public void reportAxisCamera(int id) {
|
|
HAL.report(tResourceType.kResourceType_AxisCamera, id);
|
|
}
|
|
|
|
@Override
|
|
public Long getRobotMainThreadId() {
|
|
return RobotBase.getMainThreadId();
|
|
}
|
|
|
|
@Override
|
|
public boolean isRoboRIO() {
|
|
return RobotBase.isReal();
|
|
}
|
|
};
|
|
|
|
CameraServerSharedStore.setCameraServerShared(shared);
|
|
}
|
|
|
|
protected final DriverStation m_ds;
|
|
|
|
/**
|
|
* Constructor for a generic robot program. User code should be placed in the constructor that
|
|
* runs before the Autonomous or Operator Control period starts. The constructor will run to
|
|
* completion before Autonomous is entered.
|
|
*
|
|
* <p>This must be used to ensure that the communications code starts. In the future it would be
|
|
* nice
|
|
* to put this code into it's own task that loads on boot so ensure that it runs.
|
|
*/
|
|
protected RobotBase() {
|
|
NetworkTableInstance inst = NetworkTableInstance.getDefault();
|
|
m_threadId = Thread.currentThread().getId();
|
|
setupCameraServerShared();
|
|
inst.setNetworkIdentity("Robot");
|
|
inst.startServer("/home/lvuser/networktables.ini");
|
|
m_ds = DriverStation.getInstance();
|
|
inst.getTable("LiveWindow").getSubTable(".status").getEntry("LW Enabled").setBoolean(false);
|
|
|
|
LiveWindow.setEnabled(false);
|
|
Shuffleboard.disableActuatorWidgets();
|
|
}
|
|
|
|
public static long getMainThreadId() {
|
|
return m_threadId;
|
|
}
|
|
|
|
@Override
|
|
public void close() {
|
|
}
|
|
|
|
/**
|
|
* Get if the robot is a simulation.
|
|
*
|
|
* @return If the robot is running in simulation.
|
|
*/
|
|
public static boolean isSimulation() {
|
|
return !isReal();
|
|
}
|
|
|
|
/**
|
|
* Get if the robot is real.
|
|
*
|
|
* @return If the robot is running in the real world.
|
|
*/
|
|
public static boolean isReal() {
|
|
return HALUtil.getHALRuntimeType() == 0;
|
|
}
|
|
|
|
/**
|
|
* Determine if the Robot is currently disabled.
|
|
*
|
|
* @return True if the Robot is currently disabled by the field controls.
|
|
*/
|
|
public boolean isDisabled() {
|
|
return m_ds.isDisabled();
|
|
}
|
|
|
|
/**
|
|
* Determine if the Robot is currently enabled.
|
|
*
|
|
* @return True if the Robot is currently enabled by the field controls.
|
|
*/
|
|
public boolean isEnabled() {
|
|
return m_ds.isEnabled();
|
|
}
|
|
|
|
/**
|
|
* Determine if the robot is currently in Autonomous mode as determined by the field
|
|
* controls.
|
|
*
|
|
* @return True if the robot is currently operating Autonomously.
|
|
*/
|
|
public boolean isAutonomous() {
|
|
return m_ds.isAutonomous();
|
|
}
|
|
|
|
/**
|
|
* Determine if the robot is currently in Test mode as determined by the driver
|
|
* station.
|
|
*
|
|
* @return True if the robot is currently operating in Test mode.
|
|
*/
|
|
public boolean isTest() {
|
|
return m_ds.isTest();
|
|
}
|
|
|
|
/**
|
|
* Determine if the robot is currently in Operator Control mode as determined by the field
|
|
* controls.
|
|
*
|
|
* @return True if the robot is currently operating in Tele-Op mode.
|
|
*/
|
|
public boolean isOperatorControl() {
|
|
return m_ds.isOperatorControl();
|
|
}
|
|
|
|
/**
|
|
* Indicates if new data is available from the driver station.
|
|
*
|
|
* @return Has new data arrived over the network since the last time this function was called?
|
|
*/
|
|
public boolean isNewDataAvailable() {
|
|
return m_ds.isNewControlData();
|
|
}
|
|
|
|
/**
|
|
* Provide an alternate "main loop" via startCompetition().
|
|
*/
|
|
public abstract void startCompetition();
|
|
|
|
@SuppressWarnings("JavadocMethod")
|
|
public static boolean getBooleanProperty(String name, boolean defaultValue) {
|
|
String propVal = System.getProperty(name);
|
|
if (propVal == null) {
|
|
return defaultValue;
|
|
}
|
|
if ("false".equalsIgnoreCase(propVal)) {
|
|
return false;
|
|
} else if ("true".equalsIgnoreCase(propVal)) {
|
|
return true;
|
|
} else {
|
|
throw new IllegalStateException(propVal);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Run the robot main loop.
|
|
*/
|
|
@SuppressWarnings({"PMD.AvoidInstantiatingObjectsInLoops", "PMD.AvoidCatchingThrowable",
|
|
"PMD.CyclomaticComplexity", "PMD.NPathComplexity"})
|
|
private static <T extends RobotBase> void runRobot(Supplier<T> robotSupplier) {
|
|
System.out.println("********** Robot program starting **********");
|
|
|
|
T robot;
|
|
try {
|
|
robot = robotSupplier.get();
|
|
} catch (Throwable throwable) {
|
|
Throwable cause = throwable.getCause();
|
|
if (cause != null) {
|
|
throwable = cause;
|
|
}
|
|
String robotName = "Unknown";
|
|
StackTraceElement[] elements = throwable.getStackTrace();
|
|
if (elements.length > 0) {
|
|
robotName = elements[0].getClassName();
|
|
}
|
|
DriverStation.reportError("Unhandled exception instantiating robot " + robotName + " "
|
|
+ throwable.toString(), elements);
|
|
DriverStation.reportWarning("Robots should not quit, but yours did!", false);
|
|
DriverStation.reportError("Could not instantiate robot " + robotName + "!", false);
|
|
return;
|
|
}
|
|
|
|
if (isReal()) {
|
|
try {
|
|
final File file = new File("/tmp/frc_versions/FRC_Lib_Version.ini");
|
|
|
|
if (file.exists()) {
|
|
file.delete();
|
|
}
|
|
|
|
file.createNewFile();
|
|
|
|
try (OutputStream output = Files.newOutputStream(file.toPath())) {
|
|
output.write("Java ".getBytes(StandardCharsets.UTF_8));
|
|
output.write(WPILibVersion.Version.getBytes(StandardCharsets.UTF_8));
|
|
}
|
|
|
|
} catch (IOException ex) {
|
|
DriverStation.reportError("Could not write FRC_Lib_Version.ini: " + ex.toString(),
|
|
ex.getStackTrace());
|
|
}
|
|
}
|
|
|
|
boolean errorOnExit = false;
|
|
try {
|
|
robot.startCompetition();
|
|
} catch (Throwable throwable) {
|
|
Throwable cause = throwable.getCause();
|
|
if (cause != null) {
|
|
throwable = cause;
|
|
}
|
|
DriverStation.reportError("Unhandled exception: " + throwable.toString(),
|
|
throwable.getStackTrace());
|
|
errorOnExit = true;
|
|
} finally {
|
|
// startCompetition never returns unless exception occurs....
|
|
DriverStation.reportWarning("Robots should not quit, but yours did!", false);
|
|
if (errorOnExit) {
|
|
DriverStation.reportError(
|
|
"The startCompetition() method (or methods called by it) should have "
|
|
+ "handled the exception above.", false);
|
|
} else {
|
|
DriverStation.reportError("Unexpected return from startCompetition() method.", false);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Starting point for the applications.
|
|
*/
|
|
public static <T extends RobotBase> void startRobot(Supplier<T> robotSupplier) {
|
|
if (!HAL.initialize(500, 0)) {
|
|
throw new IllegalStateException("Failed to initialize. Terminating");
|
|
}
|
|
|
|
// Call a CameraServer JNI function to force OpenCV native library loading
|
|
// Needed because all the OpenCV JNI functions don't have built in loading
|
|
CameraServerJNI.enumerateSinks();
|
|
|
|
HAL.report(tResourceType.kResourceType_Language, tInstances.kLanguage_Java);
|
|
|
|
if (HAL.hasMain()) {
|
|
Thread thread = new Thread(() -> {
|
|
runRobot(robotSupplier);
|
|
HAL.exitMain();
|
|
}, "robot main");
|
|
thread.setDaemon(true);
|
|
thread.start();
|
|
HAL.runMain();
|
|
} else {
|
|
runRobot(robotSupplier);
|
|
}
|
|
|
|
System.exit(1);
|
|
}
|
|
}
|