尝试索引字段? (零值)

发布于 2024-10-20 15:02:50 字数 456 浏览 1 评论 0原文

我正在使用 Lua/love2d 编写一个小型 RPG 游戏引擎,我需要将文件解析为二维数组,但它不起作用,并且我收到错误...

main.lua :

local fmap = love.filesystem.read("map.txt")
map = {}
for c in fmap:gmatch(".") do
    if c == "\n" then
        y = 0
        x = x + 1
    else
        map[x][y] = c -- this won't work
        y = y + 1
    end
end

map.txt :

6777633333
6558633333
6555614133
7757711112
2111111112
2111111112
2222222222

I am writing a small RPG game engine with Lua/love2d, and I need to parse a file to a 2d array, but it don't work, and I am getting errors...

main.lua :

local fmap = love.filesystem.read("map.txt")
map = {}
for c in fmap:gmatch(".") do
    if c == "\n" then
        y = 0
        x = x + 1
    else
        map[x][y] = c -- this won't work
        y = y + 1
    end
end

map.txt :

6777633333
6558633333
6555614133
7757711112
2111111112
2111111112
2222222222

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惯饮孤独 2024-10-27 15:02:50

您不能像这样使用多维数组。请参阅矩阵和多维数组

您可以像这样转换代码:

local fmap = love.filesystem.read("map.txt")
map = {}
x = 0
y = 0
map[x] = {}
for c in fmap:gmatch(".") do
    if c == "\n" then
        y = 0
        x = x + 1
        map[x] = {}
    else
        map[x][y] = c -- this won't work
        y = y + 1
    end
end

You can't use multi-dimensional array like this. See Matrices and Multi-Dimensional Arrays

You can transform your code like this :

local fmap = love.filesystem.read("map.txt")
map = {}
x = 0
y = 0
map[x] = {}
for c in fmap:gmatch(".") do
    if c == "\n" then
        y = 0
        x = x + 1
        map[x] = {}
    else
        map[x][y] = c -- this won't work
        y = y + 1
    end
end
您的好友蓝忘机已上羡 2024-10-27 15:02:50

我知道这个问题已经得到解答,但您可能会找到我的(正在进行中)tile 教程< /a> 有用。 字符串部分正好解决您遇到的问题。

I know that this has already been answered, but you'd probably find my (in progress) tile tutorial useful. The strings section deals with exactly the issue you are having.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文