64 lines
2.6 KiB
C#
64 lines
2.6 KiB
C#
using System.Linq;
|
|
using Content.Server.Chat.Systems;
|
|
using Content.Server.GameTicking.Rules.Components;
|
|
using Content.Server.Ghost.Roles.Components;
|
|
using Content.Server.Station.Systems;
|
|
using Content.Server.StationEvents.Components;
|
|
|
|
namespace Content.Server.StationEvents.Events;
|
|
|
|
public sealed class RandomSentienceRule : StationEventSystem<RandomSentienceRuleComponent>
|
|
{
|
|
protected override void Started(EntityUid uid, RandomSentienceRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
|
|
{
|
|
HashSet<EntityUid> stationsToNotify = new();
|
|
|
|
var mod = GetSeverityModifier();
|
|
var targetList = EntityQuery<SentienceTargetComponent>().ToList();
|
|
RobustRandom.Shuffle(targetList);
|
|
|
|
var toMakeSentient = (int) (RobustRandom.Next(2, 5) * Math.Sqrt(mod));
|
|
var groups = new HashSet<string>();
|
|
|
|
foreach (var target in targetList)
|
|
{
|
|
if (toMakeSentient-- == 0)
|
|
break;
|
|
|
|
RemComp<SentienceTargetComponent>(target.Owner);
|
|
var ghostRole = EnsureComp<GhostRoleComponent>(target.Owner);
|
|
EnsureComp<GhostTakeoverAvailableComponent>(target.Owner);
|
|
ghostRole.RoleName = MetaData(target.Owner).EntityName;
|
|
ghostRole.RoleDescription = Loc.GetString("station-event-random-sentience-role-description", ("name", ghostRole.RoleName));
|
|
groups.Add(Loc.GetString(target.FlavorKind));
|
|
}
|
|
|
|
if (groups.Count == 0)
|
|
return;
|
|
|
|
var groupList = groups.ToList();
|
|
var kind1 = groupList.Count > 0 ? groupList[0] : "???";
|
|
var kind2 = groupList.Count > 1 ? groupList[1] : "???";
|
|
var kind3 = groupList.Count > 2 ? groupList[2] : "???";
|
|
|
|
foreach (var target in targetList)
|
|
{
|
|
var station = StationSystem.GetOwningStation(target.Owner);
|
|
if(station == null) continue;
|
|
stationsToNotify.Add((EntityUid) station);
|
|
}
|
|
foreach (var station in stationsToNotify)
|
|
{
|
|
ChatSystem.DispatchStationAnnouncement(
|
|
station,
|
|
Loc.GetString("station-event-random-sentience-announcement",
|
|
("kind1", kind1), ("kind2", kind2), ("kind3", kind3), ("amount", groupList.Count),
|
|
("data", Loc.GetString($"random-sentience-event-data-{RobustRandom.Next(1, 6)}")),
|
|
("strength", Loc.GetString($"random-sentience-event-strength-{RobustRandom.Next(1, 8)}"))),
|
|
playDefaultSound: false,
|
|
colorOverride: Color.Gold
|
|
);
|
|
}
|
|
}
|
|
}
|