-
Notifications
You must be signed in to change notification settings - Fork 592
Expand file tree
/
Copy pathSharedFlashSystem.cs
More file actions
334 lines (292 loc) · 14 KB
/
Copy pathSharedFlashSystem.cs
File metadata and controls
334 lines (292 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
using Content.Shared.Charges.Components;
using Content.Shared.Charges.Systems;
using Content.Shared.Examine;
using Content.Shared.Eye.Blinding.Components;
using Content.Shared.Flash.Components;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory;
using Content.Shared.Light;
using Content.Shared.Popups;
using Content.Shared.StatusEffect;
using Content.Shared.Stunnable;
using Content.Shared.Tag;
using Content.Shared.Timing;
using Content.Shared.Traits.Assorted;
using Content.Shared.Weapons.Melee.Events;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Timing;
using System.Linq;
using Content.Shared.Movement.Systems;
using Content.Shared.Random.Helpers;
using Content.Shared.Clothing.Components;
using Content.Shared._Starlight.Flash.Components;
namespace Content.Shared.Flash;
public abstract partial class SharedFlashSystem : EntitySystem
{
[Dependency] private SharedAppearanceSystem _appearance = default!;
[Dependency] private SharedAudioSystem _audio = default!;
[Dependency] private SharedChargesSystem _sharedCharges = default!;
[Dependency] private EntityLookupSystem _entityLookup = default!;
[Dependency] private SharedTransformSystem _transform = default!;
[Dependency] private ExamineSystemShared _examine = default!;
[Dependency] private SharedPopupSystem _popup = default!;
[Dependency] private SharedStunSystem _stun = default!;
[Dependency] private MovementModStatusSystem _movementMod = default!;
[Dependency] private TagSystem _tag = default!;
[Dependency] private StatusEffectsSystem _statusEffectsSystem = default!;
[Dependency] private IGameTiming _timing = default!;
[Dependency] private UseDelaySystem _useDelay = default!;
private EntityQuery<StatusEffectsComponent> _statusEffectsQuery;
private EntityQuery<DamagedByFlashingComponent> _damagedByFlashingQuery;
private HashSet<EntityUid> _entSet = new();
// The tag to add when a flash has no charges left.
private static readonly ProtoId<TagPrototype> TrashTag = "Trash";
// The key string for the status effect.
public ProtoId<StatusEffectPrototype> FlashedKey = "Flashed";
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<FlashComponent, MeleeHitEvent>(OnFlashMeleeHit);
SubscribeLocalEvent<FlashComponent, UseInHandEvent>(OnFlashUseInHand);
SubscribeLocalEvent<FlashComponent, LightToggleEvent>(OnLightToggle);
SubscribeLocalEvent<PermanentBlindnessComponent, FlashAttemptEvent>(OnPermanentBlindnessFlashAttempt);
SubscribeLocalEvent<TemporaryBlindnessComponent, FlashAttemptEvent>(OnTemporaryBlindnessFlashAttempt);
Subs.SubscribeWithRelay<FlashImmunityComponent, FlashAttemptEvent>(OnFlashImmunityFlashAttempt, held: false);
SubscribeLocalEvent<FlashImmunityComponent, ExaminedEvent>(OnExamine);
SubscribeLocalEvent<FlashComponent, MapInitEvent>(OnFlashMapInit); // Starlight
_statusEffectsQuery = GetEntityQuery<StatusEffectsComponent>();
_damagedByFlashingQuery = GetEntityQuery<DamagedByFlashingComponent>();
}
// Starlight begin
/// <summary>
/// Adds support for a flash that starts with 0 charges to properly show as burnt out.
/// </summary>
private void OnFlashMapInit(EntityUid uid, FlashComponent flash, ref MapInitEvent args)
{
if (TryComp<LimitedChargesComponent>(uid, out var charges) && ((charges.MaxCharges == 0)))
{
_appearance.SetData(uid, FlashVisuals.Burnt, true);
_tag.AddTag(uid, TrashTag);
}
}
// Starlight end
private void OnFlashMeleeHit(Entity<FlashComponent> ent, ref MeleeHitEvent args)
{
if (!ent.Comp.FlashOnMelee ||
!args.IsHit ||
!args.HitEntities.Any() ||
!UseFlash(ent, args.User))
{
return;
}
args.Handled = true;
foreach (var target in args.HitEntities)
{
Flash(target, args.User, ent.Owner, ent.Comp.MeleeDuration, ent.Comp.SlowTo, melee: true, stunDuration: ent.Comp.MeleeStunDuration);
}
}
private void OnFlashUseInHand(Entity<FlashComponent> ent, ref UseInHandEvent args)
{
if (!ent.Comp.FlashOnUse || args.Handled || !UseFlash(ent, args.User))
return;
args.Handled = true;
FlashArea(ent.Owner, args.User, ent.Comp.Range, ent.Comp.AoeFlashDuration, ent.Comp.SlowTo, true, ent.Comp.Probability);
}
// needed for the flash lantern and interrogator lamp
// TODO: This is awful and all the different components for toggleable lights need to be unified and changed to use Itemtoggle
private void OnLightToggle(Entity<FlashComponent> ent, ref LightToggleEvent args)
{
if (!args.IsOn || !UseFlash(ent, null))
return;
FlashArea(ent.Owner, null, ent.Comp.Range, ent.Comp.AoeFlashDuration, ent.Comp.SlowTo, true, ent.Comp.Probability);
}
/// <summary>
/// Use charges and set the visuals.
/// </summary>
/// <returns>False if no charges are left or the flash is currently in use.</returns>
private bool UseFlash(Entity<FlashComponent> ent, EntityUid? user)
{
if (_useDelay.IsDelayed(ent.Owner))
return false;
if (TryComp<LimitedChargesComponent>(ent.Owner, out var charges)
&& _sharedCharges.IsEmpty((ent.Owner, charges)))
return false;
_sharedCharges.TryUseCharge((ent.Owner, charges));
_audio.PlayPredicted(ent.Comp.Sound, ent.Owner, user);
var active = EnsureComp<ActiveFlashComponent>(ent.Owner);
active.ActiveUntil = _timing.CurTime + ent.Comp.FlashingTime;
Dirty(ent.Owner, active);
_appearance.SetData(ent.Owner, FlashVisuals.Flashing, true);
if (_sharedCharges.IsEmpty((ent.Owner, charges)))
{
_appearance.SetData(ent.Owner, FlashVisuals.Burnt, true);
_tag.AddTag(ent.Owner, TrashTag);
_popup.PopupClient(Loc.GetString("flash-component-becomes-empty"), user);
}
return true;
}
/// <summary>
/// Cause an entity to be flashed, obstructing their vision, slowing them down and stunning them.
/// In case of a melee attack this will do a check for revolutionary conversion.
/// </summary>
/// <param name="target">The mob to be flashed.</param>
/// <param name="user">The mob causing the flash, if any.</param>
/// <param name="used">The item causing the flash, if any.</param>
/// <param name="flashDuration">The time target will be affected by the flash.</param>
/// <param name="slowTo">Movement speed modifier applied to the flashed target. Between 0 and 1.</param>
/// <param name="displayPopup">Whether or not to show a popup to the target player.</param>
/// <param name="melee">Was this flash caused by a melee attack? Used for checking for revolutionary conversion.</param>
/// <param name="stunDuration">The time the target will be stunned. If null the target will be slowed down instead.</param>
/// <param name="overrideFlashImmunity">Whether to override flash immunity checks.</param> (STARLIGHT EDIT)
public void Flash(
EntityUid target,
EntityUid? user,
EntityUid? used,
TimeSpan flashDuration,
float slowTo,
bool displayPopup = true,
bool melee = false,
TimeSpan? stunDuration = null,
bool overrideFlashImmunity = false)
{
var attempt = new FlashAttemptEvent(target, user, used);
RaiseLocalEvent(target, ref attempt, true);
if (attempt.Cancelled)
return;
#region Starlight
// Increase the flash duration if the flashed entity has a multiplier (some species are more vulnerable to flashes)
if(TryComp<FlashModifierComponent>(target, out var flashMod)
&& float.IsFinite(flashMod.Modifier)
&& flashMod.Modifier > 0)
{
flashDuration *= flashMod.Modifier;
}
#endregion Starlight
// don't paralyze, slowdown or convert to rev if the target is immune to flashes; STARLIGHT EDIT - functionality added to override flash immunity
if (!overrideFlashImmunity && !_statusEffectsSystem.TryAddStatusEffect<FlashedComponent>(target, FlashedKey, flashDuration, true))
return;
if (stunDuration != null)
_stun.TryUpdateParalyzeDuration(target, stunDuration.Value);
else
_movementMod.TryUpdateMovementSpeedModDuration(target, MovementModStatusSystem.FlashSlowdown, flashDuration, slowTo);
if (displayPopup && user != null && target != user && Exists(user.Value))
{
_popup.PopupEntity(Loc.GetString("flash-component-user-blinds-you",
("user", Identity.Entity(user.Value, EntityManager))), target, target);
}
var ev = new AfterFlashedEvent(target, user, used, melee);
RaiseLocalEvent(target, ref ev);
if (user != null)
RaiseLocalEvent(user.Value, ref ev);
if (used != null)
RaiseLocalEvent(used.Value, ref ev);
}
/// <summary>
/// Cause all entities in range of a source entity to be flashed.
/// </summary>
/// <param name="source">The source of the flash, which will be at the epicenter.</param>
/// <param name="user">The mob causing the flash, if any.</param>
/// <param name="flashDuration">The time target will be affected by the flash.</param>
/// <param name="slowTo">Movement speed modifier applied to the flashed target. Between 0 and 1.</param>
/// <param name="displayPopup">Whether or not to show a popup to the target player.</param>
/// <param name="probability">Chance to be flashed. Rolled separately for each target in range.</param>
/// <param name="sound">Additional sound to play at the source.</param>
/// starlight edit - start
/// <param name="overrideFlashImmunity">Whether to override flash immunity checks.</param>
/// <param name="ignoreEntities">Entities to ignore when flashing.</param>
/// starlight edit - end
public void FlashArea(
EntityUid source,
EntityUid? user,
float range,
TimeSpan flashDuration,
float slowTo = 0.8f,
bool displayPopup = false,
float probability = 1f,
SoundSpecifier? sound = null,
bool overrideFlashImmunity = false,
List<EntityUid>? ignoreEntities = null)
{
var transform = Transform(source);
var mapPosition = _transform.GetMapCoordinates(transform);
_entSet.Clear();
_entityLookup.GetEntitiesInRange(transform.Coordinates, range, _entSet);
foreach (var entity in _entSet)
{
// starlight edit - functionality to ignore certain entities when flashing
if (ignoreEntities != null)
{
if (ignoreEntities.Contains(entity))
continue;
}
// TODO: Use RandomPredicted https://github.com/space-wizards/RobustToolbox/pull/5849
var seed = SharedRandomExtensions.HashCodeCombine((int)_timing.CurTick.Value, GetNetEntity(entity).Id);
var rand = new System.Random(seed);
if (!rand.Prob(probability))
continue;
// Is the entity affected by the flash either through status effects or by taking damage?
if (!_statusEffectsQuery.HasComponent(entity) && !_damagedByFlashingQuery.HasComponent(entity))
continue;
// Check for entites in view.
// Put DamagedByFlashingComponent in the predicate because shadow anomalies block vision.
if (!_examine.InRangeUnOccluded(entity, mapPosition, range, predicate: (e) => _damagedByFlashingQuery.HasComponent(e)))
continue;
// starlight edit - hardcoded melee and stun duration parameters and functionality to override flash immunity
Flash(entity, user, source, flashDuration, slowTo, displayPopup, false, null, overrideFlashImmunity);
}
_audio.PlayPredicted(sound, source, user, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f));
}
// Handle the flash visuals
// TODO: Replace this with something like sprite flick once that exists to get rid of the update loop.
public override void Update(float frameTime)
{
base.Update(frameTime);
var curTime = _timing.CurTime;
var query = EntityQueryEnumerator<ActiveFlashComponent>();
while (query.MoveNext(out var uid, out var active))
{
// reset the visuals and remove the component
if (active.ActiveUntil < curTime)
{
_appearance.SetData(uid, FlashVisuals.Flashing, false);
RemCompDeferred<ActiveFlashComponent>(uid);
}
}
}
// Updates whether flash immunity is visible in examine window
#region Starlight
public void SetShowInExamine(EntityUid uid, bool show, FlashImmunityComponent comp)
{
if (comp.ShowInExamine == show)
return;
comp.ShowInExamine = show;
Dirty(uid, comp);
}
#endregion
private void OnPermanentBlindnessFlashAttempt(Entity<PermanentBlindnessComponent> ent, ref FlashAttemptEvent args)
{
// check for total blindness
if (ent.Comp.Blindness == 0)
args.Cancelled = true;
}
private void OnTemporaryBlindnessFlashAttempt(Entity<TemporaryBlindnessComponent> ent, ref FlashAttemptEvent args)
{
args.Cancelled = true;
}
private void OnFlashImmunityFlashAttempt(Entity<FlashImmunityComponent> ent, ref FlashAttemptEvent args)
{
if (TryComp<MaskComponent>(ent, out var mask) && mask.IsToggled)
return;
if (ent.Comp.Enabled)
args.Cancelled = true;
}
private void OnExamine(Entity<FlashImmunityComponent> ent, ref ExaminedEvent args)
{
if (ent.Comp.ShowInExamine)
args.PushMarkup(Loc.GetString("flash-protection"));
}
}