Skip to content

Types

The Types enum in EliCS provides a set of predefined data types that can be used to define component schemas and system configurations. The reason for enforcing types on component data is so that the ECS framework can optimize memory usage and data access with typed arrays where possible. This approach ensures that data is stored in a contiguous block of memory, improving cache performance and reducing memory fragmentation.

Supported Types

TypeJavaScript TypeDescriptionData Array Type
Types.Int8number8-bit integerInt8Array
Types.Int16number16-bit integerInt16Array
Types.Float32number32-bit floating point numberFloat32Array
Types.Float64number64-bit floating point numberFloat64Array
Types.BooleanbooleanTrue/false valueUint8Array
Types.StringstringText stringArray<string>
Types.ObjectobjectJavaScript objectArray<any>
Types.Vec2number[]2D vectorFloat32Array
Types.Vec3number[]3D vectorFloat32Array
Types.Vec4number[]4D vector or quaternionFloat32Array

TypedSchema Interface

The TypedSchema interface is used to define the structure of component data or system configuration data. It consists of key-value pairs where the key is the property name and the value is an object containing the property type and default value:

ts
interface TypedSchema<T extends Types> {
	[key: string]: { type: T; default: DefaultValueForType<T> };
}

The type property specifies the data type (from the available Types options), while default is the default value for the property. The expected type of default is determined by the value assigned in type (as shown in the JavaScript Type column in the table above).

MIT License | Made with ❤️ by Felix Z