2015-03-29 07:50:42 +00:00
|
|
|
local tiny = require "tiny"
|
2015-03-29 03:19:22 +00:00
|
|
|
|
|
|
|
-- Taken from answer at http://stackoverflow.com/questions/640642/how-do-you-copy-a-lua-table-by-value
|
|
|
|
local function deep_copy(o, seen)
|
|
|
|
seen = seen or {}
|
|
|
|
if o == nil then return nil end
|
|
|
|
if seen[o] then return seen[o] end
|
|
|
|
|
|
|
|
local no
|
|
|
|
if type(o) == 'table' then
|
|
|
|
no = {}
|
|
|
|
seen[o] = no
|
|
|
|
|
|
|
|
for k, v in next, o, nil do
|
|
|
|
no[deep_copy(k, seen)] = deep_copy(v, seen)
|
|
|
|
end
|
|
|
|
setmetatable(no, deep_copy(getmetatable(o), seen))
|
|
|
|
else -- number, string, boolean, etc
|
|
|
|
no = o
|
|
|
|
end
|
|
|
|
return no
|
|
|
|
end
|
|
|
|
|
|
|
|
local entityTemplate1 = {
|
|
|
|
xform = {x = 0, y = 0},
|
|
|
|
vel = {x = 1, y = 2},
|
|
|
|
name = "E1",
|
|
|
|
size = 11,
|
|
|
|
description = "It goes to 11.",
|
|
|
|
spinalTap = true
|
|
|
|
}
|
|
|
|
|
|
|
|
local entityTemplate2 = {
|
|
|
|
xform = {x = 2, y = 2},
|
|
|
|
vel = {x = -1, y = 0},
|
|
|
|
name = "E2",
|
|
|
|
size = 10,
|
2015-03-29 09:07:39 +00:00
|
|
|
description = "It does not go to 11.",
|
|
|
|
onlyTen = true
|
2015-03-29 03:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
local entityTemplate3 = {
|
|
|
|
xform = {x = 4, y = 5},
|
|
|
|
vel = {x = 0, y = 3},
|
|
|
|
name = "E3",
|
|
|
|
size = 8,
|
2015-03-29 09:07:39 +00:00
|
|
|
description = "The smallest entity.",
|
|
|
|
littleMan = true
|
2015-03-29 03:19:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 07:50:42 +00:00
|
|
|
describe('tiny-ecs:', function()
|
2015-03-29 03:19:22 +00:00
|
|
|
|
2015-03-29 09:07:39 +00:00
|
|
|
describe('Filters:', function()
|
2015-03-29 03:19:22 +00:00
|
|
|
|
|
|
|
local entity1, entity2, entity3
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
entity1 = deep_copy(entityTemplate1)
|
|
|
|
entity2 = deep_copy(entityTemplate2)
|
|
|
|
entity3 = deep_copy(entityTemplate3)
|
|
|
|
end)
|
|
|
|
|
2015-03-29 09:07:39 +00:00
|
|
|
it("Default Filters", function()
|
|
|
|
|
|
|
|
local ftap = tiny.requireAll("spinalTap")
|
|
|
|
local fvel = tiny.requireAll("vel")
|
|
|
|
local fxform = tiny.requireAll("xform")
|
|
|
|
local fall = tiny.requireOne("spinalTap", "onlyTen", "littleMan")
|
2015-03-29 03:19:22 +00:00
|
|
|
|
2015-03-29 09:07:39 +00:00
|
|
|
assert.truthy(fall(entity1))
|
|
|
|
assert.truthy(ftap(entity1))
|
|
|
|
assert.falsy(ftap(entity2))
|
|
|
|
assert.truthy(fxform(entity1))
|
|
|
|
assert.truthy(fxform(entity2))
|
2015-03-29 03:19:22 +00:00
|
|
|
|
2015-03-29 09:07:39 +00:00
|
|
|
assert.truthy(fall(entity1))
|
|
|
|
assert.truthy(fall(entity2))
|
|
|
|
assert.truthy(fall(entity3))
|
2015-03-29 03:19:22 +00:00
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
describe('World:', function()
|
|
|
|
|
|
|
|
local world, entity1, entity2, entity3
|
|
|
|
|
2015-03-29 09:07:39 +00:00
|
|
|
local moveSystem = tiny.processingSystem(
|
|
|
|
tiny.requireAll("xform", "vel"),
|
2015-03-29 03:19:22 +00:00
|
|
|
function(e, dt)
|
|
|
|
local xform = e.xform
|
|
|
|
local vel = e.vel
|
|
|
|
local x, y = xform.x, xform.y
|
|
|
|
local xvel, yvel = vel.x, vel.y
|
|
|
|
xform.x, xform.y = x + xvel * dt, y + yvel * dt
|
2015-03-29 09:07:39 +00:00
|
|
|
end
|
2015-03-29 03:19:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
local timePassed = 0
|
2015-03-29 12:19:31 +00:00
|
|
|
local oneTimeSystem = tiny.system(
|
2015-03-29 03:19:22 +00:00
|
|
|
function(dt)
|
|
|
|
timePassed = timePassed + dt
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
entity1 = deep_copy(entityTemplate1)
|
|
|
|
entity2 = deep_copy(entityTemplate2)
|
|
|
|
entity3 = deep_copy(entityTemplate3)
|
2015-03-29 12:19:31 +00:00
|
|
|
world = tiny.world(moveSystem, oneTimeSystem, entity1, entity2, entity3)
|
2015-03-29 03:19:22 +00:00
|
|
|
timePassed = 0
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("Create World", function()
|
|
|
|
assert.equals(world.entityCount, 3)
|
|
|
|
assert.equals(world.systemCount, 2)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("Run simple simulation", function()
|
|
|
|
world:update(1)
|
|
|
|
assert.equals(timePassed, 1)
|
|
|
|
assert.equals(entity1.xform.x, 1)
|
|
|
|
assert.equals(entity1.xform.y, 2)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("Remove Entities", function()
|
|
|
|
world:remove(entity1, entity2)
|
|
|
|
world:update(1)
|
|
|
|
assert.equals(timePassed, 1)
|
|
|
|
assert.equals(entity1.xform.x, entityTemplate1.xform.x)
|
|
|
|
assert.equals(entity2.xform.x, entityTemplate2.xform.x)
|
|
|
|
assert.equals(entity3.xform.y, 8)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("Remove Systems", function()
|
|
|
|
world:remove(oneTimeSystem, moveSystem)
|
|
|
|
world:update(1)
|
|
|
|
assert.equals(timePassed, 0)
|
|
|
|
assert.equals(entity1.xform.x, entityTemplate1.xform.x)
|
|
|
|
end)
|
2015-03-30 07:22:23 +00:00
|
|
|
|
|
|
|
it("Disable and Enable Systems", function()
|
|
|
|
world:setSystemActive(moveSystem, false)
|
|
|
|
world:setSystemActive(oneTimeSystem, false)
|
|
|
|
world:update(1)
|
|
|
|
assert.equals(timePassed, 0)
|
|
|
|
assert.equals(entity1.xform.x, entityTemplate1.xform.x)
|
|
|
|
world:setSystemActive(moveSystem, true)
|
|
|
|
world:setSystemActive(oneTimeSystem, true)
|
|
|
|
world:update(1)
|
|
|
|
assert.equals(timePassed, 1)
|
|
|
|
assert.are_not.equal(entity1.xform.x, entityTemplate1.xform.x)
|
|
|
|
end)
|
|
|
|
|
2015-03-29 03:19:22 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|