aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-12-20Merge pull request #116 from PHEN-/pr-sharedfixAlec Thomas
Generate seperate debug postfix dll for building in debug.
2015-12-19Generate seperate debug postfix dll for building in debug.Stephen Ma
2015-12-11Merge pull request #112 from adtennant/patch-1Alec Thomas
Update FindEntityX.cmake
2015-12-10Update FindEntityX.cmakeAlex Tennant
To be consistent with other CMake modules ENTITYX_LIBRARIES and ENTITYX_INCLUDE_DIRS should be exposed. find_package_handle_standard_args should be used to set ENTITYX_FOUND.
2015-09-16Merge pull request #110 from rupertsteel/masterAlec Thomas
Fix size downcast warning on 64 bit builds.
2015-09-16Fix size downcast warning on 64 bit builds.Rupert Steel
2015-09-15Test that receivers are only called once for each emit.Alec Thomas
See #109.
2015-09-15Fix spurious warning from VC.Alec Thomas
Fixes #109.
2015-07-18Remove ambiguity that old compilers can't resolve.Alec Thomas
2015-07-18Add `.each<C...>([](C &c...) {})` iteration.Alec Thomas
May break code that uses `EntityManager::View`, as this is now a template type `EntityManager::View<C...>`. Fixes #62.
2015-07-05Document requirement for VS2015.Alec Thomas
Fixes #105.
2015-06-23Update example.Alec Thomas
2015-06-23Also pass EntityManager to System::configure().Alec Thomas
Old configure() left for compatibility. Fixes #104.
2015-06-22Add std::hash<Entity>.Alec Thomas
2015-06-14Merge pull request #102 from svenstaro/patch-1Alec Thomas
Fix code example in README.md
2015-06-14Merge pull request #103 from Nodmgatall/patch-1Alec Thomas
Make Receiver inheritance public instead of implicitly private
2015-06-13Make Receiver inheritance public instead of implicitly privateNodmgatall
Otherwise you get an error when trying to run the example. /home/lemling/Dokumente/Proggen/BaconGameJam/bgj09/entityx/entityx/Event.h: In instantiation of ‘void entityx::EventManager::subscribe(Receiver&) [with E = PlayerInstrucionEvent; Receiver = MovementSystem]’: /home/lemling/Dokumente/Proggen/BaconGameJam/bgj09/src/system_movement.hpp:17:58: required from here /home/lemling/Dokumente/Proggen/BaconGameJam/bgj09/entityx/entityx/Event.h:130:26: error: ‘entityx::BaseReceiver’ is an inaccessible base of ‘MovementSystem’ BaseReceiver &base = receiver;
2015-06-13Fix code example in README.mdSven-Hendrik Haase
2015-04-25Don't require CMake 3.0.Alec Thomas
2015-04-25Bump to 1.1.2.Alec Thomas
2015-04-24Update example with a vertex array-based particle system.Alec Thomas
2015-04-24Fix a bunch of constness issues (fixes #95).Alec Thomas
- Use SFINAE to prevent non-const access to component<C>(). - Correctly de-const component types before accessing Component<C>::family(). Avoids accidentally assigning new family IDs. - ComponentHandle should handle const propagation correctly now. - ComponentHandle.manager_ should now be `const EntityManager` where appropriate.
2015-04-23Add AppVeyor master status badge.Alec Thomas
2015-04-20Merge pull request #94 from jpleau/cmake_sonameAlec Thomas
update versions in CMakeLists.txt
2015-04-19update versions in CMakeLists.txtJason Pleau
2015-03-30Test that components aren't reused on deleted entities.Alec Thomas
See #92.
2015-03-19Test for multiple event subscriptions.Alec Thomas
2015-03-04Merge pull request #89 from tahsmith/masterAlec Thomas
Remove user defined constructors for Entity
2015-03-04Remove user defined constructors for Entity that are equivalent to the ↵tahsmith
compiler generated ones.
2015-02-16More examples projects.Alec Thomas
2015-02-09More README udpates.Alec Thomas
2015-02-09Update README+example for inheritance-free change.Alec Thomas
2015-02-09Events no longer need to be inherited from Event, they can be any class.Alec Thomas
See #85.
2015-02-09Components no longer need to be inherited from Component<>.Alec Thomas
See #85.
2015-02-06Merge pull request #84 from Gronis/masterAlec Thomas
Added unsubscribe feature to EventManager.
2015-02-05Added unsubscribe feature to EventManager. Also added tests in Event_test.cc ↵robin
that checks that it's working correctly.
2015-01-15Merge pull request #79 from sansumbrella/component_replaceAlec Thomas
Entity::replace<Component> method.
2015-01-14Entity::replace<Component> method.David Wicks
Avoid the client-side song and dance around assignment in cases where a component of the same type may already be assigned to the entity.
2014-12-31Use a vector for the free list. std::list is mind bogglingly slow.Alec Thomas
2014-12-24CMake fix for AppleClang.Alec Thomas
2014-12-21Merge pull request #76 from excaliburHisSheath/masterAlec Thomas
Add SystemManager::update_all() Method
2014-12-20Rename SystemManager::update_all() and Add DocumentationDavid LeGare
- Renamed SystemManager::updateAll() to SystemManager::update_all() to make it consistent with the existing naming convention. - Added documentation for SystemManager::update_all().
2014-12-19Add Non-Templated SystemManager::update() MethodDavid LeGare
- Added a non-templated updateAll() method to the SystemManager that updates all systems in the manager. - Adds a test for updateAll().
2014-12-16Merge pull request #73 from MarioLiebisch/cmake-additionsAlec Thomas
Added CMake Find_Package script and debug suffix
2014-12-15Added CMake Find_Package script and debug suffixMario Liebisch
* This allows easy inclusion of EntityX in CMake projects using `Find_Package(EntityX)`. * Also debug versions now use the `-d` suffix, no longer overwriting release builds (e.g. `entityx-d.lib` rather than `entityx.lib`).
2014-12-15Merge pull request #72 from eco/patch-1Alec Thomas
Don't use dereference operator in events example
2014-12-14Don't use dereference operator in events exampleBrad Anderson
2014-12-08Merge pull request #69 from jpleau/examplesAlec Thomas
example: typo in compilation command, replace arial with a free font
2014-12-08Merge pull request #70 from jpleau/libdirAlec Thomas
add CMAKE_INSTALL_LIBDIR
2014-12-07add CMAKE_INSTALL_LIBDIRJason Pleau
Keeps the default to 'lib', while allowing to use it like so: -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu