Files
2023WayOfTheRobot/src/main/java/frc4388/robot/Robot.java
T

177 lines
5.6 KiB
Java
Raw Normal View History

2023-01-07 13:36:56 -07:00
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-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 frc4388.robot;
2023-02-16 18:46:43 -07:00
import java.lang.System;
import java.lang.reflect.Array;
2023-02-04 15:38:37 -07:00
import java.util.Arrays;
2023-03-11 14:03:36 -07:00
import com.ctre.phoenix.motorcontrol.ControlMode;
import com.ctre.phoenix.motorcontrol.DemandType;
import com.ctre.phoenix.motorcontrol.can.MotControllerJNI;
2023-02-25 12:30:20 -07:00
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
2023-02-04 15:38:37 -07:00
2023-03-11 14:03:36 -07:00
import edu.wpi.first.math.geometry.Translation2d;
2023-02-25 12:30:20 -07:00
import edu.wpi.first.wpilibj.DriverStation;
2023-01-07 13:36:56 -07:00
import edu.wpi.first.wpilibj.TimedRobot;
2023-02-25 14:11:31 -07:00
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
2023-01-07 13:36:56 -07:00
import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.CommandScheduler;
2023-03-14 10:35:53 -06:00
import frc4388.utility.DeferredBlock;
2023-01-07 13:36:56 -07:00
import frc4388.utility.RobotTime;
2023-02-16 19:46:21 -07:00
import frc4388.robot.subsystems.Location;
2023-02-28 17:05:18 -07:00
import frc4388.robot.subsystems.Apriltags.Tag;
2023-02-16 19:46:21 -07:00
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
2023-01-07 13:36:56 -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 {
Command m_autonomousCommand;
private RobotTime m_robotTime = RobotTime.getInstance();
private RobotContainer m_robotContainer;
2023-02-16 18:46:43 -07:00
2023-02-16 19:46:21 -07:00
private Location location = new Location();
2023-02-16 18:46:43 -07:00
2023-01-12 18:51:28 -07:00
2023-01-07 13:36:56 -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() {
// Instantiate our RobotContainer. This will perform all our button bindings, and put our
// autonomous chooser on the dashboard.
m_robotContainer = new RobotContainer();
2023-02-25 12:30:20 -07:00
2023-02-25 14:11:31 -07:00
SmartDashboard.putData("AutoPlayback Chooser", m_robotContainer.chooser);
2023-01-07 13:36:56 -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.
*
* <p>This runs after the mode specific periodic functions, but before
* LiveWindow and SmartDashboard integrated updating.
*/
@Override
public void robotPeriodic() {
m_robotTime.updateTimes();
// 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
// block in order for anything in the Command-based framework to work.
CommandScheduler.getInstance().run();
2023-02-16 18:46:43 -07:00
2023-02-28 17:05:18 -07:00
final Tag pos = location.getPosRot();
2023-02-16 19:46:21 -07:00
if (pos != null) {
2023-02-28 17:05:18 -07:00
SmartDashboard.putNumber("x position", pos.x);
2023-02-16 19:46:21 -07:00
}
2023-02-16 18:46:43 -07:00
//ystem.out.print(apriltagPos[0]);
2023-01-07 13:36:56 -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.
*/
2023-03-11 14:03:36 -07:00
boolean dis = false;
2023-01-07 13:36:56 -07:00
@Override
public void disabledInit() {
2023-03-11 14:03:36 -07:00
// m_robotContainer.m_robotClaw.setClaw(false);
2023-01-07 13:36:56 -07:00
m_robotTime.endMatchTime();
2023-03-11 14:03:36 -07:00
m_robotContainer.m_robotClaw.disable();
m_handle = m_robotContainer.m_robotMap.leftBackWheel.getHandle();
2023-01-07 13:36:56 -07:00
}
2023-03-11 14:03:36 -07:00
long m_handle = 0;
2023-01-07 13:36:56 -07:00
@Override
public void disabledPeriodic() {
2023-03-11 14:03:36 -07:00
// if (dis) {
// MotControllerJNI.Set_4(m_handle, ControlMode.PercentOutput.value, 1, 1, DemandType.Neutral.value);
// // m_robotContainer.m_robotMap.leftBackSteer.set(ControlMode.PercentOutput, 1, DemandType.Neutral, 0);
// // m_robotContainer.m_robotSwerveDrive.driveWithInput(new Translation2d(.5, 0), new Translation2d(), true);
// }
// System.out.println("hi from disabled");
2023-01-07 13:36:56 -07:00
}
2023-03-14 10:35:53 -06:00
@Override
public void disabledExit() {
DeferredBlock.execute();
super.disabledExit();
}
2023-01-07 13:36:56 -07:00
/**
* This autonomous runs the autonomous command selected by your {@link RobotContainer} class.
*/
@Override
public void autonomousInit() {
2023-02-11 15:21:44 -07:00
m_robotContainer.m_robotSwerveDrive.resetGyro();
2023-01-07 13:36:56 -07:00
m_autonomousCommand = m_robotContainer.getAutonomousCommand();
// schedule the autonomous command (example)
if (m_autonomousCommand != null) {
m_autonomousCommand.schedule();
}
m_robotTime.startMatchTime();
}
/**
* This function is called periodically during autonomous.
*/
@Override
public void autonomousPeriodic() {
}
@Override
public void teleopInit() {
2023-02-11 15:21:44 -07:00
m_robotContainer.m_robotSwerveDrive.resetGyro();
2023-03-11 14:03:36 -07:00
dis = true;
m_robotContainer.m_robotClaw.enable();
2023-02-25 12:30:20 -07:00
2023-01-07 13:36:56 -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();
}
2023-02-11 15:21:44 -07:00
m_robotContainer.m_robotSwerveDrive.resetGyro();
2023-01-07 13:36:56 -07:00
m_robotTime.startMatchTime();
}
/**
* This function is called periodically during operator control.
*/
@Override
public void teleopPeriodic() {
}
/**
* This function is called periodically during test mode.
*/
@Override
public void testPeriodic() {
}
}