37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using Content.Server.GameTicking;
|
|
using Content.Server.RoundEnd;
|
|
using Content.Server.Voting.Managers;
|
|
using Content.Shared._Sunrise.SunriseCCVars;
|
|
using Content.Shared.Voting;
|
|
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Server._Sunrise.RoundEndVote;
|
|
|
|
public sealed class RoundEndVoteSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly GameTicker _gameTicker = default!;
|
|
[Dependency] private readonly IVoteManager _voteManager = default!;
|
|
[Dependency] private readonly IConfigurationManager _cfg = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<RoundEndSystemChangedEvent>(OnRoundEndSystemChange);
|
|
}
|
|
|
|
private void OnRoundEndSystemChange(RoundEndSystemChangedEvent args)
|
|
{
|
|
if (_gameTicker.RunLevel != GameRunLevel.PreRoundLobby)
|
|
return;
|
|
|
|
if (_cfg.GetCVar(SunriseCCVars.RunMapVoteAfterRestart))
|
|
_voteManager.CreateStandardVote(null, StandardVoteType.Map);
|
|
|
|
if (_cfg.GetCVar(SunriseCCVars.RunPresetVoteAfterRestart))
|
|
_voteManager.CreateStandardVote(null, StandardVoteType.Preset);
|
|
|
|
if (_cfg.GetCVar(SunriseCCVars.ResetPresetAfterRestart))
|
|
_gameTicker.SetGamePreset("Secret");
|
|
}
|
|
}
|