-
Notifications
You must be signed in to change notification settings - Fork 23
/
hex_test.go
390 lines (323 loc) · 8.82 KB
/
hex_test.go
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
package hexgrid
import (
"fmt"
"testing"
)
func TestHexAdd(t *testing.T) {
var testCases = []struct {
hexA hex
hexB hex
expected hex
}{
{NewHex(1, -3), NewHex(3, -7), NewHex(4, -10)},
}
for _, tt := range testCases {
actual := HexAdd(tt.hexA, tt.hexB)
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
func TestHexSubtract(t *testing.T) {
var testCases = []struct {
hexA hex
hexB hex
expected hex
}{
{NewHex(1, -3), NewHex(3, -7), NewHex(-2, 4)},
}
for _, tt := range testCases {
actual := HexSubtract(tt.hexA, tt.hexB)
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
func TestHexScale(t *testing.T) {
var testCases = []struct {
hexA hex
factor int
expected hex
}{
{NewHex(1, -3), 2, NewHex(2, -6)},
{NewHex(-2, 3), 2, NewHex(-4, 6)},
}
for _, tt := range testCases {
actual := HexScale(tt.hexA, tt.factor)
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
// _ _
// / \
// _ _ /(0,-2) \ _ _
// / \ / \
// /(-1,-1)\ _ _ /(1,-2) \
// \ / \ /
// \ _ _ /(0,-1) \ _ _ /
// / \ / \
// /(-1,0) \ _ _ /(1,-1) \
// \ / \ /
// \ _ _ / (0,0) \ _ _ /
// \ /
// \ _ _ /
// Tests that the neighbors of a certain hexagon are properly computed for all directions
func TestHexNeighbor(t *testing.T) {
var testCases = []struct {
origin hex
direction direction
expected hex
}{
{NewHex(0, -1), directionSE, NewHex(1, -1)},
{NewHex(0, -1), directionNE, NewHex(1, -2)},
{NewHex(0, -1), directionN, NewHex(0, -2)},
{NewHex(0, -1), directionNW, NewHex(-1, -1)},
{NewHex(0, -1), directionSW, NewHex(-1, 0)},
{NewHex(0, -1), directionS, NewHex(0, 0)},
}
for _, tt := range testCases {
actual := HexNeighbor(tt.origin, tt.direction)
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
// DISTANCE TESTS
// _ _
// / \
// _ _ /(0,-2) \ _ _
// / \ / \
// /(-1,-1)\ _ _ /(1,-2) \
// \ / \ /
// \ _ _ /(0,-1) \ _ _ /
// / \ / \
// /(-1,0) \ _ _ /(1,-1) \
// \ / \ /
// \ _ _ / (0,0) \ _ _ /
// / \ / \
// /(-1,1) \ _ _ / (1,0) \
// \ / \ /
// \ _ _ / (0,1) \ _ _ /
// \ /
// \ _ _ /
func TestHexDistance(t *testing.T) {
var testCases = []struct {
origin hex
destination hex
expected int
}{
{NewHex(-1, -1), NewHex(1, -1), 2},
{NewHex(-1, -1), NewHex(0, 0), 2},
{NewHex(0, -1), NewHex(0, -2), 1},
{NewHex(-1, -1), NewHex(0, 1), 3},
{NewHex(1, 0), NewHex(-1, -1), 3},
}
for _, tt := range testCases {
actual := HexDistance(tt.origin, tt.destination)
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
// _____ _____ _____
// / \ / \ / \
// _____/ -2,-2 \_____/ 0,-3 \_____/ 2,-4 \_____
// / \ / \ / \ / \
// / -3,-1 \_____/ -1,-2 \_____/ 1,-3 \_____/ 3,-4 \
// \ / \ / \ / \ /
// \_____/ -2,-1 \_____/ 0,-2 \_____/ 2,-3 \_____/
// / \ / \ / \ / \
// / -3,0 \_____/ -1,-1 \_____/ 1,-2 \_____/ 3,-3 \
// \ / \ / \ / \ /
// \_____/ -2,0 \_____/ 0,-1 \_____/ 2,-2 \_____/
// / \ / \ / \ / \
// / -3,1 \_____/ -1,0 \_____/ 1,-1 \_____/ 3,-2 \
// \ / \ / \ / \ /
// \_____/ \_____/ \_____/ \_____/
func TestHexLineDraw(t *testing.T) {
var testCases = []struct {
origin hex
destination hex
expected string // the expected path serialized to string
}{
{NewHex(-3, -1), NewHex(3, -3), "[(-3,-1) (-2,-1) (-1,-2) (0,-2) (1,-2) (2,-3) (3,-3)]"},
{NewHex(-2, 0), NewHex(2, -2), "[(-2,0) (-1,0) (0,-1) (1,-1) (2,-2)]"},
{NewHex(1, -1), NewHex(1, -3), "[(1,-1) (1,-2) (1,-3)]"},
}
for _, tt := range testCases {
actual := fmt.Sprint(HexLineDraw(tt.origin, tt.destination))
if actual != tt.expected {
t.Error("Expected:", tt.expected, "got:", actual)
}
}
}
// Tests that the range includes the correct number of hexagons with a certain radius from the center
// _____
// / \
// _____/ -1,-2 \_____
// / \ / \
// _____/ -2,-1 \_____/ 0,-2 \_____
// / \ / \ / \
// / -3,-1 \_____/ -1,-2 \_____/ 1,-3 \
// \ / \ / \ /
// \_____/ -2,-2 \_____/ 0,-3 \_____/
// / \ / \ / \
// / -3,-1 \_____/ -1,-2 \_____/ 1,-3 \
// \ / \ CENTR / \ /
// \_____/ -2,-1 \_____/ 0,-2 \_____/
// / \ / \ / \
// / -3,0 \_____/ -1,-1 \_____/ 1,-2 \
// \ / \ / \ /
// \_____/ -2,0 \_____/ 0,-1 \_____/
// \ / \ /
// \_____/ -1,0 \_____/
// \ /
// \_____/
func TestHexRange(t *testing.T) {
var testCases = []struct {
radius int
expectedNumberOfHexagons int
}{
{0, 1},
{1, 7},
{2, 19},
}
for _, tt := range testCases {
actual := HexRange(NewHex(1, -2), tt.radius)
if len(actual) != tt.expectedNumberOfHexagons {
t.Error("Expected:", tt.expectedNumberOfHexagons, "got:", len(actual))
}
}
}
// _ _ _ _
// / \ / \
// /( 0,0) \ _ _ /(2,-1) \
// \ / \ /
// \ _ _ / (1,0) \ _ _ /
// / \ / \
// / (0,1) \ _ _ / (2,0) \
// \ / \ /
// \ _ _ / (1,1) \ _ _ /
// \ /
// \ _ _ /
func TestHexRectangle(t *testing.T) {
hexgrid := HexRectangleGrid(3, 2)
if len(hexgrid) != 6 {
t.Error("Expected: 6 got:", len(hexgrid))
}
}
// _ _ _ _ _ _
// / \ / \ / \
// / 0 0 \ _ _ / 2-1 \ _ _ / 4-2 \ _ _
// \ / \ X / \ X / \
// \ _ _ / 1 0 \ _ _ / 3-1 \ _ _ / 5-2 \
// / \ /# # #\ X / \ X /
// / 0 1 \ _ _ /# 2 0 #\ _ _ / 4-1 \ _ _ /
// \ / \# #/# # #\ X / \
// \ _ _ / 1 1 \#_#_#/# 3 0 #\ _ _ / 5-1 \
// / \ |P| / \# X #/ \ X /
// / 0 2 \ _ _ / 2 1 \#_#_#/ 4 0 \ _ _ /
// \ / \ / \ X / \
// \ _ _ / 1 2 \ _ _ / 3 1 \ _ _ / 5 0 \
// / \ / \ / \ /
// / 0 3 \ _ _ / 2 2 \ _ _ / 4 1 \ _ _ /
// \ / \ / \ / \
// \ _ _ / 1 3 \ _ _ / 3 2 \ _ _ / 5 1 \
// \ / \ / \ /
// \ _ _ / \ _ _ / \ _ _ /
//
// The FOV measured from the central hex at 1,1, assuming blocking hexagons at 2,0 and 3,0.
// The hexagons marked with an X are non-visible. The remaining 16 are visible.
func TestHexFieldOfView(t *testing.T) {
universe := []hex{
NewHex(0, 0),
NewHex(0, 1),
NewHex(0, 2),
NewHex(0, 3),
NewHex(1, 0),
NewHex(1, 1),
NewHex(1, 2),
NewHex(1, 3),
NewHex(2, -1),
NewHex(2, 0),
NewHex(2, 1),
NewHex(2, 2),
NewHex(3, -1),
NewHex(3, 0),
NewHex(3, 1),
NewHex(3, 2),
NewHex(4, -2),
NewHex(4, -1),
NewHex(4, 0),
NewHex(4, 1),
NewHex(5, -2),
NewHex(5, -1),
NewHex(5, 0),
NewHex(5, 1),
}
losBlockers := []hex{NewHex(2, 0), NewHex(3, 0)}
actual := HexFieldOfView(NewHex(1, 1), universe, losBlockers)
if len(actual) != 16 {
t.Error("Expected: 16 got:", len(actual))
}
}
////////////////
// Benchmarks //
////////////////
func BenchmarkHexDistance(b *testing.B) {
var testCases = []struct {
destination hex
}{
{NewHex(0, 0)},
{NewHex(100, 100)},
{NewHex(10000, 10000)},
}
for _, bm := range testCases {
origin := NewHex(0, 0)
b.Run(fmt.Sprint(origin, ":", bm.destination), func(b *testing.B) {
for i := 0; i < b.N; i++ {
HexDistance(origin, bm.destination)
}
})
}
}
func BenchmarkHexLineDraw(b *testing.B) {
var testCases = []struct {
destination hex
}{
{NewHex(0, 0)},
{NewHex(100, 100)},
{NewHex(10000, 10000)},
}
for _, bm := range testCases {
origin := NewHex(0, 0)
b.Run(fmt.Sprint(origin, ":", bm.destination), func(b *testing.B) {
for i := 0; i < b.N; i++ {
HexLineDraw(origin, bm.destination)
}
})
}
}
func BenchmarkHexRange(b *testing.B) {
var testCases = []struct {
radius int
}{
{0},
{10},
{100},
}
for _, bm := range testCases {
origin := NewHex(0, 0)
b.Run(fmt.Sprint(origin, ":", bm.radius), func(b *testing.B) {
for i := 0; i < b.N; i++ {
HexRange(NewHex(1, -2), bm.radius)
}
})
}
}
func BenchmarkHexHasLineOfSight(b *testing.B) {
for i := 0; i < b.N; i++ {
HexHasLineOfSight(NewHex(1, 1), NewHex(4, -1), []hex{NewHex(2, 0), NewHex(3, 0)})
}
}