使用坐标对作为Lua表中的键

时间:2015-01-16 02:45:23

标签: lua lua-table

正如标题所说,我正在尝试使用坐标对(x,y)作为表格的键。这是我到目前为止所做的事情

local test = {_props = {}}
local mt = {}
local xMax = 5
local yMax = 5

local function coord2index(x, y)
    return ((x-1) * xMax) + y
end

mt.__index = function(s, k)
    if s._props[coord2index(k[1], k[2])] ~= nil then
        return s._props[coord2index(k[1], k[2])]
    end
end

mt.__newindex = function(s, k, v)
   s._props[coord2index(k[1], k[2])] = v 
end
mt.__call = function (t, k)
    if type(k) == "table" then print "Table" end
end

setmetatable(test, mt)

test[{1,2}] = 5
print( test[{1,2}])

这实际上是按预期工作的。我真的想知道是否有办法减少这种情况,例如test[1,2] = 5print(test[1,1])。对此没有技术上的需要,这纯粹是为了我对Lua的进一步启发。

1 个答案:

答案 0 :(得分:1)

我认为你的方法很好。您还可以使用字符串而不是数字,并在return x..';'..y函数中执行coord2index之类的操作。