e9cf9789b7
I got asked to do the ANSI escape codes for color because Wahlolly couldn't find a way to get them to work. This involved making some kind of TTY, and let me be clear, i didn't know it would be so tedious to develop one. This implementation has support for dark and bright colors by using a color palette. There isn't 8-bit and 24-bit color yet, nor is there a shell parser, so please wait a bit more when it gets implemented.
23 lines
486 B
Lua
23 lines
486 B
Lua
function table.find(table, item)
|
|
for k, v in pairs(table) do
|
|
if v == item then
|
|
return(v)
|
|
end
|
|
end
|
|
end
|
|
|
|
function table.copy(orig)
|
|
local orig_type = type(orig)
|
|
local copy
|
|
if orig_type == 'table' then
|
|
copy = {}
|
|
for orig_key, orig_value in next, orig, nil do
|
|
copy[table.copy(orig_key)] = table.copy(orig_value)
|
|
end
|
|
setmetatable(copy, table.copy(getmetatable(orig)))
|
|
else -- number, string, boolean, etc
|
|
copy = orig
|
|
end
|
|
return copy
|
|
end
|