mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-09 03:58:08 +11:00
37 lines
1.3 KiB
Lua
37 lines
1.3 KiB
Lua
|
-- This is released into the public domain.
|
||
|
-- No warranty is provided, implied or otherwise.
|
||
|
|
||
|
-- Status Screen --
|
||
|
local target = ...
|
||
|
local u = require("libs.frw")
|
||
|
local instSize = #u.read(target)
|
||
|
|
||
|
local status = ""
|
||
|
local statusDetail = ""
|
||
|
local blinkI = ""
|
||
|
if instSize > 65536 then
|
||
|
blinkI = "5;31;"
|
||
|
status = " DO NOT SHIP "
|
||
|
statusDetail = "The installer is too big to ship safely.\nIt's possible it may crash on Tier 1 systems.\nUpgrade the compression system or remove existing code."
|
||
|
elseif instSize > 64000 then
|
||
|
blinkI = "33;"
|
||
|
status = " Shippable * "
|
||
|
statusDetail = "The installer is getting dangerously large.\nReserve further room for bugfixes."
|
||
|
else
|
||
|
blinkI = "32;"
|
||
|
status = " All Green "
|
||
|
statusDetail = "The installer is well within budget with room for features.\nDevelop as normal."
|
||
|
end
|
||
|
io.stderr:write("\n")
|
||
|
local ctS, ctM, ctE = " \x1b[1;" .. blinkI .. "7m", "\x1b[0;7m", "\x1b[0m\n"
|
||
|
io.stderr:write(ctS .. " " .. ctM .. " " .. ctE)
|
||
|
io.stderr:write(ctS .. status .. ctM .. string.format(" %07i ", 65536 - instSize) .. ctE)
|
||
|
io.stderr:write(ctS .. " " .. ctM .. " " .. ctE)
|
||
|
io.stderr:write("\n")
|
||
|
io.stderr:write(statusDetail .. "\n")
|
||
|
io.stderr:write("\n")
|
||
|
io.stderr:write("Size: " .. instSize .. "\n")
|
||
|
io.stderr:write(" max. 65536\n")
|
||
|
io.stderr:write("\n")
|
||
|
|