-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add procedured copter generation to Gazebo simulator
- Loading branch information
Showing
1 changed file
with
71 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,77 @@ | ||
import argparse | ||
import roslaunch | ||
import subprocess | ||
import math | ||
import os | ||
|
||
dirpath = os.path.dirname(os.path.realpath(__file__)) | ||
print("Script path is {}".format(dirpath)) | ||
|
||
run = os.path.join(dirpath,"run") | ||
spawn = os.path.join(dirpath,'single_vehicle_spawn.launch') | ||
gazebo = os.path.join(dirpath,'gazebo.launch') | ||
|
||
def positive_int(value): | ||
ivalue = int(value) | ||
if ivalue <= 0: | ||
raise argparse.ArgumentTypeError("{} is an invalid value, must be positive".format(value)) | ||
return ivalue | ||
|
||
def positive_float(value): | ||
ivalue = float(value) | ||
if ivalue <= 0: | ||
raise argparse.ArgumentTypeError("{} is an invalid value, must be positive".format(value)) | ||
return ivalue | ||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser(description="Launch Gazebo simulator and generate N px4 copters with simulated companion computers") | ||
parser.add_argument('-N','--number', type=int, default='1', | ||
|
||
# Set argument parser | ||
parser = argparse.ArgumentParser(description="Launch Gazebo simulator and generate n px4 copters with simulated companion computers") | ||
parser.add_argument('-n','--number', type=positive_int, default='1', | ||
help="Number of copters to simulate. Default is 1.") | ||
parser.add_argument('-p','--port', type=int, default='14601', | ||
parser.add_argument('-p','--port', type=positive_int, default='14601', | ||
help="UDP port for simulation data of the first copter. Default is 14601. UDP port for n-th copter will be equal to <port> + n - 1.") | ||
parser.add_argument('-d','--dist', type=int, default='1', | ||
parser.add_argument('-d','--dist', type=positive_float, default='1', | ||
help="Distance between generated copters. The generated copters will be arranged as a 2D array in a shape close to square.") | ||
args = parser.parse_args() | ||
args = parser.parse_args() | ||
|
||
n = float(args.number) # Needs for ceiling | ||
xn = int(math.ceil(math.sqrt(n))) | ||
yn = int(math.ceil(n/xn)) | ||
n = int(n) | ||
|
||
print("{} copters will be arranged to 2D array with xn = {}, yn = {}".format(args.number, xn, yn)) | ||
|
||
# Launch Gazebo | ||
uuid = roslaunch.rlutil.get_or_generate_uuid(None, False) | ||
roslaunch.configure_logging(uuid) | ||
|
||
launch = roslaunch.parent.ROSLaunchParent(uuid, [gazebo]) | ||
launch.start() | ||
|
||
# Run N docker containers with clever-show clients | ||
# Spawn N models arranged as a 2D array in a shape close to square to Gazebo | ||
output = "\nGenerated copters:\n" | ||
for yi in range(yn-1, -1, -1): | ||
for xi in range(xn): | ||
index = xi + yi*xn + 1 | ||
if index > n: | ||
break | ||
port = args.port + index - 1 | ||
x = xi*args.dist | ||
y = yi*args.dist | ||
output += "sim-{} ({}, {})\t".format(index, x, y) | ||
subprocess.call("{} -i={} -p={}".format(run, index, port), shell=True) | ||
subprocess.call("roslaunch {} ID:={} port:={} x:={} y:={}".format(spawn, index, port, x, y), shell=True) | ||
output += "\n" | ||
|
||
print(output) | ||
|
||
try: | ||
launch.spin() | ||
finally: | ||
# After Ctrl+C, stop all nodes from running | ||
print("Shutdown detected!") | ||
for i in range(n): | ||
subprocess.call("docker kill sim-{}".format(i+1), shell=True) | ||
launch.shutdown() |