servicepoint-tanks/TanksServer/Models/PositionHelpers.cs

28 lines
880 B
C#
Raw Normal View History

2024-04-07 19:19:11 +02:00
using System.Diagnostics;
2024-04-10 19:25:45 +02:00
using TanksServer.GameLogic;
2024-04-07 19:19:11 +02:00
2024-04-10 19:25:45 +02:00
namespace TanksServer.Models;
2024-04-07 19:19:11 +02:00
internal static class PositionHelpers
{
public static PixelPosition GetPixelRelative(this TilePosition position, byte subX, byte subY)
{
Debug.Assert(subX < 8);
Debug.Assert(subY < 8);
return new PixelPosition(
X: (ushort)(position.X * MapService.TileSize + subX),
Y: (ushort)(position.Y * MapService.TileSize + subY)
2024-04-07 19:19:11 +02:00
);
}
public static PixelPosition ToPixelPosition(this FloatPosition position) => new(
X: (ushort)((int)position.X % MapService.PixelsPerRow),
Y: (ushort)((int)position.Y % MapService.PixelsPerRow)
2024-04-07 19:19:11 +02:00
);
public static TilePosition ToTilePosition(this PixelPosition position) => new(
X: position.X / MapService.TileSize,
Y: position.Y / MapService.TileSize
);
2024-04-10 19:25:45 +02:00
}