* auto doggy

* fix

* fix
This commit is contained in:
Ed
2025-03-09 23:29:20 +03:00
committed by GitHub
parent 759260c2ba
commit 66058ffc49
9 changed files with 105 additions and 38 deletions

View File

@@ -15,7 +15,6 @@ public sealed partial class CP14RoundEndSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly ChatSystem _chatSystem = default!;
[Dependency] private readonly GameTicker _gameTicker = default!;
[Dependency] private readonly CP14DemiplaneSystem _demiplane = default!;
[Dependency] private readonly RoundEndSystem _roundEnd = default!;
[Dependency] private readonly IConfigurationManager _configManager = default!;
@@ -27,6 +26,8 @@ public sealed partial class CP14RoundEndSystem : EntitySystem
{
base.Initialize();
InitCbt();
SubscribeLocalEvent<CP14MagicContainerRoundFinisherComponent, CP14MagicEnergyLevelChangeEvent>(OnFinisherMagicEnergyLevelChange);
SubscribeNetworkEvent<RoundEndMessageEvent>(OnRoundEndMessage);
}
@@ -34,19 +35,25 @@ public sealed partial class CP14RoundEndSystem : EntitySystem
private void OnRoundEndMessage(RoundEndMessageEvent ev)
{
_roundEndMoment = TimeSpan.Zero; //Reset timer, so it cant affect next round in any case
_demiplane.DeleteAllDemiplanes(safe: false);
_chatSystem.DispatchGlobalAnnouncement(Loc.GetString("cp14-round-end"),
announcementSound: new SoundPathSpecifier("/Audio/_CP14/Ambience/event_boom.ogg"));
}
public override void Update(float frameTime)
{
base.Update(frameTime);
UpdateCbt(frameTime);
if (_roundEndMoment == TimeSpan.Zero)
return;
if (_roundEndMoment > _timing.CurTime)
return;
EndRound();
_roundEnd.EndRound();
}
private void OnFinisherMagicEnergyLevelChange(Entity<CP14MagicContainerRoundFinisherComponent> ent,
@@ -103,16 +110,4 @@ public sealed partial class CP14RoundEndSystem : EntitySystem
_chatSystem.DispatchGlobalAnnouncement(Loc.GetString("cp14-round-end-monolith-recharged"),
announcementSound: new SoundPathSpecifier("/Audio/_CP14/Ambience/event_boom.ogg"));
}
private void EndRound()
{
if (_gameTicker.RunLevel != GameRunLevel.InRound)
return;
_chatSystem.DispatchGlobalAnnouncement(Loc.GetString("cp14-round-end"),
announcementSound: new SoundPathSpecifier("/Audio/_CP14/Ambience/event_boom.ogg"));
_roundEndMoment = TimeSpan.Zero;
_roundEnd.EndRound();
_demiplane.DeleteAllDemiplanes(safe: false);
}
}