Getting Started
This guide will walk you through the fundamental concepts of the Entity Component System (ECS) framework and get you up and running with EliCS in your TypeScript or JavaScript projects.
ECS Principles
EliCS is an Entity Component System (ECS) framework tailored for TypeScript and JavaScript applications. This design pattern shifts from traditional class hierarchy to composition within a Data-Oriented Programming paradigm, leading to more efficient and extendable code.
Key ECS Terms
- Entities: Unique objects that can have multiple components attached.
- Components: Varied facets of an entity (e.g., geometry, physics, health). They typically store data.
- Systems: Code pieces that process entities and modify their components.
- Queries: Used by systems to select entities based on component composition.
- World: A container for entities, components, systems, and queries.
Typical ECS Workflow
- Create Component Types: Define your application's data structures.
- Create Entities: Instantiate entities and attach components.
- Create Systems: Implement logic that processes entities based on queries.
- Execute Systems: Continuously run all systems.
Adding EliCS to Your Project
Install EliCS via npm:
npm install elics
Creating a World
The "world" is where all ECS elements coexist.
import { World } from 'elics';
const world = new World();
Defining Components
Components are data containers that define entity properties.
const Position = createComponent({
value: { type: Types.Vec3, default: [0, 0, 0] },
});
const Velocity = createComponent({
value: { type: Types.Vec3, default: [0, 0, 0] },
});
const Health = createComponent({
value: { type: Types.Float32, default: 100 },
});
Register these components:
world
.registerComponent(Position)
.registerComponent(Velocity)
.registerComponent(Health);
Creating Entities
Instantiate entities and attach components:
const entity = world.createEntity();
entity.addComponent(Position, { value: [10, 20, 30] });
entity.addComponent(Velocity);
entity.addComponent(Health);
Creating Systems
Systems contain the core logic.
import { createSystem } from 'elics';
const queryConfig = {
movables: { required: [Position, Velocity] },
};
class MovementSystem extends createSystem(queryConfig) {
update(delta, time) {
this.queries.movables.entities.forEach((entity) => {
const position = entity.getVectorView(Position, 'value');
const velocity = entity.getVectorView(Velocity, 'value');
position[0] += velocity[0] * delta;
position[1] += velocity[1] * delta;
position[2] += velocity[2] * delta;
});
}
}
world.registerSystem(MovementSystem);
Updating the World
Update the world with delta
and time
.
function render() {
...
world.update(delta, time);
...
}
What's Next?
- Explore the Architecture: Delve into the architecture of EliCS and access the detailed API documentation for an in-depth understanding of EliCS's capabilities.
- Discover the EliCS Story: Learn about its origins, the inspirations that shaped it, and the design philosophy that drives its development.
EliCS is ready to power your next application with its flexible and efficient ECS framework. Happy coding!