|
| 1 | +using System.Text; |
| 2 | +using Content.Server._CorvaxNext.VoxRaiders.Components; |
| 3 | +using Content.Server.Antag; |
| 4 | +using Content.Server.GameTicking; |
| 5 | +using Content.Server.GameTicking.Rules; |
| 6 | +using Content.Server.Objectives; |
| 7 | +using Content.Server.Shuttles.Events; |
| 8 | +using Content.Shared.GameTicking.Components; |
| 9 | +using Content.Shared.Mind; |
| 10 | +using Content.Shared.Players; |
| 11 | +using Content.Shared.Random.Helpers; |
| 12 | +using Robust.Shared.Map.Components; |
| 13 | +using Robust.Shared.Prototypes; |
| 14 | +using Robust.Shared.Random; |
| 15 | +using Robust.Shared.Utility; |
| 16 | + |
| 17 | +namespace Content.Server._CorvaxNext.VoxRaiders.EntitySystems; |
| 18 | + |
| 19 | +public sealed class VoxRaidersRuleSystem : GameRuleSystem<VoxRaidersRuleComponent> |
| 20 | +{ |
| 21 | + [Dependency] private readonly IPrototypeManager _prototype = default!; |
| 22 | + [Dependency] private readonly IRobustRandom _random = default!; |
| 23 | + [Dependency] private readonly SharedMindSystem _mind = default!; |
| 24 | + [Dependency] private readonly ObjectivesSystem _objectives = default!; |
| 25 | + [Dependency] private readonly SharedMapSystem _map = default!; |
| 26 | + |
| 27 | + public override void Initialize() |
| 28 | + { |
| 29 | + base.Initialize(); |
| 30 | + |
| 31 | + SubscribeLocalEvent<VoxRaidersRuleComponent, AfterAntagEntitySelectedEvent>(OnAfterAntagEntitySelected); |
| 32 | + SubscribeLocalEvent<VoxRaidersRuleComponent, RuleLoadedGridsEvent>(OnRuleLoadedGrids); |
| 33 | + |
| 34 | + SubscribeLocalEvent<VoxRaidersShuttleComponent, FTLCompletedEvent>(OnFTLCompleted); |
| 35 | + } |
| 36 | + |
| 37 | + protected override void Started(EntityUid uid, VoxRaidersRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) |
| 38 | + { |
| 39 | + if (!_prototype.TryIndex(component.ObjectiveGroup, out var objectiveGroup)) |
| 40 | + return; |
| 41 | + |
| 42 | + var groups = objectiveGroup.Weights.ShallowClone(); |
| 43 | + |
| 44 | + for (var i = 0; i < component.ObjectiveCount; i++) |
| 45 | + { |
| 46 | + if (!_random.TryPickAndTake(groups, out var objective)) |
| 47 | + break; |
| 48 | + |
| 49 | + component.ObjectivePrototypes.Add(objective); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + protected override void AppendRoundEndText(EntityUid uid, VoxRaidersRuleComponent component, GameRuleComponent gameRule, ref RoundEndTextAppendEvent args) |
| 54 | + { |
| 55 | + StringBuilder builder = new(); |
| 56 | + |
| 57 | + builder.AppendLine(Loc.GetString(component.Success ? "vox-raiders-success" : "vox-raiders-fail")); |
| 58 | + builder.AppendLine(Loc.GetString("vox-raiders-objectives")); |
| 59 | + |
| 60 | + foreach (var objectives in component.Objectives.Values) |
| 61 | + { |
| 62 | + if (objectives.Count < 1) |
| 63 | + continue; |
| 64 | + |
| 65 | + var info = _objectives.GetInfo(objectives[0].Objective, objectives[0].Mind); |
| 66 | + |
| 67 | + if (info is null) |
| 68 | + continue; |
| 69 | + |
| 70 | + builder.AppendLine(info.Value.Title); |
| 71 | + } |
| 72 | + |
| 73 | + args.AddLine(builder.ToString()); |
| 74 | + } |
| 75 | + |
| 76 | + private void OnAfterAntagEntitySelected(Entity<VoxRaidersRuleComponent> entity, ref AfterAntagEntitySelectedEvent e) |
| 77 | + { |
| 78 | + var mind = e.Session?.GetMind(); |
| 79 | + |
| 80 | + if (mind is null) |
| 81 | + return; |
| 82 | + |
| 83 | + entity.Comp.Raiders.Add(e.EntityUid); |
| 84 | + |
| 85 | + var query = AllEntityQuery<VoxRaidersShuttleComponent, ExtractionShuttleComponent>(); |
| 86 | + while (query.MoveNext(out var shuttle, out var extraction)) |
| 87 | + if (shuttle.Rule == entity.Owner) |
| 88 | + extraction.Owners.Add(mind.Value); |
| 89 | + |
| 90 | + foreach (var objective in entity.Comp.ObjectivePrototypes) |
| 91 | + { |
| 92 | + if (!TryComp<MindComponent>(mind.Value, out var mindComponent)) |
| 93 | + continue; |
| 94 | + |
| 95 | + var obj = _objectives.TryCreateObjective(mind.Value, mindComponent, objective); |
| 96 | + |
| 97 | + if (obj is null) |
| 98 | + continue; |
| 99 | + |
| 100 | + _mind.AddObjective(mind.Value, mindComponent, obj.Value); |
| 101 | + |
| 102 | + entity.Comp.Objectives.GetOrNew(objective).Add((obj.Value, mind.Value)); |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + private void OnRuleLoadedGrids(Entity<VoxRaidersRuleComponent> entity, ref RuleLoadedGridsEvent e) |
| 107 | + { |
| 108 | + entity.Comp.Map = _map.GetMap(e.Map); |
| 109 | + |
| 110 | + var query = AllEntityQuery<VoxRaidersShuttleComponent>(); |
| 111 | + while (query.MoveNext(out var ent, out var shuttle)) |
| 112 | + { |
| 113 | + if (Transform(ent).MapID != e.Map) |
| 114 | + continue; |
| 115 | + |
| 116 | + EnsureComp<ExtractionShuttleComponent>(ent); |
| 117 | + |
| 118 | + shuttle.Rule = entity; |
| 119 | + } |
| 120 | + } |
| 121 | + |
| 122 | + private void OnFTLCompleted(Entity<VoxRaidersShuttleComponent> entity, ref FTLCompletedEvent e) |
| 123 | + { |
| 124 | + if (!TryComp<VoxRaidersRuleComponent>(entity.Comp.Rule, out var rule)) |
| 125 | + return; |
| 126 | + |
| 127 | + if (e.MapUid != rule.Map) |
| 128 | + return; |
| 129 | + |
| 130 | + foreach (var objectives in rule.Objectives.Values) |
| 131 | + foreach (var objective in objectives) |
| 132 | + if (TryComp<MindComponent>(objective.Mind, out var mind)) |
| 133 | + if (!_objectives.IsCompleted(objective.Objective, (objective.Mind, mind))) |
| 134 | + return; |
| 135 | + |
| 136 | + foreach (var raider in rule.Raiders) |
| 137 | + { |
| 138 | + if (!TryComp<ExtractionShuttleComponent>(Transform(raider).GridUid, out var shuttle)) |
| 139 | + return; |
| 140 | + |
| 141 | + if (!shuttle.Owners.Contains(raider)) |
| 142 | + return; |
| 143 | + } |
| 144 | + |
| 145 | + rule.Success = true; |
| 146 | + } |
| 147 | +} |
0 commit comments