From aeac8a52bf226c664fad4f30542658c1b36231e0 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Mon, 22 Jun 2015 15:30:19 +0200 Subject: Add std::hash. --- entityx/Entity.h | 13 +++++++++++++ entityx/Event.h | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/entityx/Entity.h b/entityx/Entity.h index a19d971..493f948 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -27,6 +27,7 @@ #include #include #include + #include #include "entityx/help/Pool.h" #include "entityx/config.h" @@ -44,6 +45,8 @@ class EntityManager; template class ComponentHandle; + + /** A convenience handle around an Entity::Id. * * If an entity is destroyed, any copies will be invalidated. Use valid() to @@ -985,3 +988,13 @@ inline void ComponentHandle::remove() { } // namespace entityx + + +namespace std { +template <> struct hash { + std::size_t operator () (const entityx::Entity &entity) const { + return static_cast(entity.id().index() ^ entity.id().version()); + } +}; +} + diff --git a/entityx/Event.h b/entityx/Event.h index 9e252dc..cb7b3ab 100644 --- a/entityx/Event.h +++ b/entityx/Event.h @@ -140,7 +140,7 @@ class EventManager : entityx::help::NonCopyable { template void unsubscribe(Receiver &receiver) { BaseReceiver &base = receiver; - //Assert that it has been subscribed before + // Assert that it has been subscribed before assert(base.connections_.find(Event::family()) != base.connections_.end()); auto pair = base.connections_[Event::family()]; auto connection = pair.second; @@ -205,7 +205,7 @@ class EventManager : entityx::help::NonCopyable { // Functor used as an event signal callback that casts to E. template struct EventCallbackWrapper { - EventCallbackWrapper(std::function callback) : callback(callback) {} + explicit EventCallbackWrapper(std::function callback) : callback(callback) {} void operator()(const void *event) { callback(*(static_cast(event))); } std::function callback; }; -- cgit v1.2.3