]> git.r.bdr.sh - rbdr/canvas/blobdiff - src/routes/index.svelte
Move things to components
[rbdr/canvas] / src / routes / index.svelte
index 5982b0ae37dddc9f0a4528bcb91aefdfa249fbd9..7d5a3ff48c6f98a73abeb074cb28dc007fa876c4 100644 (file)
@@ -1,2 +1,82 @@
-<h1>Welcome to SvelteKit</h1>
-<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
+<script>
+
+  import { browser } from '$app/env';
+  import Background from '$lib/components/background.svelte';
+  import Palette from '$lib/components/palette.svelte';
+  import Hud from '$lib/components/hud.svelte';
+
+  const kCoordinateLength = 6;
+  const kMaxSize = Math.pow(16, kCoordinateLength);
+
+  $: x = 0;
+  $: y = 0;
+  $: shouldShowPalette = false;
+
+  let dragging = false;
+
+  const modulo = function modulo (number, base) {
+    return ((number % base) + base) % base
+  };
+
+  const moveCanvas = function moveCanvas(event) {
+
+    if (dragging) {
+      let deltaX = event.x - dragging.x;
+      let deltaY = event.y - dragging.y;
+      x = modulo(x - deltaX, kMaxSize);
+      y = modulo(y - deltaY, kMaxSize);
+      dragging.x = event.x;
+      dragging.y = event.y;
+    }
+  }
+
+  const startDragging = function startDragging(event) {
+    dragging = {
+      x: event.x,
+      y: event.y
+    };
+  }
+
+  const stopDragging = function startDragging() {
+    dragging = null;
+  }
+
+  const showPalette = function showPalette(event) {
+    event.preventDefault();
+    dragging = null;
+    document.documentElement.style.setProperty('--palette-x', event.clientX + 'px');
+    document.documentElement.style.setProperty('--palette-y', event.clientY + 'px');
+    shouldShowPalette = true;
+  }
+
+  const hidePalette = function hidePalette() {
+    event.preventDefault();
+    shouldShowPalette = false;
+  }
+</script>
+
+<div
+  class="canvas"
+  on:click={hidePalette}
+  on:contextmenu={showPalette}
+  on:mousedown={startDragging}
+  on:mouseup={stopDragging}
+  on:mousemove={moveCanvas}>
+>
+  <Background x={x} y={y}/>
+  <Hud x={x} y={y} />
+
+  {#if shouldShowPalette }
+    <Palette/>
+  {/if}
+</div>
+
+<style>
+  .canvas {
+    user-select: none;
+    padding: 0;
+    margin: 0;
+    width: 100vw;
+    height: 100vh;
+  }
+</style>