aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-12-07example: fix compilation commandJason Pleau
2014-12-07example: replace arial with a free fontJason Pleau
Arial is a proprietary font and cannot be included in another package in distributions like Debian. Replaced it with Liberation.
2014-12-02Add SONAME. Fixes #65.Alec Thomas
2014-12-01Include cmath in example. Fixes #66.Alec Thomas
2014-10-31Hack for VS internal error. Fixes #23 (again).Alec Thomas
2014-10-27DeltaTime -> TimeDeltaAlec Thomas
2014-10-27Fix RPATH issue on OSX.Alec Thomas
2014-10-27Merge branch 'master' of github.com:alecthomas/entityxAlec Thomas
2014-10-27Fix example.Alec Thomas
2014-10-27Merge pull request #61 from tivek/remove_c_std_librariesAlec Thomas
Replace stdint.h with cstdint
2014-10-27Configurable delta time type via -DENTITYX_DT_TYPE=<type>.Alec Thomas
Fixes #60.
2014-10-25fix typotivek
2014-10-25Do not assume integer types in global namespaceTomislav Ivek
2014-10-25Include cstdint instead of stdint.hTomislav Ivek
2014-10-23Debug -> All, now that it is faster.Alec Thomas
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é