Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This (absolutely massive) PR introduces a bunch of improvements to the core ECS including:
Simplified query interface
Filters (
attached
,detached
andchanged
, custom filters) have been removed. Change detection should be event oriented – checking each component to determine if it is attached or detached is just too slow. The old strategy also required that we defer operations an additional tick so that entities flagged for attach/detach had a chance to get picked up by a filter.This means queries will always look like this:
instead of this:
Now, when a component is attached/detached, or an entity is spawned/destroyed, the corresponding operation happens immediately at the beginning of the next tick.
World
andStorage
expose events (signals) to detect these events, and a couple of new built-in effects were introduced that expose a simple API for iterating modified entities, which are described below.Triggers
The simplest way to detect a change is with a trigger. A trigger is an effect that yields entity-component pairs where the entity was modified in some way during the previous tick.
Monitors
Monitors are slightly more complex. They monitor a query and yield entities that become eligible (or ineligible) for iteration by the query.
You can see some examples of Triggers/Monitors (and other effects) in the updated "space junk" example here: https://github.com/3mcd/javelin/blob/ab3dea578ad49f44f89566e5e42ff663a2bb0d99/docs-src/static/examples/space-junk.js.
I haven't done much performance testing on triggers/monitors (or effects for that matter), but I plan on doing that soon. I assume they are okay right now but could still use some work.
Improved iteration performance
Iteration speed was improved around 100% with the removal of component filters. Even more exciting perf gains were made with the introduction of
forEach
and a new, "lower level" way of iterating queries manually.forEach
Manually iterate a query
Queries can be manually iterated for maximum performance (read in the Crysis voice) using a for..of loop:
Using these new iteration methods, Javelin is able to compete with some of the faster JS ECS libraries while (hopefully) remaining fairly easy to understand and use.
Not filters
A query can now exclude entities with certain component(s) using
query.not()
.Topic registration
Topics can now be registered with a world. Registered topics are auto-flushed at the beginning of each tick.
To-do