Files
entt/test/example/signal_less.cpp
Michele Caini e376a53b09 entity:
* custom move ctor/op for the registry class
* no registry argument from storage emplace, remove, ...
* added sparse set context to forward variables to mixins
* removed sparse set user data
2021-11-30 09:43:47 +01:00

44 lines
1.5 KiB
C++

#include <iterator>
#include <type_traits>
#include <gtest/gtest.h>
#include <entt/entity/entity.hpp>
#include <entt/entity/registry.hpp>
template<typename Entity, typename Type>
struct entt::storage_traits<Entity, Type> {
// no signal regardless of component type ...
using storage_type = basic_storage<Entity, Type>;
};
template<typename Entity>
struct entt::storage_traits<Entity, char> {
// ... unless it's char, because yes.
using storage_type = sigh_storage_mixin<basic_storage<Entity, char>>;
};
template<typename, typename, typename = void>
struct has_on_construct: std::false_type {};
template<typename Entity, typename Type>
struct has_on_construct<Entity, Type, std::void_t<decltype(&entt::storage_traits<Entity, Type>::storage_type::on_construct)>>: std::true_type {};
template<typename Entity, typename Type>
inline constexpr auto has_on_construct_v = has_on_construct<Entity, Type>::value;
TEST(Example, SignalLess) {
// invoking registry::on_construct<int> is a compile-time error
static_assert(!has_on_construct_v<entt::entity, int>);
static_assert(has_on_construct_v<entt::entity, char>);
entt::registry registry;
const entt::entity entity[1u]{registry.create()};
// literally a test for storage_adapter_mixin
registry.emplace<int>(entity[0], 0);
registry.erase<int>(entity[0]);
registry.insert<int>(std::begin(entity), std::end(entity), 3);
registry.patch<int>(entity[0], [](auto &value) { value = 42; });
ASSERT_EQ(registry.get<int>(entity[0]), 42);
}