Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for issue #1243 and add a regression test #1245

Merged
merged 4 commits into from
Feb 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
## DART 6

### [DART 6.7.3 (2019-02-19)](https://github.com/dartsim/dart/milestone/51?closed=1)

### Changes

* Dynamics

* Fixed Skeleton::setState(): [#1245](https://github.com/dartsim/dart/pull/1245)

#### Compilers Tested

* Linux

* GCC (C++11): 5.4.0, 7.3.0, 8.2.0

* Linux (32-bit)

* GCC (C++11): 5.4.0

* macOS

* AppleClang (C++11): 9.1.0

### [DART 6.7.2 (2019-01-17)](https://github.com/dartsim/dart/milestone/50?closed=1)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ endif()
# If you change the version, please update the <version> tag in package.xml.
set(DART_MAJOR_VERSION "6")
set(DART_MINOR_VERSION "7")
set(DART_PATCH_VERSION "2")
set(DART_PATCH_VERSION "3")
set(DART_VERSION "${DART_MAJOR_VERSION}.${DART_MINOR_VERSION}.${DART_PATCH_VERSION}")
set(DART_PKG_DESC "Dynamic Animation and Robotics Toolkit.")
set(DART_PKG_EXTERNAL_DEPS "eigen, ccd, fcl, assimp, boost")
Expand Down
2 changes: 2 additions & 0 deletions dart/common/detail/Cloneable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ template <class Base, class OwnerT, class DataT,
auto ProxyCloneable<Base, OwnerT, DataT, setData, getData>::operator =(
const ProxyCloneable& other) -> ProxyCloneable&
{
mOwner = other.mOwner;
set(other);
return *this;
}
Expand All @@ -246,6 +247,7 @@ template <class Base, class OwnerT, class DataT,
auto ProxyCloneable<Base, OwnerT, DataT, setData, getData>::operator =(
ProxyCloneable&& other) -> ProxyCloneable&
{
mOwner = other.mOwner;
set(other);
return *this;
}
Expand Down
8 changes: 4 additions & 4 deletions dart/common/detail/ProxyAspect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class ProxyStateAspect : public BaseT
if(owner && mProxyState.getOwner() != owner)
{
// Link the ProxyState to its new owner
mProxyState = State(owner);
mProxyState = State(owner, mProxyState.get());
}
}

Expand Down Expand Up @@ -153,13 +153,13 @@ class ProxyPropertiesAspect : public BaseT
void setComposite(Composite* newComposite) override
{
Base::setComposite(newComposite);
typename Properties::Owner* comp =
typename Properties::Owner* owner =
dynamic_cast<typename Properties::Owner*>(newComposite);

if(comp && mProxyProperties.getOwner() != comp)
if(owner && mProxyProperties.getOwner() != owner)
{
// Link the ProxyProperties to its new owner
mProxyProperties = Properties(comp);
mProxyProperties = Properties(owner, mProxyProperties.get());
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
a Catkin workspace. Catkin is not required to build DART. For more
information, see: http://ros.org/reps/rep-0136.html -->
<name>dartsim</name>
<version>6.7.2</version>
<version>6.7.3</version>
<description>
DART (Dynamic Animation and Robotics Toolkit) is a collaborative,
cross-platform, open source library created by the Georgia Tech Graphics
Expand Down
2 changes: 2 additions & 0 deletions unittests/regression/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
dart_add_test("regression" test_Issue000Template test_Issue000Template.cpp)

dart_add_test("regression" test_Issue1243 test_Issue1243.cpp)

if(TARGET dart-utils-urdf)

dart_add_test("regression" test_Issue838)
Expand Down
117 changes: 117 additions & 0 deletions unittests/regression/test_Issue1243.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
/*
* Copyright (c) 2011-2019, The DART development contributors
* All rights reserved.
*
* The list of contributors can be found at:
* https://github.com/dartsim/dart/blob/master/LICENSE
*
* This file is provided under the following "BSD-style" License:
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

#include <gtest/gtest.h>
#include <TestHelpers.hpp>

#include <dart/dart.hpp>

dart::dynamics::SkeletonPtr create_box(const Eigen::Vector3d& dims, double mass, const Eigen::Vector4d& color, const std::string& box_name)
{
dart::dynamics::SkeletonPtr box_skel = dart::dynamics::Skeleton::create(box_name);

// Give the box a body
dart::dynamics::BodyNodePtr body;
body = box_skel->createJointAndBodyNodePair<dart::dynamics::FreeJoint>(nullptr).second;
body->setName(box_name);

// Give the body a shape
auto box = std::make_shared<dart::dynamics::BoxShape>(dims);
auto box_node = body->createShapeNodeWith<dart::dynamics::VisualAspect, dart::dynamics::CollisionAspect, dart::dynamics::DynamicsAspect>(box);
box_node->getVisualAspect()->setColor(color);
// Set up inertia
dart::dynamics::Inertia inertia;
inertia.setMass(mass);
inertia.setMoment(box->computeInertia(mass));
body->setInertia(inertia);

return box_skel;
}

dart::dynamics::SkeletonPtr create_floor()
{
double floor_width = 10.;
double floor_height = 0.1;

dart::dynamics::SkeletonPtr floor_skel = dart::dynamics::Skeleton::create("floor");

// Give the floor a body
dart::dynamics::BodyNodePtr body = floor_skel->createJointAndBodyNodePair<dart::dynamics::WeldJoint>(nullptr).second;

// Give the body a shape
auto box = std::make_shared<dart::dynamics::BoxShape>(Eigen::Vector3d(floor_width, floor_width, floor_height));
auto box_node = body->createShapeNodeWith<dart::dynamics::VisualAspect, dart::dynamics::CollisionAspect, dart::dynamics::DynamicsAspect>(box);
box_node->getVisualAspect()->setColor(dart::Color::Gray());

// Put the body into position
Eigen::Isometry3d tf(Eigen::Isometry3d::Identity());
tf.translation()[2] -= floor_height / 2.0;
body->getParentJoint()->setTransformFromParentBodyNode(tf);

return floor_skel;
}

//==============================================================================
TEST(Issue1243, State)
{
auto world = std::make_shared<dart::simulation::World>();

auto box_skel = create_box({0.1, 0.1, 0.1}, 1., {1., 0., 0., 1.}, "box");
auto floor_skel = create_floor();

box_skel->setPosition(5, 0.2);

world->addSkeleton(box_skel);
world->addSkeleton(floor_skel);

dart::dynamics::Skeleton::State bookmark_state;
Eigen::Isometry3d bookmark_tf;
for (size_t i = 0; i < 20; i++)
{
if(i==10)
{
bookmark_state = box_skel->getState();
bookmark_tf = box_skel->getRootBodyNode()->getTransform();
}
world->step();
}

const Eigen::Isometry3d final_tf =
box_skel->getRootBodyNode()->getTransform();

box_skel->setState(bookmark_state);
const Eigen::Isometry3d rewind_tf =
box_skel->getRootBodyNode()->getTransform();

EXPECT_FALSE(equals(bookmark_tf, final_tf));
EXPECT_TRUE(equals(bookmark_tf, rewind_tf));
}