Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 98ae53d088c9de0ddf78ea4b92b5a7265e77f79c (plain)
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
if (window.IS_DEV) {
  const source = new EventSource('/esbuild');
  source.addEventListener('change', () => location.reload());
}

function toKey(q, r, s) {
  return `${[q, r, s]}`;
}

function getNeighbors(coords) {
  const [q, r, s] = coords.split(',').map(n => +n);

  return [
    toKey(q + 1, r, s - 1),
    toKey(q - 1, r, s + 1),
    toKey(q + 1, r - 1, s),
    toKey(q - 1, r + 1, s),
    toKey(q, r + 1, s - 1),
    toKey(q, r - 1, s + 1),
  ]
}

function generateRadialCoords({ q, r, s }, radius) {
  const origin = toKey(q, r, s);
  const list = new Set();
  const neighbors = new Set();

  let next = new Set();

  list.add(origin);
  next.add(origin);

  for (let i = 0; i < radius; i++) {
    next.forEach(coords => {
      getNeighbors(coords).forEach(n => {
        list.add(n);
        neighbors.add(n);
      });
    });

    next = new Set(neighbors);
    neighbors.clear();
  }

  return list;
}

const hex = {
  inradius: 8.66,
  circumradius: 10,
}

const horzSpacing = hex.inradius;
const vertSpacing = hex.circumradius * 3 / 2;

const list = generateRadialCoords({ q: 0, r: 0, s: 0 }, 5);
const svg = document.querySelector('svg');
const xmlns = 'http://www.w3.org/2000/svg';

list.forEach(key => {
  const [q, r, s] = key.split(',').map(n => +n);

  let x;

  if (q === s)
    x = 0;
  else if (q > -1 && s > -1 || q < 0 && s < 0)
    x = Math.abs(q - s);
  else
    x = Math.abs(q) + Math.abs(s);

  x = (q > s ? -1 : 1) * x * horzSpacing;
  y = r * vertSpacing;

  const use = document.createElementNS(xmlns, 'use');
  use.setAttributeNS(null, 'href', '#hex');
  use.setAttributeNS(null, 'x', x);
  use.setAttributeNS(null, 'y', y);

  const qText = document.createElementNS(xmlns, 'text');
  qText.textContent = q;
  qText.setAttributeNS(null, 'x', x - 3);
  qText.setAttributeNS(null, 'y', y - 3);

  const rText = document.createElementNS(xmlns, 'text');
  rText.textContent = r;
  rText.setAttributeNS(null, 'x', x + 5);
  rText.setAttributeNS(null, 'y', y + 1.5);

  const sText = document.createElementNS(xmlns, 'text');
  sText.textContent = s;
  sText.setAttributeNS(null, 'x', x - 3);
  sText.setAttributeNS(null, 'y', y + 5);

  [use, qText, rText, sText].forEach(el => svg.appendChild(el));
});