mirror of
https://github.com/Ukendio/jecs.git
synced 2025-07-01 04:49:16 +00:00
Rename tests files
This commit is contained in:
parent
7e6b555e51
commit
87615de289
1 changed files with 93 additions and 102 deletions
|
@ -520,37 +520,23 @@ TEST("world", function()
|
||||||
local Bob = world:component()
|
local Bob = world:component()
|
||||||
|
|
||||||
local helloBob = world:entity()
|
local helloBob = world:entity()
|
||||||
world:add(helloBob, jecs.pair(Hello, Bob))
|
world:add(helloBob, ECS_PAIR(Hello, Bob))
|
||||||
world:add(helloBob, Bob)
|
world:add(helloBob, Bob)
|
||||||
|
|
||||||
local withoutCount = 0
|
local withoutCount = 0
|
||||||
for _ in world
|
for _ in world:query(ECS_PAIR(Hello, Bob)):without(Bob) do
|
||||||
:query(jecs.pair(Hello, Bob))
|
|
||||||
:without(Bob)
|
|
||||||
do
|
|
||||||
withoutCount += 1
|
withoutCount += 1
|
||||||
end
|
end
|
||||||
|
|
||||||
CHECK(withoutCount == 0)
|
CHECK(withoutCount == 0)
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
do CASE "should allow change tracking"
|
|
||||||
|
TEST("changetracker", function()
|
||||||
local world = jecs.World.new()
|
local world = jecs.World.new()
|
||||||
local Previous = world:component()
|
local Previous = world:component()
|
||||||
|
|
||||||
local ChangeTracker = {}
|
|
||||||
ChangeTracker.__index = ChangeTracker
|
|
||||||
|
|
||||||
function ChangeTracker.new(component)
|
|
||||||
return setmetatable({
|
|
||||||
addedComponents = {}, -- Map<Entity, T>
|
|
||||||
removedComponents = {}, -- Vec<Entity>
|
|
||||||
component = component,
|
|
||||||
previous = jecs.pair(Previous, component),
|
|
||||||
isTrivial = nil,
|
|
||||||
}, ChangeTracker)
|
|
||||||
end
|
|
||||||
|
|
||||||
local function shallowEq(a, b)
|
local function shallowEq(a, b)
|
||||||
for k, v in a do
|
for k, v in a do
|
||||||
if b[k] ~= v then
|
if b[k] ~= v then
|
||||||
|
@ -560,18 +546,18 @@ TEST("world", function()
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
function ChangeTracker.track(tracker, world, fn)
|
local function ChangeTracker(world, component)
|
||||||
|
local addedComponents = {}
|
||||||
|
local removedComponents = {}
|
||||||
|
local previous = jecs.pair(Previous, component)
|
||||||
|
local isTrivial = nil
|
||||||
|
|
||||||
|
local function track(fn)
|
||||||
local added = false
|
local added = false
|
||||||
local removed = false
|
local removed = false
|
||||||
|
|
||||||
local addedComponents = tracker.addedComponents
|
|
||||||
local removedComponents = tracker.removedComponents
|
|
||||||
local component = tracker.component
|
|
||||||
local previous = tracker.previous
|
|
||||||
local isTrivial = tracker.isTrivial
|
|
||||||
|
|
||||||
local changes = {}
|
local changes = {}
|
||||||
function changes:added()
|
function changes.added()
|
||||||
added = true
|
added = true
|
||||||
local q = world:query(component):without(previous)
|
local q = world:query(component):without(previous)
|
||||||
return function()
|
return function()
|
||||||
|
@ -582,7 +568,6 @@ TEST("world", function()
|
||||||
|
|
||||||
if isTrivial == nil then
|
if isTrivial == nil then
|
||||||
isTrivial = typeof(data) ~= "table"
|
isTrivial = typeof(data) ~= "table"
|
||||||
tracker.isTrivial = isTrivial
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if not isTrivial then
|
if not isTrivial then
|
||||||
|
@ -594,7 +579,7 @@ TEST("world", function()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function changes:changed()
|
function changes.changed()
|
||||||
local q = world:query(component, previous)
|
local q = world:query(component, previous)
|
||||||
|
|
||||||
return function()
|
return function()
|
||||||
|
@ -615,17 +600,16 @@ TEST("world", function()
|
||||||
id, new, old = q:next()
|
id, new, old = q:next()
|
||||||
end
|
end
|
||||||
|
|
||||||
print("nil?", id)
|
|
||||||
addedComponents[id] = new
|
addedComponents[id] = new
|
||||||
|
|
||||||
return id, old, new
|
return id, old, new
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function changes:removed()
|
function changes.removed()
|
||||||
removed = true
|
removed = true
|
||||||
|
|
||||||
local q = world:query(tracker.previous):without(tracker.component)
|
local q = world:query(previous):without(component)
|
||||||
return function()
|
return function()
|
||||||
local id = q:next()
|
local id = q:next()
|
||||||
if id then
|
if id then
|
||||||
|
@ -637,12 +621,12 @@ TEST("world", function()
|
||||||
|
|
||||||
fn(changes)
|
fn(changes)
|
||||||
if not added then
|
if not added then
|
||||||
for _ in changes:added() do
|
for _ in changes.added() do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if not removed then
|
if not removed then
|
||||||
for _ in changes:removed() do
|
for _ in changes.removed() do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -655,8 +639,14 @@ TEST("world", function()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
track = track
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
do CASE "should allow change tracking"
|
||||||
local Test = world:component()
|
local Test = world:component()
|
||||||
local TestTracker = ChangeTracker.new(Test)
|
local TestTracker = ChangeTracker(world, Test)
|
||||||
|
|
||||||
local e = world:entity()
|
local e = world:entity()
|
||||||
world:set(e, Test, { foo = 11 })
|
world:set(e, Test, { foo = 11 })
|
||||||
|
@ -664,7 +654,7 @@ TEST("world", function()
|
||||||
test.foo = test.foo + 1
|
test.foo = test.foo + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
TestTracker:track(world, function(changes)
|
TestTracker.track(function(changes)
|
||||||
local added = 0
|
local added = 0
|
||||||
local changed = 0
|
local changed = 0
|
||||||
local removed = 0
|
local removed = 0
|
||||||
|
@ -686,10 +676,11 @@ TEST("world", function()
|
||||||
test.foo = test.foo + 1
|
test.foo = test.foo + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
TestTracker:track(world, function(changes)
|
TestTracker.track(function(changes)
|
||||||
local added = 0
|
local added = 0
|
||||||
local changed = 0
|
local changed = 0
|
||||||
local removed = 0
|
local removed = 0
|
||||||
|
|
||||||
for e, data in changes.added() do
|
for e, data in changes.added() do
|
||||||
added+=1
|
added+=1
|
||||||
end
|
end
|
||||||
|
@ -706,7 +697,7 @@ TEST("world", function()
|
||||||
|
|
||||||
world:remove(e, Test)
|
world:remove(e, Test)
|
||||||
|
|
||||||
TestTracker:track(world, function(changes)
|
TestTracker.track(function(changes)
|
||||||
local added = 0
|
local added = 0
|
||||||
local changed = 0
|
local changed = 0
|
||||||
local removed = 0
|
local removed = 0
|
Loading…
Reference in a new issue