Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-29 | Update README for 1.0.0. | Alec Thomas | |
2014-09-17 | In benchmark: only iterate once, not 10 times. | Alec Thomas | |
2014-09-16 | Document some projects using EntityX. | Alec Thomas | |
2014-08-14 | Make fail() static. | Alec Thomas | |
2014-08-14 | Use std::abort() if exceptions are disabled. | Alec Thomas | |
Fixes #47. | |||
2014-08-14 | Use abort() if _HAS_EXCEPTIONS is not defined. | Alec Thomas | |
2014-08-08 | Merge pull request #46 from scrpi/master | Alec Thomas | |
Added operator< overload for Entity class. Allowing use of Entity obects... | |||
2014-08-07 | Added operator< overload for Entity class. Allowing use of Entity obects in ↵ | Ben Kelly | |
std::set and std::map. Added test code. | |||
2014-08-05 | Merge pull request #45 from isra17/master | Alec Thomas | |
Fix components mask bitset operations | |||
2014-08-04 | Uses bitmask function to set bit | Israël Hallé | |
2014-08-04 | Changes 64 bits family to fast 32 bits | Israël Hallé | |
2014-07-31 | Fix warnings(?) for implicit type conversions + headers in quick.h. | Alec Thomas | |
Fixes #43, #44. | |||
2014-07-10 | Merge pull request #41 from isra17/master | Alec Thomas | |
Add /MDd flag for MSVC debug target | |||
2014-07-10 | Add /MDd flag for MSVC debug target | Israël Hallé | |
2014-07-10 | Merge pull request #40 from isra17/master | Alec Thomas | |
Fix VS2013 compiler error in Entity_test.cc | |||
2014-07-09 | Fix VS2013 compiler error in Entity_test.cc | Israël Hallé | |
2014-07-07 | Maybe fix the build? | Alec Thomas | |
2014-07-07 | Add entities_for_debugging() entity iterator. | Alec Thomas | |
2014-07-07 | Merge @jarrettchisholm's change plus add some tests. Thanks! | Alec Thomas | |
Fixes #37 and #39. | |||
2014-07-02 | Merge pull request #36 from jeremyjh/android-pr | Alec Thomas | |
add Android make file | |||
2014-07-01 | add Android make file | Jeremy Huffman | |
2014-06-20 | Merge pull request #35 from x-w/master | Alec Thomas | |
Add "Entity::component() const" which returns a handle of const component | |||
2014-06-19 | Override Entity::component() to return a const ComponentHandle | Xiang Wei | |
2014-06-08 | Call systems.configure() in example. | Alec Thomas | |
2014-06-08 | Add convenience `Component<T>::Handle` typedef. | Alec Thomas | |
2014-06-07 | README updates. | Alec Thomas | |
Fixes #32. Fixes #33. | |||
2014-05-15 | Only delete assigned components. | Alec Thomas | |
Fixes #31. | |||
2014-05-05 | 1.0.0alpha1 release. | Alec Thomas | |
2014-05-03 | Add -g to release builds. | Alec Thomas | |
2014-04-25 | Verify destroyed event count is correct. | Alec Thomas | |
2014-04-18 | Don't include entityx/Manager.h - it is no longer used. | Alec Thomas | |
2014-04-02 | Doc updates. | Alec Thomas | |
2014-03-05 | Use vector rather than unordered_map for event dispatching. | Alec Thomas | |
2014-03-05 | Wrap component access in a ComponentHandle. | Alec Thomas | |
2014-03-04 | Use TEST_CASE_METHOD rather than SECTION. | Alec Thomas | |
2014-03-04 | Switch to Catch testing framework. | Alec Thomas | |
2014-03-02 | Update README for 1.0.0. | Alec Thomas | |
2014-03-02 | Use raw pointers for components, allocated from pools. | Alec Thomas | |
2014-03-02 | Removed Manager. Add EntityX class. Largely eradicate use of shared_ptr. | Alec Thomas | |
2014-03-02 | Fix visibility issue with gcc. | Alec Thomas | |
2014-03-02 | Increase cache coherency. | Alec Thomas | |
Mainly achieved by allocating components in contiguous memory blocks. This is a breaking change, thus the major version bump. | |||
2014-02-13 | Fixed compile issues on Windows with Visual Studio 2013. | Jarrett Chisholm | |
- Made compiler flags dependent on the compiler being used. - Added check for clang to use the same compiler options as gnu g++ | |||
2014-01-22 | Merge pull request #26 from hovatterz/pkg-config | Alec Thomas | |
Add pkg-config source file | |||
2014-01-19 | Add pkg-config source file | Zack Hovatter | |
2013-12-30 | Merge pull request #22 from scott-linder/master | Alec Thomas | |
Added std::forward in order to respect move semantics in some methods. | |||
2013-12-30 | Added std::forward in order to respect move semantics in some methods. | scott-linder | |
Previously, calls to the methods assign<C>(...), emit<E>(...), and add<S>(...) would fail if constructor arguments relied upon move semantics. | |||
2013-12-25 | Merge pull request #21 from scott-linder/master | Alec Thomas | |
Added entityx::make_ptr to mirror std::make_shared | |||
2013-12-24 | Added entityx::make_ptr to mirror std::make_shared | scott-linder | |
2013-12-20 | Move Python support to https://github.com/alecthomas/entityx_python | Alec Thomas | |
2013-12-20 | Event delivery to/from Python and C++. | Alec Thomas | |