aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-10-23Sort free list before iterating over all entities.Alec Thomas
This should make iteration over all entities much faster.
2014-10-21Add test for component destructor called when entity is destroyed.Alec Thomas
2014-10-21Add test case for component destruction.Alec Thomas
2014-10-21Actually call component destructors on reset().Alec Thomas
2014-10-14Merge pull request #55 from kumar8600/patch-3Alec Thomas
Correct project name definition at CMakeLists.txt
2014-10-13Correct project name definition at CMakeLists.txtkumar8600
Match with before #7b6427d14aca84c9603f8767e6b9b097a8be9424
2014-10-13Merge pull request #54 from kumar8600/kumar8600/size_t-is-not-intAlec Thomas
Return size_t at methods of Event and Pool
2014-10-13Return std::size_t at Event::connected_signalskumar8600
And size_t -> std::size_t
2014-10-12Get definition of std::size_t and make sizet_t more intkumar8600
2014-10-12Make return size_t at functions Event and Poolkumar8600
2014-10-12Merge pull request #53 from kumar8600/patch-2Alec Thomas
Make true default ENTITY_BUILD_SHARED
2014-10-12Merge pull request #52 from kumar8600/patch-1Alec Thomas
Define project name on CMakeLists.txt
2014-10-12Make true default ENTITY_BUILD_SHAREDkumar8600
2014-10-12Define project name on CMakeLists.txtkumar8600
2014-10-10Big performance improvement in iteration.Alec Thomas
No longer perform a vtable lookup and function call to unpack components. Unpacking is now completely templatised and expanded at compile time.
2014-10-10Add benchmark for unpacking two components.Alec Thomas
2014-10-10Improve entity iteration performance by removing support for custom predicates.Alec Thomas
2014-10-10Use a partitioned grid for collision detection.Alec Thomas
2014-10-09Don't use deprecated strstream.Alec Thomas
2014-10-09Add example.Alec Thomas
2014-10-02Suppress unused variable warning. Fixes #49.Alec Thomas
2014-09-29Update README for 1.0.0.Alec Thomas
2014-09-17In benchmark: only iterate once, not 10 times.Alec Thomas
2014-09-16Document some projects using EntityX.Alec Thomas
2014-08-14Make fail() static.Alec Thomas
2014-08-14Use std::abort() if exceptions are disabled.Alec Thomas
Fixes #47.
2014-08-14Use abort() if _HAS_EXCEPTIONS is not defined.Alec Thomas
2014-08-08Merge pull request #46 from scrpi/masterAlec Thomas
Added operator< overload for Entity class. Allowing use of Entity obects...
2014-08-07Added operator< overload for Entity class. Allowing use of Entity obects in ↵Ben Kelly
std::set and std::map. Added test code.
2014-08-05Merge pull request #45 from isra17/masterAlec Thomas
Fix components mask bitset operations
2014-08-04Uses bitmask function to set bitIsraël Hallé
2014-08-04Changes 64 bits family to fast 32 bitsIsraël Hallé
2014-07-31Fix warnings(?) for implicit type conversions + headers in quick.h.Alec Thomas
Fixes #43, #44.
2014-07-10Merge pull request #41 from isra17/masterAlec Thomas
Add /MDd flag for MSVC debug target
2014-07-10Add /MDd flag for MSVC debug targetIsraël Hallé
2014-07-10Merge pull request #40 from isra17/masterAlec Thomas
Fix VS2013 compiler error in Entity_test.cc
2014-07-09Fix VS2013 compiler error in Entity_test.ccIsraël Hallé
2014-07-07Maybe fix the build?Alec Thomas
2014-07-07Add entities_for_debugging() entity iterator.Alec Thomas
2014-07-07Merge @jarrettchisholm's change plus add some tests. Thanks!Alec Thomas
Fixes #37 and #39.
2014-07-02Merge pull request #36 from jeremyjh/android-prAlec Thomas
add Android make file
2014-07-01add Android make fileJeremy Huffman
2014-06-20Merge pull request #35 from x-w/masterAlec Thomas
Add "Entity::component() const" which returns a handle of const component
2014-06-19Override Entity::component() to return a const ComponentHandleXiang Wei
2014-06-08Call systems.configure() in example.Alec Thomas
2014-06-08Add convenience `Component<T>::Handle` typedef.Alec Thomas
2014-06-07README updates.Alec Thomas
Fixes #32. Fixes #33.
2014-05-15Only delete assigned components.Alec Thomas
Fixes #31.
2014-05-051.0.0alpha1 release.Alec Thomas
2014-05-03Add -g to release builds.Alec Thomas