* Fix usages of TryIndex()
Most usages of TryIndex() were using it incorrectly. Checking whether prototype IDs specified in prototypes actually existed before using them. This is not appropriate as it's just hiding bugs that should be getting caught by the YAML linter and other tools. (#39115)
This then resulted in TryIndex() getting modified to log errors (94f98073b0), which is incorrect as it causes false-positive errors in proper uses of the API: external data validation. (#39098)
This commit goes through and checks every call site of TryIndex() to see whether they were correct. Most call sites were replaced with the new Resolve(), which is suitable for these "defensive programming" use cases.
Fixes #39115
Breaking change: while doing this I noticed IdCardComponent and related systems were erroneously using ProtoId<AccessLevelPrototype> for job prototypes. This has been corrected.
* fix tests
---------
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
59 lines
1.8 KiB
C#
59 lines
1.8 KiB
C#
using System.Linq;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Random;
|
|
|
|
namespace Content.Shared.BarSign;
|
|
|
|
public sealed class BarSignSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
|
[Dependency] private readonly IRobustRandom _random = default!;
|
|
[Dependency] private readonly MetaDataSystem _metaData = default!;
|
|
|
|
public override void Initialize()
|
|
{
|
|
SubscribeLocalEvent<BarSignComponent, MapInitEvent>(OnMapInit);
|
|
Subs.BuiEvents<BarSignComponent>(BarSignUiKey.Key,
|
|
subs =>
|
|
{
|
|
subs.Event<SetBarSignMessage>(OnSetBarSignMessage);
|
|
});
|
|
}
|
|
|
|
private void OnMapInit(Entity<BarSignComponent> ent, ref MapInitEvent args)
|
|
{
|
|
if (ent.Comp.Current != null)
|
|
return;
|
|
|
|
var newPrototype = _random.Pick(GetAllBarSigns(_prototypeManager));
|
|
SetBarSign(ent, newPrototype);
|
|
}
|
|
|
|
private void OnSetBarSignMessage(Entity<BarSignComponent> ent, ref SetBarSignMessage args)
|
|
{
|
|
if (!_prototypeManager.Resolve(args.Sign, out var signPrototype))
|
|
return;
|
|
|
|
SetBarSign(ent, signPrototype);
|
|
}
|
|
|
|
public void SetBarSign(Entity<BarSignComponent> ent, BarSignPrototype newPrototype)
|
|
{
|
|
var meta = MetaData(ent);
|
|
var name = Loc.GetString(newPrototype.Name);
|
|
_metaData.SetEntityName(ent, name, meta);
|
|
_metaData.SetEntityDescription(ent, Loc.GetString(newPrototype.Description), meta);
|
|
|
|
ent.Comp.Current = newPrototype.ID;
|
|
Dirty(ent);
|
|
}
|
|
|
|
public static List<BarSignPrototype> GetAllBarSigns(IPrototypeManager prototypeManager)
|
|
{
|
|
return prototypeManager
|
|
.EnumeratePrototypes<BarSignPrototype>()
|
|
.Where(p => !p.Hidden)
|
|
.ToList();
|
|
}
|
|
}
|