2017-09-28 23:30:00 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2017 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. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "Drive/KilloughDrive.h"
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
|
|
#include <HAL/HAL.h>
|
|
|
|
|
|
|
|
|
|
#include "SpeedController.h"
|
|
|
|
|
|
|
|
|
|
using namespace frc;
|
|
|
|
|
|
|
|
|
|
constexpr double kPi = 3.14159265358979323846;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Construct a Killough drive with the given motors and default motor angles.
|
|
|
|
|
*
|
2017-11-26 18:36:51 -08:00
|
|
|
* The default motor angles make the wheels on each corner parallel to their
|
|
|
|
|
* respective opposite sides.
|
2017-09-28 23:30:00 -07:00
|
|
|
*
|
|
|
|
|
* If a motor needs to be inverted, do so before passing it in.
|
|
|
|
|
*
|
|
|
|
|
* @param leftMotor The motor on the left corner.
|
|
|
|
|
* @param rightMotor The motor on the right corner.
|
|
|
|
|
* @param backMotor The motor on the back corner.
|
|
|
|
|
*/
|
|
|
|
|
KilloughDrive::KilloughDrive(SpeedController& leftMotor,
|
|
|
|
|
SpeedController& rightMotor,
|
|
|
|
|
SpeedController& backMotor)
|
2017-11-26 18:36:51 -08:00
|
|
|
: KilloughDrive(leftMotor, rightMotor, backMotor, kDefaultLeftMotorAngle,
|
|
|
|
|
kDefaultRightMotorAngle, kDefaultBackMotorAngle) {}
|
2017-09-28 23:30:00 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Construct a Killough drive with the given motors.
|
|
|
|
|
*
|
2017-11-26 18:36:51 -08:00
|
|
|
* Angles are measured in degrees clockwise from the positive X axis.
|
2017-09-28 23:30:00 -07:00
|
|
|
*
|
|
|
|
|
* @param leftMotor The motor on the left corner.
|
|
|
|
|
* @param rightMotor The motor on the right corner.
|
|
|
|
|
* @param backMotor The motor on the back corner.
|
|
|
|
|
* @param leftMotorAngle The angle of the left wheel's forward direction of
|
|
|
|
|
* travel.
|
|
|
|
|
* @param rightMotorAngle The angle of the right wheel's forward direction of
|
|
|
|
|
* travel.
|
|
|
|
|
* @param backMotorAngle The angle of the back wheel's forward direction of
|
|
|
|
|
* travel.
|
|
|
|
|
*/
|
|
|
|
|
KilloughDrive::KilloughDrive(SpeedController& leftMotor,
|
|
|
|
|
SpeedController& rightMotor,
|
|
|
|
|
SpeedController& backMotor, double leftMotorAngle,
|
|
|
|
|
double rightMotorAngle, double backMotorAngle)
|
|
|
|
|
: m_leftMotor(leftMotor), m_rightMotor(rightMotor), m_backMotor(backMotor) {
|
|
|
|
|
m_leftVec = {std::cos(leftMotorAngle * (kPi / 180.0)),
|
|
|
|
|
std::sin(leftMotorAngle * (kPi / 180.0))};
|
|
|
|
|
m_rightVec = {std::cos(rightMotorAngle * (kPi / 180.0)),
|
|
|
|
|
std::sin(rightMotorAngle * (kPi / 180.0))};
|
|
|
|
|
m_backVec = {std::cos(backMotorAngle * (kPi / 180.0)),
|
|
|
|
|
std::sin(backMotorAngle * (kPi / 180.0))};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Drive method for Killough platform.
|
|
|
|
|
*
|
2017-11-26 18:36:51 -08:00
|
|
|
* Angles are measured clockwise from the positive X axis. The robot's speed is
|
|
|
|
|
* independent from its angle or rotation rate.
|
|
|
|
|
*
|
|
|
|
|
* @param ySpeed The robot's speed along the Y axis [-1.0..1.0]. Right is
|
|
|
|
|
* positive.
|
|
|
|
|
* @param xSpeed The robot's speed along the X axis [-1.0..1.0]. Forward is
|
|
|
|
|
* positive.
|
|
|
|
|
* @param zRotation The robot's rotation rate around the Z axis [-1.0..1.0].
|
|
|
|
|
* Clockwise is positive.
|
|
|
|
|
* @param gyroAngle The current angle reading from the gyro in degrees around
|
|
|
|
|
* the Z axis. Use this to implement field-oriented controls.
|
2017-09-28 23:30:00 -07:00
|
|
|
*/
|
2017-11-26 18:36:51 -08:00
|
|
|
void KilloughDrive::DriveCartesian(double ySpeed, double xSpeed,
|
|
|
|
|
double zRotation, double gyroAngle) {
|
2017-09-28 23:30:00 -07:00
|
|
|
if (!reported) {
|
|
|
|
|
// HAL_Report(HALUsageReporting::kResourceType_RobotDrive, 3,
|
|
|
|
|
// HALUsageReporting::kRobotDrive_KilloughCartesian);
|
|
|
|
|
reported = true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 18:36:51 -08:00
|
|
|
ySpeed = Limit(ySpeed);
|
|
|
|
|
ySpeed = ApplyDeadband(ySpeed, m_deadband);
|
2017-09-28 23:30:00 -07:00
|
|
|
|
2017-11-26 18:36:51 -08:00
|
|
|
xSpeed = Limit(xSpeed);
|
|
|
|
|
xSpeed = ApplyDeadband(xSpeed, m_deadband);
|
2017-09-28 23:30:00 -07:00
|
|
|
|
|
|
|
|
// Compensate for gyro angle.
|
2017-11-26 18:36:51 -08:00
|
|
|
Vector2d input{ySpeed, xSpeed};
|
|
|
|
|
input.Rotate(-gyroAngle);
|
2017-09-28 23:30:00 -07:00
|
|
|
|
|
|
|
|
double wheelSpeeds[3];
|
2017-11-26 18:36:51 -08:00
|
|
|
wheelSpeeds[kLeft] = input.ScalarProject(m_leftVec) + zRotation;
|
|
|
|
|
wheelSpeeds[kRight] = input.ScalarProject(m_rightVec) + zRotation;
|
|
|
|
|
wheelSpeeds[kBack] = input.ScalarProject(m_backVec) + zRotation;
|
2017-09-28 23:30:00 -07:00
|
|
|
|
|
|
|
|
Normalize(wheelSpeeds);
|
|
|
|
|
|
|
|
|
|
m_leftMotor.Set(wheelSpeeds[kLeft] * m_maxOutput);
|
|
|
|
|
m_rightMotor.Set(wheelSpeeds[kRight] * m_maxOutput);
|
|
|
|
|
m_backMotor.Set(wheelSpeeds[kBack] * m_maxOutput);
|
|
|
|
|
|
|
|
|
|
m_safetyHelper.Feed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Drive method for Killough platform.
|
|
|
|
|
*
|
2017-11-26 18:36:51 -08:00
|
|
|
* Angles are measured clockwise from the positive X axis. The robot's speed is
|
|
|
|
|
* independent from its angle or rotation rate.
|
|
|
|
|
*
|
|
|
|
|
* @param magnitude The robot's speed at a given angle [-1.0..1.0]. Forward is
|
|
|
|
|
* positive.
|
|
|
|
|
* @param angle The angle around the Z axis at which the robot drives in
|
|
|
|
|
* degrees [-180..180].
|
|
|
|
|
* @param zRotation The robot's rotation rate around the Z axis [-1.0..1.0].
|
|
|
|
|
* Clockwise is positive.
|
2017-09-28 23:30:00 -07:00
|
|
|
*/
|
|
|
|
|
void KilloughDrive::DrivePolar(double magnitude, double angle,
|
|
|
|
|
double rotation) {
|
|
|
|
|
if (!reported) {
|
|
|
|
|
// HAL_Report(HALUsageReporting::kResourceType_RobotDrive, 3,
|
|
|
|
|
// HALUsageReporting::kRobotDrive_KilloughPolar);
|
|
|
|
|
reported = true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 18:36:51 -08:00
|
|
|
DriveCartesian(magnitude * std::sin(angle * (kPi / 180.0)),
|
|
|
|
|
magnitude * std::cos(angle * (kPi / 180.0)), rotation, 0.0);
|
2017-09-28 23:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KilloughDrive::StopMotor() {
|
|
|
|
|
m_leftMotor.StopMotor();
|
|
|
|
|
m_rightMotor.StopMotor();
|
|
|
|
|
m_backMotor.StopMotor();
|
|
|
|
|
m_safetyHelper.Feed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KilloughDrive::GetDescription(llvm::raw_ostream& desc) const {
|
|
|
|
|
desc << "KilloughDrive";
|
|
|
|
|
}
|