mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Adds ServerOptions, improve GameControllerOptions, fix engine integration tests * Do component auto-registration in engine integration tests by default * Fix integration tests on content, register components ONLY if not contentstarted or options are null * Add integration test for engine integration tests working correctly * Move cvar overrides out of content and into engine.
60 lines
1.9 KiB
C#
60 lines
1.9 KiB
C#
using System.Runtime.InteropServices;
|
|
using Robust.Shared.ContentPack;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Shared
|
|
{
|
|
internal static class ProgramShared
|
|
{
|
|
#if !FULL_RELEASE
|
|
private static string FindContentRootDir(bool contentStart)
|
|
{
|
|
return contentStart ? "../../" : "../../../";
|
|
}
|
|
|
|
private static string FindEngineRootDir(bool contentStart)
|
|
{
|
|
return contentStart ? "../../RobustToolbox/" : "../../";
|
|
}
|
|
#endif
|
|
|
|
internal static void PrintRuntimeInfo(ISawmill sawmill)
|
|
{
|
|
sawmill.Debug($"Runtime: {RuntimeInformation.FrameworkDescription} {RuntimeInformation.RuntimeIdentifier}");
|
|
sawmill.Debug($"OS: {RuntimeInformation.OSDescription} {RuntimeInformation.OSArchitecture}");
|
|
}
|
|
|
|
internal static void DoMounts(IResourceManagerInternal res, MountOptions? options, string contentBuildDir, ResourcePath assembliesPath, bool loadContentResources = true,
|
|
bool loader = false, bool contentStart = false)
|
|
{
|
|
#if FULL_RELEASE
|
|
if (!loader)
|
|
res.MountContentDirectory(@"Resources/");
|
|
#else
|
|
res.MountContentDirectory($@"{FindEngineRootDir(contentStart)}Resources/");
|
|
|
|
if (loadContentResources)
|
|
{
|
|
var contentRootDir = FindContentRootDir(contentStart);
|
|
res.MountContentDirectory($@"{contentRootDir}bin/{contentBuildDir}/", assembliesPath);
|
|
res.MountContentDirectory($@"{contentRootDir}Resources/");
|
|
}
|
|
#endif
|
|
|
|
if (options == null)
|
|
return;
|
|
|
|
foreach (var diskPath in options.DirMounts)
|
|
{
|
|
res.MountContentDirectory(diskPath);
|
|
}
|
|
|
|
foreach (var diskPath in options.ZipMounts)
|
|
{
|
|
res.MountContentPack(diskPath);
|
|
}
|
|
}
|
|
}
|
|
}
|