mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using Robust.Shared.Configuration;
|
|
using Robust.Shared.Network;
|
|
|
|
namespace Robust.Shared;
|
|
|
|
/// <summary>
|
|
/// Contains some preset CVar overrides applied in the engine to aid development.
|
|
/// </summary>
|
|
internal static class CVarDefaultOverrides
|
|
{
|
|
public static void OverrideClient(IConfigurationManager cfg)
|
|
{
|
|
OverrideShared(cfg);
|
|
|
|
#if TOOLS
|
|
// Profiling is currently only useful on the client, so only enable it there.
|
|
cfg.OverrideDefault(CVars.ProfEnabled, true);
|
|
#endif
|
|
}
|
|
|
|
public static void OverrideServer(IConfigurationManager cfg)
|
|
{
|
|
OverrideShared(cfg);
|
|
|
|
#if TOOLS
|
|
// Set auth to optional in case you're doing any funny development shenanigans.
|
|
cfg.OverrideDefault(CVars.AuthMode, (int) AuthMode.Optional);
|
|
#endif
|
|
}
|
|
|
|
private static void OverrideShared(IConfigurationManager cfg)
|
|
{
|
|
#if TOOLS
|
|
// Increase default profiler memory use on local builds to make it more useful.
|
|
cfg.OverrideDefault(CVars.ProfBufferSize, 65536);
|
|
cfg.OverrideDefault(CVars.ProfIndexSize, 1024);
|
|
#endif
|
|
}
|
|
}
|