-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPointExtensions.cs
89 lines (80 loc) · 3.7 KB
/
PointExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using SadConsole;
using System.Drawing.Drawing2D;
namespace System.Drawing
{
using SadFont = SadConsole.Font;
public static class PointExtensions
{
/// <summary>
/// Translates a console cell position to where it appears on the screen in pixels.
/// </summary>
/// <param name="point">The current cell position.</param>
/// <param name="cellWidth">The width of a cell in pixels.</param>
/// <param name="cellHeight">The height of a cell in pixels.</param>
/// <returns>The pixel position of the top-left of the cell.</returns>
public static Point ConsoleLocationToWorld(this Point point, int cellWidth, int cellHeight)
{
return new Point(point.X * cellWidth, point.Y * cellHeight);
}
/// <summary>
/// Translates a pixel to where it appears on a console cell.
/// </summary>
/// <param name="point">The current world position.</param>
/// <param name="cellWidth">The width of a cell in pixels.</param>
/// <param name="cellHeight">The height of a cell in pixels.</param>
/// <returns>The cell position on the screen.</returns>
public static Point WorldLocationToConsole(this Point point, int cellWidth, int cellHeight)
{
return new Point(point.X / cellWidth, point.Y / cellHeight);
}
/// <summary>
/// Translates an x,y position to an array index.
/// </summary>
/// <param name="point">The position.</param>
/// <param name="rowWidth">How many columns in a row.</param>
/// <returns></returns>
public static int ToIndex(this Point point, int rowWidth)
{
return point.Y * rowWidth + point.X;
}
/// <summary>
/// Gets the cell coordinates of the <paramref name="targetFont"/> based on a cell in the <paramref name="sourceFont"/>.
/// </summary>
/// <param name="point">The position of the cell in the <paramref name="sourceFont"/>.</param>
/// <param name="sourceFont">The source font translating from.</param>
/// <param name="targetFont">The target font translating to.</param>
/// <returns>The position of the cell in the <paramref name="targetFont"/>.</returns>
public static Point TranslateFont(this Point point, SadFont sourceFont, SadFont targetFont)
{
var world = point.ConsoleLocationToWorld(sourceFont.Size.X, sourceFont.Size.Y);
return world.WorldLocationToConsole(targetFont.Size.X, targetFont.Size.Y);
}
/// <summary>
/// Creates a position matrix (in pixels) based on the position of a cell.
/// </summary>
/// <param name="position">The cell position.</param>
/// <param name="cellSize">The size of the cell in pixels.</param>
/// <param name="absolutePositioning">When true, indicates that the <paramref name="position"/> indicates pixels, not cell coordinates.</param>
/// <returns>A matrix for rendering.</returns>
public static Matrix ToPositionMatrix(this Point position, Point cellSize, bool absolutePositioning)
{
Point worldLocation;
if (absolutePositioning)
worldLocation = position;
else
worldLocation = position.ConsoleLocationToWorld(cellSize.X, cellSize.Y);
var matrix = new Matrix();
matrix.Translate(worldLocation.X, worldLocation.Y);
return matrix;
}
}
#if SFML
public static class Vector2fExtensions
{
public static float Length(this Vector2f v)
{
return (float)global::System.Math.Sqrt((v.X * v.X) + (v.Y * v.Y));
}
}
#endif
}