├── .DS_Store ├── CMakeLists.txt ├── README.md ├── include ├── gazebo_env_io.h ├── position_generator.h ├── task_env_io.h └── task_env_io_backup_one_car.h ├── launch ├── avoidance_collision_16_agent.launch ├── default.launch ├── maze.launch ├── multi_agents.launch └── one_agents.launch ├── log └── logger.txt ├── msg ├── control_group_msgs.msg ├── control_msgs.msg ├── state_group_msgs.msg └── state_msgs.msg ├── package.xml ├── param └── env.yaml ├── rviz └── tf_show.rviz ├── src ├── main.cpp ├── position_generator.cpp ├── task_env_io.cpp └── task_env_io_backup.cpp ├── srv ├── PytorchRL.srv ├── SimpleCtrl.srv └── SocialForce.srv ├── urdf ├── .DS_Store ├── edge_1.urdf ├── edge_2.urdf ├── edge_3.urdf ├── edge_4.urdf ├── target_1.urdf ├── target_2.urdf ├── target_3.urdf ├── target_4.urdf ├── target_5.urdf ├── target_6.urdf ├── target_7.urdf ├── target_8.urdf └── textures │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg └── worlds ├── base_maze.world ├── base_maze_circle.world ├── empty.world └── test.world /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/.DS_Store -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/README.md -------------------------------------------------------------------------------- /include/gazebo_env_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/include/gazebo_env_io.h -------------------------------------------------------------------------------- /include/position_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/include/position_generator.h -------------------------------------------------------------------------------- /include/task_env_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/include/task_env_io.h -------------------------------------------------------------------------------- /include/task_env_io_backup_one_car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/include/task_env_io_backup_one_car.h -------------------------------------------------------------------------------- /launch/avoidance_collision_16_agent.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/launch/avoidance_collision_16_agent.launch -------------------------------------------------------------------------------- /launch/default.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/launch/default.launch -------------------------------------------------------------------------------- /launch/maze.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/launch/maze.launch -------------------------------------------------------------------------------- /launch/multi_agents.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/launch/multi_agents.launch -------------------------------------------------------------------------------- /launch/one_agents.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/launch/one_agents.launch -------------------------------------------------------------------------------- /log/logger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/log/logger.txt -------------------------------------------------------------------------------- /msg/control_group_msgs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/msg/control_group_msgs.msg -------------------------------------------------------------------------------- /msg/control_msgs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/msg/control_msgs.msg -------------------------------------------------------------------------------- /msg/state_group_msgs.msg: -------------------------------------------------------------------------------- 1 | state_msgs[] group_state -------------------------------------------------------------------------------- /msg/state_msgs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/msg/state_msgs.msg -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/package.xml -------------------------------------------------------------------------------- /param/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/param/env.yaml -------------------------------------------------------------------------------- /rviz/tf_show.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/rviz/tf_show.rviz -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/position_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/src/position_generator.cpp -------------------------------------------------------------------------------- /src/task_env_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/src/task_env_io.cpp -------------------------------------------------------------------------------- /src/task_env_io_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/src/task_env_io_backup.cpp -------------------------------------------------------------------------------- /srv/PytorchRL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/srv/PytorchRL.srv -------------------------------------------------------------------------------- /srv/SimpleCtrl.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/srv/SimpleCtrl.srv -------------------------------------------------------------------------------- /srv/SocialForce.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/srv/SocialForce.srv -------------------------------------------------------------------------------- /urdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/.DS_Store -------------------------------------------------------------------------------- /urdf/edge_1.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/edge_1.urdf -------------------------------------------------------------------------------- /urdf/edge_2.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/edge_2.urdf -------------------------------------------------------------------------------- /urdf/edge_3.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/edge_3.urdf -------------------------------------------------------------------------------- /urdf/edge_4.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/edge_4.urdf -------------------------------------------------------------------------------- /urdf/target_1.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_1.urdf -------------------------------------------------------------------------------- /urdf/target_2.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_2.urdf -------------------------------------------------------------------------------- /urdf/target_3.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_3.urdf -------------------------------------------------------------------------------- /urdf/target_4.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_4.urdf -------------------------------------------------------------------------------- /urdf/target_5.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_5.urdf -------------------------------------------------------------------------------- /urdf/target_6.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_6.urdf -------------------------------------------------------------------------------- /urdf/target_7.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_7.urdf -------------------------------------------------------------------------------- /urdf/target_8.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/target_8.urdf -------------------------------------------------------------------------------- /urdf/textures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/1.jpg -------------------------------------------------------------------------------- /urdf/textures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/2.jpg -------------------------------------------------------------------------------- /urdf/textures/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/3.jpg -------------------------------------------------------------------------------- /urdf/textures/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/4.jpg -------------------------------------------------------------------------------- /urdf/textures/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/5.jpg -------------------------------------------------------------------------------- /urdf/textures/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/6.jpg -------------------------------------------------------------------------------- /urdf/textures/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/7.jpg -------------------------------------------------------------------------------- /urdf/textures/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/8.jpg -------------------------------------------------------------------------------- /urdf/textures/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/urdf/textures/9.jpg -------------------------------------------------------------------------------- /worlds/base_maze.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/worlds/base_maze.world -------------------------------------------------------------------------------- /worlds/base_maze_circle.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/worlds/base_maze_circle.world -------------------------------------------------------------------------------- /worlds/empty.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/worlds/empty.world -------------------------------------------------------------------------------- /worlds/test.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilgameshD/Gazebo-DRL-Navigation/HEAD/worlds/test.world --------------------------------------------------------------------------------