mirror of
https://github.com/kepler155c/opus
synced 2024-12-28 09:30:34 +00:00
vnc auto-reconnect
This commit is contained in:
parent
10a0c3a724
commit
b3a061d39b
@ -141,8 +141,9 @@ local systemPage = UI.Page {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if turtle then
|
if turtle then
|
||||||
|
pcall(function()
|
||||||
local Home = require('turtle.home')
|
local Home = require('turtle.home')
|
||||||
|
-- TODO: dont rely on turtle.home
|
||||||
local values = { }
|
local values = { }
|
||||||
Config.load('gps', values.home and { values.home } or { })
|
Config.load('gps', values.home and { values.home } or { })
|
||||||
|
|
||||||
@ -196,6 +197,7 @@ if turtle then
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
if settings then
|
if settings then
|
||||||
|
@ -7,6 +7,7 @@ local Util = require('util')
|
|||||||
|
|
||||||
local colors = _G.colors
|
local colors = _G.colors
|
||||||
local multishell = _ENV.multishell
|
local multishell = _ENV.multishell
|
||||||
|
local os = _G.os
|
||||||
local term = _G.term
|
local term = _G.term
|
||||||
|
|
||||||
local remoteId
|
local remoteId
|
||||||
@ -26,11 +27,11 @@ if multishell then
|
|||||||
multishell.setTitle(multishell.getCurrent(), 'VNC-' .. remoteId)
|
multishell.setTitle(multishell.getCurrent(), 'VNC-' .. remoteId)
|
||||||
end
|
end
|
||||||
|
|
||||||
print('connecting...')
|
local function connect()
|
||||||
local socket, msg = Socket.connect(remoteId, 5900)
|
local socket, msg = Socket.connect(remoteId, 5900)
|
||||||
|
|
||||||
if not socket then
|
if not socket then
|
||||||
error(msg)
|
return false, msg
|
||||||
end
|
end
|
||||||
|
|
||||||
local function writeTermInfo()
|
local function writeTermInfo()
|
||||||
@ -51,10 +52,14 @@ if not ct.isColor() then
|
|||||||
Terminal.toGrayscale(ct)
|
Terminal.toGrayscale(ct)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
ct.clear()
|
||||||
|
ct.setCursorPos(1, 1)
|
||||||
|
|
||||||
Event.addRoutine(function()
|
Event.addRoutine(function()
|
||||||
while true do
|
while true do
|
||||||
local data = socket:read()
|
local data = socket:read()
|
||||||
if not data then
|
if not data then
|
||||||
|
_debug('exiting routine')
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
for _,v in ipairs(data) do
|
for _,v in ipairs(data) do
|
||||||
@ -63,9 +68,6 @@ Event.addRoutine(function()
|
|||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
ct.clear()
|
|
||||||
ct.setCursorPos(1, 1)
|
|
||||||
|
|
||||||
local filter = Util.transpose({
|
local filter = Util.transpose({
|
||||||
'char', 'paste', 'key', 'key_up',
|
'char', 'paste', 'key', 'key_up',
|
||||||
'mouse_scroll', 'mouse_click', 'mouse_drag', 'mouse_up',
|
'mouse_scroll', 'mouse_click', 'mouse_drag', 'mouse_up',
|
||||||
@ -76,10 +78,6 @@ while true do
|
|||||||
local event = e[1]
|
local event = e[1]
|
||||||
|
|
||||||
if not socket.connected then
|
if not socket.connected then
|
||||||
print()
|
|
||||||
print('Connection lost')
|
|
||||||
print('Press enter to exit')
|
|
||||||
_G.read()
|
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -95,6 +93,39 @@ while true do
|
|||||||
ct.setBackgroundColor(colors.black)
|
ct.setBackgroundColor(colors.black)
|
||||||
ct.clear()
|
ct.clear()
|
||||||
ct.setCursorPos(1, 1)
|
ct.setCursorPos(1, 1)
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false, "Connection Lost"
|
||||||
|
end
|
||||||
|
|
||||||
|
while true do
|
||||||
|
term.clear()
|
||||||
|
term.setCursorPos(1, 1)
|
||||||
|
|
||||||
|
print('connecting...')
|
||||||
|
local s, m = connect()
|
||||||
|
if s then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
|
term.setBackgroundColor(colors.black)
|
||||||
|
term.setTextColor(colors.white)
|
||||||
|
term.clear()
|
||||||
|
term.setCursorPos(1, 1)
|
||||||
|
print(m)
|
||||||
|
print('\nPress any key to exit')
|
||||||
|
print('\nRetrying in ... ')
|
||||||
|
local x, y = term.getCursorPos()
|
||||||
|
for i = 5, 1, -1 do
|
||||||
|
local timerId = os.startTimer(1)
|
||||||
|
term.setCursorPos(x, y)
|
||||||
|
term.write(i)
|
||||||
|
repeat
|
||||||
|
local e, id = os.pullEvent()
|
||||||
|
if e == 'char' or e == 'key' then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
until e == 'timer' and id == timerId
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user