0

我遇到了一个问题,我可以在 lua 的命令行版本中执行每个函数,但是,当我运行程序时,它不会抛出任何错误,它只是结束。我不知道如何诊断这个,但我有尝试为不同的事情抛出几次错误,它会出错并打印错误。

power = peripheral.wrap("bottom")
mon = peripheral.wrap("top")

x,y = mon.getSize()

clearTerm = function()
  term.clear()
  term.setCursorPos(1,1)
end

clearBoth = function()
  clearMon()
  clearTerm()
end

intLen = function(bar)
  tab = tostring(bar)
  tab = string.len(tab)
  return tab
end

checkPower = function()
  total = power.getMaxEnergyStored()
  local til = intLen(total)
  local yy = math.floor(y/2)
  local tol = math.floor(x-til)
  mon.setCursorPos(yy+0,tol/2)
  for z=1,til do mon.write("-") end
  mon.setCursorPos(yy-1,tol/2)
  mon.write(total)
  while true do
    current = power.getEnergyStored()
    local cil = intLen(current)
    local col = math.floor(x-cil)
    mon.setCursorPos(yy+1,col/2)
    mon.write(current)
    sleep(1)
  end
end

我也会在此处留下完整程序的 pastebin 链接。

4

1 回答 1

0

首先,您可以在代码中添加一些输出。只需添加类似的东西

print "1" -- debug output
...
print "2" -- debug output
...
-- don't forget to remove these after you're done debugging!

到你的代码,看看你在运行程序时看到了多少,这样你就可以缩小程序崩溃的时间。

另外,我找不到函数 clearMon() 的定义位置,这可能是问题的根源,还是在其他地方定义?

于 2016-03-14T12:51:56.627 回答