Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/seigot/ai_race into main
Browse files Browse the repository at this point in the history
  • Loading branch information
anchobi-no committed Mar 4, 2021
2 parents 0b97a01 + 3ffc727 commit 1d03243
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 11 deletions.
13 changes: 13 additions & 0 deletions ai_race/sim_environment/config/respown_point_large.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
respown_point: [[6.0, 0.0, 90.0],
[6.0, 4.0, 90.0],
[4.5, 7.0 ,135.0],
[0.0, 8.0, 180],
[-4.5, 7.0, -135.0],
[-6.0, 4.0, -90.0],
[-6.0, 0.0, -90.0],
[-6.0, -4.0, -90.0],
[-4.5, -7.0 ,-45.0],
[0.0, -8.0, 0.0],
[4.5, -7.0, 45.0],
[6.0, -4.0, 90.0],
]
10 changes: 5 additions & 5 deletions ai_race/sim_environment/launch/sim_environment.launch
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<arg name="gui" value="$(arg gui)" />
<arg name="controller" value="$(arg controller)" />
<arg name="dynamic_recon" value="false" />
<arg name="with_auto_recovery" value="false" />
<arg name="with_auto_recovery" value="true" /> <!-- for large field debug -->
<arg name="arrow" value="$(arg arrow)" />
<arg name="record" value="$(arg record)" />
<arg name="play" value="$(arg play)" />
Expand All @@ -104,7 +104,7 @@
<arg name="track_name" value="medium_track_plane_w_wall_fall.world" />
<arg name="gui" value="$(arg gui)" />
<arg name="controller" value="$(arg controller)" />
<arg name="dynamic_recon" value="false" />
<arg name="dynamic_recon" value="True" />
<arg name="with_auto_recovery" value="false" />
<arg name="arrow" value="$(arg arrow)" />
<arg name="record" value="$(arg record)" />
Expand All @@ -119,7 +119,7 @@
<arg name="track_name" value="medium_track_plane_w_wall_cherry.world" />
<arg name="gui" value="$(arg gui)" />
<arg name="controller" value="$(arg controller)" />
<arg name="dynamic_recon" value="false" />
<arg name="dynamic_recon" value="True" />
<arg name="with_auto_recovery" value="false" />
<arg name="arrow" value="$(arg arrow)" />
<arg name="record" value="$(arg record)" />
Expand All @@ -134,7 +134,7 @@
<arg name="track_name" value="medium_track_plane_w_wall_summer.world" />
<arg name="gui" value="$(arg gui)" />
<arg name="controller" value="$(arg controller)" />
<arg name="dynamic_recon" value="false" />
<arg name="dynamic_recon" value="True" />
<arg name="with_auto_recovery" value="false" />
<arg name="arrow" value="$(arg arrow)" />
<arg name="record" value="$(arg record)" />
Expand All @@ -149,7 +149,7 @@
<arg name="track_name" value="medium_track_plane_w_wall_winter.world" />
<arg name="gui" value="$(arg gui)" />
<arg name="controller" value="$(arg controller)" />
<arg name="dynamic_recon" value="false" />
<arg name="dynamic_recon" value="True" />
<arg name="with_auto_recovery" value="false" />
<arg name="arrow" value="$(arg arrow)" />
<arg name="record" value="$(arg record)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
<node pkg="sim_environment" type="jugemu.py" name="jugemu" output="screen" />
<group if="$(eval with_auto_recovery==true)">
<rosparam file="$(find sim_environment)/config/respown_point.yaml" command="load" />
<!-- for large field -->
<rosparam file="$(find sim_environment)/config/respown_point_large.yaml" command="load" />
<node pkg="sim_environment" type="detect_stack.py" name="detect_stack" output="screen" />
<node pkg="sim_environment" type="jugemu_new.py" name="jugemu_new" output="screen" />
</group>
Expand Down
10 changes: 5 additions & 5 deletions ai_race/sim_environment/scripts/course_out_surveillance.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
MAX_SPEED_W = 0.5

#Level1 Parameters
Ly = 1
Lx = 1.1
r = 0.5
Ly_out = 3.0
Lx_out = 2.5
Ly = 1.04
Lx = 1.2
r = 0.75
Ly_out = 2.85
Lx_out = 2.25

x = 1.6
y = 0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@

<gazebo>
<plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so" />
<static>true</static>
</gazebo>


Expand Down

0 comments on commit 1d03243

Please sign in to comment.