mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-19 06:21:40 +00:00
203 lines
7.0 KiB
Java
203 lines
7.0 KiB
Java
package swervelib.parser.json;
|
|
|
|
import com.revrobotics.SparkRelativeEncoder.Type;
|
|
import edu.wpi.first.wpilibj.DriverStation;
|
|
import edu.wpi.first.wpilibj.I2C;
|
|
import edu.wpi.first.wpilibj.SPI;
|
|
import edu.wpi.first.wpilibj.SerialPort.Port;
|
|
import swervelib.encoders.AnalogAbsoluteEncoderSwerve;
|
|
import swervelib.encoders.CANCoderSwerve;
|
|
import swervelib.encoders.CanAndCoderSwerve;
|
|
import swervelib.encoders.PWMDutyCycleEncoderSwerve;
|
|
import swervelib.encoders.SparkMaxAnalogEncoderSwerve;
|
|
import swervelib.encoders.SparkMaxEncoderSwerve;
|
|
import swervelib.encoders.SwerveAbsoluteEncoder;
|
|
import swervelib.imu.ADIS16448Swerve;
|
|
import swervelib.imu.ADIS16470Swerve;
|
|
import swervelib.imu.ADXRS450Swerve;
|
|
import swervelib.imu.AnalogGyroSwerve;
|
|
import swervelib.imu.NavXSwerve;
|
|
import swervelib.imu.Pigeon2Swerve;
|
|
import swervelib.imu.PigeonSwerve;
|
|
import swervelib.imu.SwerveIMU;
|
|
import swervelib.motors.SparkFlexSwerve;
|
|
import swervelib.motors.SparkMaxBrushedMotorSwerve;
|
|
import swervelib.motors.SparkMaxSwerve;
|
|
import swervelib.motors.SwerveMotor;
|
|
import swervelib.motors.TalonFXSwerve;
|
|
import swervelib.motors.TalonSRXSwerve;
|
|
import swervelib.telemetry.Alert;
|
|
|
|
/**
|
|
* Device JSON parsed class. Used to access the JSON data.
|
|
*/
|
|
public class DeviceJson
|
|
{
|
|
|
|
/**
|
|
* An {@link Alert} for if the CAN ID is greater than 40.
|
|
*/
|
|
private final Alert canIdWarning = new Alert("JSON",
|
|
"CAN IDs greater than 40 can cause undefined behaviour, please use a CAN ID below 40!",
|
|
Alert.AlertType.WARNING);
|
|
/**
|
|
* An {@link Alert} for if there is an I2C lockup issue on the roboRIO.
|
|
*/
|
|
private final Alert i2cLockupWarning = new Alert("IMU",
|
|
"I2C lockup issue detected on roboRIO. Check console for more information.",
|
|
Alert.AlertType.WARNING);
|
|
/**
|
|
* The device type, e.g. pigeon/pigeon2/sparkmax/talonfx/navx
|
|
*/
|
|
public String type;
|
|
/**
|
|
* The CAN ID or pin ID of the device.
|
|
*/
|
|
public int id;
|
|
/**
|
|
* The CAN bus name which the device resides on if using CAN.
|
|
*/
|
|
public String canbus = "";
|
|
|
|
/**
|
|
* Create a {@link SwerveAbsoluteEncoder} from the current configuration.
|
|
*
|
|
* @param motor {@link SwerveMotor} of which attached encoders will be created from, only used when the type is
|
|
* "attached" or "canandencoder".
|
|
* @return {@link SwerveAbsoluteEncoder} given.
|
|
*/
|
|
public SwerveAbsoluteEncoder createEncoder(SwerveMotor motor)
|
|
{
|
|
if (id > 40)
|
|
{
|
|
canIdWarning.set(true);
|
|
}
|
|
switch (type)
|
|
{
|
|
case "none":
|
|
return null;
|
|
case "integrated":
|
|
case "attached":
|
|
return new SparkMaxEncoderSwerve(motor, 1);
|
|
case "sparkmax_analog":
|
|
return new SparkMaxAnalogEncoderSwerve(motor);
|
|
case "canandcoder":
|
|
return new SparkMaxEncoderSwerve(motor, 360);
|
|
case "canandcoder_can":
|
|
return new CanAndCoderSwerve(id);
|
|
case "ctre_mag":
|
|
case "rev_hex":
|
|
case "throughbore":
|
|
case "am_mag":
|
|
case "dutycycle":
|
|
return new PWMDutyCycleEncoderSwerve(id);
|
|
case "thrifty":
|
|
case "ma3":
|
|
case "analog":
|
|
return new AnalogAbsoluteEncoderSwerve(id);
|
|
case "cancoder":
|
|
return new CANCoderSwerve(id, canbus != null ? canbus : "");
|
|
default:
|
|
throw new RuntimeException(type + " is not a recognized absolute encoder type.");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create a {@link SwerveIMU} from the given configuration.
|
|
*
|
|
* @return {@link SwerveIMU} given.
|
|
*/
|
|
public SwerveIMU createIMU()
|
|
{
|
|
if (id > 40)
|
|
{
|
|
canIdWarning.set(true);
|
|
}
|
|
switch (type)
|
|
{
|
|
case "adis16448":
|
|
return new ADIS16448Swerve();
|
|
case "adis16470":
|
|
return new ADIS16470Swerve();
|
|
case "adxrs450":
|
|
return new ADXRS450Swerve();
|
|
case "analog":
|
|
return new AnalogGyroSwerve(id);
|
|
case "navx":
|
|
case "navx_mxp_spi":
|
|
case "navx_spi":
|
|
return new NavXSwerve(SPI.Port.kMXP);
|
|
case "navx_i2c":
|
|
DriverStation.reportWarning(
|
|
"WARNING: There exists an I2C lockup issue on the roboRIO that could occur, more information here: " +
|
|
"\nhttps://docs.wpilib.org/en/stable/docs/yearly-overview/known-issues" +
|
|
".html#onboard-i2c-causing-system-lockups",
|
|
false);
|
|
i2cLockupWarning.set(true);
|
|
return new NavXSwerve(I2C.Port.kMXP);
|
|
case "navx_usb":
|
|
return new NavXSwerve(Port.kUSB);
|
|
case "navx_mxp_serial":
|
|
return new NavXSwerve(Port.kMXP);
|
|
case "pigeon":
|
|
return new PigeonSwerve(id);
|
|
case "pigeon2":
|
|
return new Pigeon2Swerve(id, canbus != null ? canbus : "");
|
|
default:
|
|
throw new RuntimeException(type + " is not a recognized imu/gyroscope type.");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create a {@link SwerveMotor} from the given configuration.
|
|
*
|
|
* @param isDriveMotor If the motor being generated is a drive motor.
|
|
* @return {@link SwerveMotor} given.
|
|
*/
|
|
public SwerveMotor createMotor(boolean isDriveMotor)
|
|
{
|
|
if (id > 40)
|
|
{
|
|
canIdWarning.set(true);
|
|
}
|
|
switch (type)
|
|
{
|
|
case "sparkmax_brushed":
|
|
switch (canbus)
|
|
{
|
|
case "greyhill_63r256":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kQuadrature, 1024, false);
|
|
case "srx_mag_encoder":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kQuadrature, 4096, false);
|
|
case "throughbore":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kQuadrature, 8192, false);
|
|
case "throughbore_dataport":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kNoSensor, 8192, true);
|
|
case "greyhill_63r256_dataport":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kQuadrature, 1024, true);
|
|
case "srx_mag_encoder_dataport":
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kQuadrature, 4096, true);
|
|
default:
|
|
if (isDriveMotor)
|
|
{
|
|
throw new RuntimeException("Spark MAX " + id + " MUST have a encoder attached to the motor controller.");
|
|
}
|
|
// We are creating a motor for an angle motor which will use the absolute encoder attached to the data port.
|
|
return new SparkMaxBrushedMotorSwerve(id, isDriveMotor, Type.kNoSensor, 0, false);
|
|
}
|
|
case "neo":
|
|
case "sparkmax":
|
|
return new SparkMaxSwerve(id, isDriveMotor);
|
|
case "sparkflex":
|
|
return new SparkFlexSwerve(id, isDriveMotor);
|
|
case "falcon":
|
|
case "talonfx":
|
|
return new TalonFXSwerve(id, canbus != null ? canbus : "", isDriveMotor);
|
|
case "talonsrx":
|
|
return new TalonSRXSwerve(id, isDriveMotor);
|
|
default:
|
|
throw new RuntimeException(type + " is not a recognized motor type.");
|
|
}
|
|
}
|
|
}
|