* Broadphase refactor (content) * Shuttle jank * Fixes * Testing jank * Features and things * Balance stuffsies * AHHHHHHHHHHHHHHHH * Mass and stuff working * Fix drops * Another balance pass * Balance AGEN * Add in stuff for rotating shuttles for debugging * Nothing to see here * Testbed stuffsies * Fix some tests * Fixen test * Try fixing map * Shuttle movement balance pass * lasaggne * Basic Helmsman console working * Slight docking cleanup * Helmsman requires power * Basic shuttle test * Stuff * Fix computations * Add shuttle console to saltern * Rename helmsman to shuttleconsole * Final stretch * More tweaks * Fix piloting prediction for now.
252 lines
9.2 KiB
C#
252 lines
9.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Content.Shared.DragDrop;
|
|
using Content.Shared.Interaction;
|
|
using Content.Shared.Interaction.Helpers;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.Utility;
|
|
using static Content.Shared.Interaction.SharedInteractionSystem;
|
|
|
|
namespace Content.Shared.Examine
|
|
{
|
|
[Obsolete("Use ExaminedEvent instead.")]
|
|
public interface IExamine
|
|
{
|
|
/// <summary>
|
|
/// Returns a status examine value for components appended to the end of the description of the entity
|
|
/// </summary>
|
|
/// <param name="message">The message to append to which will be displayed.</param>
|
|
/// <param name="inDetailsRange">Whether the examiner is within the 'Details' range, allowing you to show information logically only availabe when close to the examined entity.</param>
|
|
void Examine(FormattedMessage message, bool inDetailsRange);
|
|
}
|
|
|
|
public abstract class ExamineSystemShared : EntitySystem
|
|
{
|
|
public const float ExamineRange = 16f;
|
|
public const float ExamineRangeSquared = ExamineRange * ExamineRange;
|
|
protected const float ExamineDetailsRange = 3f;
|
|
|
|
private static bool IsInDetailsRange(IEntity examiner, IEntity entity)
|
|
{
|
|
return examiner.InRangeUnobstructed(entity, ExamineDetailsRange, ignoreInsideBlocker: true) &&
|
|
examiner.IsInSameOrNoContainer(entity);
|
|
}
|
|
|
|
[Pure]
|
|
protected static bool CanExamine(IEntity examiner, IEntity examined)
|
|
{
|
|
if (!examiner.TryGetComponent(out ExaminerComponent? examinerComponent))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!examinerComponent.DoRangeCheck)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
if (examiner.Transform.MapID != examined.Transform.MapID)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Ignored predicate = entity => entity == examiner || entity == examined;
|
|
|
|
if (examiner.TryGetContainer(out var container))
|
|
{
|
|
predicate += entity => entity == container.Owner;
|
|
}
|
|
|
|
return InRangeUnOccluded(
|
|
examiner.Transform.MapPosition,
|
|
examined.Transform.MapPosition,
|
|
ExamineRange,
|
|
predicate: predicate,
|
|
ignoreInsideBlocker: true);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(MapCoordinates origin, MapCoordinates other, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
if (origin.MapId == MapId.Nullspace ||
|
|
other.MapId == MapId.Nullspace) return false;
|
|
|
|
var occluderSystem = Get<OccluderSystem>();
|
|
if (!origin.InRange(other, range)) return false;
|
|
|
|
var dir = other.Position - origin.Position;
|
|
|
|
if (dir.LengthSquared.Equals(0f)) return true;
|
|
if (range > 0f && !(dir.LengthSquared <= range * range)) return false;
|
|
|
|
predicate ??= _ => false;
|
|
|
|
var ray = new Ray(origin.Position, dir.Normalized);
|
|
var rayResults = occluderSystem
|
|
.IntersectRayWithPredicate(origin.MapId, ray, dir.Length, predicate.Invoke, false).ToList();
|
|
|
|
if (rayResults.Count == 0) return true;
|
|
|
|
if (!ignoreInsideBlocker) return false;
|
|
|
|
foreach (var result in rayResults)
|
|
{
|
|
if (!result.HitEntity.TryGetComponent(out OccluderComponent? o))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var bBox = o.BoundingBox.Translated(o.Owner.Transform.WorldPosition);
|
|
|
|
if (bBox.Contains(origin.Position) || bBox.Contains(other.Position))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(IEntity origin, IEntity other, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = origin.Transform.MapPosition;
|
|
var otherPos = other.Transform.MapPosition;
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(IEntity origin, IComponent other, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = origin.Transform.MapPosition;
|
|
var otherPos = other.Owner.Transform.MapPosition;
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(IEntity origin, EntityCoordinates other, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = origin.Transform.MapPosition;
|
|
var otherPos = other.ToMap(origin.EntityManager);
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(IEntity origin, MapCoordinates other, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = origin.Transform.MapPosition;
|
|
|
|
return InRangeUnOccluded(originPos, other, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(ITargetedInteractEventArgs args, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = args.User.Transform.MapPosition;
|
|
var otherPos = args.Target.Transform.MapPosition;
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(DragDropEvent args, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = args.User.Transform.MapPosition;
|
|
var otherPos = args.DropLocation.ToMap(args.User.EntityManager);
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public static bool InRangeUnOccluded(AfterInteractEventArgs args, float range, Ignored? predicate, bool ignoreInsideBlocker = true)
|
|
{
|
|
var originPos = args.User.Transform.MapPosition;
|
|
var otherPos = args.Target?.Transform.MapPosition ?? args.ClickLocation.ToMap(args.User.EntityManager);
|
|
|
|
return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker);
|
|
}
|
|
|
|
public FormattedMessage GetExamineText(IEntity entity, IEntity? examiner)
|
|
{
|
|
var message = new FormattedMessage();
|
|
|
|
if (examiner == null)
|
|
{
|
|
return message;
|
|
}
|
|
|
|
var doNewline = false;
|
|
|
|
//Add an entity description if one is declared
|
|
if (!string.IsNullOrEmpty(entity.Description))
|
|
{
|
|
message.AddText(entity.Description);
|
|
doNewline = true;
|
|
}
|
|
|
|
message.PushColor(Color.DarkGray);
|
|
|
|
// Raise the event and let things that subscribe to it change the message...
|
|
RaiseLocalEvent(entity.Uid, new ExaminedEvent(message, entity, examiner, IsInDetailsRange(examiner, entity)));
|
|
|
|
//Add component statuses from components that report one
|
|
foreach (var examineComponent in entity.GetAllComponents<IExamine>())
|
|
{
|
|
var subMessage = new FormattedMessage();
|
|
examineComponent.Examine(subMessage, IsInDetailsRange(examiner, entity));
|
|
if (subMessage.Tags.Count == 0)
|
|
continue;
|
|
|
|
if (doNewline)
|
|
message.AddText("\n");
|
|
|
|
message.AddMessage(subMessage);
|
|
doNewline = true;
|
|
}
|
|
|
|
message.Pop();
|
|
|
|
return message;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when an entity is examined.
|
|
/// You have to manually add a newline at the start, and perform cleanup (popping state) at the end.
|
|
/// </summary>
|
|
public class ExaminedEvent : EntityEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The message that will be displayed as the examine text.
|
|
/// Use the methods it exposes to change it, and don't forget to add a newline at the start!
|
|
/// Input/Output parameter.
|
|
/// </summary>
|
|
public FormattedMessage Message { get; }
|
|
|
|
/// <summary>
|
|
/// The entity performing the examining.
|
|
/// </summary>
|
|
public IEntity Examiner { get; }
|
|
|
|
/// <summary>
|
|
/// Entity being examined, for broadcast event purposes.
|
|
/// </summary>
|
|
public IEntity Examined { get; }
|
|
|
|
/// <summary>
|
|
/// Whether the examiner is in range of the entity to get some extra details.
|
|
/// </summary>
|
|
public bool IsInDetailsRange { get; }
|
|
|
|
public ExaminedEvent(FormattedMessage message, IEntity examined, IEntity examiner, bool isInDetailsRange)
|
|
{
|
|
Message = message;
|
|
Examined = examined;
|
|
Examiner = examiner;
|
|
IsInDetailsRange = isInDetailsRange;
|
|
}
|
|
}
|
|
}
|