aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/hud.svelte
blob: ce32e0d44398f653fa9efdb243e0881850ae00d3 (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
<script>
  export let x;
  export let y;

  const kCoordinateLength = 6;
  const kSeparatorRegex = /([0-9a-z]{2})/g;

  const formatCoordinate = function formatCoordinate(coordinate) {
    return coordinate
      .toString(16)
      .padStart(kCoordinateLength, 0)
      .replace(kSeparatorRegex, '$1 ');
  }
</script>

<div class="hud">
  { formatCoordinate(x) } × { formatCoordinate(y) }
</div>

<style>
  .hud {
    background-color: #fff;
    padding: 4px;
    position: fixed;
    bottom: 2px;
    right: 2px;
    font-smooth: never;
    -webkit-font-smoothing : none;
  }
</style>