aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2014-04-02 09:16:41 -0400
committerAlec Thomas <alec@swapoff.org>2014-04-02 09:16:41 -0400
commita344b7ea8571d2204fc88392b88e571d6ebe2ada (patch)
treed5030f2bca7ea630601bbcff7d993382d1b1e88a /CHANGES.md
parent8d73b907ee4310b9372e8bc353ffcee24df00846 (diff)
Doc updates.
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index f071241..4926ac9 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,8 +1,11 @@
# Change Log
-## 2014-03-02 - Version 1.0.0alpha1 - Removed most uses of shared_ptr
+## 2014-03-02 - 1.0.0alpha1 - Cache coherence + breaking changes
+
+EntityX has switched to a more cache-friendly memory layout for components. This is achieved by requiring the use of `assign<Component>(arg0, arg1, ...)` and removing `assign(component)`. This allows EntityX to explicitly control the layout of components. The current lyout algorithm reserves space for components in chunks (8192 by default).
+
+This change also necessitated a move away from the use of `shared_ptr<>` for components, which I had never been that pleased with anyway. Replacing it is a very lightweight `ComponentHandle<C>` smart pointer. This checks for validity of the entity associated with the component, and validity of the component itself. It also allows future iterations of EntityX to do even more interesting things with memory layout if desirable.
-I've been slightly discontent with the use of `std::shared_ptr` in EntityX since soon after release, but didn't want to break the API immediately after releasing it. But I've decided that it's time.
## 2014-02-13 - Support for Visual C++