aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
AgeCommit message (Collapse)Author
2013-09-04Performance improvements + emitting events from Python.Alec Thomas
2013-08-22Switch from boost::signal to embedded Simple::Signal.Alec Thomas
2013-08-21Revert "Switch to boost::signals2."Alec Thomas
Until I have the time to make the tests work. This reverts commit be03c3a3d4e8824c3b909648b46910b4cdbc72e1.
2013-08-21Switch to boost::signals2.Alec Thomas
2013-08-18Destroying an entity correctly invalidates all other references.Alec Thomas
2013-08-17Add changelog, clean up docs a bit.Alec Thomas
2013-06-04Update documentation. Fixes #8.Alec Thomas
2013-04-03All Manager classes are now managed by smart pointers.Alec Thomas
2013-04-02Allow shared_ptr implementation to be selected.Alec Thomas
Fixes #6.
2013-03-30Fix README.Alec Thomas
Fixes #7.
2013-03-12Use std::bitset, allowing for an arbitrary number of components.Alec Thomas
2013-03-11Improve documentation.Alec Thomas
2013-03-11Add some benchmarks.Alec Thomas
2013-03-11Some breaking changes to Entity management.Alec Thomas
- Entity will no longer implicitly cast to Entity::Id. This is safer and cleaner. - Use Entity::destroy(). This will destroy the entity *and* invalidate the handle. - Removed the exists() method, as it was largely meaningless anyway. Listen to EntityDestroyedEvent instead. - Exposed Entity::manager() and removed manager attribute from events.
2013-03-10README formatting.Alec Thomas
2013-03-10Two bugfixes in Entity.Lars Pensjö
Fix Entity::operator! and initialize Entity::id_ to invalid value by default. Add test to verify operator! and uninitialized Entity. Suppress warnings about unused variables.
2013-03-02Remove unused variable. Update README.Alec Thomas
2013-02-27Minor readme updates.Lars Pensjö
Add link to define POD. Refer to entity instead of component.
2013-02-27Enable testing for Linux with gcc.Lars Pensjö
Resolve namespace std clash with boost. struct NullDeleter can't be local. Remove surplus ';'.
2012-10-24Add Entity class helper.Alec Thomas
This largely supplants the use of entity IDs.
2012-10-24Add C++ GitHub highlighting (hopefully).Alec Thomas
2012-10-24README updates.Alec Thomas
2012-10-22Allow System's to be added pre-created to the SystemManager.Alec Thomas
2012-10-22Convert remaining bare pointers to shared_ptr.Alec Thomas
2012-10-20Implemented unified entity iteration and component unpacking.Alec Thomas
Continued working on docs.
2012-10-20More README updates.Alec Thomas
2012-10-19A bunch of minor build fixes. Started README.Alec Thomas