From eb15703a3f87e4eadc8839b06de12b9c6ec54023 Mon Sep 17 00:00:00 2001 From: skal Date: Fri, 13 Feb 2026 08:21:34 +0100 Subject: Refactor: Reorganize workspaces and remove assets/ directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Workspace structure now: - workspaces/{main,test}/obj/ (3D models) - workspaces/{main,test}/shaders/ (WGSL shaders) - workspaces/{main,test}/music/ (audio samples) Changes: - Moved workspaces/*/assets/music/ → workspaces/*/music/ - Updated assets.txt paths (assets/music/ → music/) - Moved test_demo.{seq,track} to tools/ - Moved assets/originals/ → tools/originals/ - Removed assets/common/ (legacy, duplicated in workspaces) - Removed assets/final/ (legacy, superseded by workspaces) - Updated hot-reload paths in main.cc - Updated CMake references for test_demo and validation - Updated gen_spectrograms.sh paths handoff(Claude): Workspace reorganization complete --- scripts/gen_spectrograms.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/gen_spectrograms.sh b/scripts/gen_spectrograms.sh index 3213787..d779ce6 100755 --- a/scripts/gen_spectrograms.sh +++ b/scripts/gen_spectrograms.sh @@ -1,13 +1,13 @@ #!/bin/bash -# This script converts all .wav and .aif files from assets/originals -# into .spec files in assets/final using the spectool utility. +# This script converts all .wav and .aif files from tools/originals +# into .spec files in workspaces/main/music using the spectool utility. set -euo pipefail # --- Configuration --- PROJECT_ROOT=$(git rev-parse --show-toplevel) -SOURCE_DIR="${PROJECT_ROOT}/assets/originals" -DEST_DIR="${PROJECT_ROOT}/assets/final/music" +SOURCE_DIR="${PROJECT_ROOT}/tools/originals" +DEST_DIR="${PROJECT_ROOT}/workspaces/main/music" SPECTOOL_PATH="${PROJECT_ROOT}/build/spectool" TEMP_WAV_DIR=$(mktemp -d) -- cgit v1.2.3