mirror of
https://github.com/kepler155c/opus
synced 2025-01-11 16:20:26 +00:00
mirror to monitor
This commit is contained in:
parent
430ab7d910
commit
60487d951d
@ -1,84 +1,25 @@
|
|||||||
require = requireInjector(getfenv(1))
|
require = requireInjector(getfenv(1))
|
||||||
local Socket = require('socket')
|
|
||||||
local Terminal = require('terminal')
|
local Terminal = require('terminal')
|
||||||
local Logger = require('logger')
|
|
||||||
local process = require('process')
|
local process = require('process')
|
||||||
|
|
||||||
Logger.setScreenLogging()
|
|
||||||
|
|
||||||
local remoteId
|
|
||||||
local args = { ... }
|
local args = { ... }
|
||||||
if #args == 1 then
|
local mon = device[table.remove(args, 1) or 'monitor']
|
||||||
remoteId = tonumber(args[1])
|
if not mon then
|
||||||
else
|
error('mirror: Invalid device')
|
||||||
print('Enter host ID')
|
|
||||||
remoteId = tonumber(read())
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if not remoteId then
|
mon.clear()
|
||||||
error('Syntax: telnet <host ID>')
|
mon.setTextScale(.5)
|
||||||
|
mon.setCursorPos(1, 1)
|
||||||
|
|
||||||
|
local oterm = Terminal.copy(term.current())
|
||||||
|
Terminal.mirror(term.current(), mon)
|
||||||
|
|
||||||
|
term.current().getSize = function() return mon.getSize() end
|
||||||
|
|
||||||
|
if #args > 0 then
|
||||||
|
shell.run(unpack(args))
|
||||||
|
Terminal.copy(oterm, term.current())
|
||||||
|
|
||||||
|
mon.setCursorBlink(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
print('connecting...')
|
|
||||||
local socket
|
|
||||||
|
|
||||||
for i = 1,3 do
|
|
||||||
socket = Socket.connect(remoteId, 5901)
|
|
||||||
if socket then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
os.sleep(3)
|
|
||||||
end
|
|
||||||
|
|
||||||
if not socket then
|
|
||||||
error('Unable to connect to ' .. remoteId .. ' on port 5901')
|
|
||||||
end
|
|
||||||
|
|
||||||
print('connected')
|
|
||||||
|
|
||||||
local function wrapTerm(socket)
|
|
||||||
local methods = { 'blit', 'clear', 'clearLine', 'setCursorPos', 'write',
|
|
||||||
'setTextColor', 'setTextColour', 'setBackgroundColor',
|
|
||||||
'setBackgroundColour', 'scroll', 'setCursorBlink', }
|
|
||||||
|
|
||||||
socket.term = multishell.term
|
|
||||||
socket.oldTerm = Util.shallowCopy(socket.term)
|
|
||||||
|
|
||||||
for _,k in pairs(methods) do
|
|
||||||
socket.term[k] = function(...)
|
|
||||||
if not socket.queue then
|
|
||||||
socket.queue = { }
|
|
||||||
os.queueEvent('mirror_flush')
|
|
||||||
end
|
|
||||||
table.insert(socket.queue, {
|
|
||||||
f = k,
|
|
||||||
args = { ... },
|
|
||||||
})
|
|
||||||
socket.oldTerm[k](...)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
wrapTerm(socket)
|
|
||||||
|
|
||||||
os.queueEvent('term_resize')
|
|
||||||
|
|
||||||
while true do
|
|
||||||
local e = process:pullEvent('mirror_flush')
|
|
||||||
if e == 'terminate' then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
if not socket.connected then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
if socket.queue then
|
|
||||||
socket:write(socket.queue)
|
|
||||||
socket.queue = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
for k,v in pairs(socket.oldTerm) do
|
|
||||||
socket.term[k] = v
|
|
||||||
end
|
|
||||||
|
|
||||||
socket:close()
|
|
||||||
|
84
apps/mirrorClient.lua
Normal file
84
apps/mirrorClient.lua
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
require = requireInjector(getfenv(1))
|
||||||
|
local Socket = require('socket')
|
||||||
|
local Terminal = require('terminal')
|
||||||
|
local Logger = require('logger')
|
||||||
|
local process = require('process')
|
||||||
|
|
||||||
|
Logger.setScreenLogging()
|
||||||
|
|
||||||
|
local remoteId
|
||||||
|
local args = { ... }
|
||||||
|
if #args == 1 then
|
||||||
|
remoteId = tonumber(args[1])
|
||||||
|
else
|
||||||
|
print('Enter host ID')
|
||||||
|
remoteId = tonumber(read())
|
||||||
|
end
|
||||||
|
|
||||||
|
if not remoteId then
|
||||||
|
error('Syntax: mirrorClient <host ID>')
|
||||||
|
end
|
||||||
|
|
||||||
|
print('connecting...')
|
||||||
|
local socket
|
||||||
|
|
||||||
|
for i = 1,3 do
|
||||||
|
socket = Socket.connect(remoteId, 5901)
|
||||||
|
if socket then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
os.sleep(3)
|
||||||
|
end
|
||||||
|
|
||||||
|
if not socket then
|
||||||
|
error('Unable to connect to ' .. remoteId .. ' on port 5901')
|
||||||
|
end
|
||||||
|
|
||||||
|
print('connected')
|
||||||
|
|
||||||
|
local function wrapTerm(socket)
|
||||||
|
local methods = { 'blit', 'clear', 'clearLine', 'setCursorPos', 'write',
|
||||||
|
'setTextColor', 'setTextColour', 'setBackgroundColor',
|
||||||
|
'setBackgroundColour', 'scroll', 'setCursorBlink', }
|
||||||
|
|
||||||
|
socket.term = multishell.term
|
||||||
|
socket.oldTerm = Util.shallowCopy(socket.term)
|
||||||
|
|
||||||
|
for _,k in pairs(methods) do
|
||||||
|
socket.term[k] = function(...)
|
||||||
|
if not socket.queue then
|
||||||
|
socket.queue = { }
|
||||||
|
os.queueEvent('mirror_flush')
|
||||||
|
end
|
||||||
|
table.insert(socket.queue, {
|
||||||
|
f = k,
|
||||||
|
args = { ... },
|
||||||
|
})
|
||||||
|
socket.oldTerm[k](...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
wrapTerm(socket)
|
||||||
|
|
||||||
|
os.queueEvent('term_resize')
|
||||||
|
|
||||||
|
while true do
|
||||||
|
local e = process:pullEvent('mirror_flush')
|
||||||
|
if e == 'terminate' then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
if not socket.connected then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
if socket.queue then
|
||||||
|
socket:write(socket.queue)
|
||||||
|
socket.queue = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for k,v in pairs(socket.oldTerm) do
|
||||||
|
socket.term[k] = v
|
||||||
|
end
|
||||||
|
|
||||||
|
socket:close()
|
@ -1,7 +1,7 @@
|
|||||||
local Logger = require('logger')
|
local Logger = require('logger')
|
||||||
|
|
||||||
local socketClass = { }
|
local socketClass = { }
|
||||||
local trustList
|
local trustList = Util.readTable('.known_hosts')
|
||||||
|
|
||||||
function socketClass:read(timeout)
|
function socketClass:read(timeout)
|
||||||
|
|
||||||
@ -218,6 +218,4 @@ function Socket.server(port, keepAlive)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
trustList = Util.readTable('.known_hosts')
|
|
||||||
|
|
||||||
return Socket
|
return Socket
|
||||||
|
@ -84,9 +84,7 @@ function Terminal.toGrayscale(ct)
|
|||||||
for _,v in pairs(methods) do
|
for _,v in pairs(methods) do
|
||||||
local fn = ct[v]
|
local fn = ct[v]
|
||||||
ct[v] = function(c)
|
ct[v] = function(c)
|
||||||
if scolors[c] then
|
fn(scolors[c])
|
||||||
fn(scolors[c])
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -107,9 +105,7 @@ function Terminal.toGrayscale(ct)
|
|||||||
|
|
||||||
local function translate(s)
|
local function translate(s)
|
||||||
if s then
|
if s then
|
||||||
for k,v in pairs(bcolors) do
|
s = s:gsub("%d+", bcolors)
|
||||||
s = s:gsub(k, v)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
return s
|
return s
|
||||||
end
|
end
|
||||||
@ -132,14 +128,14 @@ function Terminal.getNullTerm(ct)
|
|||||||
return nt
|
return nt
|
||||||
end
|
end
|
||||||
|
|
||||||
function Terminal.copy(ot)
|
function Terminal.copy(it, ot)
|
||||||
local ct = { }
|
ot = ot or { }
|
||||||
for k,v in pairs(ot) do
|
for k,v in pairs(it) do
|
||||||
if type(v) == 'function' then
|
if type(v) == 'function' then
|
||||||
ct[k] = v
|
ot[k] = v
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return ct
|
return ot
|
||||||
end
|
end
|
||||||
|
|
||||||
function Terminal.mirror(ct, dt)
|
function Terminal.mirror(ct, dt)
|
||||||
|
@ -130,6 +130,7 @@ local function sendInfo()
|
|||||||
info.point = turtle.point
|
info.point = turtle.point
|
||||||
info.inventory = turtle.getInventory()
|
info.inventory = turtle.getInventory()
|
||||||
info.coordSystem = turtle.getState().coordSystem
|
info.coordSystem = turtle.getState().coordSystem
|
||||||
|
info.slotIndex = turtle.getSelectedSlot()
|
||||||
end
|
end
|
||||||
device.wireless_modem.transmit(999, os.getComputerID(), info)
|
device.wireless_modem.transmit(999, os.getComputerID(), info)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user