Kav/Geometry/MeshSprite.cs

143 lines
4.1 KiB
C#
Raw Normal View History

2020-12-07 03:27:46 +00:00
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace Kav
{
2020-12-11 00:02:13 +00:00
public class MeshSprite : IIndexDrawable
{
2020-12-10 06:28:51 +00:00
public enum FlipOptions
{
None,
Horizontal,
Vertical,
Both
}
private static readonly int PixelScale = 40;
2020-12-07 03:01:23 +00:00
private static readonly short[] Indices = new short[]
{
0,
1,
2,
1,
3,
2
};
public Texture2D Texture { get; }
public Texture2D Normal { get; }
2020-12-07 03:27:46 +00:00
public IndexBuffer IndexBuffer { get; }
public VertexBuffer VertexBuffer { get; }
public BoundingBox BoundingBox { get; }
public MeshSprite(
GraphicsDevice graphicsDevice,
2020-12-10 06:28:51 +00:00
Texture2D texture,
FlipOptions flipOptions
) {
Texture = texture;
Normal = null;
IndexBuffer = new IndexBuffer(
graphicsDevice,
IndexElementSize.SixteenBits,
6,
BufferUsage.WriteOnly
);
2020-12-07 03:01:23 +00:00
IndexBuffer.SetData(Indices);
2020-12-10 06:28:51 +00:00
var vertexArray = GenerateVertexArray(Texture, flipOptions);
2020-12-07 03:27:46 +00:00
VertexBuffer = new VertexBuffer(
graphicsDevice,
typeof(VertexPositionNormalTexture),
4,
BufferUsage.WriteOnly
);
2020-12-07 03:27:46 +00:00
VertexBuffer.SetData(vertexArray);
BoundingBox = BoundingBox.CreateFromPoints(Positions(vertexArray));
}
public MeshSprite(
GraphicsDevice graphicsDevice,
Texture2D texture,
2020-12-10 06:28:51 +00:00
Texture2D normal,
FlipOptions flipOptions
) {
Texture = texture;
Normal = normal;
IndexBuffer = new IndexBuffer(
graphicsDevice,
IndexElementSize.SixteenBits,
6,
BufferUsage.WriteOnly
);
2020-12-07 03:01:23 +00:00
IndexBuffer.SetData(Indices);
2020-12-10 06:28:51 +00:00
var vertexArray = GenerateVertexArray(Texture, flipOptions);
2020-12-07 03:27:46 +00:00
VertexBuffer = new VertexBuffer(
graphicsDevice,
typeof(VertexPositionNormalTexture),
4,
BufferUsage.WriteOnly
);
2020-12-07 03:27:46 +00:00
VertexBuffer.SetData(vertexArray);
BoundingBox = BoundingBox.CreateFromPoints(Positions(vertexArray));
}
2020-12-10 06:28:51 +00:00
private static VertexPositionNormalTexture[] GenerateVertexArray(Texture2D texture, FlipOptions flipOptions)
{
VertexPositionNormalTexture[] result = new VertexPositionNormalTexture[4];
2020-12-10 06:28:51 +00:00
var xLeft = 0;
var xRight = 1;
var yTop = 0;
var yBottom = 1;
2020-12-10 06:28:51 +00:00
if (flipOptions == FlipOptions.Horizontal || flipOptions == FlipOptions.Both)
{
xLeft = 1;
xRight = 0;
}
if (flipOptions == FlipOptions.Vertical || flipOptions == FlipOptions.Both)
{
yTop = 1;
yBottom = 0;
}
2020-12-10 06:28:51 +00:00
result[0].Position = new Vector3(-texture.Width / 2, texture.Height / 2, 0) / PixelScale;
2020-12-07 03:45:03 +00:00
result[0].Normal = new Vector3(0, 0, 1);
result[0].TextureCoordinate = new Vector2(xLeft, yTop);
result[1].Position = new Vector3(texture.Width / 2, texture.Height / 2, 0) / PixelScale;
2020-12-07 03:45:03 +00:00
result[1].Normal = new Vector3(0, 0, 1);
result[1].TextureCoordinate = new Vector2(xRight, yTop);
result[2].Position = new Vector3(-texture.Width / 2, -texture.Height / 2, 0) / PixelScale;
2020-12-07 03:45:03 +00:00
result[2].Normal = new Vector3(0, 0, 1);
result[2].TextureCoordinate = new Vector2(xLeft, yBottom);
result[3].Position = new Vector3(texture.Width / 2, -texture.Height / 2, 0) / PixelScale;
2020-12-07 03:45:03 +00:00
result[3].Normal = new Vector3(0, 0, 1);
result[3].TextureCoordinate = new Vector2(xRight, yBottom);
return result;
}
2020-12-07 03:27:46 +00:00
private static IEnumerable<Vector3> Positions(IEnumerable<VertexPositionNormalTexture> vertices)
{
foreach (var vertex in vertices)
{
yield return vertex.Position;
}
}
}
}