-
Notifications
You must be signed in to change notification settings - Fork 0
/
hex_tutorial.js
396 lines (324 loc) · 10.2 KB
/
hex_tutorial.js
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
391
392
393
394
395
396
// Generated code -- http://www.redblobgames.com/grids/hexagons/
"use strict";
function Point(x, y) {
return {x: x, y: y};
}
function Hex(q, r, s) {
return {q: q, r: r, s: s};
}
function hex_add(a, b)
{
return Hex(a.q + b.q, a.r + b.r, a.s + b.s);
}
function hex_subtract(a, b)
{
return Hex(a.q - b.q, a.r - b.r, a.s - b.s);
}
function hex_scale(a, k)
{
return Hex(a.q * k, a.r * k, a.s * k);
}
function hex_rotate_left(a)
{
return Hex(-a.s, -a.q, -a.r);
}
function hex_rotate_right(a)
{
return Hex(-a.r, -a.s, -a.q);
}
var hex_directions = [Hex(1, 0, -1), Hex(1, -1, 0), Hex(0, -1, 1), Hex(-1, 0, 1), Hex(-1, 1, 0), Hex(0, 1, -1)];
function hex_direction(direction)
{
return hex_directions[direction];
}
function hex_neighbor(hex, direction)
{
return hex_add(hex, hex_direction(direction));
}
var hex_diagonals = [Hex(2, -1, -1), Hex(1, -2, 1), Hex(-1, -1, 2), Hex(-2, 1, 1), Hex(-1, 2, -1), Hex(1, 1, -2)];
function hex_diagonal_neighbor(hex, direction)
{
return hex_add(hex, hex_diagonals[direction]);
}
function hex_length(hex)
{
return Math.trunc((Math.abs(hex.q) + Math.abs(hex.r) + Math.abs(hex.s)) / 2);
}
function hex_distance(a, b)
{
return hex_length(hex_subtract(a, b));
}
function hex_round(h)
{
var q = Math.trunc(Math.round(h.q));
var r = Math.trunc(Math.round(h.r));
var s = Math.trunc(Math.round(h.s));
var q_diff = Math.abs(q - h.q);
var r_diff = Math.abs(r - h.r);
var s_diff = Math.abs(s - h.s);
if (q_diff > r_diff && q_diff > s_diff)
{
q = -r - s;
}
else
if (r_diff > s_diff)
{
r = -q - s;
}
else
{
s = -q - r;
}
return Hex(q, r, s);
}
function hex_lerp(a, b, t)
{
return Hex(a.q * (1 - t) + b.q * t, a.r * (1 - t) + b.r * t, a.s * (1 - t) + b.s * t);
}
function hex_linedraw(a, b)
{
var N = hex_distance(a, b);
var a_nudge = Hex(a.q + 0.000001, a.r + 0.000001, a.s - 0.000002);
var b_nudge = Hex(b.q + 0.000001, b.r + 0.000001, b.s - 0.000002);
var results = [];
var step = 1.0 / Math.max(N, 1);
for (var i = 0; i <= N; i++)
{
results.push(hex_round(hex_lerp(a_nudge, b_nudge, step * i)));
}
return results;
}
function OffsetCoord(col, row) {
return {col: col, row: row};
}
var EVEN = 1;
var ODD = -1;
function qoffset_from_cube(offset, h)
{
var col = h.q;
var row = h.r + Math.trunc((h.q + offset * (h.q & 1)) / 2);
return OffsetCoord(col, row);
}
function qoffset_to_cube(offset, h)
{
var q = h.col;
var r = h.row - Math.trunc((h.col + offset * (h.col & 1)) / 2);
var s = -q - r;
return Hex(q, r, s);
}
function roffset_from_cube(offset, h)
{
var col = h.q + Math.trunc((h.r + offset * (h.r & 1)) / 2);
var row = h.r;
return OffsetCoord(col, row);
}
function roffset_to_cube(offset, h)
{
var q = h.col - Math.trunc((h.row + offset * (h.row & 1)) / 2);
var r = h.row;
var s = -q - r;
return Hex(q, r, s);
}
function Orientation(f0, f1, f2, f3, b0, b1, b2, b3, start_angle) {
return {f0: f0, f1: f1, f2: f2, f3: f3, b0: b0, b1: b1, b2: b2, b3: b3, start_angle: start_angle};
}
function Layout(orientation, size, origin) {
return {orientation: orientation, size: size, origin: origin};
}
var layout_pointy = Orientation(Math.sqrt(3.0), Math.sqrt(3.0) / 2.0, 0.0, 3.0 / 2.0, Math.sqrt(3.0) / 3.0, -1.0 / 3.0, 0.0, 2.0 / 3.0, 0.5);
var layout_flat = Orientation(3.0 / 2.0, 0.0, Math.sqrt(3.0) / 2.0, Math.sqrt(3.0), 2.0 / 3.0, 0.0, -1.0 / 3.0, Math.sqrt(3.0) / 3.0, 0.0);
function hex_to_pixel(layout, h)
{
var M = layout.orientation;
var size = layout.size;
var origin = layout.origin;
var x = (M.f0 * h.q + M.f1 * h.r) * size.x;
var y = (M.f2 * h.q + M.f3 * h.r) * size.y;
return Point(x + origin.x, y + origin.y);
}
function pixel_to_hex(layout, p)
{
var M = layout.orientation;
var size = layout.size;
var origin = layout.origin;
var pt = Point((p.x - origin.x) / size.x, (p.y - origin.y) / size.y);
var q = M.b0 * pt.x + M.b1 * pt.y;
var r = M.b2 * pt.x + M.b3 * pt.y;
return Hex(q, r, -q - r);
}
function hex_corner_offset(layout, corner)
{
var M = layout.orientation;
var size = layout.size;
var angle = 2.0 * Math.PI * (M.start_angle - corner) / 6;
return Point(size.x * Math.cos(angle), size.y * Math.sin(angle));
}
function polygon_corners(layout, h)
{
var corners = [];
var center = hex_to_pixel(layout, h);
for (var i = 0; i < 6; i++)
{
var offset = hex_corner_offset(layout, i);
corners.push(Point(center.x + offset.x, center.y + offset.y));
}
return corners;
}
// Tests
function complain(name) {
console.log("FAIL", name);
}
function equal_hex(name, a, b)
{
if (!(a.q == b.q && a.s == b.s && a.r == b.r))
{
complain(name);
}
}
function equal_offsetcoord(name, a, b)
{
if (!(a.col == b.col && a.row == b.row))
{
complain(name);
}
}
function equal_int(name, a, b)
{
if (!(a == b))
{
complain(name);
}
}
function equal_hex_array(name, a, b)
{
equal_int(name, a.length, b.length);
for (var i = 0; i < a.length; i++)
{
equal_hex(name, a[i], b[i]);
}
}
function test_hex_arithmetic()
{
equal_hex("hex_add", Hex(4, -10, 6), hex_add(Hex(1, -3, 2), Hex(3, -7, 4)));
equal_hex("hex_subtract", Hex(-2, 4, -2), hex_subtract(Hex(1, -3, 2), Hex(3, -7, 4)));
}
function test_hex_direction()
{
equal_hex("hex_direction", Hex(0, -1, 1), hex_direction(2));
}
function test_hex_neighbor()
{
equal_hex("hex_neighbor", Hex(1, -3, 2), hex_neighbor(Hex(1, -2, 1), 2));
}
function test_hex_diagonal()
{
equal_hex("hex_diagonal", Hex(-1, -1, 2), hex_diagonal_neighbor(Hex(1, -2, 1), 3));
}
function test_hex_distance()
{
equal_int("hex_distance", 7, hex_distance(Hex(3, -7, 4), Hex(0, 0, 0)));
}
function test_hex_rotate_right()
{
equal_hex("hex_rotate_right", hex_rotate_right(Hex(1, -3, 2)), Hex(3, -2, -1));
}
function test_hex_rotate_left()
{
equal_hex("hex_rotate_left", hex_rotate_left(Hex(1, -3, 2)), Hex(-2, -1, 3));
}
function test_hex_round()
{
var a = Hex(0, 0, 0);
var b = Hex(1, -1, 0);
var c = Hex(0, -1, 1);
equal_hex("hex_round 1", Hex(5, -10, 5), hex_round(hex_lerp(Hex(0, 0, 0), Hex(10, -20, 10), 0.5)));
equal_hex("hex_round 2", hex_round(a), hex_round(hex_lerp(a, b, 0.499)));
equal_hex("hex_round 3", hex_round(b), hex_round(hex_lerp(a, b, 0.501)));
equal_hex("hex_round 4", hex_round(a), hex_round(Hex(a.q * 0.4 + b.q * 0.3 + c.q * 0.3, a.r * 0.4 + b.r * 0.3 + c.r * 0.3, a.s * 0.4 + b.s * 0.3 + c.s * 0.3)));
equal_hex("hex_round 5", hex_round(c), hex_round(Hex(a.q * 0.3 + b.q * 0.3 + c.q * 0.4, a.r * 0.3 + b.r * 0.3 + c.r * 0.4, a.s * 0.3 + b.s * 0.3 + c.s * 0.4)));
}
function test_hex_linedraw()
{
equal_hex_array("hex_linedraw", [Hex(0, 0, 0), Hex(0, -1, 1), Hex(0, -2, 2), Hex(1, -3, 2), Hex(1, -4, 3), Hex(1, -5, 4)], hex_linedraw(Hex(0, 0, 0), Hex(1, -5, 4)));
}
function test_layout()
{
var h = Hex(3, 4, -7);
var flat = Layout(layout_flat, Point(10, 15), Point(35, 71));
equal_hex("layout", h, hex_round(pixel_to_hex(flat, hex_to_pixel(flat, h))));
var pointy = Layout(layout_pointy, Point(10, 15), Point(35, 71));
equal_hex("layout", h, hex_round(pixel_to_hex(pointy, hex_to_pixel(pointy, h))));
}
function test_conversion_roundtrip()
{
var a = Hex(3, 4, -7);
var b = OffsetCoord(1, -3);
equal_hex("conversion_roundtrip even-q", a, qoffset_to_cube(EVEN, qoffset_from_cube(EVEN, a)));
equal_offsetcoord("conversion_roundtrip even-q", b, qoffset_from_cube(EVEN, qoffset_to_cube(EVEN, b)));
equal_hex("conversion_roundtrip odd-q", a, qoffset_to_cube(ODD, qoffset_from_cube(ODD, a)));
equal_offsetcoord("conversion_roundtrip odd-q", b, qoffset_from_cube(ODD, qoffset_to_cube(ODD, b)));
equal_hex("conversion_roundtrip even-r", a, roffset_to_cube(EVEN, roffset_from_cube(EVEN, a)));
equal_offsetcoord("conversion_roundtrip even-r", b, roffset_from_cube(EVEN, roffset_to_cube(EVEN, b)));
equal_hex("conversion_roundtrip odd-r", a, roffset_to_cube(ODD, roffset_from_cube(ODD, a)));
equal_offsetcoord("conversion_roundtrip odd-r", b, roffset_from_cube(ODD, roffset_to_cube(ODD, b)));
}
function test_offset_from_cube()
{
equal_offsetcoord("offset_from_cube even-q", OffsetCoord(1, 3), qoffset_from_cube(EVEN, Hex(1, 2, -3)));
equal_offsetcoord("offset_from_cube odd-q", OffsetCoord(1, 2), qoffset_from_cube(ODD, Hex(1, 2, -3)));
}
function test_offset_to_cube()
{
equal_hex("offset_to_cube even-", Hex(1, 2, -3), qoffset_to_cube(EVEN, OffsetCoord(1, 3)));
equal_hex("offset_to_cube odd-q", Hex(1, 2, -3), qoffset_to_cube(ODD, OffsetCoord(1, 2)));
}
function test_all()
{
test_hex_arithmetic();
test_hex_direction();
test_hex_neighbor();
test_hex_diagonal();
test_hex_distance();
test_hex_rotate_right();
test_hex_rotate_left();
test_hex_round();
test_hex_linedraw();
test_layout();
test_conversion_roundtrip();
test_offset_from_cube();
test_offset_to_cube();
}
test_all()
// Exports for node/browserify modules:
exports.Point = Point;
exports.Hex = Hex;
exports.hex_add = hex_add;
exports.hex_subtract = hex_subtract;
exports.hex_scale = hex_scale;
exports.hex_rotate_left = hex_rotate_left;
exports.hex_rotate_right = hex_rotate_right;
exports.hex_directions = hex_directions;
exports.hex_direction = hex_direction;
exports.hex_neighbor = hex_neighbor;
exports.hex_diagonals = hex_diagonals;
exports.hex_diagonal_neighbor = hex_diagonal_neighbor;
exports.hex_length = hex_length;
exports.hex_distance = hex_distance;
exports.hex_round = hex_round;
exports.hex_lerp = hex_lerp;
exports.hex_linedraw = hex_linedraw;
exports.OffsetCoord = OffsetCoord;
exports.EVEN = EVEN;
exports.ODD = ODD;
exports.qoffset_from_cube = qoffset_from_cube;
exports.qoffset_to_cube = qoffset_to_cube;
exports.roffset_from_cube = roffset_from_cube;
exports.roffset_to_cube = roffset_to_cube;
exports.Orientation = Orientation;
exports.Layout = Layout;
exports.layout_pointy = layout_pointy;
exports.layout_flat = layout_flat;
exports.hex_to_pixel = hex_to_pixel;
exports.pixel_to_hex = pixel_to_hex;
exports.hex_corner_offset = hex_corner_offset;
exports.polygon_corners = polygon_corners;