Make init logs nicer

This commit is contained in:
EvilFactory
2022-10-30 16:34:01 -03:00
parent e7d98dc887
commit ba1157b07d
4 changed files with 26 additions and 28 deletions

View File

@@ -20,8 +20,11 @@ local function RunFolder(folder, rootFolder, package)
local s = search[i]:gsub("\\", "/")
if EndsWith(s, ".lua") then
print(string.format("%s: Executing %s", package.Name, GetFileName(s)))
local time = os.clock()
local ok, result = pcall(ExecuteProtected, s, rootFolder)
local diff = os.clock() - time
print(string.format(" - %s (Took %.5fms)", GetFileName(s), diff))
if not ok then
printerror(result)
end
@@ -36,8 +39,7 @@ local function AssertTypes(expectedTypes, ...)
#args == #expectedTypes,
string.format(
"Assertion failed: incorrect number of args\n\texpected = %s\n\tgot = %s",
#expectedTypes,
#args
#expectedTypes, #args
)
)
for i = 1, #args do
@@ -47,9 +49,7 @@ local function AssertTypes(expectedTypes, ...)
type(arg) == expectedType,
string.format(
"Assertion failed: incorrect argument type (arg #%d)\n\texpected = %s\n\tgot = %s",
i,
expectedType,
type(arg)
i, expectedType, type(arg)
)
)
end
@@ -59,30 +59,21 @@ local function ExecutionQueue()
local queue = {}
local function processQueueFIFO()
while queue[1] ~= nil do
RunFolder(
table.unpack(
table.remove(
queue,
1
)
)
)
local folder, rootFolder, package = table.unpack(table.remove(queue, 1))
print(string.format("%s %s", package.Name, package.ModVersion))
RunFolder(folder, rootFolder, package)
end
end
local function queueExecutionFIFO(...)
AssertTypes(
{ 'string', 'string', 'userdata' },
...
)
table.insert(
queue,
table.pack(...)
)
AssertTypes({ 'string', 'string', 'userdata' }, ...)
table.insert(queue, table.pack(...))
end
return queueExecutionFIFO, processQueueFIFO
end
local QueueAutorun, ProcessAutorun = ExecutionQueue()
local QueueAutorun, ProcessAutorun = ExecutionQueue()
local QueueForcedAutorun, ProcessForcedAutorun = ExecutionQueue()
local function ProcessPackages(packages, fn)
@@ -154,8 +145,8 @@ setmodulepaths = nil
ProcessAutorun()
ProcessForcedAutorun()
Hook.Add("stop", "luaSetup.stop", function ()
Hook.Add("stop", "luaSetup.stop", function()
print("Stopping Lua...")
end)
Hook.Call("loaded")
Hook.Call("loaded")

View File

@@ -52,12 +52,12 @@ namespace Barotrauma
{
if (rtValue == RunType.Standard && isEnabled)
{
LuaCsSetup.PrintCsMessage($"Standard run C# of {cp.Name}");
LuaCsSetup.PrintCsMessage($"Added {cp.Name} {cp.ModVersion} to Cs compilation. (Standard)");
return true;
}
else if (rtValue == RunType.Forced)
{
LuaCsSetup.PrintCsMessage($"Forced run C# of {cp.Name}");
LuaCsSetup.PrintCsMessage($"Added {cp.Name} {cp.ModVersion} to Cs compilation. (Forced)");
return true;
}
else if (rtValue == RunType.None)
@@ -71,7 +71,7 @@ namespace Barotrauma
if (isEnabled)
{
LuaCsSetup.PrintCsMessage($"Assumed run C# of {cp.Name}");
LuaCsSetup.PrintCsMessage($"Added {cp.Name} {cp.ModVersion} to Cs compilation. (Assumed)");
return true;
}
else

View File

@@ -124,7 +124,9 @@ namespace Barotrauma
GameMain.Server.SendDirectChatMessage(ChatMessage.Create("", subStr, ChatMessageType.Console, null, textColor: Color.MediumPurple), c);
}
#if !DEBUG
GameServer.Log(prefix + subStr, ServerLog.MessageType.ServerMessage);
#endif
}
#endif
}

View File

@@ -8,6 +8,7 @@ using System.Runtime.CompilerServices;
using System.Linq;
using System.Threading;
using LuaCsCompatPatchFunc = Barotrauma.LuaCsPatch;
using System.Diagnostics;
[assembly: InternalsVisibleTo(Barotrauma.CsScriptBase.CsScriptAssembly, AllInternalsVisible = true)]
[assembly: InternalsVisibleTo(Barotrauma.CsScriptBase.CsOneTimeScriptAssembly, AllInternalsVisible = true)]
@@ -346,6 +347,8 @@ namespace Barotrauma
{
try
{
Stopwatch compilationTime = new Stopwatch();
compilationTime.Start();
var modTypes = CsScriptLoader.Compile();
modTypes.ForEach(t =>
{
@@ -358,6 +361,8 @@ namespace Barotrauma
HandleException(ex, LuaCsMessageOrigin.CSharpMod);
}
});
compilationTime.Stop();
PrintCsMessage($"Took {compilationTime.ElapsedMilliseconds}ms to compile and run Cs Scripts.");
}
catch (Exception ex)
{