dcearth/nodes.lua

29 lines
556 B
Lua

--Manage the pathfinding nodes used by DEFCON.
--This is important for a mapping tool because the DEFCON client will not load a map unless
--the pathfinding nodes form a connected graph.
local t = {}
local bmp = require 'bmp'
function t.load( filename )
local nodes = { points = {}, connections = {}, img = bmp.load( filename ) }
return setmetatable( nodes, {__index = t } )
end
function t.isConnected( nodes )
end
function t.draw( nodes )
end
function t.drawConnections( nodes )
end
function t.save( nodes, filename )
end
return t