1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2025-04-05 04:08:39 +11:00

Fixup Icecap somewhat, make insthead detect run-from-OpenOS, and finally finish nbox2018 (???)

In theory, ready for R2 release
This commit is contained in:
20kdc 2018-04-25 00:13:22 +01:00
parent 0c2fd021fe
commit 6f2c1e2f2f
3 changed files with 115 additions and 31 deletions

View File

@ -273,7 +273,7 @@ rootAccess.securityPolicy = function (pid, proc, perm, req)
local appAct = perm:sub(7) local appAct = perm:sub(7)
local paP = appAct:match(endAcPattern) local paP = appAct:match(endAcPattern)
if paP then if paP then
permAct = appAct:sub(1, #appAct - #paP) appAct = appAct:sub(1, #appAct - #paP)
end end
-- Prepare for success -- Prepare for success
onReg[perm] = onReg[perm] or {} onReg[perm] = onReg[perm] or {}

View File

@ -3,6 +3,11 @@
-- No warranty is provided, implied or otherwise. -- No warranty is provided, implied or otherwise.
local C, O, G, D = component, computer local C, O, G, D = component, computer
if not C then
error("Copy to init.lua on a blank disk. Thank you!")
end
local sa = C.list("screen", true)() local sa = C.list("screen", true)()
if sa then if sa then
G = C.list("gpu", true)() G = C.list("gpu", true)()

View File

@ -18,7 +18,20 @@
--10This was the story of someone cal|ABCDEFGH|F1 New --10This was the story of someone cal|ABCDEFGH|F1 New
--11led Stanley. Stanley got very cro|IJKLMNOP|F3 Load --11led Stanley. Stanley got very cro|IJKLMNOP|F3 Load
--12ss because someone else used his |QRSTUVWX|F4 Save --12ss because someone else used his |QRSTUVWX|F4 Save
--13name for a game. Stanley's silly.|YZ[\]^_`|F5 XYXZ --13name for a game. Stanley's silly.|YZ[\]^_`|TAB ST.
-- F-Key uses:
-- F1: New [Global]
-- F3: Load [Global]
-- F4: Save [Global]
-- F5: RotL [Global]
-- F6: RotR [Global]
-- F7: FileStats [None ?Selected]
-- F8: Print [Global]
-- F9: Texture [None +Selected]
-- F10: Tint [None +Selected]
-- F11:
-- F12:
-- program start -- program start
@ -41,19 +54,22 @@ local boxes = {
local redstone = false local redstone = false
local button = false local button = false
local fileLabel = "NB2018" local fileLabel = "NB2018"
local fileTooltip = nil local fileTooltip = ""
-- program -- program
local xyz = false local xyz = false
local state = false local state = false
local rotation = 0
local cx, cy, cz = 1, 1, 1 local cx, cy, cz = 1, 1, 1
local cursorBlink = false local cursorBlink = false
local selectedBox local selectedBox
local tintDigi = 0 local tintDigi = 0
local fstatSwap = false
-- minX/minY/minZ are +1 from the usual values -- minX/minY/minZ are +1 from the usual values
-- tex/rgb are defaults until edited -- tex/rgb are defaults until edited
@ -61,6 +77,21 @@ local tintDigi = 0
-- final corrections performed on submission to boxes table -- final corrections performed on submission to boxes table
local workingOnBox = nil local workingOnBox = nil
local function runField(tx, l, r)
local fieldContent = unicode.safeTextFormat(tx)
fieldContent = fmttext.pad(fieldContent, 31, false, false)
fieldContent = unicode.sub(fieldContent, math.max(1, unicode.len(fieldContent) - 30))
return l .. fieldContent .. r
end
local function actField(tx, ka, kc)
if kc == 211 or ka == 8 then
tx = unicode.sub(tx, 1, unicode.len(tx) - 1)
elseif ka >= 32 then
tx = tx .. unicode.char(ka)
end
return tx
end
local programState = "none" local programState = "none"
-- ["state"] = {lines, keydown, clipboard} -- ["state"] = {lines, keydown, clipboard}
local programStates = { local programStates = {
@ -79,10 +110,10 @@ local programStates = {
end end
local str = string.format("%02i, %02i, %02i", cx, cy, cz) local str = string.format("%02i, %02i, %02i", cx, cy, cz)
return { return {
"Nothing selected. " .. str, "No selection. " .. str,
"Enter starts a new box, while ", "Enter starts a new box, while the",
" boxes are selected by letter. ", " box's letter selects. Rotate w/ ",
"F8 prints, TAB toggles state. " " F5/F6, F7 for stats, F8 prints. "
} }
end, end,
function (ka, kc) function (ka, kc)
@ -100,6 +131,10 @@ local programStates = {
} }
programState = "point2" programState = "point2"
end end
elseif kc == 65 then
-- FStats
fstatSwap = false
programState = "fstats"
elseif kc == 67 then elseif kc == 67 then
-- Texture -- Texture
if selectedBox then programState = "texture" end if selectedBox then programState = "texture" end
@ -154,7 +189,7 @@ local programStates = {
selectedBox = string.char(ch) selectedBox = string.char(ch)
boxes[state][selectedBox] = workingOnBox boxes[state][selectedBox] = workingOnBox
workingOnBox = nil workingOnBox = nil
programState = "none" programState = "texture"
end end
end, end,
function (text) function (text)
@ -163,24 +198,19 @@ local programStates = {
texture = { texture = {
function (miText, mxText) function (miText, mxText)
local targetBox = boxes[state][selectedBox] local targetBox = boxes[state][selectedBox]
local fieldContent = unicode.safeTextFormat(targetBox.tex)
fieldContent = fmttext.pad(fieldContent, 30, false, false)
fieldContent = unicode.sub(fieldContent, math.max(1, unicode.len(fieldContent) - 29))
return { return {
"Texturing Box:" .. miText .. "/" .. mxText, "Texturing Box:" .. miText .. "/" .. mxText,
"Type texture ID or use clipboard", "Type texture ID or use clipboard",
"[" .. fieldContent .. "]", runField(targetBox.tex, "[", "]"),
"Enter to confirm." "Enter to confirm."
} }
end, end,
function (ka, kc) function (ka, kc)
local targetBox = boxes[state][selectedBox] local targetBox = boxes[state][selectedBox]
if ka == 127 or ka == 8 then if ka == 13 then
targetBox.tex = unicode.sub(targetBox.tex, 1, unicode.len(targetBox.tex) - 1)
elseif ka == 13 then
programState = "none" programState = "none"
elseif ka >= 32 then else
targetBox.tex = targetBox.tex .. unicode.char(ka) targetBox.tex = actField(targetBox.tex, ka, kc)
end end
end, end,
function (text) function (text)
@ -247,6 +277,40 @@ local programStates = {
end, end,
function (text) function (text)
end end
},
fstats = {
function (miText, mxText)
local aa, ab = "[", "]"
local ba, bb = " ", " "
if fstatSwap then
aa, ab = " ", " "
ba, bb = "[", "]"
end
return {
runField(fileLabel, aa, ab),
runField(fileTooltip, ba, bb),
"Redstone (F9): " .. ((redstone and "Y") or "N") .. " Button (F10): " .. ((button and "Y") or "N"),
"Enter to confirm."
}
end,
function (ka, kc)
if kc == 67 then
redstone = not redstone
elseif kc == 68 then
button = not button
elseif ka == 13 then
fstatSwap = not fstatSwap
if not fstatSwap then
programState = "none"
end
elseif fstatSwap then
fileTooltip = actField(fileTooltip, ka, kc)
else
fileLabel = actField(fileLabel, ka, kc)
end
end,
function (text)
end
} }
} }
@ -339,7 +403,19 @@ local function get3DPixel(xo, yo)
end end
local cacheX = {} local cacheX = {}
local cacheY = {} local cacheY = {}
local function rotate(x, y)
if rotation == 0 then return x, y end
x = x - 16
y = y - 16
local a = -rotation * 3.14159 / 8
local xBX, xBY = math.cos(a), math.sin(a)
local yBX, yBY = -xBY, xBX
local xo = (xBX * x) + (yBX * y)
local yo = (xBY * x) + (yBY * y)
return xo + 16, yo + 16
end
local function point3(ax, ay, az) local function point3(ax, ay, az)
ax, az = rotate(ax, az)
local k = ax .. "_" .. ay .. "_" .. az local k = ax .. "_" .. ay .. "_" .. az
if cacheX[k] then return cacheX[k], cacheY[k] end if cacheX[k] then return cacheX[k], cacheY[k] end
local ox = 16 local ox = 16
@ -428,12 +504,13 @@ local function render(line, doBraille)
if not state then if not state then
sts = "OFF" sts = "OFF"
end end
local actA = "--*F5" -- Bit odd, but makes sense in the end
local actB = "--*F5" local actA = "-----"
local actB = "-----"
if not xyz then if not xyz then
actA = "ACT.-" actA = "Space"
else else
actB = "ACT.-" actB = "Space"
end end
window.span(1, line, "-XY Ortho-" .. actA .. "-+-XZ Ortho-" .. actB .. "-+-ST:" .. sts .. "-+-FILE:-", 0, 0xFFFFFF) window.span(1, line, "-XY Ortho-" .. actA .. "-+-XZ Ortho-" .. actB .. "-+-ST:" .. sts .. "-+-FILE:-", 0, 0xFFFFFF)
elseif line > 9 then elseif line > 9 then
@ -466,7 +543,7 @@ local function render(line, doBraille)
"| |F1 New ", "| |F1 New ",
"| |F3 Load", "| |F3 Load",
"| |F4 Save", "| |F4 Save",
"| |F5 XYXZ" "| |TAB ST."
} }
for i = 1, 4 do for i = 1, 4 do
text[i] = fmttext.pad(text[i], 33, true, true) .. menu[i] text[i] = fmttext.pad(text[i], 33, true, true) .. menu[i]
@ -493,6 +570,7 @@ end
local function reset() local function reset()
boxes = {[true] = {}, [false] = {}} boxes = {[true] = {}, [false] = {}}
state = false state = false
rotation = 0
selectedBox = nil selectedBox = nil
xyz = false xyz = false
cx, cy, cz = 1, 1, 1 cx, cy, cz = 1, 1, 1
@ -615,7 +693,7 @@ while true do
reset() reset()
refresh() refresh()
elseif d == 61 then elseif d == 61 then
-- Load -- F3 Load
local handle = icecap.showFileDialogAsync(false) local handle = icecap.showFileDialogAsync(false)
if waitForDialog(handle) then return end if waitForDialog(handle) then return end
if lastFile then if lastFile then
@ -626,7 +704,7 @@ while true do
lastFile.close() lastFile.close()
end end
elseif d == 62 then elseif d == 62 then
-- Save -- F4 Save
local handle = icecap.showFileDialogAsync(true) local handle = icecap.showFileDialogAsync(true)
if waitForDialog(handle) then return end if waitForDialog(handle) then return end
if lastFile then if lastFile then
@ -634,16 +712,13 @@ while true do
lastFile.close() lastFile.close()
end end
elseif d == 63 then elseif d == 63 then
xyz = not xyz rotation = rotation + 1
refresh() refresh()
elseif d == 64 then elseif d == 64 then
redstone = not redstone rotation = rotation - 1
refresh()
elseif d == 65 then
button = not button
refresh() refresh()
elseif d == 66 then elseif d == 66 then
-- Print -- F8 Print
neo.executeAsync("app-nprt2018", makeObj()) neo.executeAsync("app-nprt2018", makeObj())
elseif c == 9 then elseif c == 9 then
state = not state state = not state
@ -672,8 +747,12 @@ while true do
end end
refresh(true) refresh(true)
else else
if c == 32 then
xyz = not xyz
end
local oldSB = selectedBox
programStates[programState][2](c, d) programStates[programState][2](c, d)
refresh() refresh((c ~= 13) and (oldSB == selectedBox))
end end
end end
end end