92 lines
3.7 KiB
C#
92 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Robust.Client.GameObjects;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Client.ContextMenu.UI
|
|
{
|
|
public sealed partial class EntityMenuPresenter : ContextMenuPresenter
|
|
{
|
|
public const int GroupingTypesCount = 2;
|
|
private int GroupingContextMenuType { get; set; }
|
|
public void OnGroupingChanged(int obj)
|
|
{
|
|
Close();
|
|
GroupingContextMenuType = obj;
|
|
}
|
|
|
|
private List<List<EntityUid>> GroupEntities(IEnumerable<EntityUid> entities, int depth = 0)
|
|
{
|
|
if (GroupingContextMenuType == 0)
|
|
{
|
|
var newEntities = entities.GroupBy(e => IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(e).EntityName + (IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(e).EntityPrototype?.ID ?? string.Empty)).ToList();
|
|
return newEntities.Select(grp => grp.ToList()).ToList();
|
|
}
|
|
else
|
|
{
|
|
var newEntities = entities.GroupBy(e => e, new PrototypeAndStatesContextMenuComparer(depth)).ToList();
|
|
return newEntities.Select(grp => grp.ToList()).ToList();
|
|
}
|
|
}
|
|
|
|
private sealed class PrototypeAndStatesContextMenuComparer : IEqualityComparer<EntityUid>
|
|
{
|
|
private static readonly List<Func<EntityUid, EntityUid, bool>> EqualsList = new()
|
|
{
|
|
(a, b) => IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(a).EntityPrototype!.ID == IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(b).EntityPrototype!.ID,
|
|
(a, b) =>
|
|
{
|
|
IoCManager.Resolve<IEntityManager>().TryGetComponent<ISpriteComponent?>(a, out var spriteA);
|
|
IoCManager.Resolve<IEntityManager>().TryGetComponent<ISpriteComponent?>(b, out var spriteB);
|
|
|
|
if (spriteA == null || spriteB == null)
|
|
return spriteA == spriteB;
|
|
|
|
var xStates = spriteA.AllLayers.Where(e => e.Visible).Select(s => s.RsiState.Name);
|
|
var yStates = spriteB.AllLayers.Where(e => e.Visible).Select(s => s.RsiState.Name);
|
|
|
|
return xStates.OrderBy(t => t).SequenceEqual(yStates.OrderBy(t => t));
|
|
},
|
|
};
|
|
private static readonly List<Func<EntityUid, int>> GetHashCodeList = new()
|
|
{
|
|
e => EqualityComparer<string>.Default.GetHashCode(IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(e).EntityPrototype!.ID),
|
|
e =>
|
|
{
|
|
var hash = 0;
|
|
foreach (var element in IoCManager.Resolve<IEntityManager>().GetComponent<ISpriteComponent>(e).AllLayers.Where(obj => obj.Visible).Select(s => s.RsiState.Name))
|
|
{
|
|
hash ^= EqualityComparer<string>.Default.GetHashCode(element!);
|
|
}
|
|
return hash;
|
|
},
|
|
};
|
|
|
|
private static int Count => EqualsList.Count - 1;
|
|
|
|
private readonly int _depth;
|
|
public PrototypeAndStatesContextMenuComparer(int step = 0)
|
|
{
|
|
_depth = step > Count ? Count : step;
|
|
}
|
|
|
|
public bool Equals(EntityUid x, EntityUid y)
|
|
{
|
|
if (x == default)
|
|
{
|
|
return y == default;
|
|
}
|
|
|
|
return y != default && EqualsList[_depth](x, y);
|
|
}
|
|
|
|
public int GetHashCode(EntityUid e)
|
|
{
|
|
return GetHashCodeList[_depth](e);
|
|
}
|
|
}
|
|
}
|
|
}
|