Skip to content
Snippets Groups Projects

Add suport for loading SDF scenes generated by blender BIM to robotics addon

Merged Jean Patrick Mathes requested to merge sdf into master
3 unresolved threads

Requires:

This merge request allows to load a scene described by an SDF file (generated by the BIM to robotics blender addon), instead of using a JSON. For this, the following requirements have to be met:

  1. The SDF file must use includes for each model, and each model directory contains an URDF file.
  2. The SDF include paths must not lead to a location that can be resolved by SDFormat by default.

The second condition is necessary because SDFormat 6.0 apparently does not allow getting the original include paths (https://github.com/gazebosim/sdformat/blob/sdf6/src/parser.cc#L916). Therefore, the fallback mechanism when a path is not found is used to retrieve all include paths. Using a newer version of SDFormat would probably solve this, but could require some Axii modules.

The code uses SDFormat 13, which is part of the following Axii merge request: sw/armarx/meta/axii!517 (merged) This allows accessing the original paths and setting search paths for URIs on a per-SDF-file basis.

Edited by Rainer Kartmann

Merge request reports

Approved by

Merged by Rainer KartmannRainer Kartmann 2 years ago (Mar 20, 2023 2:09pm UTC)

Merge details

  • Changes merged into master with cebb5c4c.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
11 10 )
12 11 endif()
13 12
13 find_package(SDFormat REQUIRED)
14
15 include_directories(${SDFormat_INCLUDE_DIRS})
  • 443 445 }
    444 446 }
    445 447
    448 void Simulator::addSceneFromSdfFile(const std::string& scenePath)
    449 {
    450 std::string scenePackage = simox::alg::split(scenePath, "/").at(0);
  • added 1 commit

    • 1853f32f - Use target variants of cmake commands

    Compare with previous version

  • Jean Patrick Mathes changed the description

    changed the description

  • added 5 commits

    Compare with previous version

  • Rainer Kartmann changed the description

    changed the description

  • added 1 commit

    • 174e20b1 - Use std::filesystem for extension checks

    Compare with previous version

  • Rainer Kartmann marked the checklist item sw/armarx/meta/axii!517 (merged) as completed

    marked the checklist item sw/armarx/meta/axii!517 (merged) as completed

  • Merging this now since the Axii MR was part of Axii release https://git.h2t.iar.kit.edu/sw/armarx/meta/axii/-/releases/23.03.2.0

  • Rainer Kartmann approved this merge request

    approved this merge request

  • Rainer Kartmann marked this merge request as ready

    marked this merge request as ready

  • Rainer Kartmann mentioned in commit cebb5c4c

    mentioned in commit cebb5c4c

  • Please register or sign in to reply
    Loading