-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved coverage Arrow and Axis visuals and fixed some warnings (#736)
* Improved coverage Arrow and Axis visuals and fixed some warnings Signed-off-by: ahcorde <[email protected]>
- Loading branch information
Showing
11 changed files
with
347 additions
and
12 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
44 changes: 44 additions & 0 deletions
44
ogre2/include/ignition/rendering/ogre2/Ogre2ArrowVisual.hh
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,44 @@ | ||
/* | ||
* Copyright (C) 2022 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_RENDERING_OGRE2_OGRE2ARROWVISUAL_HH_ | ||
#define IGNITION_RENDERING_OGRE2_OGRE2ARROWVISUAL_HH_ | ||
|
||
#include "ignition/rendering/base/BaseArrowVisual.hh" | ||
#include "ignition/rendering/ogre2/Ogre2Visual.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace rendering | ||
{ | ||
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE { | ||
// | ||
class IGNITION_RENDERING_OGRE2_VISIBLE Ogre2ArrowVisual : | ||
public BaseArrowVisual<Ogre2Visual> | ||
{ | ||
/// \brief Constructor | ||
protected: Ogre2ArrowVisual(); | ||
|
||
/// \brief Destructor | ||
public: virtual ~Ogre2ArrowVisual(); | ||
|
||
/// \brief Only the ogre scene can instanstiate this class | ||
private: friend class Ogre2Scene; | ||
}; | ||
} | ||
} | ||
} | ||
#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,44 @@ | ||
/* | ||
* Copyright (C) 2022 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_RENDERING_OGRE2_OGRE2AXISVISUAL_HH_ | ||
#define IGNITION_RENDERING_OGRE2_OGRE2AXISVISUAL_HH_ | ||
|
||
#include "ignition/rendering/base/BaseAxisVisual.hh" | ||
#include "ignition/rendering/ogre2/Ogre2Visual.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace rendering | ||
{ | ||
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE { | ||
// | ||
class IGNITION_RENDERING_OGRE2_VISIBLE Ogre2AxisVisual : | ||
public BaseAxisVisual<Ogre2Visual> | ||
{ | ||
/// \brief Constructor | ||
protected: Ogre2AxisVisual(); | ||
|
||
/// \brief Destructor | ||
public: virtual ~Ogre2AxisVisual(); | ||
|
||
/// \brief Only the ogre scene can instanstiate this class | ||
private: friend class Ogre2Scene; | ||
}; | ||
} | ||
} | ||
} | ||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2022 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. | ||
* | ||
*/ | ||
#include "ignition/rendering/ogre2/Ogre2ArrowVisual.hh" | ||
|
||
using namespace ignition; | ||
using namespace rendering; | ||
|
||
////////////////////////////////////////////////// | ||
Ogre2ArrowVisual::Ogre2ArrowVisual() | ||
{ | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
Ogre2ArrowVisual::~Ogre2ArrowVisual() | ||
{ | ||
} |
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,30 @@ | ||
/* | ||
* Copyright (C) 2022 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. | ||
* | ||
*/ | ||
#include "ignition/rendering/ogre2/Ogre2AxisVisual.hh" | ||
|
||
using namespace ignition; | ||
using namespace rendering; | ||
|
||
////////////////////////////////////////////////// | ||
Ogre2AxisVisual::Ogre2AxisVisual() | ||
{ | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
Ogre2AxisVisual::~Ogre2AxisVisual() | ||
{ | ||
} |
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,93 @@ | ||
/* | ||
* Copyright (C) 2022 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. | ||
* | ||
*/ | ||
|
||
#include <gtest/gtest.h> | ||
#include <string> | ||
|
||
#include <ignition/common/Console.hh> | ||
|
||
#include "test_config.h" // NOLINT(build/include) | ||
|
||
#include "ignition/rendering/ArrowVisual.hh" | ||
#include "ignition/rendering/RenderEngine.hh" | ||
#include "ignition/rendering/RenderingIface.hh" | ||
#include "ignition/rendering/Scene.hh" | ||
|
||
using namespace ignition; | ||
using namespace rendering; | ||
|
||
class ArrowVisualTest : public testing::Test, | ||
public testing::WithParamInterface<const char *> | ||
{ | ||
/// \brief Test basic API | ||
public: void ArrowVisual(const std::string &_renderEngine); | ||
|
||
/// \brief Test gizmo material | ||
public: void Material(const std::string &_renderEngine); | ||
}; | ||
|
||
///////////////////////////////////////////////// | ||
void ArrowVisualTest::ArrowVisual(const std::string &_renderEngine) | ||
{ | ||
RenderEngine *engine = rendering::engine(_renderEngine); | ||
if (!engine) | ||
{ | ||
igndbg << "Engine '" << _renderEngine | ||
<< "' is not supported" << std::endl; | ||
return; | ||
} | ||
|
||
ScenePtr scene = engine->CreateScene("scene"); | ||
|
||
// create visual | ||
ArrowVisualPtr arrow = scene->CreateArrowVisual(); | ||
EXPECT_NE(nullptr, arrow); | ||
EXPECT_EQ(2u, arrow->ChildCount()); | ||
|
||
EXPECT_NE(nullptr, arrow->Head()); | ||
EXPECT_NE(nullptr, arrow->Shaft()); | ||
|
||
EXPECT_NE(arrow->Head(), arrow->Shaft()); | ||
|
||
ArrowVisualPtr arrow_name = scene->CreateArrowVisual("arrow_name"); | ||
EXPECT_NE(nullptr, arrow_name); | ||
EXPECT_EQ(2u, arrow_name->ChildCount()); | ||
|
||
ArrowVisualPtr arrow_id = scene->CreateArrowVisual(98); | ||
EXPECT_NE(nullptr, arrow_id); | ||
EXPECT_EQ(2u, arrow_id->ChildCount()); | ||
|
||
// Clean up | ||
engine->DestroyScene(scene); | ||
rendering::unloadEngine(engine->Name()); | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
TEST_P(ArrowVisualTest, ArrowVisual) | ||
{ | ||
ArrowVisual(GetParam()); | ||
} | ||
|
||
INSTANTIATE_TEST_CASE_P(Visual, ArrowVisualTest, | ||
RENDER_ENGINE_VALUES, | ||
ignition::rendering::PrintToStringParam()); | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
::testing::InitGoogleTest(&argc, argv); | ||
return RUN_ALL_TESTS(); | ||
} |
Oops, something went wrong.