Unstable 0.17.1.0

This commit is contained in:
Markus Isberg
2022-03-17 01:25:04 +09:00
parent 3974067915
commit 6d410cc1b7
302 changed files with 5878 additions and 3317 deletions
@@ -5,6 +5,7 @@ using System;
using Barotrauma.IO;
using System.Linq;
using System.Text;
using Barotrauma.Networking;
#if LINUX
using System.Runtime.InteropServices;
#endif
@@ -26,6 +27,20 @@ namespace Barotrauma
private static extern void setLinuxEnv();
#endif
public static bool TryStartChildServerRelay(string[] commandLineArgs)
{
for (int i = 0; i < commandLineArgs.Length; i++)
{
switch (commandLineArgs[i].Trim())
{
case "-pipes":
ChildServerRelay.Start(commandLineArgs[i + 2], commandLineArgs[i + 1]);
return true;
}
}
return false;
}
/// <summary>
/// The main entry point for the application.
/// </summary>
@@ -36,6 +51,7 @@ namespace Barotrauma
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new UnhandledExceptionEventHandler(CrashHandler);
#endif
TryStartChildServerRelay(args);
#if LINUX
setLinuxEnv();
@@ -62,22 +78,49 @@ namespace Barotrauma
static GameMain Game;
private static void NotifyCrash(string reportFilePath, Exception e)
{
string errorMsg = $"{reportFilePath}||\n{e.Message} ({e.GetType().Name}) {e.StackTrace}";
if (e.InnerException != null)
{
var innerMost = e.GetInnermost();
errorMsg += $"\nInner exception: {innerMost.Message} ({innerMost.GetType().Name}) {e.StackTrace}";
}
if (errorMsg.Length > ushort.MaxValue) { errorMsg = errorMsg[..ushort.MaxValue]; }
ChildServerRelay.NotifyCrash(errorMsg);
GameMain.Server?.NotifyCrash();
}
private static void CrashHandler(object sender, UnhandledExceptionEventArgs args)
{
void swallowExceptions(Action action)
{
try
{
action();
}
catch
{
//discard exceptions and keep going
}
}
string reportFilePath = "";
try
{
Game?.Exit();
CrashDump("servercrashreport.log", (Exception)args.ExceptionObject);
GameMain.Server?.NotifyCrash();
reportFilePath = "servercrashreport.log";
CrashDump(ref reportFilePath, (Exception)args.ExceptionObject);
}
catch
{
//exception handler is broken, we have a serious problem here!!
return;
//fuck
reportFilePath = "";
}
swallowExceptions(() => NotifyCrash(reportFilePath, (Exception)args.ExceptionObject));
swallowExceptions(() => Game?.Exit());
}
static void CrashDump(string filePath, Exception exception)
static void CrashDump(ref string filePath, Exception exception)
{
try
{