From a2ae7aae8357c8c2684d85fd58b0c5a0563ebab9 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Tue, 9 May 2023 11:31:17 -0500 Subject: refactor: split ecs systems into multiple files --- honey/ecs/script.lua | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 honey/ecs/script.lua (limited to 'honey/ecs/script.lua') diff --git a/honey/ecs/script.lua b/honey/ecs/script.lua new file mode 100644 index 0000000..9ae7d72 --- /dev/null +++ b/honey/ecs/script.lua @@ -0,0 +1,44 @@ +local module = {} +setmetatable(module, {__index=_G}) +setfenv(1, module) + + +-- helper function for retrieving script functions +getFunction = function(script) + local f = require(script.script) + if script.func then + return f[script.func] + else + return f + end +end + + +--===== dispatch messages to handlers =====-- + +dispatch = function(entities, msg, data) + local query = entities:queryComponent(msg) + for id, handler in pairs(query) do + local f = getFunction(handler) + f(entities, id, data) + end +end + +--===== script system =====-- + +system = function(params) + return { + db=params.db, + update=function(self, dt) + local entities = self.db:queryComponent("script") + for id, script in pairs(entities) do + local f = getFunction(script) + f(self.db, id, dt) + end + end + } +end + + + +return module -- cgit v1.2.1