* респрайт костра, новый костёр * fix itemheating * этот костер потребовал слишком много работы * перекрас травы
137 lines
4.3 KiB
C#
137 lines
4.3 KiB
C#
|
||
using Content.Server.GameTicking.Events;
|
||
using Content.Shared.Containers.ItemSlots;
|
||
using Content.Shared.CrystallPunk.LockKey;
|
||
using Content.Shared.Examine;
|
||
using Content.Shared.Interaction;
|
||
using Content.Shared.Popups;
|
||
using Content.Shared.Lock;
|
||
using Content.Shared.Verbs;
|
||
using Robust.Shared.Prototypes;
|
||
using Robust.Shared.Random;
|
||
using System.Diagnostics.CodeAnalysis;
|
||
using System.Linq;
|
||
|
||
namespace Content.Server.CrystallPunk.LockKey;
|
||
|
||
|
||
public sealed partial class KeyholeGenerationSystem : EntitySystem
|
||
{
|
||
[Dependency] private readonly IPrototypeManager _proto = default!;
|
||
[Dependency] private readonly IRobustRandom _random = default!;
|
||
[Dependency] private readonly SharedPopupSystem _popup = default!;
|
||
[Dependency] private readonly ItemSlotsSystem _itemSlots = default!;
|
||
[Dependency] private readonly LockSystem _lock = default!;
|
||
|
||
private Dictionary<ProtoId<CPLockCategoryPrototype>, List<int>> _roundKeyData = new();
|
||
|
||
private const int DepthCompexity = 2;
|
||
|
||
public override void Initialize()
|
||
{
|
||
base.Initialize();
|
||
|
||
SubscribeLocalEvent<RoundStartingEvent>(OnRoundStart);
|
||
|
||
SubscribeLocalEvent<CPLockComponent, MapInitEvent>(OnLockInit);
|
||
SubscribeLocalEvent<CPKeyComponent, MapInitEvent>(OnKeyInit);
|
||
|
||
SubscribeLocalEvent<CPKeyComponent, ExaminedEvent>(OnKeyExamine);
|
||
}
|
||
|
||
#region Init
|
||
private void OnRoundStart(RoundStartingEvent ev)
|
||
{
|
||
_roundKeyData = new();
|
||
}
|
||
|
||
private void OnKeyInit(Entity<CPKeyComponent> keyEnt, ref MapInitEvent args)
|
||
{
|
||
if (keyEnt.Comp.AutoGenerateShape != null)
|
||
{
|
||
keyEnt.Comp.LockShape = GetKeyLockData(keyEnt.Comp.AutoGenerateShape.Value);
|
||
}
|
||
}
|
||
|
||
private void OnLockInit(Entity<CPLockComponent> lockEnt, ref MapInitEvent args)
|
||
{
|
||
if (lockEnt.Comp.AutoGenerateShape != null)
|
||
{
|
||
lockEnt.Comp.LockShape = GetKeyLockData(lockEnt.Comp.AutoGenerateShape.Value);
|
||
}
|
||
}
|
||
#endregion
|
||
|
||
private void OnKeyExamine(Entity<CPKeyComponent> key, ref ExaminedEvent args)
|
||
{
|
||
var parent = Transform(key).ParentUid;
|
||
if (parent != args.Examiner)
|
||
return;
|
||
|
||
if (key.Comp.LockShape == null)
|
||
return;
|
||
|
||
var markup = Loc.GetString("cp-lock-examine-key", ("item", MetaData(key).EntityName));
|
||
markup += " (";
|
||
foreach (var item in key.Comp.LockShape)
|
||
{
|
||
markup += $"{item} ";
|
||
}
|
||
markup += ")";
|
||
args.PushMarkup(markup);
|
||
}
|
||
|
||
private List<int> GetKeyLockData(ProtoId<CPLockCategoryPrototype> category)
|
||
{
|
||
if (_roundKeyData.ContainsKey(category))
|
||
return _roundKeyData[category];
|
||
else
|
||
{
|
||
var newData = GenerateNewUniqueLockData(category);
|
||
_roundKeyData[category] = newData;
|
||
return newData;
|
||
}
|
||
}
|
||
|
||
private List<int> GenerateNewUniqueLockData(ProtoId<CPLockCategoryPrototype> category)
|
||
{
|
||
List<int> newKeyData = new List<int>();
|
||
var categoryData = _proto.Index(category);
|
||
var ready = false;
|
||
var iteration = 0;
|
||
|
||
while (!ready)
|
||
{
|
||
//Generate try
|
||
newKeyData = new List<int>();
|
||
for (int i = 0; i < categoryData.Complexity; i++)
|
||
{
|
||
newKeyData.Add(_random.Next(-DepthCompexity, DepthCompexity));
|
||
}
|
||
|
||
//Identity Check shitcode
|
||
// На текущий момент он пытается сгенерировать уникальный код. Если он 100 раз не смог сгенерировать уникальный код, он выдаст последний сгенерированный неуникальный.
|
||
var unique = true;
|
||
foreach (var pair in _roundKeyData)
|
||
{
|
||
if (newKeyData.SequenceEqual(pair.Value))
|
||
{
|
||
unique = false;
|
||
break;
|
||
}
|
||
}
|
||
if (unique)
|
||
return newKeyData;
|
||
else
|
||
iteration++;
|
||
|
||
if (iteration > 100)
|
||
{
|
||
break;
|
||
}
|
||
}
|
||
Log.Error("The unique key for CPLockSystem could not be generated!");
|
||
return newKeyData; //FUCK
|
||
}
|
||
}
|