83ce236479
PiperOrigin-RevId: 469414367 Change-Id: Ia5c75b4f2c9fd592c81a1ec659720f9820c0dfbb
434 lines
14 KiB
C++
434 lines
14 KiB
C++
// Copyright 2021 DeepMind Technologies Limited
|
|
//
|
|
// 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.
|
|
|
|
// Tests for user/user_objects.cc.
|
|
|
|
#include <array>
|
|
#include <cstddef>
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
#include <mujoco/mjmodel.h>
|
|
#include <mujoco/mjtnum.h>
|
|
#include <mujoco/mujoco.h>
|
|
#include "test/fixture.h"
|
|
|
|
namespace mujoco {
|
|
namespace {
|
|
|
|
using MjCMeshTest = MujocoTest;
|
|
|
|
static const char* const kDuplicateVerticesPath =
|
|
"user/testdata/duplicate_vertices.xml";
|
|
static const char* const kCubePath =
|
|
"user/testdata/cube.xml";
|
|
static const char* const kTorusPath =
|
|
"user/testdata/torus.xml";
|
|
static const char* const kConvexInertiaPath =
|
|
"user/testdata/inertia_convex.xml";
|
|
static const char* const kConcaveInertiaPath =
|
|
"user/testdata/inertia_concave.xml";
|
|
static const char* const kShellInertiaPath =
|
|
"user/testdata/inertia_shell.xml";
|
|
static const char* const kTorusQuadsPath =
|
|
"user/testdata/torus_quads.xml";
|
|
static const char* const kTexturedTorusPath =
|
|
"user/testdata/textured_torus.xml";
|
|
static const char* const kDuplicateOBJPath =
|
|
"user/testdata/duplicate.xml";
|
|
static const char* const kMalformedFaceOBJPath =
|
|
"user/testdata/malformed_face.xml";
|
|
|
|
using ::testing::HasSubstr;
|
|
|
|
// ------------- test vertex de-duplication (STL) ------------------------------
|
|
|
|
TEST_F(MjCMeshTest, DeDuplicateSTLVertices) {
|
|
const std::string xml_path = GetTestDataFilePath(kDuplicateVerticesPath);
|
|
char error[1024];
|
|
size_t error_sz = 1024;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error, error_sz);
|
|
ASSERT_EQ(model->nmeshvert, 4);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
// ------------- test OBJ loading ----------------------------------------------
|
|
|
|
using MjCMeshTest = MujocoTest;
|
|
|
|
TEST_F(MjCMeshTest, LoadCube) {
|
|
const std::string xml_path = GetTestDataFilePath(kCubePath);
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, nullptr, 0);
|
|
ASSERT_GT(model->ngeom, 0);
|
|
ASSERT_EQ(model->nmeshvert, 8);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MjCMeshTest, LoadTorus) {
|
|
const std::string xml_path = GetTestDataFilePath(kTorusPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
ASSERT_GT(model->ngeom, 0);
|
|
ASSERT_GT(model->nmeshvert, 0);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MjCMeshTest, LoadTorusQuads) {
|
|
const std::string xml_path = GetTestDataFilePath(kTorusQuadsPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
ASSERT_GT(model->ngeom, 0);
|
|
ASSERT_GT(model->nmeshvert, 0);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MjCMeshTest, LoadTexturedTorus) {
|
|
const std::string xml_path = GetTestDataFilePath(kTexturedTorusPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
ASSERT_GT(model->ngeom, 0);
|
|
ASSERT_GT(model->nmeshvert, 0);
|
|
ASSERT_GT(model->ntex, 0);
|
|
ASSERT_GT(model->ntexdata, 0);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MjCMeshTest, KeepDuplicateOBJVertices) {
|
|
const std::string xml_path = GetTestDataFilePath(kDuplicateOBJPath);
|
|
char error[1024];
|
|
size_t error_sz = 1024;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error, error_sz);
|
|
ASSERT_EQ(model->nmeshvert, 12);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MjCMeshTest, SaveMeshOnce) {
|
|
const std::string xml_path = GetTestDataFilePath(kCubePath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
std::string saved_xml = SaveAndReadXml(model);
|
|
EXPECT_THAT(saved_xml, Not(testing::HasSubstr("vertex")));
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, TinyMeshLoads) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="tiny" vertex="0 0 0 1e-4 0 0 0 1e-4 0 0 0 1e-4"/>
|
|
</asset>
|
|
<worldbody>
|
|
<geom type="mesh" mesh="tiny"/>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
mjModel* model = LoadModelFromString(xml, 0, 0);
|
|
ASSERT_THAT(model, testing::NotNull());
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
// ------------- test inertia -------------------------------------------------
|
|
|
|
TEST_F(MujocoTest, SmallInertiaLoads) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="tiny" vertex="0 0 0 1e-4 0 0 0 1e-4 0 0 0 1e-4"/>
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<freejoint/>
|
|
<geom type="mesh" mesh="tiny"/>
|
|
<geom name="small" size=".001"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
mjModel* model = LoadModelFromString(xml, 0, 0);
|
|
ASSERT_THAT(model, testing::NotNull());
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, TinyInertiaFails) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="tiny" vertex="0 0 0 1e-4 0 0 0 1e-4 0 0 0 1e-4"/>
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<freejoint/>
|
|
<geom type="mesh" mesh="tiny"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(
|
|
error.data(),
|
|
HasSubstr(
|
|
"mass and inertia of moving bodies must be larger than mjMINVAL"));
|
|
}
|
|
|
|
TEST_F(MujocoTest, MalformedFaceFails) {
|
|
const std::string xml_path = GetTestDataFilePath(kMalformedFaceOBJPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::IsNull());
|
|
EXPECT_THAT(error.data(), HasSubstr("faces have inconsistent orientation"));
|
|
}
|
|
|
|
TEST_F(MujocoTest, FlippedFaceFails) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="2 0 3 0 1 3 1 2 3 0 1 2" />
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::IsNull());
|
|
EXPECT_THAT(error.data(), HasSubstr("faces have inconsistent orientation"));
|
|
}
|
|
|
|
void CheckTetrahedronWasRescaled(mjModel* model) {
|
|
// the rotated and rescaled positions of the standard tetrahedron
|
|
mjtNum vert[] = {
|
|
-mju_sqrt(3)/4, 0., 0, mju_sqrt(3)/12, 0, mju_sqrt(6)/3, mju_sqrt(3)/12,
|
|
-mju_sqrt(2)/2, -mju_sqrt(6)/6, mju_sqrt(3)/12, mju_sqrt(2)/2, -mju_sqrt(6)/6};
|
|
for (int i=0; i<12; ++i) {
|
|
EXPECT_NEAR(model->mesh_vert[i], vert[i], std::numeric_limits<float>::epsilon());
|
|
}
|
|
}
|
|
|
|
TEST_F(MujocoTest, FlippedFaceAllowedWorld) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="2 0 3 0 1 3 1 2 3 0 1 2" />
|
|
</asset>
|
|
<worldbody>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::NotNull());
|
|
CheckTetrahedronWasRescaled(model);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, FlippedFaceAllowedNoMass) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="2 0 3 0 1 3 1 2 3 0 1 2" />
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<geom type="mesh" mesh="example_mesh" mass="0"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::NotNull());
|
|
CheckTetrahedronWasRescaled(model);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, FlippedFaceAllowedInertial) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="2 0 3 0 1 3 1 2 3 0 1 2" />
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<inertial pos="0 0 0" mass="1"/>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::NotNull());
|
|
CheckTetrahedronWasRescaled(model);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, AreaTooSmall) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1e-8 0 0 0 1e-8 0 0 0 1e-8"
|
|
face="2 0 3 0 1 3 1 2 3 0 2 1" />
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::IsNull());
|
|
EXPECT_THAT(error.data(), HasSubstr("mesh surface area is too small"));
|
|
}
|
|
|
|
TEST_F(MujocoTest, AreaTooSmallAllowedWorld) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1e-8 0 0 0 1e-8 0 0 0 1e-8"
|
|
face="2 0 3 0 1 3 1 2 3 0 2 1" />
|
|
</asset>
|
|
<worldbody>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::NotNull());
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, VolumeTooSmall) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="0 2 1" />
|
|
</asset>
|
|
<worldbody>
|
|
<body>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</body>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::IsNull());
|
|
EXPECT_THAT(error.data(), HasSubstr("mesh volume is too small"));
|
|
}
|
|
|
|
TEST_F(MujocoTest, VolumeTooSmallAllowedWorld) {
|
|
static constexpr char xml[] = R"(
|
|
<mujoco>
|
|
<asset>
|
|
<mesh name="example_mesh"
|
|
vertex="0 0 0 1 0 0 0 1 0 0 0 1"
|
|
face="0 2 1" />
|
|
</asset>
|
|
<worldbody>
|
|
<geom type="mesh" mesh="example_mesh"/>
|
|
</worldbody>
|
|
</mujoco>
|
|
)";
|
|
std::array<char, 1024> error;
|
|
mjModel* model = LoadModelFromString(xml, error.data(), error.size());
|
|
EXPECT_THAT(model, testing::NotNull());
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
// ------------- test concave and shell inertia --------------------------------
|
|
|
|
const mjtNum max_abs_err = std::numeric_limits<float>::epsilon();
|
|
|
|
TEST_F(MujocoTest, ExactConcaveInertia) {
|
|
const std::string xml_path = GetTestDataFilePath(kConcaveInertiaPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
// analytic computation of 1x1x1 cube with a .8x.8x.9 hole
|
|
// see https://en.wikipedia.org/wiki/List_of_moments_of_inertia
|
|
mjtNum m_hole = .9 * .8 * .8;
|
|
mjtNum m_cube = 1.;
|
|
mjtNum m_concave_cube = m_cube - m_hole;
|
|
mjtNum I_cube = m_cube/6.;
|
|
// due to the asymmetric hole, the com position has changed
|
|
// so we need to use https://en.wikipedia.org/wiki/Parallel_axis_theorem
|
|
mjtNum d_cube = .5 - model->body_ipos[5];
|
|
mjtNum d_hole = .55 - model->body_ipos[5];
|
|
mjtNum I1 = I_cube - m_hole*(.8*.8 + .8*.8)/12;
|
|
mjtNum I2 = I_cube - m_hole*(.8*.8 + .9*.9)/12 + m_cube*d_cube*d_cube - m_hole*d_hole*d_hole;
|
|
EXPECT_LE(fabs(model->body_mass[1] - m_concave_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_mass[2] - m_concave_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_mass[3] - m_concave_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_mass[4] - m_concave_cube), max_abs_err);
|
|
for (int i=3; i<15; i+=3) {
|
|
EXPECT_LE(fabs(model->body_inertia[i] - I1), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_inertia[i+1] - I2), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_inertia[i+2] - I2), max_abs_err);
|
|
}
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, ExactConvexInertia) {
|
|
const std::string xml_path = GetTestDataFilePath(kConvexInertiaPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
// https://en.wikipedia.org/wiki/List_of_moments_of_inertia
|
|
mjtNum m_solid_cube = 1.;
|
|
mjtNum I_solid_cube = 1./6. * m_solid_cube;
|
|
EXPECT_LE(fabs(model->body_mass[1] - m_solid_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_mass[2] - m_solid_cube), max_abs_err);
|
|
for (int i=3; i<9; i++) {
|
|
EXPECT_LE(fabs(model->body_inertia[i] - I_solid_cube), max_abs_err);
|
|
}
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
TEST_F(MujocoTest, ExactShellInertia) {
|
|
const std::string xml_path = GetTestDataFilePath(kShellInertiaPath);
|
|
std::array<char, 1024> error;
|
|
mjModel* model = mj_loadXML(xml_path.c_str(), 0, error.data(), error.size());
|
|
// see https://en.wikipedia.org/wiki/List_of_moments_of_inertia
|
|
mjtNum m_hollow_cube = 6.;
|
|
mjtNum I_hollow_cube = 5./18. * m_hollow_cube;
|
|
EXPECT_LE(fabs(model->body_mass[1] - m_hollow_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_inertia[3] - I_hollow_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_inertia[4] - I_hollow_cube), max_abs_err);
|
|
EXPECT_LE(fabs(model->body_inertia[5] - I_hollow_cube), max_abs_err);
|
|
mj_deleteModel(model);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace mujoco
|