Compare commits
3 Commits
dd117a7ca2
...
709b7fb992
| Author | SHA1 | Date | |
|---|---|---|---|
| 709b7fb992 | |||
| 0465b2de5b | |||
| 7305789194 |
@@ -258,10 +258,10 @@ function drawConsole(y)
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function handleConsoleInput(char)
|
function handleConsoleInput(char)
|
||||||
commandBuffer = commandBuffer..char
|
commandBuffer = commandBuffer .. char
|
||||||
end
|
end
|
||||||
|
|
||||||
registerEventListener("char", handleConsoleInput)
|
registerEventListener("char", handleConsoleInput)
|
||||||
|
|
||||||
function handleConsoleKeys(key)
|
function handleConsoleKeys(key)
|
||||||
@@ -271,6 +271,7 @@ function handleConsoleKeys(key)
|
|||||||
commandBuffer = ""
|
commandBuffer = ""
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
registerEventListener("key", handleConsoleKeys)
|
registerEventListener("key", handleConsoleKeys)
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
@@ -352,10 +353,11 @@ end
|
|||||||
|
|
||||||
function drawCommandBar(w, y)
|
function drawCommandBar(w, y)
|
||||||
term.setCursorPos(1, y)
|
term.setCursorPos(1, y)
|
||||||
term.clearLine()
|
|
||||||
|
|
||||||
term.setBackgroundColor(colors.white)
|
term.setBackgroundColor(colors.white)
|
||||||
term.setTextColor(colors.black)
|
term.setTextColor(colors.gray)
|
||||||
|
|
||||||
|
term.clearLine()
|
||||||
|
|
||||||
term.write("$ ")
|
term.write("$ ")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user