From 8feccfeb234b69b1069d6b972f13b77ee2c0459f Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Sat, 15 Oct 2022 20:23:20 +0200 Subject: show player logs on view match page --- web/pw-server/src/lib/components/OutputPane.svelte | 143 +------------------ web/pw-server/src/lib/components/PlayerLog.svelte | 152 +++++++++++++++++++++ web/pw-server/src/lib/components/Visualizer.svelte | 13 +- 3 files changed, 157 insertions(+), 151 deletions(-) create mode 100644 web/pw-server/src/lib/components/PlayerLog.svelte (limited to 'web/pw-server/src/lib/components') diff --git a/web/pw-server/src/lib/components/OutputPane.svelte b/web/pw-server/src/lib/components/OutputPane.svelte index 91ffadc..68c5c3b 100644 --- a/web/pw-server/src/lib/components/OutputPane.svelte +++ b/web/pw-server/src/lib/components/OutputPane.svelte @@ -1,157 +1,22 @@ -
+

Player log

- {#if showRawStderr} -
- {playerLog.flatMap((turn) => turn.stderr).join("\n")} -
- {:else} -
- {#each playerLog as logTurn, i} -
-
- Turn {i} - {#if logTurn.action?.type === "dispatches"} - {pluralize(logTurn.action.dispatches.length, "dispatch")} - {:else if logTurn.action?.type === "timeout"} - timeout - {:else if logTurn.action?.type === "bad_command"} - invalid command - {/if} -
- {#if logTurn.action?.type === "dispatches"} -
- {#each logTurn.action.dispatches as dispatch} -
-
- {pluralize(dispatch.ship_count, "ship")} from {dispatch.origin} to {dispatch.destination} -
- {#if dispatch.error} - {dispatch.error} - {/if} -
- {/each} -
- {:else if logTurn.action?.type === "bad_command"} -
-
{logTurn.action.command}
-
Parse error: {logTurn.action.error}
-
- {/if} - {#if logTurn.stderr.length > 0} -
stderr
-
- {#each logTurn.stderr as stdErrMsg} -
{stdErrMsg}
- {/each} -
- {/if} -
- {/each} -
- {/if} +
diff --git a/web/pw-server/src/lib/components/Visualizer.svelte b/web/pw-server/src/lib/components/Visualizer.svelte index 8517a39..4fe8ab4 100644 --- a/web/pw-server/src/lib/components/Visualizer.svelte +++ b/web/pw-server/src/lib/components/Visualizer.svelte @@ -2,24 +2,13 @@ import { onDestroy, onMount } from "svelte"; import * as visualizer from "pw-visualizer"; import init_wasm_module from "planetwars-rs"; + import { PLAYER_COLORS } from "$lib/constants"; export let matchLog = null; export let matchData: object; // match object as returned by api let initialized = false; - const PLAYER_COLORS = [ - "#ff8000", - "#0080ff", - "#ff6693", - "#3fcb55", - "#cbc33f", - "#cf40e9", - "#ff3f0d", - "#1beef0", - "#0dc5ff", - ]; - onMount(async () => { await init_wasm_module(); -- cgit v1.2.3