2022-01-11 11:54:44 -07:00
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
2021-11-15 16:26:16 -07:00
package frc4388.robot ;
2022-02-15 11:05:59 -07:00
import java.io.File ;
2022-02-16 22:31:00 -07:00
import java.nio.file.Files ;
import java.nio.file.Path ;
2022-03-06 13:40:09 -07:00
import java.util.HashMap ;
import java.util.Map ;
2022-01-30 00:39:17 -07:00
import java.util.logging.Level ;
import java.util.logging.Logger ;
2022-02-16 22:31:00 -07:00
import com.diffplug.common.base.Errors ;
2022-01-30 00:39:17 -07:00
2022-03-24 18:35:33 -06:00
import edu.wpi.first.math.Vector ;
2022-03-06 13:40:09 -07:00
import edu.wpi.first.math.geometry.Pose2d ;
import edu.wpi.first.math.geometry.Rotation2d ;
2022-01-29 01:16:58 -07:00
import edu.wpi.first.wpilibj.DriverStation ;
2022-02-11 18:53:13 -07:00
import edu.wpi.first.wpilibj.Filesystem ;
2021-11-15 16:26:16 -07:00
import edu.wpi.first.wpilibj.TimedRobot ;
2022-03-07 19:56:25 -07:00
import edu.wpi.first.wpilibj.drive.Vector2d ;
2022-03-16 13:59:10 -06:00
import edu.wpi.first.wpilibj.DriverStation.Alliance ;
2022-03-06 13:40:09 -07:00
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser ;
2022-01-22 15:55:04 -07:00
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard ;
2021-11-15 16:26:16 -07:00
import edu.wpi.first.wpilibj2.command.Command ;
import edu.wpi.first.wpilibj2.command.CommandScheduler ;
2022-02-16 22:31:00 -07:00
import edu.wpi.first.wpilibj2.command.RunCommand ;
2021-11-15 16:26:16 -07:00
import frc4388.utility.RobotTime ;
2022-03-24 18:35:33 -06:00
import frc4388.utility.Vector2D ;
2022-03-07 19:56:25 -07:00
import frc4388.utility.VelocityCorrection ;
2022-03-14 18:29:11 -06:00
import frc4388.utility.desmos.DesmosServer ;
2021-11-15 16:26:16 -07:00
/**
* The VM is configured to automatically run this class, and to call the
* functions corresponding to each mode, as described in the TimedRobot
* documentation. If you change the name of this class or the package after
* creating this project, you must also update the build.gradle file in the
* project.
*/
public class Robot extends TimedRobot {
2022-02-25 01:33:32 -07:00
private static final Logger LOGGER = Logger . getLogger ( Robot . class . getSimpleName ( ) ) ;
2021-11-15 16:26:16 -07:00
Command m_autonomousCommand ;
2022-03-05 11:12:33 -07:00
2021-11-15 16:26:16 -07:00
private RobotTime m_robotTime = RobotTime . getInstance ( ) ;
private RobotContainer m_robotContainer ;
2022-03-24 13:59:59 -06:00
2022-03-24 16:58:29 -06:00
// private SendableChooser<Command> autoChooser = new SendableChooser<Command>();
2022-03-20 21:22:55 -06:00
2022-03-24 13:59:59 -06:00
// private double current;
2021-11-15 16:26:16 -07:00
2022-03-22 17:34:54 -06:00
// private static DesmosServer desmosServer = new DesmosServer(8000);
2022-03-13 17:11:59 -06:00
2022-03-16 13:59:10 -06:00
public static Alliance alliance ;
2022-03-06 13:40:09 -07:00
2021-11-15 16:26:16 -07:00
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
@Override
public void robotInit ( ) {
2022-02-25 01:33:32 -07:00
LOGGER . log ( Level . ALL , " Logging Test 1/8 " ) ;
LOGGER . log ( Level . SEVERE , " Logging Test 2/8 " ) ;
LOGGER . log ( Level . WARNING , " Logging Test 3/8 " ) ;
LOGGER . log ( Level . INFO , " Logging Test 4/8 " ) ;
LOGGER . log ( Level . CONFIG , " Logging Test 5/8 " ) ;
LOGGER . log ( Level . FINE , " Logging Test 6/8 " ) ;
LOGGER . log ( Level . FINER , " Logging Test 7/8 " ) ;
LOGGER . log ( Level . FINEST , " Logging Test 8/8 " ) ;
2022-02-11 18:53:13 -07:00
2022-03-05 11:12:33 -07:00
// var path =
// PathPlannerUtil.Path.read(Filesystem.getDeployDirectory().toPath().resolve("pathplanner").resolve("Move
// Forward.path").toFile());
2022-02-15 11:05:59 -07:00
// LOGGER.finest(path::toString);
2022-01-30 00:39:17 -07:00
LOGGER . fine ( " robotInit() " ) ;
2022-03-24 13:59:59 -06:00
2022-02-25 01:33:32 -07:00
// LOGGER.fine("Sssssssssh.");
// DriverStation.silenceJoystickConnectionWarning(true);
2022-03-05 11:12:33 -07:00
// Instantiate our RobotContainer. This will perform all our button bindings,
// and put our
2021-11-15 16:26:16 -07:00
// autonomous chooser on the dashboard.
m_robotContainer = new RobotContainer ( ) ;
2022-02-16 22:31:00 -07:00
// addPeriodic(m_robotContainer::recordPeriodic, kDefaultPeriod);
SmartDashboard . putData ( CommandScheduler . getInstance ( ) ) ;
2022-03-05 11:12:33 -07:00
SmartDashboard . putData ( " JVM Memory " , new RunCommand ( ( ) - > {
} ) {
@Override
public boolean runsWhenDisabled ( ) {
return true ;
}
@Override
public String getName ( ) {
2022-02-16 22:31:00 -07:00
if ( isScheduled ( ) ) {
Runtime runtime = Runtime . getRuntime ( ) ;
long totalMemory = runtime . totalMemory ( ) / 1_000_000 ;
long freeMemory = runtime . freeMemory ( ) / 1_000_000 ;
long maxMemory = runtime . maxMemory ( ) / 1_000_000 ;
return totalMemory - freeMemory + " MB / " + totalMemory + " MB / " + maxMemory + " MB " ;
}
return " Not Running " ;
}
} ) ;
2022-03-05 11:12:33 -07:00
SmartDashboard . putData ( " Usable Deploy Space " , new RunCommand ( ( ) - > {
} ) {
@Override
public boolean runsWhenDisabled ( ) {
return true ;
}
@Override
public String getName ( ) {
2022-02-16 22:31:00 -07:00
if ( isScheduled ( ) ) {
File deploy = Filesystem . getDeployDirectory ( ) ;
2022-03-05 11:12:33 -07:00
long usedSpace = Errors . suppress ( ) . getWithDefault (
( ) - > Files . walk ( deploy . toPath ( ) ) . map ( Path : : toFile ) . filter ( File : : isFile ) . mapToLong ( File : : length ) . sum ( ) ,
0l ) / 1_000_000 ;
2022-02-16 22:31:00 -07:00
long usableSpace = deploy . getUsableSpace ( ) / 1_000_000 ;
return usedSpace + " MB / " + usableSpace + " MB " ;
}
return " Not Running " ;
}
} ) ;
2022-03-13 17:11:59 -06:00
2022-03-22 17:34:54 -06:00
// desmosServer.start();
2022-03-24 16:58:29 -06:00
m_robotContainer . m_robotVisionOdometry . setLEDs ( true ) ;
2022-03-14 16:56:32 -06:00
// DesmosServer.putTable("table", "x1", new double[] {44}, "y1", new double[] {0});
2021-11-15 16:26:16 -07:00
}
/**
* 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.
*
2022-03-05 11:12:33 -07:00
* <p>
* This runs after the mode specific periodic functions, but before
2021-11-15 16:26:16 -07:00
* LiveWindow and SmartDashboard integrated updating.
*/
@Override
public void robotPeriodic ( ) {
m_robotTime . updateTimes ( ) ;
2022-03-24 18:35:33 -06:00
Vector2D firstBallPosition = new Vector2D ( 15 . 56 - ( 82 . 83 / 2 . 00 ) , 11 . 21 - 162 . 00 ) ;
Vector2D secondBallPosition = new Vector2D ( - ( 40 . 44 * ( Math . sqrt ( 2 . 00 ) / 2 . 00 ) ) - ( ( 82 . 83 - 7 . 58 ) * ( Math . sqrt ( 2 . 00 ) / 2 . 00 ) ) - ( 82 . 83 / 2 . 00 ) , - ( 40 . 44 * ( Math . sqrt ( 2 . 00 ) / 2 . 00 ) ) + ( ( 82 . 83 - 7 . 58 ) * ( Math . sqrt ( 2 . 00 ) / 2 . 00 ) ) - ( 219 . 25 / 2 . 00 ) ) ; // * position of second ball, relative to hub.
Vector2D firstToSecond = Vector2D . subtract ( secondBallPosition , firstBallPosition ) ;
System . out . println ( " First Ball (FEET): " + Vector2D . divide ( firstBallPosition , 12 ) . toString ( ) ) ;
System . out . println ( " Second Ball (FEET): " + Vector2D . divide ( secondBallPosition , 12 ) . toString ( ) ) ;
System . out . println ( " First To Second (FEET): " + Vector2D . divide ( firstToSecond , 12 ) . toString ( ) ) ;
2022-03-19 19:58:21 -06:00
// current =
2022-03-18 23:07:53 -06:00
// m_robotContainer.m_robotBoomBoom.getCurrent() +
2022-03-19 19:58:21 -06:00
// m_robotContainer.m_robotClimber.getCurrent(); //+
2022-03-18 23:07:53 -06:00
// m_robotContainer.m_robotHood.getCurrent() +
// m_robotContainer.m_robotIntake.getCurrent() +
// m_robotContainer.m_robotExtender.getCurrent() +
// m_robotContainer.m_robotSerializer.getCurrent() +
// m_robotContainer.m_robotStorage.getCurrent() +
// m_robotContainer.m_robotSwerveDrive.getCurrent();
// m_robotContainer.m_robotTurret.getCurrent();
2022-03-19 19:58:21 -06:00
// SmartDashboard.putNumber("Total Robot Current Draw", current);
// SmartDashboard.putNumber("Drive Train Voltage", m_robotContainer.m_robotSwerveDrive.getVoltage());
2022-03-20 21:22:55 -06:00
// SmartDashboard.putNumber("Drive Train Current", m_robotContainer.m_robotSwerveDrive.getCurrent());
2022-03-05 11:12:33 -07:00
// Runs the Scheduler. This is responsible for polling buttons, adding
// newly-scheduled
// commands, running already-scheduled commands, removing finished or
// interrupted commands,
// and running subsystem periodic() methods. This must be called from the
// robot's periodic
2021-11-15 16:26:16 -07:00
// block in order for anything in the Command-based framework to work.
CommandScheduler . getInstance ( ) . run ( ) ;
2022-03-07 19:56:25 -07:00
2022-03-05 11:12:33 -07:00
// print odometry data to smart dashboard for debugging (if causing timeout
// errors, you can comment it)
2022-03-06 13:40:09 -07:00
}
2021-11-15 16:26:16 -07:00
/**
* This function is called once each time the robot enters Disabled mode.
* You can use it to reset any subsystem information you want to clear when
* the robot is disabled.
*/
@Override
public void disabledInit ( ) {
2022-01-30 00:39:17 -07:00
LOGGER . fine ( " disabledInit() " ) ;
2021-11-15 16:26:16 -07:00
m_robotTime . endMatchTime ( ) ;
2022-02-11 18:53:13 -07:00
if ( isTest ( ) ) {
2022-02-16 22:31:00 -07:00
// IMPORTANT: Had to chown the pathplanner folder in order to save autos.
2022-03-05 11:12:33 -07:00
File outputFile = Filesystem . getDeployDirectory ( ) . toPath ( ) . resolve ( " pathplanner " )
. resolve ( " recording. " + System . currentTimeMillis ( ) + " .path " ) . toFile ( ) ;
2022-02-16 22:31:00 -07:00
if ( Boolean . TRUE . equals ( Errors . log ( ) . getWithDefault ( outputFile : : createNewFile , false ) ) ) {
2022-03-10 17:44:27 -07:00
// m_robotContainer.createPath(null, null, false).write(outputFile);
2022-02-16 22:31:00 -07:00
LOGGER . log ( Level . SEVERE , " Recorded path to {0}. " , outputFile . getPath ( ) ) ;
} else
LOGGER . log ( Level . SEVERE , " Unable to record path to {0} " , outputFile . getPath ( ) ) ;
2022-02-11 18:53:13 -07:00
}
2022-03-13 19:59:55 -06:00
2022-03-24 16:58:29 -06:00
m_robotContainer . m_robotVisionOdometry . setLEDs ( true ) ;
2021-11-15 16:26:16 -07:00
}
@Override
public void disabledPeriodic ( ) {
}
/**
2022-03-05 11:12:33 -07:00
* This autonomous runs the autonomous command selected by your
* {@link RobotContainer} class.
2021-11-15 16:26:16 -07:00
*/
@Override
public void autonomousInit ( ) {
2022-01-30 00:39:17 -07:00
LOGGER . fine ( " autonomousInit() " ) ;
2022-03-06 13:40:09 -07:00
2022-03-16 13:59:10 -06:00
Robot . alliance = DriverStation . getAlliance ( ) ;
2022-03-06 13:40:09 -07:00
2022-02-16 22:31:00 -07:00
m_autonomousCommand = m_robotContainer . getAutonomousCommand ( ) ;
2021-11-15 16:26:16 -07:00
// schedule the autonomous command (example)
if ( m_autonomousCommand ! = null ) {
m_autonomousCommand . schedule ( ) ;
}
m_robotTime . startMatchTime ( ) ;
}
/**
* This function is called periodically during autonomous.
*/
@Override
2022-03-21 22:49:54 -06:00
public void autonomousPeriodic ( ) { }
2021-11-15 16:26:16 -07:00
@Override
public void teleopInit ( ) {
2022-01-30 00:39:17 -07:00
LOGGER . fine ( " teleopInit() " ) ;
2022-03-06 13:40:09 -07:00
2022-03-16 13:59:10 -06:00
Robot . alliance = DriverStation . getAlliance ( ) ;
2022-03-06 13:40:09 -07:00
2021-11-15 16:26:16 -07:00
// This makes sure that the autonomous stops running when
// teleop starts running. If you want the autonomous to
// continue until interrupted by another command, remove
// this line or comment it out.
if ( m_autonomousCommand ! = null ) {
m_autonomousCommand . cancel ( ) ;
}
m_robotTime . startMatchTime ( ) ;
2022-01-29 01:16:58 -07:00
DriverStation . silenceJoystickConnectionWarning ( true ) ;
2021-11-15 16:26:16 -07:00
}
/**
* This function is called periodically during operator control.
*/
@Override
2022-03-12 19:01:16 -07:00
public void teleopPeriodic ( ) { }
2021-11-15 16:26:16 -07:00
2022-01-25 11:30:08 -07:00
@Override
public void testInit ( ) {
2022-02-16 22:31:00 -07:00
CommandScheduler . getInstance ( ) . cancelAll ( ) ;
2022-01-25 11:30:08 -07:00
}
2021-11-15 16:26:16 -07:00
/**
* This function is called periodically during test mode.
*/
@Override
public void testPeriodic ( ) {
}
}