-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add service and GUI to configure physics parameters (step size and re…
…al time factor) (#536) Signed-off-by: Maganty Rushyendra <[email protected]> Signed-off-by: Luca Della Vedova <[email protected]> Co-authored-by: mrushyendra <[email protected]> Co-authored-by: Louise Poubel <[email protected]>
- Loading branch information
1 parent
b4e152d
commit 9bc088d
Showing
20 changed files
with
776 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* 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. | ||
* | ||
*/ | ||
#ifndef IGNITION_GAZEBO_COMPONENTS_PHYSICS_HH_ | ||
#define IGNITION_GAZEBO_COMPONENTS_PHYSICS_HH_ | ||
|
||
#include <ignition/msgs/physics.pb.h> | ||
|
||
#include <sdf/Physics.hh> | ||
|
||
#include <ignition/gazebo/config.hh> | ||
#include <ignition/gazebo/Export.hh> | ||
|
||
#include <ignition/gazebo/components/Factory.hh> | ||
#include "ignition/gazebo/components/Component.hh" | ||
#include <ignition/gazebo/components/Serialization.hh> | ||
#include <ignition/gazebo/Conversions.hh> | ||
|
||
namespace ignition | ||
{ | ||
namespace gazebo | ||
{ | ||
// Inline bracket to help doxygen filtering. | ||
inline namespace IGNITION_GAZEBO_VERSION_NAMESPACE { | ||
namespace serializers | ||
{ | ||
using PhysicsSerializer = | ||
serializers::ComponentToMsgSerializer<sdf::Physics, msgs::Physics>; | ||
} | ||
namespace components | ||
{ | ||
/// \brief A component type that contains the physics properties of | ||
/// the World entity. | ||
using Physics = Component<sdf::Physics, class PhysicsTag, | ||
serializers::PhysicsSerializer>; | ||
IGN_GAZEBO_REGISTER_COMPONENT("ign_gazebo_components.Physics", | ||
Physics) | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* 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. | ||
* | ||
*/ | ||
#ifndef IGNITION_GAZEBO_COMPONENTS_PHYSICSCMD_HH_ | ||
#define IGNITION_GAZEBO_COMPONENTS_PHYSICSCMD_HH_ | ||
|
||
#include <ignition/msgs/physics.pb.h> | ||
|
||
#include <ignition/gazebo/config.hh> | ||
#include <ignition/gazebo/Export.hh> | ||
|
||
#include <ignition/gazebo/components/Factory.hh> | ||
#include "ignition/gazebo/components/Component.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace gazebo | ||
{ | ||
// Inline bracket to help doxygen filtering. | ||
inline namespace IGNITION_GAZEBO_VERSION_NAMESPACE { | ||
namespace components | ||
{ | ||
/// \brief A component type that contains the physics properties of | ||
/// the World entity. | ||
using PhysicsCmd = Component<msgs::Physics, class PhysicsCmdTag>; | ||
IGN_GAZEBO_REGISTER_COMPONENT("ign_gazebo_components.PhysicsCmd", | ||
PhysicsCmd) | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.