Files
OpenRA/OpenRA.Mods.Common/HitShapes/Capsule.cs
2023-02-27 08:36:47 +02:00

122 lines
4.2 KiB
C#

#region Copyright & License Information
/*
* Copyright (c) The OpenRA Developers and Contributors
* This file is part of OpenRA, which is free software. It is made
* available to you under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version. For more
* information, see COPYING.
*/
#endregion
using System;
using System.Collections.Generic;
using OpenRA.Graphics;
using OpenRA.Mods.Common.Graphics;
using OpenRA.Mods.Common.Traits;
using OpenRA.Primitives;
namespace OpenRA.Mods.Common.HitShapes
{
public class CapsuleShape : IHitShape
{
public WDist OuterRadius { get; private set; }
[FieldLoader.Require]
public readonly int2 PointA;
[FieldLoader.Require]
public readonly int2 PointB;
public readonly WDist Radius = new WDist(426);
[Desc("Defines the top offset relative to the actor's center.")]
public readonly int VerticalTopOffset = 0;
[Desc("Defines the bottom offset relative to the actor's center.")]
public readonly int VerticalBottomOffset = 0;
int2 ab;
int abLenSq;
public CapsuleShape() { }
public CapsuleShape(int2 a, int2 b, WDist radius)
{
PointA = a;
PointB = b;
Radius = radius;
}
public void Initialize()
{
ab = PointB - PointA;
abLenSq = ab.LengthSquared / 1024;
if (abLenSq == 0)
throw new YamlException("This Capsule describes a circle. Use a Circle HitShape instead.");
if (VerticalTopOffset < VerticalBottomOffset)
throw new YamlException("VerticalTopOffset must be equal to or higher than VerticalBottomOffset.");
OuterRadius = Radius + new WDist(Math.Max(PointA.Length, PointB.Length));
}
public WDist DistanceFromEdge(in WVec v)
{
var p = new int2(v.X, v.Y);
var t = int2.Dot(p - PointA, ab) / abLenSq;
if (t < 0)
return new WDist(Math.Max(0, (PointA - p).Length - Radius.Length));
if (t > 1024)
return new WDist(Math.Max(0, (PointB - p).Length - Radius.Length));
var projection = PointA + new int2(
ab.X * t / 1024,
ab.Y * t / 1024);
var distance = (projection - p).Length;
return new WDist(Math.Max(0, distance - Radius.Length));
}
public WDist DistanceFromEdge(WPos pos, WPos origin, WRot orientation)
{
if (pos.Z > origin.Z + VerticalTopOffset)
return DistanceFromEdge((pos - (origin + new WVec(0, 0, VerticalTopOffset))).Rotate(-orientation));
if (pos.Z < origin.Z + VerticalBottomOffset)
return DistanceFromEdge((pos - (origin + new WVec(0, 0, VerticalBottomOffset))).Rotate(-orientation));
return DistanceFromEdge((pos - new WPos(origin.X, origin.Y, pos.Z)).Rotate(-orientation));
}
IEnumerable<IRenderable> IHitShape.RenderDebugOverlay(HitShape hs, WorldRenderer wr, WPos origin, WRot orientation)
{
var a = origin + new WVec(PointA.X, PointA.Y, VerticalTopOffset).Rotate(orientation);
var b = origin + new WVec(PointB.X, PointB.Y, VerticalTopOffset).Rotate(orientation);
var aa = origin + new WVec(PointA.X, PointA.Y, VerticalBottomOffset).Rotate(orientation);
var bb = origin + new WVec(PointB.X, PointB.Y, VerticalBottomOffset).Rotate(orientation);
var offset1 = new WVec(a.Y - b.Y, b.X - a.X, 0);
offset1 = offset1 * Radius.Length / offset1.Length;
var offset2 = new WVec(aa.Y - bb.Y, bb.X - aa.X, 0);
offset2 = offset2 * Radius.Length / offset2.Length;
var shapeColor = hs.IsTraitDisabled ? Color.LightGray : Color.Yellow;
yield return new CircleAnnotationRenderable(a, Radius, 1, shapeColor);
yield return new CircleAnnotationRenderable(b, Radius, 1, shapeColor);
yield return new CircleAnnotationRenderable(aa, Radius, 1, shapeColor);
yield return new CircleAnnotationRenderable(bb, Radius, 1, shapeColor);
yield return new CircleAnnotationRenderable(origin, OuterRadius, 1, hs.IsTraitDisabled ? Color.Gray : Color.LimeGreen);
yield return new LineAnnotationRenderable(a - offset1, b - offset1, 1, shapeColor);
yield return new LineAnnotationRenderable(a + offset1, b + offset1, 1, shapeColor);
yield return new LineAnnotationRenderable(aa - offset2, bb - offset2, 1, shapeColor);
yield return new LineAnnotationRenderable(aa + offset2, bb + offset2, 1, shapeColor);
}
}
}