1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-09-28 06:31:07 +10:00
OC-KittenOS/apps/lineclip.lua
gamemanj 2ae3f9a93a Initial commit
Currently eeprog pirate-speak language is unsupported, but... oh well.
2016-10-23 13:27:16 +01:00

39 lines
750 B
Lua

local unicode, proc = A.request("unicode", "proc")
for _, v in ipairs(proc.listApps()) do
if v[2] == "lineclip" then
if v[1] ~= proc.aid then
A.die()
return {}, 1, 1
end
end
end
local app = {}
local board = ""
function app.rpc(srcP, srcD, cmd, txt)
if type(cmd) ~= "string" then
return ""
end
if cmd == "copy" then
if type(txt) ~= "string" then
error("RPC->lineclip: bad text")
end
board = txt
A.resize(unicode.len(board), 1)
end
if cmd == "paste" then
return board
end
end
function app.get_ch(x, y)
return unicode.sub(unicode.safeTextFormat(board), x, x)
end
function app.key(ka, kc, down)
if down and ka == ("C"):byte() then
A.die()
end
return false
end
function app.update()
return true
end
return app, 8, 1