Requires https://github.com/space-wizards/space-station-14/pull/768 - [x] Play sounds - [x] SoundSchedules actually work - [x] Send sound to specific users - [x] Make existing components use SoundComponent - [x] Add ScheduledSounds from prototypes - [x] Add Play methods equivalent to those of AudioSystem. - [x] Document most code.
89 lines
3.3 KiB
C#
89 lines
3.3 KiB
C#
using Content.Shared.GameObjects;
|
||
using SS14.Server.GameObjects.EntitySystems;
|
||
using SS14.Shared.Audio;
|
||
using SS14.Shared.GameObjects.EntitySystemMessages;
|
||
using SS14.Shared.Interfaces.GameObjects;
|
||
using SS14.Shared.Interfaces.GameObjects.Components;
|
||
using SS14.Shared.Interfaces.Physics;
|
||
using SS14.Shared.Interfaces.Timing;
|
||
using SS14.Shared.IoC;
|
||
using SS14.Shared.Map;
|
||
using SS14.Shared.Maths;
|
||
using SS14.Shared.Physics;
|
||
using SS14.Shared.Serialization;
|
||
using System;
|
||
using Content.Server.GameObjects.Components.Sound;
|
||
using SS14.Shared.GameObjects;
|
||
|
||
namespace Content.Server.GameObjects.Components.Weapon.Ranged.Hitscan
|
||
{
|
||
public class HitscanWeaponComponent : Component
|
||
{
|
||
private const float MaxLength = 20;
|
||
public override string Name => "HitscanWeapon";
|
||
|
||
string Spritename = "Objects/laser.png";
|
||
int Damage = 10;
|
||
|
||
public override void ExposeData(ObjectSerializer serializer)
|
||
{
|
||
base.ExposeData(serializer);
|
||
|
||
serializer.DataField(ref Spritename, "sprite", "Objects/laser.png");
|
||
serializer.DataField(ref Damage, "damage", 10);
|
||
}
|
||
|
||
public override void Initialize()
|
||
{
|
||
base.Initialize();
|
||
|
||
var rangedWeapon = Owner.GetComponent<RangedWeaponComponent>();
|
||
rangedWeapon.FireHandler = Fire;
|
||
}
|
||
|
||
private void Fire(IEntity user, GridCoordinates clickLocation)
|
||
{
|
||
var userPosition = user.Transform.WorldPosition; //Remember world positions are ephemeral and can only be used instantaneously
|
||
var angle = new Angle(clickLocation.Position - userPosition);
|
||
|
||
var ray = new Ray(userPosition, angle.ToVec());
|
||
var rayCastResults = IoCManager.Resolve<IPhysicsManager>().IntersectRay(ray, MaxLength,
|
||
Owner.Transform.GetMapTransform().Owner);
|
||
|
||
Hit(rayCastResults);
|
||
AfterEffects(user, rayCastResults, angle);
|
||
}
|
||
|
||
protected virtual void Hit(RayCastResults ray)
|
||
{
|
||
if (ray.HitEntity != null && ray.HitEntity.TryGetComponent(out DamageableComponent damage))
|
||
{
|
||
damage.TakeDamage(DamageType.Heat, Damage);
|
||
}
|
||
}
|
||
|
||
protected virtual void AfterEffects(IEntity user, RayCastResults ray, Angle angle)
|
||
{
|
||
var time = IoCManager.Resolve<IGameTiming>().CurTime;
|
||
var dist = ray.DidHitObject ? ray.Distance : MaxLength;
|
||
var offset = angle.ToVec() * dist / 2;
|
||
var message = new EffectSystemMessage
|
||
{
|
||
EffectSprite = Spritename,
|
||
Born = time,
|
||
DeathTime = time + TimeSpan.FromSeconds(1),
|
||
Size = new Vector2(dist, 1f),
|
||
Coordinates = user.Transform.GridPosition.Translated(offset),
|
||
//Rotated from east facing
|
||
Rotation = (float) angle.Theta,
|
||
ColorDelta = new Vector4(0, 0, 0, -1500f),
|
||
Color = new Vector4(255, 255, 255, 750),
|
||
Shaded = false
|
||
};
|
||
var mgr = IoCManager.Resolve<IEntitySystemManager>();
|
||
mgr.GetEntitySystem<EffectSystem>().CreateParticle(message);
|
||
Owner.GetComponent<SoundComponent>().Play("/Audio/laser.ogg", AudioParams.Default.WithVolume(-5));
|
||
}
|
||
}
|
||
}
|