Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/jazzy' into iron_to_jazzy
Browse files Browse the repository at this point in the history
  • Loading branch information
azeey committed Jun 25, 2024
2 parents 8175530 + 142d0ad commit 13f238a
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ros2-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
include:
- docker-image: "ubuntu:24.04"
gz-version: "harmonic"
ros-distro: "rolling"
ros-distro: "jazzy"
container:
image: ${{ matrix.docker-image }}
steps:
Expand Down
14 changes: 14 additions & 0 deletions ros_gz_sim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION include/${PROJECT_NAME}
)

add_executable(gzserver src/gzserver.cpp)
ament_target_dependencies(gzserver
rclcpp
std_msgs
)
target_link_libraries(gzserver
gz-sim::core
)
ament_target_dependencies(gzserver std_msgs)

configure_file(
launch/gz_sim.launch.py.in
launch/gz_sim.launch.py.configured
Expand All @@ -79,6 +89,10 @@ install(TARGETS
create
DESTINATION lib/${PROJECT_NAME}
)
install(TARGETS
gzserver
DESTINATION lib/${PROJECT_NAME}
)

install(
TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}
Expand Down
44 changes: 44 additions & 0 deletions ros_gz_sim/src/gzserver.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2024 Open Source Robotics Foundation, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <gz/common/Console.hh>
#include <gz/sim/Server.hh>
#include <gz/sim/SystemLoader.hh>
#include <gz/sim/ServerConfig.hh>
#include <rclcpp/rclcpp.hpp>

// ROS node that executes a gz-sim Server given a world SDF file or string.
int main(int _argc, char ** _argv)
{
auto filtered_arguments = rclcpp::init_and_remove_ros_arguments(_argc, _argv);
auto node = rclcpp::Node::make_shared("gzserver");
auto world_sdf_file = node->declare_parameter("world_sdf_file", "");
auto world_sdf_string = node->declare_parameter("world_sdf_string", "");

gz::common::Console::SetVerbosity(4);
gz::sim::ServerConfig server_config;

if (!world_sdf_file.empty()) {
server_config.SetSdfFile(world_sdf_file);
} else if (!world_sdf_string.empty()) {
server_config.SetSdfString(world_sdf_string);
} else {
RCLCPP_ERROR(
node->get_logger(), "Must specify either 'world_sdf_file' or 'world_sdf_string'");
return -1;
}

gz::sim::Server server(server_config);
server.Run(true /*blocking*/, 0, false /*paused*/);
}

0 comments on commit 13f238a

Please sign in to comment.