btui/Lua/test.lua

36 lines
1003 B
Lua
Raw Normal View History

local btui = require("btui")
btui(function(bt)
local key = nil
local x, y = 0, 0
while key ~= "q" and key ~= "Ctrl-c" do
bt:clear()
bt:move(x, y)
2020-04-18 21:39:33 -07:00
bt:withbg(150,225,80, function()
bt:withfg(0,0,0, function()
bt:print(" Pressed: ", key, " ")
end)
end)
if key == "e" then error("ERR MESSAGE") end
2020-04-18 21:39:33 -07:00
local title = "Lua BTUI Demo"
2020-04-18 22:15:30 -07:00
bt:withattributes("bold", "underline", function()
bt:withfg(100,200,255, function()
bt:move(math.floor((bt:width()-#title)/2), 0)
bt:print(title)
end)
2020-04-18 21:39:33 -07:00
end)
local s = ("Size: (%dx%d)"):format(bt:width(), bt:height())
bt:move(bt:width()-#s, bt:height()-1)
bt:print(s)
local mouse_x, mouse_y
key, mouse_x, mouse_y = bt:getkey()
if mouse_x then x, y = mouse_x, mouse_y end
end
if key == "Ctrl-c" then
error("Interrupt received!")
end
end)