mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 06:47:00 +00:00
添加 LeonOS 的基本实现,包括: - 核心 API 模块(colors, disk, gps, keys, multishell, parallel, rednet, redstone, settings, vector) - 命令行程序(about, alias, bg, clear, copy, delete, edit, fg, help, list, lua, mkdir, move, paint, peripherals, programs, reboot, set, shutdown, threads) - 系统启动脚本和包管理 - 文档(README.md, LICENSE) - 开发工具(devbin)和更新程序 实现功能: - 完整的线程管理系统 - 兼容 ComputerCraft 的 API 设计 - 改进的 shell 和命令补全系统 - 多标签终端支持 - 设置管理系统
399 lines
8.3 KiB
Lua
399 lines
8.3 KiB
Lua
-- New scheduler.
|
|
-- Tabs are integral to the design of this scheduler; Multishell cannot
|
|
-- be disabled.
|
|
|
|
local rc = require("rc")
|
|
local fs = require("fs")
|
|
local keys = require("keys")
|
|
local term = require("term")
|
|
local colors = require("colors")
|
|
local window = require("window")
|
|
local expect = require("cc.expect")
|
|
local copy = require("rc.copy").copy
|
|
|
|
local getfenv
|
|
if rc.lua51 then
|
|
getfenv = rc.lua51.getfenv
|
|
else
|
|
getfenv = function() return _ENV or _G end
|
|
end
|
|
|
|
local tabs = { {} }
|
|
local threads = {}
|
|
local current, wrappedNative
|
|
|
|
local focused = 1
|
|
|
|
local api = {}
|
|
|
|
function api.launchTab(x, name)
|
|
expect(1, x, "string", "function")
|
|
name = expect(2, name, "string", "nil") or tostring(x)
|
|
|
|
local newTab = {
|
|
term = window.create(wrappedNative, 1, 1, wrappedNative.getSize()),
|
|
id = #tabs + 1
|
|
}
|
|
|
|
tabs[newTab.id] = newTab
|
|
|
|
local _f = focused
|
|
focused = newTab.id
|
|
local id = (type(x) == "string" and api.load or api.spawn)(x, name)
|
|
focused = _f
|
|
|
|
return newTab.id, id
|
|
end
|
|
|
|
function api.setFocusedTab(f)
|
|
expect(1, f, "number")
|
|
if tabs[focused] then focused = f end
|
|
return not not tabs[f]
|
|
end
|
|
|
|
function api.getFocusedTab()
|
|
return focused
|
|
end
|
|
|
|
function api.getCurrentTab()
|
|
return current.tab.id
|
|
end
|
|
|
|
function api.load(file, name)
|
|
expect(1, file, "string")
|
|
name = expect(2, name, "string", "nil") or file
|
|
|
|
local env = copy(current and current.env or _ENV or _G, package.loaded)
|
|
|
|
local func, err = loadfile(file, "t", env)
|
|
if not func then
|
|
return nil, err
|
|
end
|
|
|
|
return api.spawn(func, name, tabs[focused])
|
|
end
|
|
|
|
function api.spawn(func, name, _)
|
|
expect(1, func, "function")
|
|
expect(2, name, "string")
|
|
|
|
local new = {
|
|
name = name,
|
|
coro = coroutine.create(function()
|
|
assert(xpcall(func, debug.traceback))
|
|
end),
|
|
vars = setmetatable({}, {__index = current and current.vars}),
|
|
env = getfenv(func) or _ENV or _G,
|
|
tab = _ or tabs[focused],
|
|
id = #threads + 1,
|
|
dir = current and current.dir or "/"
|
|
}
|
|
|
|
new.tab[new.id] = true
|
|
threads[new.id] = new
|
|
|
|
new.tab.name = name
|
|
|
|
return new.id
|
|
end
|
|
|
|
function api.exists(id)
|
|
expect(1, id, "number")
|
|
return not not threads[id]
|
|
end
|
|
|
|
function api.id()
|
|
return current.id
|
|
end
|
|
|
|
function api.dir()
|
|
return current.dir or "/"
|
|
end
|
|
|
|
function api.setDir(dir)
|
|
expect(1, dir, "string")
|
|
|
|
if not fs.exists(dir) then
|
|
return nil, "that directory does not exist"
|
|
|
|
elseif not fs.isDir(dir) then
|
|
return nil, "not a directory"
|
|
end
|
|
|
|
current.dir = dir
|
|
|
|
return true
|
|
end
|
|
|
|
function api.vars()
|
|
return current.vars
|
|
end
|
|
|
|
function api.getTerm()
|
|
return current and current.tab and current.tab.term or term.native()
|
|
end
|
|
|
|
function api.setTerm(new)
|
|
if tabs[focused] then
|
|
local old = tabs[focused].term
|
|
tabs[focused].term = new
|
|
return old
|
|
end
|
|
end
|
|
|
|
local w, h
|
|
local function getName(tab)
|
|
local highest = 0
|
|
|
|
for k in pairs(tab) do
|
|
if type(k) == "number" then highest = math.max(highest, k) end
|
|
end
|
|
|
|
return threads[highest] and threads[highest].name or "???"
|
|
end
|
|
|
|
function api.info()
|
|
local running = {}
|
|
for i, thread in pairs(threads) do
|
|
running[#running+1] = { id = i, name = thread.name, tab = thread.tab.id }
|
|
end
|
|
|
|
table.sort(running, function(a,b) return a.id < b.id end)
|
|
|
|
return running
|
|
end
|
|
|
|
function api.remove(id)
|
|
expect(1, id, "number", "nil")
|
|
threads[id or current.id] = nil
|
|
end
|
|
|
|
local scroll = 0
|
|
local totalNameLength = 0
|
|
local function redraw()
|
|
w, h = wrappedNative.getSize()
|
|
|
|
wrappedNative.setVisible(false)
|
|
|
|
local names = {}
|
|
totalNameLength = 0
|
|
for i=1, #tabs, 1 do
|
|
names[i] = " " .. getName(tabs[i]) .. " "
|
|
totalNameLength = totalNameLength + #names[i]
|
|
end
|
|
|
|
if #tabs > 1 then
|
|
local len = -scroll + 1
|
|
wrappedNative.setCursorPos(1, 1)
|
|
wrappedNative.setTextColor(colors.black)
|
|
wrappedNative.setBackgroundColor(colors.gray)
|
|
wrappedNative.clearLine()
|
|
|
|
for i=1, #tabs, 1 do
|
|
local tab = tabs[i]
|
|
local name = names[i]
|
|
|
|
wrappedNative.setCursorPos(len, 1)
|
|
len = len + #name
|
|
|
|
if i == focused then
|
|
wrappedNative.setTextColor(colors.yellow)
|
|
wrappedNative.setBackgroundColor(colors.black)
|
|
wrappedNative.write(name)
|
|
|
|
else
|
|
wrappedNative.setTextColor(colors.black)
|
|
wrappedNative.setBackgroundColor(colors.gray)
|
|
wrappedNative.write(name)
|
|
end
|
|
|
|
tab.term.setVisible(false)
|
|
tab.term.reposition(1, 2, w, h - 1)
|
|
end
|
|
|
|
if totalNameLength > w-2 then
|
|
wrappedNative.setTextColor(colors.black)
|
|
wrappedNative.setBackgroundColor(colors.gray)
|
|
if scroll > 0 then
|
|
wrappedNative.setCursorPos(1, 1)
|
|
wrappedNative.write("<")
|
|
end
|
|
if totalNameLength - scroll > w-1 then
|
|
wrappedNative.setCursorPos(w, 1)
|
|
wrappedNative.write(">")
|
|
end
|
|
end
|
|
|
|
tabs[focused].term.setVisible(true)
|
|
|
|
elseif #tabs > 0 then
|
|
local tab = tabs[1]
|
|
tab.term.reposition(1, 1, w, h)
|
|
tab.term.setVisible(true)
|
|
end
|
|
|
|
wrappedNative.setVisible(true)
|
|
end
|
|
|
|
local inputEvents = {
|
|
key = true,
|
|
char = true,
|
|
key_up = true,
|
|
mouse_up = true,
|
|
mouse_drag = true,
|
|
mouse_click = true,
|
|
mouse_scroll = true,
|
|
terminate = true,
|
|
}
|
|
|
|
local altIsDown
|
|
|
|
local function processEvent(event)
|
|
if inputEvents[event[1]] then
|
|
if #event > 3 then -- mouse event
|
|
|
|
if #tabs > 1 then
|
|
if event[4] == 1 then
|
|
local curX = -scroll
|
|
|
|
if event[1] == "mouse_scroll" then
|
|
scroll = math.max(0, math.min(totalNameLength-w+1,
|
|
scroll - event[2]))
|
|
return false
|
|
end
|
|
|
|
for i=1, #tabs, 1 do
|
|
local tab = tabs[i]
|
|
curX = curX + #getName(tab) + 2
|
|
|
|
if event[3] <= curX then
|
|
focused = i
|
|
redraw()
|
|
break
|
|
end
|
|
end
|
|
|
|
return false
|
|
|
|
else
|
|
event[4] = event[4] - 1
|
|
end
|
|
end
|
|
|
|
elseif event[1] == "key" then
|
|
if event[2] == keys.rightAlt then
|
|
altIsDown = event[2]
|
|
return false
|
|
|
|
elseif altIsDown then
|
|
local num = tonumber(keys.getName(event[2]))
|
|
if num then
|
|
if tabs[num] then
|
|
focused = num
|
|
redraw()
|
|
return false
|
|
end
|
|
|
|
elseif event[2] == keys.left then
|
|
focused = math.max(1, focused - 1)
|
|
redraw()
|
|
return false
|
|
|
|
elseif event[2] == keys.right then
|
|
focused = math.min(#tabs, focused + 1)
|
|
redraw()
|
|
return false
|
|
|
|
elseif event[2] == keys.up then
|
|
scroll = math.max(0, math.min(totalNameLength-w+1,
|
|
scroll + 1))
|
|
return false
|
|
|
|
elseif event[2] == keys.down then
|
|
scroll = math.max(0, math.min(totalNameLength-w+1,
|
|
scroll - 1))
|
|
return false
|
|
end
|
|
end
|
|
|
|
elseif event[1] == "key_up" then
|
|
if event[2] == keys.rightAlt then
|
|
altIsDown = false
|
|
return false
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
return true
|
|
end
|
|
|
|
local function cleanTabs()
|
|
for t=#tabs, 1, -1 do
|
|
local tab = tabs[t]
|
|
|
|
local count, removed = 0, 0
|
|
for i in pairs(tab) do
|
|
if type(i) == "number" then
|
|
count = count + 1
|
|
if not threads[i] then
|
|
removed = removed + 1
|
|
tab[i] = nil
|
|
end
|
|
end
|
|
end
|
|
|
|
if count == removed then
|
|
table.remove(tabs, t)
|
|
end
|
|
end
|
|
|
|
for i=1, #tabs, 1 do
|
|
tabs[i].id = i
|
|
end
|
|
|
|
focused = math.max(1, math.min(#tabs, focused))
|
|
end
|
|
|
|
function api.start()
|
|
api.start = nil
|
|
|
|
local _native = term.native()
|
|
wrappedNative = window.create(_native, 1, 1, _native.getSize())
|
|
api.launchTab("/rc/programs/shell.lua", "shell")
|
|
|
|
rc.pushEvent("init")
|
|
|
|
while #tabs > 0 and next(threads) do
|
|
cleanTabs()
|
|
redraw()
|
|
local event = table.pack(coroutine.yield())
|
|
|
|
if event[1] == "term_resize" then
|
|
wrappedNative.reposition(1, 1, _native.getSize())
|
|
end
|
|
|
|
if processEvent(event) then
|
|
for tid, thread in pairs(threads) do
|
|
if thread.tab == tabs[focused] or not inputEvents[event[1]] then
|
|
current = thread
|
|
local result = table.pack(coroutine.resume(thread.coro,
|
|
table.unpack(event, 1, event.n)))
|
|
|
|
if not result[1] then
|
|
io.stderr:write(result[2].."\n")
|
|
threads[tid] = nil
|
|
|
|
elseif coroutine.status(thread.coro) == "dead" then
|
|
threads[tid] = nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
rc.shutdown()
|
|
end
|
|
|
|
return api
|