mirror of
https://github.com/bakpakin/tiny-ecs.git
synced 2026-07-22 07:56:52 -06:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
821914795d | ||
|
|
2beca9a0ad | ||
|
|
afd7d326d7 | ||
|
|
e095e10d44 | ||
|
|
3c4b3a7f68 | ||
|
|
0f17f116ab | ||
|
|
584be2c952 | ||
|
|
36364df4e6 | ||
|
|
65de2a9c6f | ||
|
|
4631216c27 | ||
|
|
7c7de1db0c | ||
|
|
fe7e2854de | ||
|
|
311943e070 | ||
|
|
8a3c22e74f | ||
|
|
a0fa0904f6 | ||
|
|
80bb6b8d31 | ||
|
|
83d806011b | ||
|
|
d720d361e6 | ||
|
|
d94b178670 |
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
language: erlang
|
language: c
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- LUAROCKS_BASE=luarocks-2.2.2
|
- LUAROCKS_BASE=luarocks-3.2.1
|
||||||
matrix:
|
matrix:
|
||||||
- LUA=lua5.1 LUA_DEV=liblua5.1-dev LUA_VER=5.1 LUA_SFX=5.1 LUA_INCDIR=/usr/include/lua5.1
|
- LUA=lua5.1 LUA_DEV=liblua5.1-dev LUA_VER=5.1 LUA_SFX=5.1 LUA_INCDIR=/usr/include/lua5.1
|
||||||
- LUA=lua5.2 LUA_DEV=liblua5.2-dev LUA_VER=5.2 LUA_SFX=5.2 LUA_INCDIR=/usr/include/lua5.2
|
- LUA=lua5.2 LUA_DEV=liblua5.2-dev LUA_VER=5.2 LUA_SFX=5.2 LUA_INCDIR=/usr/include/lua5.2
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# tiny-ecs #
|
# tiny-ecs #
|
||||||
|
|
||||||
|
## NOTE
|
||||||
|
|
||||||
|
Although there have been almost no commits in several years, this
|
||||||
|
project is not abandoned. tiny-ecs is, for most intents and
|
||||||
|
purposes, finished, and no bugs have been brought to my attention in a while.
|
||||||
|
New issues on GitHub will be addressed.
|
||||||
|
|
||||||
[](https://travis-ci.org/bakpakin/tiny-ecs)[](LICENSE)
|
[](https://travis-ci.org/bakpakin/tiny-ecs)[](LICENSE)
|
||||||
|
|
||||||
Tiny-ecs is an Entity Component System for Lua that's simple, flexible, and useful.
|
Tiny-ecs is an Entity Component System for Lua that's simple, flexible, and useful.
|
||||||
@@ -8,11 +15,11 @@ for simulating large and complex systems. For more explanation on Entity
|
|||||||
Component Systems, here is some
|
Component Systems, here is some
|
||||||
[basic info](http://en.wikipedia.org/wiki/Entity_component_system "Wikipedia").
|
[basic info](http://en.wikipedia.org/wiki/Entity_component_system "Wikipedia").
|
||||||
|
|
||||||
Tiny-ecs also works well with objected oriented programming in Lua because
|
Tiny-ecs also works well with object-oriented programming in Lua because
|
||||||
Systems and Entities do not use metatables. This means you can subclass your
|
Systems and Entities do not use metatables. This means you can subclass your
|
||||||
Systems and Entities, and use existing Lua class frameworks with tiny-ecs, no problem.
|
Systems and Entities and use existing Lua class frameworks with tiny-ecs, no problem.
|
||||||
For an example on how to use tiny-ecs with object-oriented Lua, take a look at the
|
For an example on how to use tiny-ecs with object-oriented Lua, take a look at the
|
||||||
demo branch, specifically the systems and entities sub-directories.
|
demo branch, specifically the systems and entities subdirectories.
|
||||||
|
|
||||||
## Overview ##
|
## Overview ##
|
||||||
Tiny-ecs has four important types: Worlds, Filters, Systems, and Entities.
|
Tiny-ecs has four important types: Worlds, Filters, Systems, and Entities.
|
||||||
@@ -21,7 +28,7 @@ take an Entity as a parameter.
|
|||||||
|
|
||||||
### Entities ###
|
### Entities ###
|
||||||
Entities are simply Lua tables of data that gets processed by Systems. Entities
|
Entities are simply Lua tables of data that gets processed by Systems. Entities
|
||||||
should contain primarily data rather than code, as it is the Systems's job to
|
should contain primarily data rather than code, as it is the System's job to
|
||||||
do logic on data. Henceforth, a key-value pair in an Entity will
|
do logic on data. Henceforth, a key-value pair in an Entity will
|
||||||
be referred to as a Component.
|
be referred to as a Component.
|
||||||
|
|
||||||
@@ -49,7 +56,7 @@ local talkingSystem = tiny.processingSystem()
|
|||||||
talkingSystem.filter = tiny.requireAll("name", "mass", "phrase")
|
talkingSystem.filter = tiny.requireAll("name", "mass", "phrase")
|
||||||
function talkingSystem:process(e, dt)
|
function talkingSystem:process(e, dt)
|
||||||
e.mass = e.mass + dt * 3
|
e.mass = e.mass + dt * 3
|
||||||
print(("%s who weighs %d pounds, says %q."):format(e.name, e.mass, e.phrase)
|
print(("%s who weighs %d pounds, says %q."):format(e.name, e.mass, e.phrase))
|
||||||
end
|
end
|
||||||
|
|
||||||
local joe = {
|
local joe = {
|
||||||
@@ -68,10 +75,10 @@ end
|
|||||||
|
|
||||||
## Use It ##
|
## Use It ##
|
||||||
Copy paste tiny.lua into your source folder. For stability and consistent API,
|
Copy paste tiny.lua into your source folder. For stability and consistent API,
|
||||||
please use a tagged release or use luarocks.
|
please use a tagged release or use LuaRocks.
|
||||||
|
|
||||||
## Luarocks ##
|
## Luarocks ##
|
||||||
Tiny-ecs is also on [Luarocks](https://luarocks.org/) and can be installed with
|
Tiny-ecs is also on [LuaRocks](https://luarocks.org/) and can be installed with
|
||||||
`luarocks install tiny-ecs`.
|
`luarocks install tiny-ecs`.
|
||||||
|
|
||||||
## Demo ##
|
## Demo ##
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
-- Helper Lua file for easy require if tiny-ecs is used as a git submodule or
|
-- Helper Lua file for easy require if tiny-ecs is used as a git submodule or
|
||||||
-- folder. Not needed in many cases, including luarocks distribution.
|
-- folder. Not needed in many cases, including luarocks distribution.
|
||||||
|
|
||||||
local directory = (...):match("(.-)[^%.]+$")
|
local args = {...}
|
||||||
return require(directory .. 'tiny')
|
local directory = args[1]
|
||||||
|
return require(directory .. '.tiny')
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package = "tiny-ecs"
|
||||||
|
version = "1.3-3"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/bakpakin/tiny-ecs",
|
||||||
|
tag = version
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Entity Component System for Lua.",
|
||||||
|
detailed = [[
|
||||||
|
Pure Lua implementation of an easy to use, compact, fast, and flexible
|
||||||
|
Entity Component System. Works well with Object Orientation.
|
||||||
|
]],
|
||||||
|
homepage = "https://github.com/bakpakin/tiny-ecs",
|
||||||
|
license = "MIT"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1"
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
tiny = "tiny.lua"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -310,4 +310,14 @@ describe('tiny-ecs:', function()
|
|||||||
assert.are.same(_G, GLOBALS)
|
assert.are.same(_G, GLOBALS)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it("Can set system indices", function()
|
||||||
|
local world = tiny.world()
|
||||||
|
local systemA = tiny.system()
|
||||||
|
local systemB = tiny.system()
|
||||||
|
world:addSystem(systemA)
|
||||||
|
world:addSystem(systemB)
|
||||||
|
world:setSystemIndex(systemA, 1)
|
||||||
|
assert(true)
|
||||||
|
end)
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
local tiny = require('tiny')
|
||||||
|
|
||||||
|
local world = tiny.world()
|
||||||
|
local systemA = tiny.system()
|
||||||
|
local systemB = tiny.system()
|
||||||
|
world:addSystem(systemA)
|
||||||
|
world:addSystem(systemB)
|
||||||
|
world:setSystemIndex(systemA, 1)
|
||||||
@@ -41,12 +41,13 @@ local tiny_addSystem
|
|||||||
local tiny_add
|
local tiny_add
|
||||||
local tiny_removeEntity
|
local tiny_removeEntity
|
||||||
local tiny_removeSystem
|
local tiny_removeSystem
|
||||||
local tiny_remove
|
|
||||||
|
|
||||||
--- Filter functions.
|
--- Filter functions.
|
||||||
-- A Filter is a function that selects which Entities apply to a System.
|
-- A Filter is a function that selects which Entities apply to a System.
|
||||||
-- Filters take two parameters, the System and the Entity, and return a boolean
|
-- Filters take two parameters, the System and the Entity, and return a boolean
|
||||||
-- value indicating if the Entity should be processed by the System.
|
-- value indicating if the Entity should be processed by the System. A truthy
|
||||||
|
-- value includes the entity, while a falsey (nil or false) value excludes the
|
||||||
|
-- entity.
|
||||||
--
|
--
|
||||||
-- Filters must be added to Systems by setting the `filter` field of the System.
|
-- Filters must be added to Systems by setting the `filter` field of the System.
|
||||||
-- Filter's returned by tiny-ecs's Filter functions are immutable and can be
|
-- Filter's returned by tiny-ecs's Filter functions are immutable and can be
|
||||||
@@ -229,7 +230,7 @@ end
|
|||||||
-- removed from the world, after all Entities are removed from the System.
|
-- removed from the world, after all Entities are removed from the System.
|
||||||
-- * `function system:preWrap(dt)` - Called on each system before update is
|
-- * `function system:preWrap(dt)` - Called on each system before update is
|
||||||
-- called on any system.
|
-- called on any system.
|
||||||
-- * `function system:postWrap(dt) - Called on each system in reverse order
|
-- * `function system:postWrap(dt)` - Called on each system in reverse order
|
||||||
-- after update is called on each system. The idea behind `preWrap` and
|
-- after update is called on each system. The idea behind `preWrap` and
|
||||||
-- `postWrap` is to allow for systems that modify the behavior of other systems.
|
-- `postWrap` is to allow for systems that modify the behavior of other systems.
|
||||||
-- Say there is a DrawingSystem, which draws sprites to the screen, and a
|
-- Say there is a DrawingSystem, which draws sprites to the screen, and a
|
||||||
@@ -277,11 +278,13 @@ end
|
|||||||
--
|
--
|
||||||
-- There is another option to (hopefully) increase performance in systems that
|
-- There is another option to (hopefully) increase performance in systems that
|
||||||
-- have items added to or removed from them often, and have lots of entities in
|
-- have items added to or removed from them often, and have lots of entities in
|
||||||
-- them. Setting the `nocache' field of the system might improve performance.
|
-- them. Setting the `nocache` field of the system might improve performance.
|
||||||
-- It is still experimental. There are some restriction to systems without
|
-- It is still experimental. There are some restriction to systems without
|
||||||
-- caching, however. * There is no `entities` table. * Callbacks such onAdd,
|
-- caching, however.
|
||||||
-- onRemove, and onModify will never be called * Noncached systems cannot be
|
--
|
||||||
-- sorted (There is no entities list to sort).
|
-- * There is no `entities` table.
|
||||||
|
-- * Callbacks such onAdd, onRemove, and onModify will never be called
|
||||||
|
-- * Noncached systems cannot be sorted (There is no entities list to sort).
|
||||||
--
|
--
|
||||||
-- @section System
|
-- @section System
|
||||||
|
|
||||||
@@ -306,7 +309,7 @@ local function processingSystemUpdate(system, dt)
|
|||||||
|
|
||||||
if process then
|
if process then
|
||||||
if system.nocache then
|
if system.nocache then
|
||||||
local entities = system.world.entityList
|
local entities = system.world.entities
|
||||||
local filter = system.filter
|
local filter = system.filter
|
||||||
if filter then
|
if filter then
|
||||||
for i = 1, #entities do
|
for i = 1, #entities do
|
||||||
@@ -330,7 +333,7 @@ local function processingSystemUpdate(system, dt)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Sorts Systems by a function system.sortDelegate(entity1, entity2) on modify.
|
-- Sorts Systems by a function system.sortDelegate(entity1, entity2) on modify.
|
||||||
local function sortedSystemOnModify(system, dt)
|
local function sortedSystemOnModify(system)
|
||||||
local entities = system.entities
|
local entities = system.entities
|
||||||
local indices = system.indices
|
local indices = system.indices
|
||||||
local sortDelegate = system.sortDelegate
|
local sortDelegate = system.sortDelegate
|
||||||
@@ -420,9 +423,6 @@ local worldMetaTable
|
|||||||
function tiny.world(...)
|
function tiny.world(...)
|
||||||
local ret = setmetatable({
|
local ret = setmetatable({
|
||||||
|
|
||||||
-- List of Entities to add
|
|
||||||
entitiesToAdd = {},
|
|
||||||
|
|
||||||
-- List of Entities to remove
|
-- List of Entities to remove
|
||||||
entitiesToRemove = {},
|
entitiesToRemove = {},
|
||||||
|
|
||||||
@@ -438,14 +438,9 @@ function tiny.world(...)
|
|||||||
-- Set of Entities
|
-- Set of Entities
|
||||||
entities = {},
|
entities = {},
|
||||||
|
|
||||||
-- List of Entities
|
|
||||||
entityList = {},
|
|
||||||
|
|
||||||
-- Number of Entities in World
|
|
||||||
entityCount = 0,
|
|
||||||
|
|
||||||
-- List of Systems
|
-- List of Systems
|
||||||
systems = {}
|
systems = {}
|
||||||
|
|
||||||
}, worldMetaTable)
|
}, worldMetaTable)
|
||||||
|
|
||||||
tiny_add(ret, ...)
|
tiny_add(ret, ...)
|
||||||
@@ -459,13 +454,8 @@ end
|
|||||||
-- Also call this on Entities that have changed Components such that they
|
-- Also call this on Entities that have changed Components such that they
|
||||||
-- match different Filters. Returns the Entity.
|
-- match different Filters. Returns the Entity.
|
||||||
function tiny.addEntity(world, entity)
|
function tiny.addEntity(world, entity)
|
||||||
if world.entities[entity] then
|
local e2c = world.entitiesToChange
|
||||||
local e2c = world.entitiesToChange
|
e2c[#e2c + 1] = entity
|
||||||
e2c[#e2c + 1] = entity
|
|
||||||
else
|
|
||||||
local e2a = world.entitiesToAdd
|
|
||||||
e2a[#e2a + 1] = entity
|
|
||||||
end
|
|
||||||
return entity
|
return entity
|
||||||
end
|
end
|
||||||
tiny_addEntity = tiny.addEntity
|
tiny_addEntity = tiny.addEntity
|
||||||
@@ -497,7 +487,7 @@ function tiny.add(world, ...)
|
|||||||
end
|
end
|
||||||
tiny_add = tiny.add
|
tiny_add = tiny.add
|
||||||
|
|
||||||
--- Removes an Entity to the World. Returns the Entity.
|
--- Removes an Entity from the World. Returns the Entity.
|
||||||
function tiny.removeEntity(world, entity)
|
function tiny.removeEntity(world, entity)
|
||||||
local e2r = world.entitiesToRemove
|
local e2r = world.entitiesToRemove
|
||||||
e2r[#e2r + 1] = entity
|
e2r[#e2r + 1] = entity
|
||||||
@@ -529,7 +519,6 @@ function tiny.remove(world, ...)
|
|||||||
end
|
end
|
||||||
return ...
|
return ...
|
||||||
end
|
end
|
||||||
tiny_remove = tiny.remove
|
|
||||||
|
|
||||||
-- Adds and removes Systems that have been marked from the World.
|
-- Adds and removes Systems that have been marked from the World.
|
||||||
function tiny_manageSystems(world)
|
function tiny_manageSystems(world)
|
||||||
@@ -543,7 +532,7 @@ function tiny_manageSystems(world)
|
|||||||
world.systemsToAdd = {}
|
world.systemsToAdd = {}
|
||||||
world.systemsToRemove = {}
|
world.systemsToRemove = {}
|
||||||
|
|
||||||
local worldEntityList = world.entityList
|
local worldEntityList = world.entities
|
||||||
local systems = world.systems
|
local systems = world.systems
|
||||||
|
|
||||||
-- Remove Systems
|
-- Remove Systems
|
||||||
@@ -623,58 +612,58 @@ end
|
|||||||
-- Adds, removes, and changes Entities that have been marked.
|
-- Adds, removes, and changes Entities that have been marked.
|
||||||
function tiny_manageEntities(world)
|
function tiny_manageEntities(world)
|
||||||
|
|
||||||
local e2a = world.entitiesToAdd
|
|
||||||
local e2r = world.entitiesToRemove
|
local e2r = world.entitiesToRemove
|
||||||
local e2c = world.entitiesToChange
|
local e2c = world.entitiesToChange
|
||||||
|
|
||||||
-- Early exit
|
-- Early exit
|
||||||
if #e2a == 0 and #e2r == 0 and #e2c == 0 then
|
if #e2r == 0 and #e2c == 0 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
world.entitiesToChange = {}
|
world.entitiesToChange = {}
|
||||||
world.entitiesToAdd = {}
|
|
||||||
world.entitiesToRemove = {}
|
world.entitiesToRemove = {}
|
||||||
|
|
||||||
local entities = world.entities
|
local entities = world.entities
|
||||||
local entityList = world.entityList
|
|
||||||
local systems = world.systems
|
local systems = world.systems
|
||||||
local entityCount = world.entityCount
|
|
||||||
|
|
||||||
-- Change Entities
|
-- Change Entities
|
||||||
for i = 1, #e2c do
|
for i = 1, #e2c do
|
||||||
local entity = e2c[i]
|
local entity = e2c[i]
|
||||||
if entities[entity] then
|
-- Add if needed
|
||||||
for j = 1, #systems do
|
if not entities[entity] then
|
||||||
local system = systems[j]
|
local index = #entities + 1
|
||||||
if not system.nocache then
|
entities[entity] = index
|
||||||
local ses = system.entities
|
entities[index] = entity
|
||||||
local seis = system.indices
|
end
|
||||||
local index = seis[entity]
|
for j = 1, #systems do
|
||||||
local filter = system.filter
|
local system = systems[j]
|
||||||
if filter and filter(system, entity) then
|
if not system.nocache then
|
||||||
if not index then
|
local ses = system.entities
|
||||||
system.modified = true
|
local seis = system.indices
|
||||||
index = #ses + 1
|
local index = seis[entity]
|
||||||
ses[index] = entity
|
local filter = system.filter
|
||||||
seis[entity] = index
|
if filter and filter(system, entity) then
|
||||||
local onAdd = system.onAdd
|
if not index then
|
||||||
if onAdd then
|
|
||||||
onAdd(system, entity)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
elseif index then
|
|
||||||
system.modified = true
|
system.modified = true
|
||||||
local tmpEntity = ses[#ses]
|
index = #ses + 1
|
||||||
ses[index] = tmpEntity
|
ses[index] = entity
|
||||||
seis[tmpEntity] = index
|
seis[entity] = index
|
||||||
seis[entity] = nil
|
local onAdd = system.onAdd
|
||||||
ses[#ses] = nil
|
if onAdd then
|
||||||
local onRemove = system.onRemove
|
onAdd(system, entity)
|
||||||
if onRemove then
|
|
||||||
onRemove(system, entity)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
elseif index then
|
||||||
|
system.modified = true
|
||||||
|
local tmpEntity = ses[#ses]
|
||||||
|
ses[index] = tmpEntity
|
||||||
|
seis[tmpEntity] = index
|
||||||
|
seis[entity] = nil
|
||||||
|
ses[#ses] = nil
|
||||||
|
local onRemove = system.onRemove
|
||||||
|
if onRemove then
|
||||||
|
onRemove(system, entity)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -688,12 +677,11 @@ function tiny_manageEntities(world)
|
|||||||
local listIndex = entities[entity]
|
local listIndex = entities[entity]
|
||||||
if listIndex then
|
if listIndex then
|
||||||
-- Remove Entity from world state
|
-- Remove Entity from world state
|
||||||
local lastEntity = entityList[#entityList]
|
local lastEntity = entities[#entities]
|
||||||
entities[lastEntity] = listIndex
|
entities[lastEntity] = listIndex
|
||||||
entities[entity] = nil
|
entities[entity] = nil
|
||||||
entityList[listIndex] = lastEntity
|
entities[listIndex] = lastEntity
|
||||||
entityList[#entityList] = nil
|
entities[#entities] = nil
|
||||||
entityCount = entityCount - 1
|
|
||||||
-- Remove from cached systems
|
-- Remove from cached systems
|
||||||
for j = 1, #systems do
|
for j = 1, #systems do
|
||||||
local system = systems[j]
|
local system = systems[j]
|
||||||
@@ -717,39 +705,6 @@ function tiny_manageEntities(world)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Add Entities
|
|
||||||
for i = 1, #e2a do
|
|
||||||
local entity = e2a[i]
|
|
||||||
if not entities[entity] then
|
|
||||||
local listIndex = #entityList + 1
|
|
||||||
entities[entity] = listIndex
|
|
||||||
entityList[listIndex] = entity
|
|
||||||
entityCount = entityCount + 1
|
|
||||||
for j = 1, #systems do
|
|
||||||
local system = systems[j]
|
|
||||||
if not system.nocache then
|
|
||||||
local ses = system.entities
|
|
||||||
local seis = system.indices
|
|
||||||
local filter = system.filter
|
|
||||||
if filter and filter(system, entity) then
|
|
||||||
system.modified = true
|
|
||||||
local index = #ses + 1
|
|
||||||
ses[index] = entity
|
|
||||||
seis[entity] = index
|
|
||||||
local onAdd = system.onAdd
|
|
||||||
if onAdd then
|
|
||||||
onAdd(system, entity)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
e2a[i] = nil
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Update Entity count
|
|
||||||
world.entityCount = entityCount
|
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Manages Entities and Systems marked for deletion or addition. Call this
|
--- Manages Entities and Systems marked for deletion or addition. Call this
|
||||||
@@ -759,7 +714,7 @@ function tiny.refresh(world)
|
|||||||
tiny_manageSystems(world)
|
tiny_manageSystems(world)
|
||||||
tiny_manageEntities(world)
|
tiny_manageEntities(world)
|
||||||
local systems = world.systems
|
local systems = world.systems
|
||||||
for i = 1, #systems do
|
for i = #systems, 1, -1 do
|
||||||
local system = systems[i]
|
local system = systems[i]
|
||||||
if system.active then
|
if system.active then
|
||||||
local onModify = system.onModify
|
local onModify = system.onModify
|
||||||
@@ -785,10 +740,17 @@ function tiny.update(world, dt, filter)
|
|||||||
-- Iterate through Systems IN REVERSE ORDER
|
-- Iterate through Systems IN REVERSE ORDER
|
||||||
for i = #systems, 1, -1 do
|
for i = #systems, 1, -1 do
|
||||||
local system = systems[i]
|
local system = systems[i]
|
||||||
local preWrap = system.preWrap
|
if system.active then
|
||||||
if preWrap and system.active and
|
-- Call the modify callback on Systems that have been modified.
|
||||||
((not filter) or filter(world, system)) then
|
local onModify = system.onModify
|
||||||
preWrap(system, dt)
|
if onModify and system.modified then
|
||||||
|
onModify(system, dt)
|
||||||
|
end
|
||||||
|
local preWrap = system.preWrap
|
||||||
|
if preWrap and
|
||||||
|
((not filter) or filter(world, system)) then
|
||||||
|
preWrap(system, dt)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -797,12 +759,6 @@ function tiny.update(world, dt, filter)
|
|||||||
local system = systems[i]
|
local system = systems[i]
|
||||||
if system.active and ((not filter) or filter(world, system)) then
|
if system.active and ((not filter) or filter(world, system)) then
|
||||||
|
|
||||||
-- Call the modify callback on Systems that have been modified.
|
|
||||||
local onModify = system.onModify
|
|
||||||
if onModify and system.modified then
|
|
||||||
onModify(system, dt)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Update Systems that have an update method (most Systems)
|
-- Update Systems that have an update method (most Systems)
|
||||||
local update = system.update
|
local update = system.update
|
||||||
if update then
|
if update then
|
||||||
@@ -811,9 +767,7 @@ function tiny.update(world, dt, filter)
|
|||||||
local bufferedTime = (system.bufferedTime or 0) + dt
|
local bufferedTime = (system.bufferedTime or 0) + dt
|
||||||
while bufferedTime >= interval do
|
while bufferedTime >= interval do
|
||||||
bufferedTime = bufferedTime - interval
|
bufferedTime = bufferedTime - interval
|
||||||
if update then
|
update(system, interval)
|
||||||
update(system, interval)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
system.bufferedTime = bufferedTime
|
system.bufferedTime = bufferedTime
|
||||||
else
|
else
|
||||||
@@ -839,7 +793,7 @@ end
|
|||||||
|
|
||||||
--- Removes all Entities from the World.
|
--- Removes all Entities from the World.
|
||||||
function tiny.clearEntities(world)
|
function tiny.clearEntities(world)
|
||||||
local el = world.entityList
|
local el = world.entities
|
||||||
for i = 1, #el do
|
for i = 1, #el do
|
||||||
tiny_removeEntity(world, el[i])
|
tiny_removeEntity(world, el[i])
|
||||||
end
|
end
|
||||||
@@ -855,24 +809,19 @@ end
|
|||||||
|
|
||||||
--- Gets number of Entities in the World.
|
--- Gets number of Entities in the World.
|
||||||
function tiny.getEntityCount(world)
|
function tiny.getEntityCount(world)
|
||||||
return world.entityCount
|
return #world.entities
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Gets number of Systems in World.
|
--- Gets number of Systems in World.
|
||||||
function tiny.getSystemCount(world)
|
function tiny.getSystemCount(world)
|
||||||
return #(world.systems)
|
return #world.systems
|
||||||
end
|
|
||||||
|
|
||||||
--- Gets the index of the System in the World.
|
|
||||||
-- A simpler alternative is `system.index`.
|
|
||||||
function tiny.getSystemIndex(world, system)
|
|
||||||
return system.index
|
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Sets the index of a System in the World, and returns the old index. Changes
|
--- Sets the index of a System in the World, and returns the old index. Changes
|
||||||
-- the order in which they Systems processed, because lower indexed Systems are
|
-- the order in which they Systems processed, because lower indexed Systems are
|
||||||
-- processed first. Returns the old system.index.
|
-- processed first. Returns the old system.index.
|
||||||
function tiny.setSystemIndex(world, system, index)
|
function tiny.setSystemIndex(world, system, index)
|
||||||
|
tiny_manageSystems(world)
|
||||||
local oldIndex = system.index
|
local oldIndex = system.index
|
||||||
local systems = world.systems
|
local systems = world.systems
|
||||||
|
|
||||||
@@ -905,10 +854,9 @@ worldMetaTable = {
|
|||||||
clearSystems = tiny.clearSystems,
|
clearSystems = tiny.clearSystems,
|
||||||
getEntityCount = tiny.getEntityCount,
|
getEntityCount = tiny.getEntityCount,
|
||||||
getSystemCount = tiny.getSystemCount,
|
getSystemCount = tiny.getSystemCount,
|
||||||
getSystemIndex = tiny.getSystemIndex,
|
|
||||||
setSystemIndex = tiny.setSystemIndex
|
setSystemIndex = tiny.setSystemIndex
|
||||||
},
|
},
|
||||||
__tostring = function(self)
|
__tostring = function()
|
||||||
return "<tiny-ecs_World>"
|
return "<tiny-ecs_World>"
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user