mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Separate query
This commit is contained in:
parent
eae51988a9
commit
1d7fe3d93a
2 changed files with 64 additions and 57 deletions
|
@ -7,7 +7,7 @@ local Matter = require(ReplicatedStorage.DevPackages["_Index"]["matter-ecs_matte
|
||||||
local ecr = require(ReplicatedStorage.DevPackages["_Index"]["centau_ecr@0.8.0"].ecr)
|
local ecr = require(ReplicatedStorage.DevPackages["_Index"]["centau_ecr@0.8.0"].ecr)
|
||||||
local newWorld = Matter.World.new()
|
local newWorld = Matter.World.new()
|
||||||
|
|
||||||
local jecs = require(ReplicatedStorage.Shim)
|
local jecs = require(ReplicatedStorage.Lib)
|
||||||
local mirror = require(ReplicatedStorage.mirror)
|
local mirror = require(ReplicatedStorage.mirror)
|
||||||
local mcs = mirror.World.new()
|
local mcs = mirror.World.new()
|
||||||
local ecs = jecs.World.new()
|
local ecs = jecs.World.new()
|
||||||
|
|
119
lib/init.lua
119
lib/init.lua
|
@ -654,63 +654,13 @@ export type Query = typeof(EmptyQuery)
|
||||||
|
|
||||||
type CompatibleArchetype = { archetype: Archetype, indices: { number } }
|
type CompatibleArchetype = { archetype: Archetype, indices: { number } }
|
||||||
|
|
||||||
function World.query(world: World, ...): Query
|
local function PreparedQuery(
|
||||||
-- breaking?
|
compatibleArchetypes: { CompatibleArchetype } , components: { i53 })
|
||||||
if (...) == nil then
|
|
||||||
error("Missing components")
|
|
||||||
end
|
|
||||||
|
|
||||||
local compatibleArchetypes: { CompatibleArchetype } = {}
|
|
||||||
local length = 0
|
|
||||||
|
|
||||||
local components = { ... }
|
|
||||||
local archetypes = world.archetypes
|
|
||||||
local queryLength = #components
|
local queryLength = #components
|
||||||
|
|
||||||
local firstArchetypeMap: ArchetypeMap
|
|
||||||
local componentIndex = world.componentIndex
|
|
||||||
|
|
||||||
for _, componentId in components do
|
|
||||||
local map = componentIndex[componentId]
|
|
||||||
if not map then
|
|
||||||
return EmptyQuery
|
|
||||||
end
|
|
||||||
|
|
||||||
if firstArchetypeMap == nil or map.size < firstArchetypeMap.size then
|
|
||||||
firstArchetypeMap = map
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
for id in firstArchetypeMap.cache do
|
|
||||||
local archetype = archetypes[id]
|
|
||||||
local archetypeRecords = archetype.records
|
|
||||||
|
|
||||||
local indices = {}
|
|
||||||
local skip = false
|
|
||||||
|
|
||||||
for i, componentId in components do
|
|
||||||
local index = archetypeRecords[componentId]
|
|
||||||
if not index then
|
|
||||||
skip = true
|
|
||||||
break
|
|
||||||
end
|
|
||||||
-- index should be index.offset
|
|
||||||
indices[i] = index
|
|
||||||
end
|
|
||||||
|
|
||||||
if skip then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
|
|
||||||
length += 1
|
|
||||||
compatibleArchetypes[length] = {
|
|
||||||
archetype = archetype,
|
|
||||||
indices = indices,
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
local lastArchetype = 1
|
local lastArchetype = 1
|
||||||
local compatibleArchetype: CompatibleArchetype = compatibleArchetypes[lastArchetype]
|
local compatibleArchetype: CompatibleArchetype = compatibleArchetypes[lastArchetype]
|
||||||
|
|
||||||
if not compatibleArchetype then
|
if not compatibleArchetype then
|
||||||
return EmptyQuery
|
return EmptyQuery
|
||||||
|
@ -792,7 +742,7 @@ function World.query(world: World, ...): Query
|
||||||
queryOutput[i] = columns[tr[i]][row]
|
queryOutput[i] = columns[tr[i]][row]
|
||||||
end
|
end
|
||||||
|
|
||||||
return entityId, unpack(queryOutput :: any, 1, queryLength)
|
return entityId, unpack(queryOutput, 1, queryLength)
|
||||||
end
|
end
|
||||||
|
|
||||||
function preparedQuery:__iter()
|
function preparedQuery:__iter()
|
||||||
|
@ -822,7 +772,7 @@ function World.query(world: World, ...): Query
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
lastArchetype, compatibleArchetype = next(compatibleArchetypes :: any)
|
lastArchetype, compatibleArchetype = next(compatibleArchetypes)
|
||||||
if not lastArchetype then
|
if not lastArchetype then
|
||||||
return EmptyQuery
|
return EmptyQuery
|
||||||
end
|
end
|
||||||
|
@ -833,6 +783,63 @@ function World.query(world: World, ...): Query
|
||||||
return setmetatable({}, preparedQuery) :: any
|
return setmetatable({}, preparedQuery) :: any
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function World.query(world: World, ...): Query
|
||||||
|
-- breaking?
|
||||||
|
if (...) == nil then
|
||||||
|
error("Missing components")
|
||||||
|
end
|
||||||
|
|
||||||
|
local compatibleArchetypes: { CompatibleArchetype } = {}
|
||||||
|
local length = 0
|
||||||
|
|
||||||
|
local components = { ... } :: any
|
||||||
|
local archetypes = world.archetypes
|
||||||
|
|
||||||
|
local firstArchetypeMap: ArchetypeMap
|
||||||
|
local componentIndex = world.componentIndex
|
||||||
|
|
||||||
|
for _, componentId in components do
|
||||||
|
local map = componentIndex[componentId]
|
||||||
|
if not map then
|
||||||
|
return EmptyQuery
|
||||||
|
end
|
||||||
|
|
||||||
|
if firstArchetypeMap == nil or map.size < firstArchetypeMap.size then
|
||||||
|
firstArchetypeMap = map
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for id in firstArchetypeMap.cache do
|
||||||
|
local archetype = archetypes[id]
|
||||||
|
local archetypeRecords = archetype.records
|
||||||
|
|
||||||
|
local indices = {}
|
||||||
|
local skip = false
|
||||||
|
|
||||||
|
for i, componentId in components do
|
||||||
|
local index = archetypeRecords[componentId]
|
||||||
|
if not index then
|
||||||
|
skip = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
-- index should be index.offset
|
||||||
|
indices[i] = index
|
||||||
|
end
|
||||||
|
|
||||||
|
if skip then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
|
||||||
|
length += 1
|
||||||
|
compatibleArchetypes[length] = {
|
||||||
|
archetype = archetype,
|
||||||
|
indices = indices,
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
return PreparedQuery(compatibleArchetypes, components)
|
||||||
|
end
|
||||||
|
|
||||||
function World.__iter(world: World): () -> any
|
function World.__iter(world: World): () -> any
|
||||||
local dense = world.entityIndex.dense
|
local dense = world.entityIndex.dense
|
||||||
local sparse = world.entityIndex.sparse
|
local sparse = world.entityIndex.sparse
|
||||||
|
|
Loading…
Reference in a new issue