Skip to content

Commit 9f63e1f

Browse files
Add new package
1 parent f667d9c commit 9f63e1f

File tree

3 files changed

+312
-0
lines changed

3 files changed

+312
-0
lines changed

zephyr_gazebo/CMakeLists.txt

+200
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(zephyr_gazebo)
3+
4+
## Compile as C++11, supported in ROS Kinetic and newer
5+
# add_compile_options(-std=c++11)
6+
7+
## Find catkin macros and libraries
8+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
9+
## is used, also find other catkin packages
10+
find_package(catkin REQUIRED COMPONENTS
11+
roscpp
12+
rospy
13+
rotors_gazebo
14+
rtabmap_ros
15+
)
16+
17+
## System dependencies are found with CMake's conventions
18+
# find_package(Boost REQUIRED COMPONENTS system)
19+
20+
21+
## Uncomment this if the package has a setup.py. This macro ensures
22+
## modules and global scripts declared therein get installed
23+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
24+
# catkin_python_setup()
25+
26+
################################################
27+
## Declare ROS messages, services and actions ##
28+
################################################
29+
30+
## To declare and build messages, services or actions from within this
31+
## package, follow these steps:
32+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
33+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
34+
## * In the file package.xml:
35+
## * add a build_depend tag for "message_generation"
36+
## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET
37+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
38+
## but can be declared for certainty nonetheless:
39+
## * add a run_depend tag for "message_runtime"
40+
## * In this file (CMakeLists.txt):
41+
## * add "message_generation" and every package in MSG_DEP_SET to
42+
## find_package(catkin REQUIRED COMPONENTS ...)
43+
## * add "message_runtime" and every package in MSG_DEP_SET to
44+
## catkin_package(CATKIN_DEPENDS ...)
45+
## * uncomment the add_*_files sections below as needed
46+
## and list every .msg/.srv/.action file to be processed
47+
## * uncomment the generate_messages entry below
48+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
49+
50+
## Generate messages in the 'msg' folder
51+
# add_message_files(
52+
# FILES
53+
# Message1.msg
54+
# Message2.msg
55+
# )
56+
57+
## Generate services in the 'srv' folder
58+
# add_service_files(
59+
# FILES
60+
# Service1.srv
61+
# Service2.srv
62+
# )
63+
64+
## Generate actions in the 'action' folder
65+
# add_action_files(
66+
# FILES
67+
# Action1.action
68+
# Action2.action
69+
# )
70+
71+
## Generate added messages and services with any dependencies listed here
72+
# generate_messages(
73+
# DEPENDENCIES
74+
# std_msgs # Or other packages containing msgs
75+
# )
76+
77+
################################################
78+
## Declare ROS dynamic reconfigure parameters ##
79+
################################################
80+
81+
## To declare and build dynamic reconfigure parameters within this
82+
## package, follow these steps:
83+
## * In the file package.xml:
84+
## * add a build_depend and a run_depend tag for "dynamic_reconfigure"
85+
## * In this file (CMakeLists.txt):
86+
## * add "dynamic_reconfigure" to
87+
## find_package(catkin REQUIRED COMPONENTS ...)
88+
## * uncomment the "generate_dynamic_reconfigure_options" section below
89+
## and list every .cfg file to be processed
90+
91+
## Generate dynamic reconfigure parameters in the 'cfg' folder
92+
# generate_dynamic_reconfigure_options(
93+
# cfg/DynReconf1.cfg
94+
# cfg/DynReconf2.cfg
95+
# )
96+
97+
###################################
98+
## catkin specific configuration ##
99+
###################################
100+
## The catkin_package macro generates cmake config files for your package
101+
## Declare things to be passed to dependent projects
102+
## INCLUDE_DIRS: uncomment this if your package contains header files
103+
## LIBRARIES: libraries you create in this project that dependent projects also need
104+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
105+
## DEPENDS: system dependencies of this project that dependent projects also need
106+
catkin_package(
107+
# INCLUDE_DIRS include
108+
# LIBRARIES zephyr_gazebo
109+
# CATKIN_DEPENDS roscpp rospy rotors_gazebo rtabmap_ros
110+
# DEPENDS system_lib
111+
)
112+
113+
###########
114+
## Build ##
115+
###########
116+
117+
## Specify additional locations of header files
118+
## Your package locations should be listed before other locations
119+
include_directories(
120+
# include
121+
${catkin_INCLUDE_DIRS}
122+
)
123+
124+
## Declare a C++ library
125+
# add_library(${PROJECT_NAME}
126+
# src/${PROJECT_NAME}/zephyr_gazebo.cpp
127+
# )
128+
129+
## Add cmake target dependencies of the library
130+
## as an example, code may need to be generated before libraries
131+
## either from message generation or dynamic reconfigure
132+
# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
133+
134+
## Declare a C++ executable
135+
## With catkin_make all packages are built within a single CMake context
136+
## The recommended prefix ensures that target names across packages don't collide
137+
# add_executable(${PROJECT_NAME}_node src/zephyr_gazebo_node.cpp)
138+
139+
## Rename C++ executable without prefix
140+
## The above recommended prefix causes long target names, the following renames the
141+
## target back to the shorter version for ease of user use
142+
## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
143+
# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
144+
145+
## Add cmake target dependencies of the executable
146+
## same as for the library above
147+
# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
148+
149+
## Specify libraries to link a library or executable target against
150+
# target_link_libraries(${PROJECT_NAME}_node
151+
# ${catkin_LIBRARIES}
152+
# )
153+
154+
#############
155+
## Install ##
156+
#############
157+
158+
# all install targets should use catkin DESTINATION variables
159+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
160+
161+
## Mark executable scripts (Python etc.) for installation
162+
## in contrast to setup.py, you can choose the destination
163+
# install(PROGRAMS
164+
# scripts/my_python_script
165+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
166+
# )
167+
168+
## Mark executables and/or libraries for installation
169+
# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node
170+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
171+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
172+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
173+
# )
174+
175+
## Mark cpp header files for installation
176+
# install(DIRECTORY include/${PROJECT_NAME}/
177+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
178+
# FILES_MATCHING PATTERN "*.h"
179+
# PATTERN ".svn" EXCLUDE
180+
# )
181+
182+
## Mark other files for installation (e.g. launch and bag files, etc.)
183+
# install(FILES
184+
# # myfile1
185+
# # myfile2
186+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
187+
# )
188+
189+
#############
190+
## Testing ##
191+
#############
192+
193+
## Add gtest based cpp test target and link libraries
194+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_zephyr_gazebo.cpp)
195+
# if(TARGET ${PROJECT_NAME}-test)
196+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
197+
# endif()
198+
199+
## Add folders to be run by python nosetests
200+
# catkin_add_nosetests(test)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<launch>
2+
<arg name="mav_name" default="firefly"/>
3+
<!--arg name="world_name" default="basic"/-->
4+
<arg name="world_name" default="small_indoor_scenario"/>
5+
<arg name="enable_logging" default="false" />
6+
<arg name="enable_ground_truth" default="true" />
7+
<arg name="log_file" default="$(arg mav_name)" />
8+
9+
<env name="GAZEBO_MODEL_PATH" value="${GAZEBO_MODEL_PATH}:$(find rotors_gazebo)/models"/>
10+
<env name="GAZEBO_MODEL_PATH" value="${GAZEBO_MODEL_PATH}:$(find rotors_gazebo)/Media/models"/>
11+
<env name="GAZEBO_RESOURCE_PATH" value="${GAZEBO_RESOURCE_PATH}:$(find rotors_gazebo)/models"/>
12+
<env name="GAZEBO_RESOURCE_PATH" value="${GAZEBO_RESOURCE_PATH}:$(find rotors_gazebo)/Media/models"/>
13+
<include file="$(find gazebo_ros)/launch/empty_world.launch">
14+
<arg name="world_name" value="$(find rotors_gazebo)/worlds/$(arg world_name).world" />
15+
<!-- <arg name="debug" value="true"/> -->
16+
<arg name="paused" value="true"/>
17+
<!-- <arg name="gui" value="false"/> -->
18+
</include>
19+
20+
<group ns="$(arg mav_name)">
21+
<include file="$(find rotors_gazebo)/launch/spawn_mav.launch">
22+
<arg name="mav_name" value="$(arg mav_name)" />
23+
<!--arg name="model" value="$(find rotors_description)/urdf/mav_generic_odometry_sensor.gazebo" /-->
24+
<arg name="model" value="$(find rotors_description)/urdf/mav_with_vi_sensor.gazebo" />
25+
<arg name="enable_logging" value="$(arg enable_logging)" />
26+
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" />
27+
<arg name="log_file" value="$(arg log_file)"/>
28+
</include>
29+
<node name="lee_position_controller_node" pkg="rotors_control" type="lee_position_controller_node" output="screen">
30+
<rosparam command="load" file="$(find rotors_gazebo)/resource/lee_controller_$(arg mav_name).yaml" />
31+
<rosparam command="load" file="$(find rotors_gazebo)/resource/$(arg mav_name).yaml" />
32+
<!--remap from="odometry" to="odometry_sensor1/odometry" /-->
33+
<remap from="odometry" to="vi_sensor/ground_truth/odometry"/>
34+
</node>
35+
<node name="hovering_example" pkg="rotors_gazebo" type="hovering_example" output="screen"/>
36+
<node name="waypoint_publisher_file" pkg="rotors_gazebo" type="waypoint_publisher_file" output="screen" args="$(find rotors_gazebo)/resource/example_waypoints.txt"/>
37+
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" />
38+
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" />
39+
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find rotors_gazebo)/resource/rviz/firefly.rviz" />
40+
</group>
41+
</launch>

zephyr_gazebo/package.xml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0"?>
2+
<package format="2">
3+
<name>zephyr_gazebo</name>
4+
<version>0.0.0</version>
5+
<description>The zephyr_gazebo package</description>
6+
7+
<!-- One maintainer tag required, multiple allowed, one person per tag -->
8+
<!-- Example: -->
9+
<!-- <maintainer email="[email protected]">Jane Doe</maintainer> -->
10+
<maintainer email="[email protected]">tezerv</maintainer>
11+
12+
13+
<!-- One license tag required, multiple allowed, one license per tag -->
14+
<!-- Commonly used license strings: -->
15+
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
16+
<license>TODO</license>
17+
18+
19+
<!-- Url tags are optional, but multiple are allowed, one per tag -->
20+
<!-- Optional attribute type can be: website, bugtracker, or repository -->
21+
<!-- Example: -->
22+
<!-- <url type="website">http://wiki.ros.org/zephyr_gazebo</url> -->
23+
24+
25+
<!-- Author tags are optional, multiple are allowed, one per tag -->
26+
<!-- Authors do not have to be maintainers, but could be -->
27+
<!-- Example: -->
28+
<!-- <author email="[email protected]">Jane Doe</author> -->
29+
30+
31+
<!-- The *depend tags are used to specify dependencies -->
32+
<!-- Dependencies can be catkin packages or system dependencies -->
33+
<!-- Examples: -->
34+
<!-- Use depend as a shortcut for packages that are both build and exec dependencies -->
35+
<!-- <depend>roscpp</depend> -->
36+
<!-- Note that this is equivalent to the following: -->
37+
<!-- <build_depend>roscpp</build_depend> -->
38+
<!-- <exec_depend>roscpp</exec_depend> -->
39+
<!-- Use build_depend for packages you need at compile time: -->
40+
<!-- <build_depend>message_generation</build_depend> -->
41+
<!-- Use build_export_depend for packages you need in order to build against this package: -->
42+
<!-- <build_export_depend>message_generation</build_export_depend> -->
43+
<!-- Use buildtool_depend for build tool packages: -->
44+
<!-- <buildtool_depend>catkin</buildtool_depend> -->
45+
<!-- Use exec_depend for packages you need at runtime: -->
46+
<!-- <exec_depend>message_runtime</exec_depend> -->
47+
<!-- Use test_depend for packages you need only for testing: -->
48+
<!-- <test_depend>gtest</test_depend> -->
49+
<!-- Use doc_depend for packages you need only for building documentation: -->
50+
<!-- <doc_depend>doxygen</doc_depend> -->
51+
<buildtool_depend>catkin</buildtool_depend>
52+
<build_depend>roscpp</build_depend>
53+
<build_depend>rospy</build_depend>
54+
<build_depend>rotors_gazebo</build_depend>
55+
<build_depend>rtabmap_ros</build_depend>
56+
<build_export_depend>roscpp</build_export_depend>
57+
<build_export_depend>rospy</build_export_depend>
58+
<build_export_depend>rotors_gazebo</build_export_depend>
59+
<build_export_depend>rtabmap_ros</build_export_depend>
60+
<exec_depend>roscpp</exec_depend>
61+
<exec_depend>rospy</exec_depend>
62+
<exec_depend>rotors_gazebo</exec_depend>
63+
<exec_depend>rtabmap_ros</exec_depend>
64+
65+
66+
<!-- The export tag contains other, unspecified, tags -->
67+
<export>
68+
<!-- Other tools can request additional information be placed here -->
69+
70+
</export>
71+
</package>

0 commit comments

Comments
 (0)