mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
121 lines
3.7 KiB
C#
121 lines
3.7 KiB
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Reflection;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Robust.Shared.Scripting
|
|
{
|
|
[PublicAPI]
|
|
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
[SuppressMessage("ReSharper", "CA1822")]
|
|
public abstract class ScriptGlobalsShared
|
|
{
|
|
[field: Dependency] public IEntityManager ent { get; } = default!;
|
|
[field: Dependency] public IComponentManager comp { get; } = default!;
|
|
[field: Dependency] public IPrototypeManager prot { get; } = default!;
|
|
[field: Dependency] public IMapManager map { get; } = default!;
|
|
|
|
public IEnumerable<T> protos<T>() where T : class, IPrototype
|
|
{
|
|
return prot.EnumeratePrototypes<T>();
|
|
}
|
|
|
|
public IEnumerable<EntityPrototype> eprotos => prot.EnumeratePrototypes<EntityPrototype>();
|
|
|
|
public EntityCoordinates gpos(double x, double y, int gridId)
|
|
{
|
|
return gpos(x, y, new GridId(gridId));
|
|
}
|
|
|
|
public EntityCoordinates gpos(double x, double y, GridId gridId)
|
|
{
|
|
if (!map.TryGetGrid(gridId, out var grid))
|
|
{
|
|
return new EntityCoordinates(EntityUid.Invalid, ((float) x, (float) y));
|
|
}
|
|
|
|
return new EntityCoordinates(grid.GridEntityId, ((float) x, (float) y));
|
|
}
|
|
|
|
public EntityUid eid(int i)
|
|
{
|
|
return new(i);
|
|
}
|
|
|
|
public IEntity getent(int i)
|
|
{
|
|
return getent(eid(i));
|
|
}
|
|
|
|
public T gcm<T>(int i)
|
|
{
|
|
return getent(i).GetComponent<T>();
|
|
}
|
|
|
|
public IEntity getent(EntityUid uid)
|
|
{
|
|
return ent.GetEntity(uid);
|
|
}
|
|
|
|
public IMapGrid getgrid(int i)
|
|
{
|
|
return map.GetGrid(new GridId(i));
|
|
}
|
|
|
|
public IMapGrid getgrid(GridId mapId)
|
|
{
|
|
return map.GetGrid(mapId);
|
|
}
|
|
|
|
public IEntity spawn(string prototype, EntityCoordinates position)
|
|
{
|
|
return ent.SpawnEntity(prototype, position);
|
|
}
|
|
|
|
public T res<T>()
|
|
{
|
|
return IoCManager.Resolve<T>();
|
|
}
|
|
|
|
public object? prop(object target, string name)
|
|
{
|
|
return target.GetType().GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic)
|
|
!.GetValue(target);
|
|
}
|
|
|
|
public void setprop(object target, string name, object? value)
|
|
{
|
|
target.GetType().GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public)
|
|
!.SetValue(target, value);
|
|
}
|
|
|
|
public object? fld(object target, string name)
|
|
{
|
|
return target.GetType().GetField(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public)
|
|
!.GetValue(target);
|
|
}
|
|
|
|
public void setfld(object target, string name, object? value)
|
|
{
|
|
target.GetType().GetField(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public)
|
|
!.SetValue(target, value);
|
|
}
|
|
|
|
public object? call(object target, string name, params object[] args)
|
|
{
|
|
var t = target.GetType();
|
|
// TODO: overloads
|
|
var m = t.GetMethod(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public);
|
|
return m!.Invoke(target, args);
|
|
}
|
|
|
|
public abstract void write(object toString);
|
|
public abstract void show(object obj);
|
|
}
|
|
}
|