Danny Staple 605b0afa9b Put into a function.
break down the
large function
2022-11-15 21:24:59 +00:00

77 lines
2.5 KiB
Python

import asyncio
import json
import random
from ulab import numpy as np
import arena
import robot
class Simulation:
def __init__(self):
population_size = 10
self.poses = np.empty((population_size, 3), dtype=np.float)
for n in range(population_size):
self.poses[n] = random.uniform(0, arena.width), random.uniform(0, arena.height), random.uniform(0, 360)
def move_poses(self, speed_in_mm, heading_change):
for pose in self.poses:
pose[2] += heading_change
pose[2] = pose[2] % 360
pose[0] += speed_in_mm * np.cos(np.radians(pose[2]))
pose[1] += speed_in_mm * np.sin(np.radians(pose[2]))
async def run(self):
try:
for _ in range(5):
starting_heading = robot.imu.euler[0]
encoder_left = robot.left_encoder.read()
encoder_right = robot.right_encoder.read()
robot.set_left(1)
robot.set_right(0.5)
await asyncio.sleep(0.1)
left_movement = robot.left_encoder.read() - encoder_left
right_movement = robot.right_encoder.read() - encoder_right
speed_in_mm = robot.ticks_to_m * ((left_movement + right_movement) / 2) * 1000
new_heading = robot.imu.euler[0]
heading_change = starting_heading - new_heading
self.move_poses(speed_in_mm, heading_change)
finally:
robot.stop()
async def command_handler(simulation):
simulation_task = None
while True:
if robot.uart.in_waiting:
print("Receiving data...")
try:
data = robot.uart.readline().decode()
request = json.loads(data)
except (UnicodeError, ValueError):
print("Invalid data")
continue
# {"command": "arena"}
if request["command"] == "arena":
response = {
"arena": arena.boundary_lines,
"target_zone": arena.target_zone,
}
robot.uart.write((json.dumps(response)+"\n").encode())
elif request["command"] == "start":
print("Starting simulation")
if simulation_task is None or simulation_task.done():
simulation_task = asyncio.create_task(simulation.run())
elif request["command"] == "stop":
robot.stop()
if simulation_task and not simulation_task.done():
simulation_task.cancel()
simulation_task = None
else:
response = {
"poses": simulation.poses.tolist(),
}
robot.uart.write((json.dumps(response)+"\n").encode())
await asyncio.sleep(0.1)
simulation= Simulation()
asyncio.run(command_handler(simulation))