This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathMovementVector.cs
96 lines (87 loc) · 3.97 KB
/
MovementVector.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
90
91
92
93
94
95
96
using System.Numerics;
using LeagueSandbox.GameServer;
using LeagueSandbox.GameServer.Content.Navigation;
namespace GameServerCore
{
/// <summary>
/// Class containing coordinate conversions usually used for packets.
/// Most coordinates understandable by the League clients are oriented around an origin which is at the center of the map,
/// however, LeagueSandbox has its origin at the bottom left corner of the map (behind blue fountain), so a conversion is needed.
/// </summary>
public class MovementVector
{
public short X;
public short Y;
public MovementVector(short x, short y)
{
X = x;
Y = y;
}
public MovementVector(Game game, float x, float y)
{
X = FormatCoordinate(x, game.Map.NavigationGrid.MiddleOfMap.Y);
Y = FormatCoordinate(y, game.Map.NavigationGrid.MiddleOfMap.X);
}
/// <summary>
/// Converts the given coordinate by changing its origin to the given origin.
/// </summary>
/// <param name="coordinate">Coordinate to convert.</param>
/// <param name="origin">New origin for the coordinate.</param>
/// <returns>Converted coordinate.</returns>
public static short FormatCoordinate(float coordinate, float origin)
{
return (short)((coordinate - origin) / 2f);
}
/// <summary>
/// Converts the given X coordinate to one which originates at the center of the map.
/// </summary>
/// <param name="navGrid">NavGrid of the current map.</param>
/// <param name="value">Coordinate to convert.</param>
/// <returns>Converted coordinate.</returns>
public static short TargetXToNormalFormat(NavigationGrid navGrid, float value)
{
return FormatCoordinate(value, navGrid.MiddleOfMap.X);
}
/// <summary>
/// Converts the given X coordinate to one which originates at the center of the map.
/// </summary>
/// <param name="game">Current Game instance.</param>
/// <param name="value">Coordinate to convert.</param>
/// <returns>Converted coordinate.</returns>
public static short TargetXToNormalFormat(Game game, float value)
{
return TargetXToNormalFormat(game.Map.NavigationGrid, value);
}
/// <summary>
/// Converts the given Y coordinate to one which originates at the center of the map.
/// </summary>
/// <param name="navGrid">NavGrid of the current map.</param>
/// <param name="value">Coordinate to convert.</param>
/// <returns>Converted coordinate.</returns>
public static short TargetYToNormalFormat(NavigationGrid navGrid, float value)
{
return FormatCoordinate(value, navGrid.MiddleOfMap.Y);
}
/// <summary>
/// Converts the given Y coordinate to one which originates at the center of the map.
/// </summary>
/// <param name="game">Current Game instance.</param>
/// <param name="value">Coordinate to convert.</param>
/// <returns>Converted coordinate.</returns>
public static short TargetYToNormalFormat(Game game, float value)
{
return TargetYToNormalFormat(game.Map.NavigationGrid, value);
}
/// <summary>
/// Converts a 2D vector from normal coordinates to ones compatible with League (usually used in packets); origin at the center of the map.
/// </summary>
/// <param name="coords">Vector2 to convert.</param>
/// <param name="navGrid">Current NavGrid.</param>
/// <returns>Vector2 with origin at the middle of the map.</returns>
public static Vector2 ToCenteredScaledCoordinates(Vector2 coords, NavigationGrid navGrid)
{
Vector2 v = new Vector2(FormatCoordinate(coords.X, navGrid.MiddleOfMap.X), FormatCoordinate(coords.Y, navGrid.MiddleOfMap.Y));
return v;
}
}
}