forked from space-wizards/RobustToolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentTreeSystem.cs
More file actions
630 lines (518 loc) · 20.2 KB
/
Copy pathComponentTreeSystem.cs
File metadata and controls
630 lines (518 loc) · 20.2 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.IoC;
using Robust.Shared.Map;
using Robust.Shared.Maths;
using Robust.Shared.Physics;
using Robust.Shared.Physics.Systems;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Robust.Shared.Collections;
using System.Numerics;
using Robust.Shared.Map.Components;
using Robust.Shared.Utility;
namespace Robust.Shared.ComponentTrees;
/// <summary>
/// Keeps track of <see cref="DynamicTree{T}"/>s for various rendering-related components.
/// </summary>
[UsedImplicitly]
public abstract partial class ComponentTreeSystem<TTreeComp, TComp> : EntitySystem
where TTreeComp : Component, IComponentTreeComponent<TComp>, new()
where TComp : Component, IComponentTreeEntry<TComp>
{
[Dependency] private RecursiveMoveSystem _recursiveMoveSys = default!;
[Dependency] protected SharedTransformSystem XformSystem = default!;
[Dependency] private IMapManager _mapManager = default!;
[Dependency] private SharedMapSystem _mapSystem = default!;
private readonly Queue<ComponentTreeEntry<TComp>> _updateQueue = new();
protected EntityQuery<TComp> Query;
/// <summary>
/// Whether this lookup tree should even be enabled.
/// </summary>
/// <remarks>
/// This can be used to disable some trees if they are not required, which helps improve performance a bit.
/// </remarks>
protected virtual bool Enabled => true;
private bool _initialized;
/// <summary>
/// If true, this system will update the tree positions every frame update. See also <see cref="DoTickUpdate"/>. Some systems may need to do both.
/// </summary>
protected abstract bool DoFrameUpdate { get; }
/// <summary>
/// If true, this system will update the tree positions every tick update. See also <see cref="DoFrameUpdate"/>. Some systems may need to do both.
/// </summary>
protected abstract bool DoTickUpdate { get; }
/// <summary>
/// Initial tree capacity. Note that client-side trees will remove entities as they leave PVS range.
/// </summary>
protected virtual int InitialCapacity { get; } = 256;
/// <summary>
/// If true, this tree requires all children to be recursively updated whenever ANY entity moves. If false, this
/// will only update when an entity with the given component moves.
/// </summary>
protected abstract bool Recursive { get; }
public override void Initialize()
{
base.Initialize();
if (!Enabled)
return;
_initialized = true;
UpdatesOutsidePrediction = DoTickUpdate;
UpdatesAfter.Add(typeof(SharedTransformSystem));
UpdatesAfter.Add(typeof(SharedPhysicsSystem));
SubscribeLocalEvent<MapCreatedEvent>(MapManagerOnMapCreated);
SubscribeLocalEvent<GridInitializeEvent>(MapManagerOnGridCreated);
SubscribeLocalEvent<TComp, ComponentStartup>(OnCompStartup);
SubscribeLocalEvent<TComp, ComponentRemove>(OnCompRemoved);
if (Recursive)
{
_recursiveMoveSys.OnTreeRecursiveMove += HandleRecursiveMove;
_recursiveMoveSys.AddSubscription();
}
else
{
// TODO EXCEPTION TOLERANCE
// Ensure lookup trees update before content code handles move events.
SubscribeLocalEvent<TComp, MoveEvent>(HandleMove);
}
SubscribeLocalEvent<TTreeComp, EntityTerminatingEvent>(OnTerminating);
SubscribeLocalEvent<TTreeComp, ComponentAdd>(OnTreeAdd);
SubscribeLocalEvent<TTreeComp, ComponentRemove>(OnTreeRemove);
Query = GetEntityQuery<TComp>();
}
public override void Shutdown()
{
if (!_initialized)
return;
_initialized = false;
if (Recursive)
_recursiveMoveSys.OnTreeRecursiveMove -= HandleRecursiveMove;
}
private bool CheckEnabled()
{
if (_initialized)
return true;
Log.Error($"Attempted to use disabled lookup tree");
return false;
}
#region Queue Update
private void HandleRecursiveMove(EntityUid uid, TransformComponent xform)
{
if (Query.TryGetComponent(uid, out var component))
QueueTreeUpdate(uid, component, xform);
}
private void HandleMove(EntityUid uid, TComp component, ref MoveEvent args)
=> QueueTreeUpdate(uid, component, args.Component);
public void QueueTreeUpdate(EntityUid uid, TComp component, TransformComponent? xform = null)
{
if (!_initialized)
return;
if (component.TreeUpdateQueued || !Resolve(uid, ref xform))
return;
component.TreeUpdateQueued = true;
_updateQueue.Enqueue((component, xform));
}
public void QueueTreeUpdate(Entity<TComp> entity, TransformComponent? xform = null)
{
QueueTreeUpdate(entity.Owner, entity.Comp, xform);
}
#endregion
#region Component Management
protected virtual void OnCompStartup(EntityUid uid, TComp component, ComponentStartup args)
=> QueueTreeUpdate(uid, component);
protected virtual void OnCompRemoved(EntityUid uid, TComp component, ComponentRemove args)
=> RemoveFromTree(component);
protected virtual void OnTreeAdd(EntityUid uid, TTreeComp component, ComponentAdd args)
{
component.Tree = new(ExtractAabb, capacity: InitialCapacity);
}
protected virtual void OnTreeRemove(EntityUid uid, TTreeComp component, ComponentRemove args)
{
foreach (var entry in component.Tree)
{
entry.Component.TreeUid = null;
entry.Component.Tree = null;
}
component.Tree.Clear();
}
protected virtual void OnTerminating(EntityUid uid, TTreeComp component, ref EntityTerminatingEvent args)
{
// IIRC, this is to prevent a tree-update spam as each of the entity's children get detached to nullspace.
RemComp(uid, component);
}
private void MapManagerOnMapCreated(MapCreatedEvent e)
{
EnsureComp<TTreeComp>(e.Uid);
}
private void MapManagerOnGridCreated(GridInitializeEvent ev)
{
EnsureComp<TTreeComp>(ev.EntityUid);
}
#endregion
#region Update Trees
public override void Update(float frameTime)
{
if (DoTickUpdate && _initialized)
UpdateTreePositions();
}
public override void FrameUpdate(float frameTime)
{
if (DoFrameUpdate && _initialized)
UpdateTreePositions();
}
/// <summary>
/// Processes any pending position updates. Note that this should generally always get run before directly
/// querying a tree.
/// </summary>
public void UpdateTreePositions()
{
try
{
if (!CheckEnabled())
return;
if (_updateQueue.Count == 0)
return;
var trees = GetEntityQuery<TTreeComp>();
while (_updateQueue.TryDequeue(out var entry))
{
var (comp, xform) = entry;
// Was this entity queued multiple times?
DebugTools.Assert(comp.TreeUpdateQueued, "Entity was queued multiple times?");
comp.TreeUpdateQueued = false;
if (!comp.Running)
continue;
if (!comp.AddToTree || comp.Deleted || xform.MapUid == null)
{
RemoveFromTree(comp);
continue;
}
var newTree = xform.GridUid ?? xform.MapUid;
if (!trees.TryGetComponent(newTree, out var newTreeComp) && comp.TreeUid == null)
continue;
Vector2 pos;
Angle rot;
if (comp.TreeUid == newTree)
{
(pos, rot) = XformSystem.GetRelativePositionRotation(
entry.Transform,
newTree.Value);
newTreeComp?.Tree.Update(entry, ExtractAabb(entry, pos, rot));
continue;
}
RemoveFromTree(comp);
if (newTreeComp == null)
return;
comp.TreeUid = newTree;
comp.Tree = newTreeComp.Tree;
(pos, rot) = XformSystem.GetRelativePositionRotation(
entry.Transform,
newTree.Value);
newTreeComp.Tree.Add(entry, ExtractAabb(entry, pos, rot));
}
}
finally
{
_updateQueue.Clear();
}
}
private void RemoveFromTree(TComp component)
{
component.Tree?.Remove(new() { Component = component });
component.Tree = null;
component.TreeUid = null;
}
#endregion
#region AABBs
protected virtual Box2 ExtractAabb(in ComponentTreeEntry<TComp> entry)
{
if (entry.Component.TreeUid == null)
return default;
var (pos, rot) = XformSystem.GetRelativePositionRotation(
entry.Transform,
entry.Component.TreeUid.Value);
return ExtractAabb(in entry, pos, rot);
}
protected abstract Box2 ExtractAabb(in ComponentTreeEntry<TComp> entry, Vector2 pos, Angle rot);
#endregion
#region Queries
public IEnumerable<(EntityUid, TTreeComp)> GetIntersectingTrees(MapId mapId, Box2Rotated worldBounds)
=> GetIntersectingTrees(mapId, worldBounds.CalcBoundingBox());
public IEnumerable<(EntityUid Uid, TTreeComp Comp)> GetIntersectingTrees(MapId mapId, Box2 worldAABB)
{
if (!CheckEnabled())
return [];
// Anything that queries these trees should only do so if there are no queued updates, otherwise it can lead to
// errors. Currently there is no easy way to enforce this, but this should work as long as nothing queries the
// trees directly:
UpdateTreePositions();
var trees = new ValueList<(EntityUid Uid, TTreeComp Comp)>();
if (mapId == MapId.Nullspace)
return trees;
var state = (EntityManager, trees);
_mapManager.FindGridsIntersecting(mapId, worldAABB, ref state,
(EntityUid uid, MapGridComponent grid,
ref (EntityManager EntityManager, ValueList<(EntityUid, TTreeComp)> trees) tuple) =>
{
if (tuple.EntityManager.TryGetComponent<TTreeComp>(uid, out var treeComp))
{
tuple.trees.Add((uid, treeComp));
}
return true;
}, includeMap: false);
if (_mapSystem.TryGetMap(mapId, out var mapUid) && TryComp(mapUid, out TTreeComp? mapTreeComp))
{
state.trees.Add((mapUid.Value, mapTreeComp));
}
return state.trees;
}
#region HashSet
public HashSet<ComponentTreeEntry<TComp>> QueryAabb(MapId mapId, Box2 worldBounds, bool approx = true)
=> QueryAabb(mapId, new Box2Rotated(worldBounds, default, default), approx);
public void QueryAabb(HashSet<Entity<TComp, TransformComponent>> results, MapId mapId, Box2 worldBounds, bool approx = true)
=> QueryAabb(results, mapId, new Box2Rotated(worldBounds, default, default), approx);
public HashSet<ComponentTreeEntry<TComp>> QueryAabb(MapId mapId, Box2Rotated worldBounds, bool approx = true)
{
var state = new HashSet<ComponentTreeEntry<TComp>>();
QueryAabb(state, mapId, worldBounds, approx);
return state;
}
[Obsolete("Use Entity<T> variant")]
internal void QueryAabb(
HashSet<ComponentTreeEntry<TComp>> results,
MapId mapId,
Box2Rotated worldBounds,
bool approx = true)
{
if (!CheckEnabled())
return;
foreach (var (tree, treeComp) in GetIntersectingTrees(mapId, worldBounds))
{
var bounds = XformSystem.GetInvWorldMatrix(tree).TransformBox(worldBounds);
treeComp.Tree.QueryAabb(ref results,
static (ref HashSet<ComponentTreeEntry<TComp>> state, in ComponentTreeEntry<TComp> value) =>
{
state.Add(value);
return true;
},
bounds,
approx);
}
}
public void QueryAabb(
HashSet<Entity<TComp, TransformComponent>> results,
MapId mapId,
Box2Rotated worldBounds,
bool approx = true)
{
if (!CheckEnabled())
return;
foreach (var (tree, treeComp) in GetIntersectingTrees(mapId, worldBounds))
{
var bounds = XformSystem.GetInvWorldMatrix(tree).TransformBox(worldBounds);
treeComp.Tree.QueryAabb(ref results,
static (ref HashSet<Entity<TComp, TransformComponent>> state, in ComponentTreeEntry<TComp> value) =>
{
state.Add(value);
return true;
},
bounds,
approx);
}
}
#endregion
#region List
public void QueryAabb(List<Entity<TComp, TransformComponent>> results, MapId mapId, Box2 worldBounds, bool approx = true)
=> QueryAabb(results, mapId, new Box2Rotated(worldBounds, default, default), approx);
public void QueryAabb(
List<Entity<TComp, TransformComponent>> results,
MapId mapId,
Box2Rotated worldBounds,
bool approx = true)
{
if (!CheckEnabled())
return;
foreach (var (tree, treeComp) in GetIntersectingTrees(mapId, worldBounds))
{
var bounds = XformSystem.GetInvWorldMatrix(tree).TransformBox(worldBounds);
treeComp.Tree.QueryAabb(ref results,
static (ref List<Entity<TComp, TransformComponent>> state, in ComponentTreeEntry<TComp> value) =>
{
state.Add(value);
return true;
},
bounds,
approx);
}
}
#endregion
public void QueryAabb<TState>(
ref TState state,
DynamicTree<ComponentTreeEntry<TComp>>.QueryCallbackDelegate<TState> callback,
MapId mapId,
Box2 worldBounds,
bool approx = true)
{
QueryAabb(ref state, callback, mapId, new Box2Rotated(worldBounds, default, default), approx);
}
public void QueryAabb<TState>(
ref TState state,
DynamicTree<ComponentTreeEntry<TComp>>.QueryCallbackDelegate<TState> callback,
MapId mapId,
Box2Rotated worldBounds,
bool approx = true)
{
if (!CheckEnabled())
return;
foreach (var (tree, treeComp) in GetIntersectingTrees(mapId, worldBounds))
{
var bounds = XformSystem.GetInvWorldMatrix(tree).TransformBox(worldBounds);
treeComp.Tree.QueryAabb(ref state, callback, bounds, approx);
}
}
#endregion
#region Rays
[Obsolete("use IntersectRay")]
public List<RayCastResults> IntersectRayWithPredicate<TState>(MapId mapId, in Ray ray, float maxLength,
TState state, Func<EntityUid, TState, bool> predicate, bool returnOnFirstHit = true)
{
var list = new List<RayCastResults>();
if (!returnOnFirstHit)
{
IntersectRay(list, mapId, ray, maxLength, state, (e, s) => predicate(e.Owner, s));
return list;
}
var result = IntersectRay(mapId, ray, maxLength, state, (e, s) => predicate(e.Owner, s));
if (result != null)
list.Add(result.Value);
return list;
}
/// <summary>
/// Perform a ray intersection and return on the first hit.
/// </summary>
public RayCastResults? IntersectRay(MapId mapId, in Ray ray, float length)
{
var state = new QueryState(length);
IntersectRayInternal(mapId, in ray, length, ref state, QueryCallback);
return state.Result;
}
/// <summary>
/// Perform a ray intersection and populate a provided list of results.
/// </summary>
public void IntersectRay(List<RayCastResults> results, MapId mapId, in Ray ray, float maxLength)
{
results.Clear();
var state = new QueryState(maxLength, results);
IntersectRayInternal(mapId, in ray, maxLength, ref state, QueryCallback);
}
/// <summary>
/// Perform a ray intersection with a predicate and return on the first hit.
/// </summary>
public RayCastResults? IntersectRay<TState>(
MapId mapId,
in Ray ray,
float length,
TState predicateState,
Func<Entity<TComp, TransformComponent>, TState, bool> ignore)
{
var state = new QueryState<TState>(new(length), predicateState, ignore);
IntersectRayInternal(mapId, in ray, length, ref state, PredicateQueryCallback);
return state.Inner.Result;
}
/// <summary>
/// Perform a ray intersection with a predicate and populate a provided list of results.
/// </summary>
public void IntersectRay<TState>(
List<RayCastResults> results,
MapId mapId,
in Ray ray,
float length,
TState predicateState,
Func<Entity<TComp, TransformComponent>, TState, bool> ignore)
{
var state = new QueryState<TState>(new(length, results), predicateState, ignore);
IntersectRayInternal(mapId, in ray, length, ref state, PredicateQueryCallback);
}
private void IntersectRayInternal<TState>(
MapId mapId,
in Ray ray,
float maxLength,
ref TState state,
DynamicTree<ComponentTreeEntry<TComp>>.RayQueryCallbackDelegate<TState> callback)
where TState : IDone
{
if (mapId == MapId.Nullspace)
return;
if (!CheckEnabled())
return;
var endPoint = ray.Position + ray.Direction * maxLength;
var worldBox = new Box2(Vector2.Min(ray.Position, endPoint), Vector2.Max(ray.Position, endPoint));
foreach (var (treeUid, comp) in GetIntersectingTrees(mapId, worldBox))
{
var (_, treeRot, matrix) = XformSystem.GetWorldPositionRotationInvMatrix(treeUid);
var relativeAngle = new Angle(-treeRot.Theta).RotateVec(ray.Direction);
var treeRay = new Ray(Vector2.Transform(ray.Position, matrix), relativeAngle);
comp.Tree.QueryRay(ref state, callback, treeRay);
if (state.Done)
return;
}
}
static bool QueryCallback(
ref QueryState state,
in ComponentTreeEntry<TComp> value,
in Vector2 point,
float dist)
{
if (dist > state.MaxLength)
return true;
if (state.ReturnOnFirstHit)
{
state.Result = new RayCastResults(dist, point, value.Uid);
return false;
}
state.List.Add(new RayCastResults(dist, point, value.Uid));
return true;
}
private static bool PredicateQueryCallback<TState>(
ref QueryState<TState> state,
in ComponentTreeEntry<TComp> value,
in Vector2 point,
float dist)
{
if (dist > state.Inner.MaxLength)
return true;
if (state.Ignore.Invoke(value, state.PredicateState))
return true;
if (state.Inner.ReturnOnFirstHit)
{
state.Inner.Result = new RayCastResults(dist, point, value.Uid);
return false;
}
state.Inner.List.Add(new RayCastResults(dist, point, value.Uid));
return true;
}
private struct QueryState<TPredicateState>(
QueryState inner,
TPredicateState predicateState,
Func<Entity<TComp, TransformComponent>, TPredicateState, bool> ignore) : IDone
{
public readonly TPredicateState PredicateState = predicateState;
public readonly Func<Entity<TComp, TransformComponent>, TPredicateState, bool> Ignore = ignore;
public QueryState Inner = inner;
public bool Done => Inner.Done;
}
private struct QueryState(float maxLength, List<RayCastResults>? list = null) : IDone
{
public readonly float MaxLength = maxLength;
[MemberNotNullWhen(false, nameof(List))]
public readonly bool ReturnOnFirstHit => List == null;
public readonly List<RayCastResults>? List = list;
public RayCastResults? Result;
public bool Done => Result != null;
}
private interface IDone
{
bool Done { get; }
}
#endregion
}