You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
345 lines
17 KiB
C++
345 lines
17 KiB
C++
#include "operators.hpp"
|
|
|
|
#include <components/detournavigator/tilecachedrecastmeshmanager.hpp>
|
|
#include <components/detournavigator/settingsutils.hpp>
|
|
|
|
#include <BulletCollision/CollisionShapes/btBoxShape.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <gmock/gmock.h>
|
|
|
|
namespace
|
|
{
|
|
using namespace testing;
|
|
using namespace DetourNavigator;
|
|
|
|
struct DetourNavigatorTileCachedRecastMeshManagerTest : Test
|
|
{
|
|
Settings mSettings;
|
|
std::vector<TilePosition> mChangedTiles;
|
|
|
|
DetourNavigatorTileCachedRecastMeshManagerTest()
|
|
{
|
|
mSettings.mBorderSize = 16;
|
|
mSettings.mCellSize = 0.2f;
|
|
mSettings.mRecastScaleFactor = 0.017647058823529415f;
|
|
mSettings.mTileSize = 64;
|
|
}
|
|
|
|
void onChangedTile(const TilePosition& tilePosition)
|
|
{
|
|
mChangedTiles.push_back(tilePosition);
|
|
}
|
|
};
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_for_empty_should_return_nullptr)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, has_tile_for_empty_should_return_false)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
EXPECT_FALSE(manager.hasTile(TilePosition(0, 0)));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_for_empty_should_return_zero)
|
|
{
|
|
const TileCachedRecastMeshManager manager(mSettings);
|
|
EXPECT_EQ(manager.getRevision(), 0);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, for_each_tile_position_for_empty_should_call_none)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
std::size_t calls = 0;
|
|
manager.forEachTile([&] (const TilePosition&, const CachedRecastMeshManager&) { ++calls; });
|
|
EXPECT_EQ(calls, 0);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_object_for_new_object_should_return_true)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
EXPECT_TRUE(manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_object_for_existing_object_should_return_false)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_FALSE(manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_object_should_add_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
ASSERT_TRUE(manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground));
|
|
for (int x = -1; x < 1; ++x)
|
|
for (int y = -1; y < 1; ++y)
|
|
ASSERT_TRUE(manager.hasTile(TilePosition(x, y)));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, update_object_for_changed_object_should_return_changed_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const btTransform transform(btMatrix3x3::getIdentity(), btVector3(getTileSize(mSettings) / mSettings.mRecastScaleFactor, 0, 0));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, transform, AreaType::AreaType_ground);
|
|
EXPECT_TRUE(manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground,
|
|
[&] (const auto& v) { onChangedTile(v); }));
|
|
EXPECT_THAT(
|
|
mChangedTiles,
|
|
ElementsAre(TilePosition(-1, -1), TilePosition(-1, 0), TilePosition(0, -1), TilePosition(0, 0),
|
|
TilePosition(1, -1), TilePosition(1, 0))
|
|
);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, update_object_for_not_changed_object_should_return_empty)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_FALSE(manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground,
|
|
[&] (const auto& v) { onChangedTile(v); }));
|
|
EXPECT_EQ(mChangedTiles, std::vector<TilePosition>());
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_after_add_object_should_return_recast_mesh_for_each_used_tile)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_after_add_object_should_return_nullptr_for_unused_tile)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(1, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_for_moved_object_should_return_recast_mesh_for_each_used_tile)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const btTransform transform(btMatrix3x3::getIdentity(), btVector3(getTileSize(mSettings) / mSettings.mRecastScaleFactor, 0, 0));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
|
|
manager.addObject(ObjectId(&boxShape), shape, transform, AreaType::AreaType_ground);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(1, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(1, -1)), nullptr);
|
|
|
|
manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground, [] (auto) {});
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_for_moved_object_should_return_nullptr_for_unused_tile)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const btTransform transform(btMatrix3x3::getIdentity(), btVector3(getTileSize(mSettings) / mSettings.mRecastScaleFactor, 0, 0));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
|
|
manager.addObject(ObjectId(&boxShape), shape, transform, AreaType::AreaType_ground);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
|
|
manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground, [] (auto) {});
|
|
EXPECT_EQ(manager.getMesh(TilePosition(1, 0)), nullptr);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(1, -1)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_for_removed_object_should_return_nullptr_for_all_previously_used_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
manager.removeObject(ObjectId(&boxShape));
|
|
EXPECT_EQ(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_EQ(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_mesh_for_not_changed_object_after_update_should_return_recast_mesh_for_same_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
|
|
manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground, [] (auto) {});
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(-1, 0)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, -1)), nullptr);
|
|
EXPECT_NE(manager.getMesh(TilePosition(0, 0)), nullptr);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_add_object_new_should_return_incremented_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const auto initialRevision = manager.getRevision();
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_EQ(manager.getRevision(), initialRevision + 1);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_add_object_existing_should_return_same_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
const auto beforeAddRevision = manager.getRevision();
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
EXPECT_EQ(manager.getRevision(), beforeAddRevision);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_update_moved_object_should_return_incremented_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const btTransform transform(btMatrix3x3::getIdentity(), btVector3(getTileSize(mSettings) / mSettings.mRecastScaleFactor, 0, 0));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, transform, AreaType::AreaType_ground);
|
|
const auto beforeUpdateRevision = manager.getRevision();
|
|
manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground, [] (auto) {});
|
|
EXPECT_EQ(manager.getRevision(), beforeUpdateRevision + 1);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_update_not_changed_object_should_return_same_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
const auto beforeUpdateRevision = manager.getRevision();
|
|
manager.updateObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground, [] (auto) {});
|
|
EXPECT_EQ(manager.getRevision(), beforeUpdateRevision);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_remove_existing_object_should_return_incremented_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground);
|
|
const auto beforeRemoveRevision = manager.getRevision();
|
|
manager.removeObject(ObjectId(&boxShape));
|
|
EXPECT_EQ(manager.getRevision(), beforeRemoveRevision + 1);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, get_revision_after_remove_absent_object_should_return_same_value)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const auto beforeRemoveRevision = manager.getRevision();
|
|
manager.removeObject(ObjectId(&manager));
|
|
EXPECT_EQ(manager.getRevision(), beforeRemoveRevision);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_water_for_new_water_should_return_true)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = 8192;
|
|
EXPECT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_water_for_not_max_int_should_add_new_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = 8192;
|
|
ASSERT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
for (int x = -6; x < 6; ++x)
|
|
for (int y = -6; y < 6; ++y)
|
|
ASSERT_TRUE(manager.hasTile(TilePosition(x, y)));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, add_water_for_max_int_should_not_add_new_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
ASSERT_TRUE(manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground));
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = std::numeric_limits<int>::max();
|
|
ASSERT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
for (int x = -6; x < 6; ++x)
|
|
for (int y = -6; y < 6; ++y)
|
|
ASSERT_EQ(manager.hasTile(TilePosition(x, y)), -1 <= x && x <= 0 && -1 <= y && y <= 0);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, remove_water_for_absent_cell_should_return_nullopt)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
EXPECT_EQ(manager.removeWater(osg::Vec2i(0, 0)), std::nullopt);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, remove_water_for_existing_cell_should_return_removed_water)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = 8192;
|
|
ASSERT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
const auto result = manager.removeWater(cellPosition);
|
|
ASSERT_TRUE(result.has_value());
|
|
EXPECT_EQ(result->mCellSize, cellSize);
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, remove_water_for_existing_cell_should_remove_empty_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = 8192;
|
|
ASSERT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
ASSERT_TRUE(manager.removeWater(cellPosition));
|
|
for (int x = -6; x < 6; ++x)
|
|
for (int y = -6; y < 6; ++y)
|
|
ASSERT_FALSE(manager.hasTile(TilePosition(x, y)));
|
|
}
|
|
|
|
TEST_F(DetourNavigatorTileCachedRecastMeshManagerTest, remove_water_for_existing_cell_should_leave_not_empty_tiles)
|
|
{
|
|
TileCachedRecastMeshManager manager(mSettings);
|
|
const btBoxShape boxShape(btVector3(20, 20, 100));
|
|
const CollisionShape shape(nullptr, boxShape);
|
|
ASSERT_TRUE(manager.addObject(ObjectId(&boxShape), shape, btTransform::getIdentity(), AreaType::AreaType_ground));
|
|
const osg::Vec2i cellPosition(0, 0);
|
|
const int cellSize = 8192;
|
|
ASSERT_TRUE(manager.addWater(cellPosition, cellSize, btTransform::getIdentity()));
|
|
ASSERT_TRUE(manager.removeWater(cellPosition));
|
|
for (int x = -6; x < 6; ++x)
|
|
for (int y = -6; y < 6; ++y)
|
|
ASSERT_EQ(manager.hasTile(TilePosition(x, y)), -1 <= x && x <= 0 && -1 <= y && y <= 0);
|
|
}
|
|
}
|