Esempio n. 1
0
    def __init__(self):
        super().__init__()
        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)

        self.acceleration = 1
        self.deceleration = -0.5
Esempio n. 2
0
    def __init__(self):
        super().__init__()
        self.front_cargo_bay = Waypoint(5.6 - SwerveChassis.LENGTH / 2, 0.2, 0,
                                        0.75)
        self.setup_loading_bay = Waypoint(3.3, 3.3, math.pi, 2)
        self.loading_bay = Waypoint(0.2 + SwerveChassis.LENGTH / 2, 3.4,
                                    math.pi, 1)
        self.side_cargo_bay = Waypoint(7, 0.8 + SwerveChassis.WIDTH / 2,
                                       -math.pi / 2, 1)
        self.side_cargo_bay_alignment_point = Waypoint(
            7, 1.8 + SwerveChassis.WIDTH / 2, -math.pi / 2, 0.75)
        self.start_pos = Waypoint(
            1.2 + SwerveChassis.LENGTH / 2,
            0,
            0,
            2,
            #  + SwerveChassis.WIDTH / 2
        )

        self.completed_runs = 0
        self.desired_angle = 0
        self.desired_angle_navx = 0
        self.minimum_path_completion = 0.85

        self.acceleration = 1
        self.deceleration = -0.5

        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)
Esempio n. 3
0
class TestPursuitAuto(AutonomousStateMachine):

    MODE_NAME = "Test Pursuit Auto"
    DEFAULT = False

    chassis: SwerveChassis
    imu: NavX

    def on_enable(self):
        super().on_enable()
        self.chassis.odometry_x = 0
        self.chassis.odometry_y = 0
        self.points = (
            self.current_pos,
            Waypoint(2, 0, 0, 1),
            Waypoint(2, 2, 0, 1),
            Waypoint(0, 2, 0, 1),
        )
        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.0)

    @state(first=True)
    def move_forwards(self, initial_call):
        if initial_call:
            self.pursuit.build_path(self.points)
        vx, vy, vz = self.pursuit.find_velocity(self.chassis.position)
        self.chassis.set_inputs(vx, vy, 0)
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0)
            self.done()

    @property
    def current_pos(self):
        return Waypoint(self.chassis.odometry_x, self.chassis.odometry_y,
                        self.imu.getAngle(), 1)
Esempio n. 4
0
class TestPursuitAuto(AutonomousStateMachine):

    MODE_NAME = "Test Pursuit Auto"
    DEFAULT = False

    chassis: SwerveChassis
    pursuit: PurePursuit
    imu: NavX

    def __init__(self):
        super().__init__()
        self.points = (
            Waypoint(0, 0, 0, 1),
            Waypoint(0.8, 0, 0, 0.5),
            Waypoint(1, 0, 0, 0.2),
        )
        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)

    @state(first=True)
    def move_forwards(self, initial_call):
        if initial_call:
            self.pursuit.build_path(self.points)
        vx, vy, vz = self.pursuit.find_velocity(self.chassis.position)
        self.chassis.set_inputs(vx, vy, 0)
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0)
            self.done()
Esempio n. 5
0
 def __init__(self):
     super().__init__()
     self.points = (
         Waypoint(0, 0, 0, 1),
         Waypoint(0.8, 0, 0, 0.5),
         Waypoint(1, 0, 0, 0.2),
     )
     self.pursuit = PurePursuit(look_ahead=0.2,
                                look_ahead_speed_modifier=0.25)
Esempio n. 6
0
    def __init__(self):
        super().__init__()
        self.coordinates: Coordinates = left_coordinates

        self.completed_runs = 0
        self.desired_angle = 0
        self.desired_angle_navx = 0
        self.minimum_path_completion = 0.85

        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)
Esempio n. 7
0
 def on_enable(self):
     super().on_enable()
     self.chassis.odometry_x = 0
     self.chassis.odometry_y = 0
     self.points = (
         self.current_pos,
         Waypoint(2, 0, 0, 1),
         Waypoint(2, 2, 0, 1),
         Waypoint(0, 2, 0, 1),
     )
     self.pursuit = PurePursuit(look_ahead=0.2,
                                look_ahead_speed_modifier=0.0)
Esempio n. 8
0
class DriveForwards(AutonomousStateMachine):
    MODE_NAME = "Drive Forwards - Default"

    chassis: SwerveChassis
    imu: NavX
    hatch: Hatch
    cargo_component: CargoManipulator

    joystick: wpilib.Joystick

    def __init__(self):
        super().__init__()
        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)

    def on_enable(self):
        super().on_enable()
        self.chassis.odometry_x = 0
        self.chassis.odometry_y = 0

    @state(first=True)
    def wait_for_input(self):
        self.hatch.has_hatch = False
        self.cargo_component.has_cargo = True
        if self.joystick.getY() < -0.5:  # joystick -y is forwards
            self.next_state("drive_forwards")

    @state
    def drive_forwards(self, initial_call):
        if initial_call:
            waypoints = insert_trapezoidal_waypoints(
                (self.current_pos, Waypoint(1.5, 0, 0, 0)),
                acceleration=self.chassis.acceleration,
                deceleration=self.chassis.deceleration,
            )
            self.pursuit.build_path(waypoints)
        self.follow_path()
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0)
            self.done()

    @property
    def current_pos(self):
        return Waypoint(self.chassis.odometry_x, self.chassis.odometry_y,
                        self.imu.getAngle(), 2)

    def follow_path(self):
        vx, vy, heading = self.pursuit.find_velocity(self.chassis.position)
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0, field_oriented=True)
            return
        self.chassis.set_velocity_heading(vx, vy, heading)
Esempio n. 9
0
class AutoBase(AutonomousStateMachine):

    # Here magicbot injects components
    hatch_deposit: HatchDepositAligner
    hatch_intake: HatchIntakeAligner
    cargo: CargoManager

    chassis: SwerveChassis
    hatch: Hatch
    cargo_component: CargoManipulator
    imu: NavX
    vision: Vision

    # This one is just a typehint
    pursuit: PurePursuit

    def __init__(self):
        super().__init__()
        self.coordinates: Coordinates = left_coordinates

        self.completed_runs = 0
        self.desired_angle = 0
        self.desired_angle_navx = 0
        self.minimum_path_completion = 0.85

        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)

    def setup(self):
        self.hatch.has_hatch = True
        self.vision.use_hatch()

    def on_enable(self):
        super().on_enable()
        self.chassis.odometry_x = self.coordinates.start_pos.x
        self.chassis.odometry_y = self.coordinates.start_pos.y
        self.completed_runs = 0

    # @state(first=True)
    # def intake_starting_hatch(self, initial_call):
    #     if initial_call:
    #         self.counter = 0
    #     if self.counter > 5:
    #         self.next_state("drive_to_cargo_ship")
    #     else:
    #         self.counter += 1

    @state(first=True)
    def drive_to_cargo_ship(self, initial_call):
        if initial_call:
            if self.completed_runs == 0:
                waypoints = insert_trapezoidal_waypoints(
                    (self.current_pos, self.coordinates.front_cargo_ship),
                    self.chassis.acceleration,
                    self.chassis.deceleration,
                )
            elif self.completed_runs == 1:
                waypoints = insert_trapezoidal_waypoints(
                    (
                        self.current_pos,
                        self.coordinates.side_cargo_ship_alignment_point,
                        self.coordinates.side_cargo_ship,
                    ),
                    self.chassis.acceleration,
                    self.chassis.deceleration,
                )
            else:
                self.next_state("drive_to_loading_bay")
                self.completed_runs += 1
                return
            self.pursuit.build_path(waypoints)
        self.follow_path()
        if (self.vision.fiducial_in_sight
                and self.ready_for_vision()) or self.pursuit.completed_path:
            self.next_state("deposit_hatch")
            self.completed_runs += 1

    @state
    def deposit_hatch(self, initial_call):
        if initial_call:
            self.hatch_deposit.engage(initial_state="target_tape_align")
        if not self.hatch.has_hatch:
            self.next_state("drive_to_loading_bay")

    @state
    def drive_to_loading_bay(self, initial_call):
        if initial_call:
            if self.completed_runs == 1:
                waypoints = insert_trapezoidal_waypoints(
                    (
                        self.current_pos,
                        Waypoint(
                            self.current_pos.x - 1,
                            self.current_pos.y,
                            self.imu.getAngle(),
                            1.5,
                        ),
                        self.coordinates.setup_loading_bay,
                        self.coordinates.loading_bay,
                    ),
                    self.chassis.acceleration,
                    self.chassis.deceleration,
                )
            elif self.completed_runs == 2:
                waypoints = insert_trapezoidal_waypoints(
                    (
                        self.current_pos,
                        self.coordinates.setup_loading_bay,
                        self.coordinates.loading_bay,
                    ),
                    self.chassis.acceleration,
                    self.chassis.deceleration,
                )
            else:
                self.next_state("stop")
                return
            self.pursuit.build_path(waypoints)
        self.follow_path()
        if (self.vision.fiducial_in_sight
                and self.ready_for_vision()) or self.pursuit.completed_path:
            self.next_state("intake_hatch")

    @state
    def intake_hatch(self, initial_call):
        if initial_call:
            self.hatch_intake.engage(initial_state="target_tape_align")
        elif not self.hatch_intake.is_executing:
            self.next_state("drive_to_cargo_ship")

    @state
    def stop(self):
        self.chassis.set_inputs(0, 0, 0)
        self.done()

    @property
    def current_pos(self):
        return Waypoint(self.chassis.odometry_x, self.chassis.odometry_y,
                        self.imu.getAngle(), 3)

    def follow_path(self):
        vx, vy, heading = self.pursuit.find_velocity(self.chassis.position)
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0, field_oriented=True)
            return
        self.chassis.set_velocity_heading(vx, vy, heading)

    def ready_for_vision(self):
        if self.pursuit.waypoints[-1][4] - self.pursuit.distance_traveled < 2:
            return True
        else:
            return False
Esempio n. 10
0
 def __init__(self):
     super().__init__()
     self.pursuit = PurePursuit(look_ahead=0.2,
                                look_ahead_speed_modifier=0.25)
Esempio n. 11
0
class AutoBase(AutonomousStateMachine):

    # Here magicbot injects components
    hatch_deposit: HatchDepositAligner
    hatch_intake: HatchIntakeAligner

    chassis: SwerveChassis
    hatch: Hatch
    imu: NavX
    vision: Vision

    # This one is just a typehint
    pursuit: PurePursuit

    def __init__(self):
        super().__init__()
        self.front_cargo_bay = Waypoint(5.6 - SwerveChassis.LENGTH / 2, 0.2, 0,
                                        0.75)
        self.setup_loading_bay = Waypoint(3.3, 3.3, math.pi, 2)
        self.loading_bay = Waypoint(0.2 + SwerveChassis.LENGTH / 2, 3.4,
                                    math.pi, 1)
        self.side_cargo_bay = Waypoint(7, 0.8 + SwerveChassis.WIDTH / 2,
                                       -math.pi / 2, 1)
        self.side_cargo_bay_alignment_point = Waypoint(
            7, 1.8 + SwerveChassis.WIDTH / 2, -math.pi / 2, 0.75)
        self.start_pos = Waypoint(
            1.2 + SwerveChassis.LENGTH / 2,
            0,
            0,
            2,
            #  + SwerveChassis.WIDTH / 2
        )

        self.completed_runs = 0
        self.desired_angle = 0
        self.desired_angle_navx = 0
        self.minimum_path_completion = 0.85

        self.acceleration = 1
        self.deceleration = -0.5

        self.pursuit = PurePursuit(look_ahead=0.2,
                                   look_ahead_speed_modifier=0.25)

    def on_enable(self):
        super().on_enable()
        self.chassis.odometry_x = self.start_pos[0]
        self.chassis.odometry_y = self.start_pos[1]
        self.completed_runs = 0
        # print(f"odometry = {self.current_pos}")

    @state(first=True)
    def drive_to_cargo_bay(self, initial_call):
        if initial_call:
            # print(f"odometry = {self.current_pos}")
            if self.completed_runs == 0:
                waypoints = insert_trapezoidal_waypoints(
                    (self.current_pos, self.front_cargo_bay),
                    self.acceleration,
                    self.deceleration,
                )
            elif self.completed_runs == 1:
                waypoints = insert_trapezoidal_waypoints(
                    (
                        self.current_pos,
                        self.side_cargo_bay_alignment_point,
                        self.side_cargo_bay,
                    ),
                    self.acceleration,
                    self.deceleration,
                )
            else:
                self.next_state("drive_to_loading_bay")
                self.completed_runs += 1
                return
            self.pursuit.build_path(waypoints)
        self.follow_path()
        if (self.vision.fiducial_in_sight
                and self.ready_for_vision()) or self.pursuit.completed_path:
            self.next_state("deposit_hatch")
            self.completed_runs += 1

    @state
    def deposit_hatch(self, initial_call):
        if initial_call:
            self.hatch_deposit.engage(initial_state="target_tape_align")
        if not self.hatch.has_hatch:
            self.next_state("drive_to_loading_bay")

    @state
    def drive_to_loading_bay(self, initial_call):
        if initial_call:
            if self.completed_runs == 1:
                waypoints = insert_trapezoidal_waypoints(
                    (
                        self.current_pos,
                        Waypoint(
                            self.current_pos[0] - 0.5,
                            self.current_pos[1],
                            self.imu.getAngle(),
                            1.5,
                        ),
                        self.setup_loading_bay,
                        self.loading_bay,
                    ),
                    self.acceleration,
                    self.deceleration,
                )
            elif self.completed_runs == 2:
                waypoints = insert_trapezoidal_waypoints(
                    (self.current_pos, self.setup_loading_bay,
                     self.loading_bay),
                    self.acceleration,
                    self.deceleration,
                )
            else:
                self.next_state("stop")
                return
            self.pursuit.build_path(waypoints)
        self.follow_path()
        if (self.vision.fiducial_in_sight
                and self.ready_for_vision()) or self.pursuit.completed_path:
            self.next_state("intake_hatch")

    @state
    def intake_hatch(self, initial_call):
        if initial_call:
            self.hatch_intake.engage(initial_state="target_tape_align")
        elif not self.hatch_intake.is_executing:
            self.next_state("drive_to_cargo_bay")

    @state
    def stop(self):
        self.chassis.set_inputs(0, 0, 0)
        self.done()

    @property
    def current_pos(self):
        return Waypoint(self.chassis.odometry_x, self.chassis.odometry_y,
                        self.imu.getAngle(), 2)

    def follow_path(self):
        vx, vy, heading = self.pursuit.find_velocity(self.chassis.position)
        if self.pursuit.completed_path:
            self.chassis.set_inputs(0, 0, 0, field_oriented=False)
            return
        # TODO implement a system to allow for rotation in waypoints
        self.chassis.set_velocity_heading(vx, vy, heading)

    def ready_for_vision(self):
        if self.pursuit.waypoints[-1][4] - self.pursuit.distance_traveled < 1:
            return True
        else:
            return False