* Fixed Rack/Shelf * Fixes bookshelf, bed * Placeable for beds for bedsheets * Bunch of Physics changes, ask metalgearsloth about em' * More modifications * More * Other stuff * Organizes entities yaml a little bit * Something new * Fixed, happy with the state of this rn * A * A * Ye * E * Done for now... * Applied Reviws * Changes * Fix the robust commit * Fixes tests? * E Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
131 lines
4.3 KiB
C#
131 lines
4.3 KiB
C#
#nullable enable
|
|
using System;
|
|
using Content.Shared.GameObjects.Components.Body;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.Players;
|
|
using Robust.Shared.Serialization;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Movement
|
|
{
|
|
/// <summary>
|
|
/// The basic player mover with footsteps and grabbing
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(IMobMoverComponent))]
|
|
public class SharedPlayerMobMoverComponent : Component, IMobMoverComponent
|
|
{
|
|
public override string Name => "PlayerMobMover";
|
|
public override uint? NetID => ContentNetIDs.PLAYER_MOB_MOVER;
|
|
|
|
private float _stepSoundDistance;
|
|
[DataField("grabRange")]
|
|
private float _grabRange = IMobMoverComponent.GrabRangeDefault;
|
|
[DataField("pushStrength")]
|
|
private float _pushStrength = IMobMoverComponent.PushStrengthDefault;
|
|
|
|
[DataField("weightlessStrength")]
|
|
private float _weightlessStrength = IMobMoverComponent.WeightlessStrengthDefault;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public EntityCoordinates LastPosition { get; set; }
|
|
|
|
/// <summary>
|
|
/// Used to keep track of how far we have moved before playing a step sound
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float StepSoundDistance
|
|
{
|
|
get => _stepSoundDistance;
|
|
set
|
|
{
|
|
if (MathHelper.CloseTo(_stepSoundDistance, value)) return;
|
|
_stepSoundDistance = value;
|
|
}
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float GrabRange
|
|
{
|
|
get => _grabRange;
|
|
set
|
|
{
|
|
if (MathHelper.CloseTo(_grabRange, value)) return;
|
|
_grabRange = value;
|
|
Dirty();
|
|
}
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float PushStrength
|
|
{
|
|
get => _pushStrength;
|
|
set
|
|
{
|
|
if (MathHelper.CloseTo(_pushStrength, value)) return;
|
|
_pushStrength = value;
|
|
Dirty();
|
|
}
|
|
}
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float WeightlessStrength
|
|
{
|
|
get => _weightlessStrength;
|
|
set
|
|
{
|
|
if (MathHelper.CloseTo(_weightlessStrength, value)) return;
|
|
_weightlessStrength = value;
|
|
Dirty();
|
|
}
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
if (!Owner.HasComponent<IMoverComponent>())
|
|
{
|
|
Owner.EnsureComponentWarn<SharedPlayerInputMoverComponent>();
|
|
}
|
|
|
|
if (Owner.TryGetComponent(out IPhysBody? body) && body.BodyType != BodyType.KinematicController)
|
|
{
|
|
Logger.WarningS("mover", $"Attached {nameof(SharedPlayerMobMoverComponent)} to a mob that's BodyType is not KinematicController!'");
|
|
}
|
|
}
|
|
|
|
public override ComponentState GetComponentState(ICommonSession session)
|
|
{
|
|
return new PlayerMobMoverComponentState(_grabRange, _pushStrength, _weightlessStrength);
|
|
}
|
|
|
|
public override void HandleComponentState(ComponentState? curState, ComponentState? nextState)
|
|
{
|
|
base.HandleComponentState(curState, nextState);
|
|
if (curState is not PlayerMobMoverComponentState playerMoverState) return;
|
|
GrabRange = playerMoverState.GrabRange;
|
|
PushStrength = playerMoverState.PushStrength;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
private sealed class PlayerMobMoverComponentState : ComponentState
|
|
{
|
|
public float GrabRange;
|
|
public float PushStrength;
|
|
public float WeightlessStrength;
|
|
|
|
public PlayerMobMoverComponentState(float grabRange, float pushStrength, float weightlessStrength) : base(ContentNetIDs.PLAYER_MOB_MOVER)
|
|
{
|
|
GrabRange = grabRange;
|
|
PushStrength = pushStrength;
|
|
WeightlessStrength = weightlessStrength;
|
|
}
|
|
}
|
|
}
|
|
}
|