aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2013-08-22 18:38:14 -0400
committerAlec Thomas <alec@swapoff.org>2013-08-22 22:51:20 -0400
commit302bf251f95577ecef8c9662f95651ae2cc49cd7 (patch)
treede10e8e1105800c78bf961d719c5aa606fb6cedd /CHANGELOG.md
parent5716e2ef6578e8cd2ea2b2e266d9f438c233ed0f (diff)
Switch from boost::signal to embedded Simple::Signal.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index acc0008..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Change Log
-
-## 2013-08-18 - Destroying an entity invalidates all other references
-
-Previously, `Entity::Id` was a simple integer index (slot) into vectors in the `EntityManager`. EntityX also maintains a list of deleted entity slots that are reused when new entities are created. This reduces the size and frequency of vector reallocation. The downside though, was that if a slot was reused, entity IDs referencing the entity before reallocation would be invalidated on reuse.
-
-Each slot now also has a version number and a "valid" bit associated with it. When an entity is allocated the version is incremented and the valid bit set. When an entity is destroyed, the valid bit is cleared. `Entity::Id` now contains all of this information and can correctly determine if an ID is still valid across destroy/create.
-
-## 2013-08-17 - Python scripting, and a more robust build system
-
-Two big changes in this release:
-
-1. Python scripting support (alpha).
- - Bridges the EntityX entity-component system into Python.
- - Components and entities can both be defined in Python.
- - Systems must still be defined in C++, for performance reasons.
-
- Note that there is one major design difference between the Python ECS model and the C++ model: entities in Python can receive and handle events.
-
- See the [README](https://github.com/alecthomas/entityx/blob/master/entityx/python/README.md) for help, and the [C++](https://github.com/alecthomas/entityx/blob/master/entityx/python/PythonSystem_test.cc) and [Python](https://github.com/alecthomas/entityx/tree/master/entityx/python/entityx/tests) test source for more examples.
-
-2. Made the build system much more robust, including automatic feature selection with manual override.