Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-31 | Line endings fix? | Antony Woods | |
2013-10-30 | Normalize line endings | Antony Woods | |
2013-10-30 | Resolved README merge conflict | Antony Woods | |
2013-10-30 | Merge pull request #1 from alecthomas/master | Antony | |
Merge changes from upstream | |||
2013-10-29 | Normalize line endings | Alec Thomas | |
2013-10-29 | Add .gitattributes for line endings. | Alec Thomas | |
2013-10-29 | Tidying up and amending readme/changes | Antony Woods | |
2013-10-29 | Removed boost namespace from tests so they compile | Antony Woods | |
2013-10-29 | Fixed a compiler error with std::chrono::duration | Antony Woods | |
2013-10-16 | Fixed invalid header in python files. Now using chrono instead of boost ↵ | Antony Woods | |
timer. Removed unnecessary ptr checks, as now shared ptr is mandatory. Updated Readme to reflect new changes. Updated travis file, just in case. | |||
2013-10-16 | First pass at replacing boost with c++11 features | Antony Woods | |
2013-10-14 | Dependencies in README. | Alec Thomas | |
2013-10-14 | Initial commit | Antony Woods | |
2013-10-14 | README formatting tweaks. | Alec Thomas | |
2013-10-14 | Fix bug in EntityManager::get. | Alec Thomas | |
2013-10-12 | Allow creation of Entity::Id from uint64_t. | Alec Thomas | |
2013-10-04 | Document dependency helper. | Alec Thomas | |
2013-10-04 | Add `Dependency<C, D1, D2...>` System for automatic component | Alec Thomas | |
dependencies. | |||
2013-10-01 | Update README to match reality. | Alec Thomas | |
2013-09-05 | Speed up iterator creation a bit by avoiding some copies. | Alec Thomas | |
2013-09-05 | Fix stupid iteration bug. | Alec Thomas | |
Iteration would terminate at ID size() rather than capacity(), where size() is the number of allocated entities. Depending on where deleted entities were, this would likely miss entities at the end of the allocated vectors. Fixes #10. | |||
2013-09-04 | Add entityx/entityx.h | Alec Thomas | |
2013-09-04 | Performance improvements + emitting events from Python. | Alec Thomas | |
2013-09-02 | Added remove<C>() method for removal of components by type. | David Wicks | |
Along with this, there is a ComponentRemovedEvent<T> that is delivered whenever a component is removed from an entity. | |||
2013-08-29 | Speed up iteration a bit. | Alec Thomas | |
2013-08-22 | Switch from boost::signal to embedded Simple::Signal. | Alec Thomas | |
2013-08-21 | Revert "Switch to boost::signals2." | Alec Thomas | |
Until I have the time to make the tests work. This reverts commit be03c3a3d4e8824c3b909648b46910b4cdbc72e1. | |||
2013-08-21 | Switch to boost::signals2. | Alec Thomas | |
2013-08-19 | Use README.md for Doxygen index. | Alec Thomas | |
2013-08-19 | Fix build. | Alec Thomas | |
2013-08-19 | Add Doxygen file. | Alec Thomas | |
2013-08-18 | Destroying an entity correctly invalidates all other references. | Alec Thomas | |
2013-08-17 | Clarify docs + dump test output on failure. | Alec Thomas | |
2013-08-17 | Add changelog, clean up docs a bit. | Alec Thomas | |
2013-08-16 | Add Python based scripting system (still experimental). | Alec Thomas | |
The build system has also been revamped considerably, with the ability to select between std::shared_ptr and boost::shared_ptr, as well as other improvements. | |||
2013-06-04 | Update documentation. Fixes #8. | Alec Thomas | |
2013-04-03 | All Manager classes are now managed by smart pointers. | Alec Thomas | |
2013-04-02 | Agh. .gitignore! | Alec Thomas | |
2013-04-02 | Remove Components*, moved to tags/ in a previous change. | Alec Thomas | |
2013-04-02 | Allow shared_ptr implementation to be selected. | Alec Thomas | |
Fixes #6. | |||
2013-04-02 | Add support for Travis-CI. | Alec Thomas | |
Also ditched glog. | |||
2013-04-01 | Include gtest (as per gtest recommendations). | Alec Thomas | |
See https://groups.google.com/forum/?fromgroups=#!topic/googletestframework/Zo7_HOv1MJ0 | |||
2013-03-30 | Fix README. | Alec Thomas | |
Fixes #7. | |||
2013-03-24 | Remove unused flag that broke clang 3.x. | Alec Thomas | |
Fixes #5. | |||
2013-03-20 | Merge pull request #4 from larspensjo/gcc-static | Alec Thomas | |
gcc 4.7.2 doesn't allow static keyword in member function definition. | |||
2013-03-20 | gcc 4.7.2 doesn't allow static keyword in member function definition. | Lars Pensjö | |
2013-03-14 | Make Component<T>::family() support > 64 components. | Alec Thomas | |
2013-03-14 | Typedef bitset out. | Alec Thomas | |
2013-03-12 | Use std::bitset, allowing for an arbitrary number of components. | Alec Thomas | |
2013-03-11 | Improve documentation. | Alec Thomas | |