Skip to content

Commit f6b9ef1

Browse files
Merge pull request #286 from FireNameFN/VoxRaiders
Воксы-налётчики
2 parents 10c3e4e + e35d0e3 commit f6b9ef1

File tree

74 files changed

+19608
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+19608
-37
lines changed

Content.Server/_CorvaxNext/Api/ApiRuleSystem.cs

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,19 @@
11
using Content.Server._CorvaxNext.Api.Components;
2-
using Content.Server.Antag;
32
using Content.Server.GameTicking.Rules;
43
using Content.Server.Roles;
54

65
namespace Content.Server._CorvaxNext.Api;
76

87
public sealed class ApiRuleSystem : GameRuleSystem<ApiRuleComponent>
98
{
10-
[Dependency] private readonly AntagSelectionSystem _antag = default!;
11-
129
public override void Initialize()
1310
{
1411
base.Initialize();
1512

16-
SubscribeLocalEvent<ApiRuleComponent, AfterAntagEntitySelectedEvent>(OnAfterAntagEntitySelected);
1713
SubscribeLocalEvent<ApiRoleComponent, GetBriefingEvent>(OnGetBriefing);
1814
}
1915

20-
private void OnAfterAntagEntitySelected(EntityUid entity, ApiRuleComponent apiRule, AfterAntagEntitySelectedEvent e)
21-
{
22-
_antag.SendBriefing(e.EntityUid, Loc.GetString("api-role-greeting"), null, null);
23-
}
24-
25-
private void OnGetBriefing(EntityUid entity, ApiRoleComponent apiRole, GetBriefingEvent e)
16+
private void OnGetBriefing(Entity<ApiRoleComponent> entity, ref GetBriefingEvent e)
2617
{
2718
e.Append(Loc.GetString("api-role-greeting"));
2819
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
using Content.Shared.Objectives;
2+
using Robust.Shared.Prototypes;
3+
4+
namespace Content.Server._CorvaxNext.VoxRaiders.Components;
5+
6+
[RegisterComponent]
7+
public sealed partial class ExtractConditionComponent : Component
8+
{
9+
[DataField(required: true)]
10+
public ProtoId<StealTargetGroupPrototype> StealGroup;
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Content.Server._CorvaxNext.VoxRaiders.Components;
2+
3+
[RegisterComponent]
4+
public sealed partial class ExtractionShuttleComponent : Component
5+
{
6+
public HashSet<EntityUid> Owners = [];
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
namespace Content.Server._CorvaxNext.VoxRaiders.Components;
2+
3+
[RegisterComponent]
4+
public sealed partial class VoxRaidersRoleComponent : Component;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using Content.Shared.Mind;
2+
using Content.Shared.Random;
3+
using Robust.Shared.Prototypes;
4+
5+
namespace Content.Server._CorvaxNext.VoxRaiders.Components;
6+
7+
[RegisterComponent]
8+
public sealed partial class VoxRaidersRuleComponent : Component
9+
{
10+
[DataField(required: true)]
11+
public ProtoId<WeightedRandomPrototype> ObjectiveGroup;
12+
13+
[DataField(required: true)]
14+
public int ObjectiveCount;
15+
16+
[DataField]
17+
public List<string> ObjectivePrototypes = [];
18+
19+
public List<EntityUid> Raiders = [];
20+
21+
public Dictionary<string, List<(EntityUid Objective, EntityUid Mind)>> Objectives = [];
22+
23+
public EntityUid Map;
24+
25+
public bool Success;
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Content.Server._CorvaxNext.VoxRaiders.Components;
2+
3+
[RegisterComponent]
4+
public sealed partial class VoxRaidersShuttleComponent : Component
5+
{
6+
public EntityUid Rule;
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
using Content.Server._CorvaxNext.VoxRaiders.Components;
2+
using Content.Server.Objectives.Components.Targets;
3+
using Content.Shared.Objectives.Components;
4+
using Content.Shared.Objectives.Systems;
5+
using Robust.Shared.Prototypes;
6+
7+
namespace Content.Server._CorvaxNext.VoxRaiders.EntitySystems;
8+
9+
public sealed class ExtractConditionSystem : EntitySystem
10+
{
11+
[Dependency] private readonly IPrototypeManager _prototype = default!;
12+
[Dependency] private readonly MetaDataSystem _meta = default!;
13+
[Dependency] private readonly SharedObjectivesSystem _objectives = default!;
14+
15+
public override void Initialize()
16+
{
17+
SubscribeLocalEvent<ExtractConditionComponent, ObjectiveAfterAssignEvent>(OnObjectiveAfterAssign);
18+
SubscribeLocalEvent<ExtractConditionComponent, ObjectiveGetProgressEvent>(OnObjectiveGetProgress);
19+
}
20+
21+
private void OnObjectiveAfterAssign(Entity<ExtractConditionComponent> entity, ref ObjectiveAfterAssignEvent e)
22+
{
23+
var group = _prototype.Index(entity.Comp.StealGroup);
24+
25+
var localizedName = Loc.GetString(group.Name);
26+
27+
var title = Loc.GetString("objective-condition-steal-title-no-owner", ("itemName", localizedName));
28+
29+
var description = Loc.GetString("objective-condition-steal-description", ("itemName", localizedName));
30+
31+
_meta.SetEntityName(entity, title, e.Meta);
32+
_meta.SetEntityDescription(entity, description, e.Meta);
33+
_objectives.SetIcon(entity, group.Sprite, e.Objective);
34+
}
35+
36+
private void OnObjectiveGetProgress(Entity<ExtractConditionComponent> entity, ref ObjectiveGetProgressEvent e)
37+
{
38+
var query = AllEntityQuery<StealTargetComponent, TransformComponent>();
39+
while (query.MoveNext(out var target, out var transform))
40+
{
41+
if (target.StealGroup != entity.Comp.StealGroup)
42+
continue;
43+
44+
if (!TryComp<ExtractionShuttleComponent>(transform.GridUid, out var shuttle))
45+
continue;
46+
47+
if (!shuttle.Owners.Contains(e.MindId))
48+
continue;
49+
50+
e.Progress = 1;
51+
52+
return;
53+
}
54+
55+
e.Progress = 0;
56+
}
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
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+
}

Resources/Audio/_CorvaxNext/Misc/attributions.yml

+5
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@
22
license: "CC-BY-4.0"
33
copyright: "Created by AivelCry using sounds from vengeance-sound.com/samples.php."
44
source: "https://github.com/FireNameFN/space-station-14-next/blob/503ef7641a977c2e5de70defcf7e2d399fc16a79/Resources/Audio/_CorvaxNext/Misc/api_greeting.ogg"
5+
6+
- files: ["vox_raiders_greeting.ogg"]
7+
license: "CC-BY-4.0"
8+
copyright: "Created by AivelCry using sounds from vengeance-sound.com/samples.php."
9+
source: "https://github.com/FireNameFN/space-station-14-next/blob/20fa66dfa8c02523bb1eef2045753126ca1797da/Resources/Audio/_CorvaxNext/Misc/vox_raiders_greeting.ogg"
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
voxraiders-title = Воксы-налётчики
2+
voxraiders-description = На станцию летит отряд воксов, намеревающихся украсть ценности станции.
3+
4+
roles-antag-vox-raiders-commander-name = Командир воксов-налётчиков
5+
roles-antag-vox-raiders-commander-objective = Возглавьте отряд в похищении целей.
6+
7+
roles-antag-vox-raiders-operative-name = Вокс-налётчик
8+
roles-antag-vox-raiders-operative-objective = Похитьте все целевые предметы.
9+
10+
vox-raiders-success = Воксы-налётчики [color=green]справились[/color] со своими целями.
11+
vox-raiders-fail = Воксы-налётчики [color=red]не справились[/color] со своими целями.
12+
vox-raiders-objectives = Цели:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-ClothingHeadHelmetHardsuitVoxRaider = рейдерский шлем
2+
.desc = Странная серая одёжка.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-ClothingMaskGasVoxRaider = рейдерская маска
2+
.desc = Удобная чёрная маска... для клювов воксов.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-ClothingOuterHardsuitVoxRaider = рейдерский скафандр
2+
.desc = Странная серая одёжка.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-WeaponSpike = спайк
2+
.desc = Лёгкая рейдерская винтовка воксов. Тихая и эффективная.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ent-BulletSpike = спайк
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-EnergySpike = энергоспайк
2+
.desc = Странная штука.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ent-VoxRaidersSurviveObjective = Выжить.
2+
.desc = Все члены отряда должны выжить. Не оставляйте своих позади.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ent-MindRoleApi = Роль АПИИ
2+
ent-MindRoleVoxRaiders = Роль Вокса-Рейдера
3+
ent-MindRoleVoxRaidersCommander = Роль Командира Воксов-Рейдеров

0 commit comments

Comments
 (0)