Implement live_module_reload command
This commit is contained in:
parent
8314b84f69
commit
50b6cc69e1
|
@ -1,6 +1,6 @@
|
||||||
local function pcolored(text, color)
|
local function pcolored(text, color)
|
||||||
color = color or 'white'
|
color = color or 'white'
|
||||||
modules.client_terminal.addLine(text, color)
|
modules.client_terminal.addLine(tostring(text), color)
|
||||||
end
|
end
|
||||||
|
|
||||||
function draw_debug_boxes()
|
function draw_debug_boxes()
|
||||||
|
@ -19,12 +19,60 @@ function live_textures_reload()
|
||||||
g_textures.liveReload()
|
g_textures.liveReload()
|
||||||
end
|
end
|
||||||
|
|
||||||
function auto_reload_module(name)
|
function live_module_reload(name)
|
||||||
local function reloadEvent()
|
if not name then
|
||||||
reloadModule(name)
|
pcolored('ERROR: missing module name', 'red')
|
||||||
scheduleEvent(reloadEvent, 1000)
|
return
|
||||||
end
|
end
|
||||||
reloadEvent()
|
|
||||||
|
local module = g_modules.getModule(name)
|
||||||
|
if not module then
|
||||||
|
pcolored('ERROR: unable to find module ' .. name, 'red')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if not module:isReloadble() then
|
||||||
|
pcolored('ERROR: that module is not reloadable', 'red')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if not module:canReload() then
|
||||||
|
pcolored('ERROR: some other modules requires this module, cannot reload now', 'red')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local files = {}
|
||||||
|
local hasFile = false
|
||||||
|
for _,file in pairs(g_resources.listDirectoryFiles('/' .. name)) do
|
||||||
|
local filepath = '/' .. name .. '/' .. file
|
||||||
|
local time = g_resources.getFileTime(filepath)
|
||||||
|
if time > 0 then
|
||||||
|
files[filepath] = time
|
||||||
|
hasFile = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if not hasFile then
|
||||||
|
pcolored('ERROR: unable to find any file for module', 'red')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
cycleEvent(function()
|
||||||
|
for filepath,time in pairs(files) do
|
||||||
|
local newtime = g_resources.getFileTime(filepath)
|
||||||
|
if newtime > time then
|
||||||
|
pcolored('Reloading ' .. name, 'green')
|
||||||
|
modules.client_terminal.flushLines()
|
||||||
|
module:reload()
|
||||||
|
files[filepath] = newtime
|
||||||
|
|
||||||
|
if name == 'client_terminal' then
|
||||||
|
modules.client_terminal.show()
|
||||||
|
end
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end, 1000)
|
||||||
end
|
end
|
||||||
|
|
||||||
local pinging = false
|
local pinging = false
|
||||||
|
|
|
@ -8,7 +8,7 @@ local MaxHistory = 1000
|
||||||
|
|
||||||
local oldenv = getfenv(0)
|
local oldenv = getfenv(0)
|
||||||
setfenv(0, _G)
|
setfenv(0, _G)
|
||||||
commandEnv = runinsandbox('commands')
|
_G.commandEnv = runinsandbox('commands')
|
||||||
setfenv(0, oldenv)
|
setfenv(0, oldenv)
|
||||||
|
|
||||||
-- private variables
|
-- private variables
|
||||||
|
@ -26,6 +26,7 @@ local firstShown = false
|
||||||
local flushEvent
|
local flushEvent
|
||||||
local cachedLines = {}
|
local cachedLines = {}
|
||||||
local disabled = false
|
local disabled = false
|
||||||
|
local allLines = {}
|
||||||
|
|
||||||
-- private functions
|
-- private functions
|
||||||
local function navigateCommand(step)
|
local function navigateCommand(step)
|
||||||
|
@ -147,7 +148,14 @@ function init()
|
||||||
terminalBuffer.onScrollChange = function(self, value) terminalSelectText:setTextVirtualOffset(value) end
|
terminalBuffer.onScrollChange = function(self, value) terminalSelectText:setTextVirtualOffset(value) end
|
||||||
|
|
||||||
g_logger.setOnLog(onLog)
|
g_logger.setOnLog(onLog)
|
||||||
g_logger.fireOldMessages()
|
|
||||||
|
if not g_app.isRunning() then
|
||||||
|
g_logger.fireOldMessages()
|
||||||
|
elseif _G.terminalLines then
|
||||||
|
for _,line in pairs(_G.terminalLines) do
|
||||||
|
addLine(line.text, line.color)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function terminate()
|
function terminate()
|
||||||
|
@ -171,6 +179,7 @@ function terminate()
|
||||||
terminalWindow:destroy()
|
terminalWindow:destroy()
|
||||||
terminalButton:destroy()
|
terminalButton:destroy()
|
||||||
commandEnv = nil
|
commandEnv = nil
|
||||||
|
_G.terminalLines = allLines
|
||||||
end
|
end
|
||||||
|
|
||||||
function hideButton()
|
function hideButton()
|
||||||
|
@ -250,6 +259,7 @@ function flushLines()
|
||||||
if numLines > MaxLogLines then
|
if numLines > MaxLogLines then
|
||||||
local len = #terminalBuffer:getChildByIndex(1):getText()
|
local len = #terminalBuffer:getChildByIndex(1):getText()
|
||||||
terminalBuffer:getChildByIndex(1):destroy()
|
terminalBuffer:getChildByIndex(1):destroy()
|
||||||
|
table.remove(allLines, 1)
|
||||||
fulltext = string.sub(fulltext, len)
|
fulltext = string.sub(fulltext, len)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -258,12 +268,15 @@ function flushLines()
|
||||||
label:setText(line.text)
|
label:setText(line.text)
|
||||||
label:setColor(line.color)
|
label:setColor(line.color)
|
||||||
|
|
||||||
|
table.insert(allLines, {text=line.text,color=line.color})
|
||||||
|
|
||||||
fulltext = fulltext .. '\n' .. line.text
|
fulltext = fulltext .. '\n' .. line.text
|
||||||
end
|
end
|
||||||
|
|
||||||
terminalSelectText:setText(fulltext)
|
terminalSelectText:setText(fulltext)
|
||||||
|
|
||||||
cachedLines = {}
|
cachedLines = {}
|
||||||
|
removeEvent(flushEvent)
|
||||||
flushEvent = nil
|
flushEvent = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -306,7 +319,7 @@ function executeCommand(command)
|
||||||
if not func then
|
if not func then
|
||||||
local command_name = command:match('^([%w_]+)[%s]*.*')
|
local command_name = command:match('^([%w_]+)[%s]*.*')
|
||||||
if command_name then
|
if command_name then
|
||||||
local args = string.split(command:match('^[%w]+[%s]*(.*)'), ' ')
|
local args = string.split(command:match('^[%w_]+[%s]*(.*)'), ' ')
|
||||||
if commandEnv[command_name] and type(commandEnv[command_name]) == 'function' then
|
if commandEnv[command_name] and type(commandEnv[command_name]) == 'function' then
|
||||||
func = function() modules.client_terminal.commandEnv[command_name](unpack(args)) end
|
func = function() modules.client_terminal.commandEnv[command_name](unpack(args)) end
|
||||||
elseif command_name == command then
|
elseif command_name == command then
|
||||||
|
@ -329,7 +342,7 @@ function executeCommand(command)
|
||||||
local ok, ret = pcall(func)
|
local ok, ret = pcall(func)
|
||||||
if ok then
|
if ok then
|
||||||
-- if the command returned a value, print it
|
-- if the command returned a value, print it
|
||||||
if ret then print(ret) end
|
if ret then addLine(ret, 'white') end
|
||||||
else
|
else
|
||||||
addLine('ERROR: command failed: ' .. ret, 'red')
|
addLine('ERROR: command failed: ' .. ret, 'red')
|
||||||
end
|
end
|
||||||
|
@ -338,4 +351,6 @@ end
|
||||||
function clear()
|
function clear()
|
||||||
terminalBuffer:destroyChildren()
|
terminalBuffer:destroyChildren()
|
||||||
terminalSelectText:setText('')
|
terminalSelectText:setText('')
|
||||||
|
cachedLines = {}
|
||||||
|
allLines = {}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue