我能够将函数存储到表中。但现在我不知道如何调用它们。决赛桌将有大约 100 次调用,所以如果可能的话,我想像在 foreach 循环中一样调用它们。谢谢!
以下是该表的定义方式:
game_level_hints = game_level_hints or {}
game_level_hints.levels = {}
game_level_hints.levels["level0"] = function()
return
{
[on_scene("scene0")] =
{
talk("hint0"),
talk("hint1"),
talk("hint2")
},
[on_scene("scene1")] =
{
talk("hint0"),
talk("hint1"),
talk("hint2")
}
}
end
Aa和函数定义:
function on_scene(sceneId)
-- some code
return sceneId
end
function talk(areaId)
-- some code
return areaId
end
编辑:
我修改了函数,所以它们会有更多的上下文。基本上,它们现在返回字符串。我希望发生的是,在调用函数结束时,我将有一个包含所有这些字符串的表(最好是级别表)。