-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdirection.lua
96 lines (86 loc) · 2.1 KB
/
direction.lua
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
local Direction = {
UP = "Up",
LEFT = "Left",
DOWN = "Down",
RIGHT = "Right",
UP_LEFT = "Up Left",
UP_RIGHT = "Up Right",
DOWN_LEFT = "Down Left",
DOWN_RIGHT = "Down Right",
}
Direction.list = {
Direction.UP,
Direction.LEFT,
Direction.DOWN,
Direction.RIGHT,
Direction.UP_LEFT,
Direction.UP_RIGHT,
Direction.DOWN_LEFT,
Direction.DOWN_RIGHT,
}
local reverse_table = {
["Up"] = "Down",
["Left"] = "Left",
["Down"] = "Up",
["Right"] = "Left",
["Up Left"] = "Down Right",
["Up Right"] = "Down Left",
["Down Left"] = "Up Right",
["Down Right"] = "Up Left",
}
function Direction.reverse(direction)
return reverse_table[direction]
end
function Direction.to_vector(direction_str)
local x_distance = 0
local y_distance = 0
local x_start_offset = 0
local y_start_offset = 0
if direction_str == Direction.LEFT then
x_distance = -0.5
y_distance = 0.5
elseif direction_str == Direction.RIGHT then
x_distance = 0.5
y_distance = -0.5
elseif direction_str == Direction.UP then
x_distance = -0.5
y_distance = -0.5
elseif direction_str == Direction.DOWN then
x_distance = 0.5
y_distance = 0.5
elseif direction_str == Direction.UP_LEFT then
x_distance = -1
elseif direction_str == Direction.DOWN_RIGHT then
x_distance = 1
elseif direction_str == Direction.UP_RIGHT then
y_distance = -1
elseif direction_str == Direction.DOWN_LEFT then
y_distance = 1
end
return {x=x_distance,y=y_distance}
end
function Direction.from_points(point_a, point_b)
local a_z_offset = point_a.z / 2
local a_x = point_a.x - a_z_offset
local a_y = point_a.y - a_z_offset
local b_z_offset = point_b.z / 2
local b_x = point_b.x - b_z_offset
local b_y = point_b.y - b_z_offset
return Direction.from_offset(b_x - a_x, b_y - a_y)
end
local directions = {
"Up Left",
"Up",
"Up Right",
"Right",
"Down Right",
"Down",
"Down Left",
"Left",
}
function Direction.from_offset(x, y)
local angle = math.atan(y, x)
local direction_index = math.floor(angle / math.pi * 4) + 5
return directions[direction_index]
end
return Direction