Files
motif/ux-test.html
T
b1rdmania 679afbfa65 Rebrand to WARIO SYNTH
- Update site title, h1, taglines across all pages
- OpenGraph/Twitter meta tags now use wario.png
- FAQ updated to "What is WARIO SYNTH?"
- All references to "Motif engine" → "Wario Synthesis Engine"
- Share links now branded as WARIO SYNTH

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 10:34:31 +00:00

901 lines
29 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WARIO SYNTH - UX Test</title>
<style>
:root {
--bg: #08080c;
--surface: #101014;
--surface-2: #18181f;
--border: rgba(255,255,255,0.08);
--text: #e8e8e8;
--text-dim: #888;
--neon-green: #00ff88;
--neon-pink: #ff00aa;
--neon-blue: #00aaff;
--neon-orange: #ff8800;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 24px 16px;
background: var(--bg);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
min-height: 100vh;
line-height: 1.5;
}
.container {
max-width: 480px;
margin: 0 auto;
}
/* Header */
header {
text-align: center;
margin-bottom: 32px;
}
h1 {
font-size: 2em;
margin: 0 0 8px 0;
color: var(--neon-green);
text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
letter-spacing: 0.05em;
}
.tagline {
color: var(--text-dim);
font-size: 15px;
margin: 0;
}
/* Search */
.search-box {
display: flex;
gap: 8px;
margin-bottom: 16px;
}
input[type="text"] {
flex: 1;
background: var(--surface);
border: 1px solid var(--border);
color: var(--text);
padding: 14px 16px;
border-radius: 10px;
font-size: 15px;
transition: border-color 0.15s;
}
input[type="text"]:focus {
outline: none;
border-color: var(--neon-green);
box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}
input[type="text"]::placeholder {
color: #555;
}
button {
background: var(--surface);
color: var(--text);
border: 1px solid var(--border);
padding: 14px 20px;
border-radius: 10px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.15s ease;
}
button:hover:not(:disabled) {
border-color: rgba(255,255,255,0.2);
background: var(--surface-2);
}
button:disabled {
opacity: 0.4;
cursor: not-allowed;
}
button.primary {
background: var(--neon-green);
color: #000;
border-color: var(--neon-green);
font-weight: 600;
}
button.primary:hover:not(:disabled) {
box-shadow: 0 0 24px rgba(0, 255, 136, 0.4);
transform: translateY(-1px);
}
/* Status */
.status {
text-align: center;
font-size: 13px;
color: var(--text-dim);
margin-bottom: 24px;
min-height: 20px;
}
.status.error {
color: var(--neon-pink);
}
/* Results */
.results {
display: none;
margin-bottom: 24px;
}
.results.visible {
display: block;
}
.results-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-dim);
margin-bottom: 8px;
}
.result-item {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 12px 14px;
margin-bottom: 6px;
cursor: pointer;
transition: all 0.15s;
display: flex;
justify-content: space-between;
align-items: center;
}
.result-item:hover {
border-color: rgba(255,255,255,0.15);
background: var(--surface-2);
}
.result-item.selected {
border-color: var(--neon-green);
box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}
.result-title {
font-size: 14px;
font-weight: 500;
}
.result-meta {
font-size: 12px;
color: var(--text-dim);
}
/* Player Card */
.player-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 20px;
display: none;
}
.player-card.visible {
display: block;
}
.now-playing {
text-align: center;
margin-bottom: 16px;
}
.now-playing-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-dim);
margin-bottom: 4px;
}
.now-playing-title {
font-size: 16px;
font-weight: 600;
color: var(--text);
}
/* EQ Visualizer */
.eq-visualizer {
display: flex;
align-items: flex-end;
justify-content: center;
gap: 2px;
height: 80px;
background: rgba(0,0,0,0.5);
border-radius: 8px;
padding: 10px;
margin-bottom: 16px;
position: relative;
overflow: hidden;
}
.eq-visualizer::before {
content: '';
position: absolute;
inset: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0,0,0,0.1) 2px,
rgba(0,0,0,0.1) 4px
);
pointer-events: none;
z-index: 10;
}
.eq-bar {
width: 6px;
min-height: 3px;
background: linear-gradient(to top, var(--neon-green) 0%, var(--neon-blue) 100%);
border-radius: 2px;
transition: height 0.05s ease-out;
box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}
.eq-bar.hot {
background: linear-gradient(to top, var(--neon-orange) 0%, var(--neon-pink) 100%);
box-shadow: 0 0 8px rgba(255, 0, 170, 0.4);
}
/* Player Controls */
.player-controls {
display: flex;
gap: 10px;
justify-content: center;
margin-bottom: 16px;
}
.player-controls button {
flex: 1;
max-width: 140px;
}
/* Share row */
.share-row {
display: flex;
gap: 10px;
justify-content: center;
margin-bottom: 10px;
}
.share-row button {
flex: 1;
max-width: 140px;
}
.share-hint {
margin: 0 0 16px 0;
font-size: 12px;
color: var(--text-dim);
min-height: 16px;
text-align: center;
}
/* Volume */
.volume-row {
display: flex;
align-items: center;
gap: 12px;
}
.volume-label {
font-size: 12px;
color: var(--text-dim);
min-width: 50px;
}
input[type="range"] {
flex: 1;
-webkit-appearance: none;
appearance: none;
height: 4px;
background: var(--surface-2);
border-radius: 2px;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--neon-green);
cursor: pointer;
box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
/* Mode Toggle */
.mode-toggle {
display: flex;
background: var(--surface-2);
border-radius: 8px;
padding: 4px;
margin-bottom: 16px;
}
.mode-btn {
flex: 1;
padding: 10px 12px;
border: none;
background: transparent;
color: var(--text-dim);
font-size: 13px;
font-weight: 500;
border-radius: 6px;
cursor: pointer;
transition: all 0.15s;
}
.mode-btn:hover {
color: var(--text);
}
.mode-btn.active {
background: var(--surface);
color: var(--neon-green);
box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
/* Footer */
footer {
text-align: center;
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid var(--border);
}
footer p {
font-size: 12px;
color: var(--text-dim);
margin: 0;
}
footer a {
color: var(--neon-green);
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>WARIO SYNTH</h1>
<p class="tagline">Turn any song into retro game console music</p>
</header>
<div class="search-box">
<input type="text" id="songInput" placeholder="Search any song..." value="Hotel California" />
<button id="searchBtn">Search</button>
</div>
<div id="status" class="status">Search for a song to get started</div>
<div id="results" class="results">
<div class="results-label">Results</div>
<div id="resultsList"></div>
</div>
<div id="playerCard" class="player-card">
<div class="now-playing">
<div class="now-playing-label">Now Playing</div>
<div class="now-playing-title" id="nowPlayingTitle">--</div>
</div>
<div class="eq-visualizer" id="eqVisualizer"></div>
<div class="mode-toggle">
<button class="mode-btn active" data-mode="preview">Preview</button>
<button class="mode-btn" data-mode="synth">Synth Engine</button>
</div>
<div class="player-controls">
<button id="playBtn" class="primary">Play</button>
<button id="stopBtn" disabled>Stop</button>
</div>
<div class="share-row">
<button id="copyLinkBtn" disabled>Copy link</button>
<button id="shareXBtn" disabled>Share on X</button>
</div>
<div class="share-row">
<button id="downloadMp3Btn" disabled>Download MP3</button>
</div>
<div id="shareHint" class="share-hint"></div>
<div class="volume-row">
<span class="volume-label">Volume</span>
<input type="range" id="volumeSlider" min="0" max="1" step="0.01" value="0.7" />
</div>
</div>
<footer>
<p>UX Test Page · <a href="/">Back to main</a></p>
</footer>
</div>
<script type="module">
import { MIDIService } from './src/services/MIDIService.ts';
import { MIDIParser } from './src/midi/MIDIParser.ts';
import { SoundfontMIDIPlayer } from './src/synthesis/SoundfontMIDIPlayer.ts';
import { MotifEngine } from './src/core/MotifEngine.ts';
import { unlockAudio } from './src/utils/audioUnlock.ts';
const NUM_BARS = 40;
const midiService = new MIDIService();
let previewPlayer = null;
let motifEngine = null;
let analyser = null;
let dataArray = null;
let animationId = null;
let currentEvents = null;
let currentTitle = '';
let currentMidiUrl = '';
let currentSource = '';
let currentMode = 'preview';
let isPlaying = false;
// DOM
const eqVisualizer = document.getElementById('eqVisualizer');
const nowPlayingTitle = document.getElementById('nowPlayingTitle');
const playBtn = document.getElementById('playBtn');
const stopBtn = document.getElementById('stopBtn');
const copyLinkBtn = document.getElementById('copyLinkBtn');
const shareXBtn = document.getElementById('shareXBtn');
const downloadMp3Btn = document.getElementById('downloadMp3Btn');
const shareHint = document.getElementById('shareHint');
const searchBtn = document.getElementById('searchBtn');
const songInput = document.getElementById('songInput');
const status = document.getElementById('status');
const results = document.getElementById('results');
const resultsList = document.getElementById('resultsList');
const playerCard = document.getElementById('playerCard');
const volumeSlider = document.getElementById('volumeSlider');
const modeBtns = document.querySelectorAll('.mode-btn');
// Create EQ bars
function createBars() {
eqVisualizer.innerHTML = '';
for (let i = 0; i < NUM_BARS; i++) {
const bar = document.createElement('div');
bar.className = 'eq-bar';
bar.style.height = '3px';
eqVisualizer.appendChild(bar);
}
}
// Update visualizer
function updateVisualizer() {
const bars = eqVisualizer.querySelectorAll('.eq-bar');
// If we don't have a real analyser wired up, run a lightweight faux animation
// so the UX test page doesn't depend on player internals.
if (!analyser || !dataArray) {
bars.forEach((bar) => {
const value = isPlaying ? Math.floor(Math.random() * 255) : 0;
const height = Math.max(3, (value / 255) * 60);
bar.style.height = height + 'px';
if (value > 180) bar.classList.add('hot');
else bar.classList.remove('hot');
});
if (isPlaying) animationId = requestAnimationFrame(updateVisualizer);
return;
}
analyser.getByteFrequencyData(dataArray);
const step = Math.floor(dataArray.length / NUM_BARS);
bars.forEach((bar, i) => {
let sum = 0;
for (let j = 0; j < step; j++) {
sum += dataArray[i * step + j] || 0;
}
const value = sum / step;
const height = Math.max(3, (value / 255) * 60);
bar.style.height = height + 'px';
if (value > 180) {
bar.classList.add('hot');
} else {
bar.classList.remove('hot');
}
});
if (isPlaying) animationId = requestAnimationFrame(updateVisualizer);
}
function stopVisualizer() {
if (animationId) {
cancelAnimationFrame(animationId);
animationId = null;
}
const bars = eqVisualizer.querySelectorAll('.eq-bar');
bars.forEach(bar => {
bar.style.height = '3px';
bar.classList.remove('hot');
});
}
// Search
async function handleSearch() {
const query = songInput.value.trim();
if (!query) return;
setStatus('Searching...');
searchBtn.disabled = true;
results.classList.remove('visible');
playerCard.classList.remove('visible');
try {
const searchResults = await midiService.search(query);
if (searchResults.length === 0) {
setStatus('No results found', true);
return;
}
displayResults(searchResults.slice(0, 5));
setStatus(`Found ${searchResults.length} results`);
} catch (e) {
setStatus(`Error: ${e.message}`, true);
} finally {
searchBtn.disabled = false;
}
}
function displayResults(items) {
resultsList.innerHTML = '';
items.forEach((item, index) => {
const div = document.createElement('div');
div.className = 'result-item';
div.innerHTML = `
<span class="result-title">${item.title}</span>
<span class="result-meta">${item.source}</span>
`;
div.addEventListener('click', () => selectResult(item, div));
resultsList.appendChild(div);
});
results.classList.add('visible');
}
async function selectResult(item, element) {
// Update selection UI
document.querySelectorAll('.result-item').forEach(el => el.classList.remove('selected'));
element.classList.add('selected');
setStatus(`Loading ${item.title}...`);
stopPlayback();
try {
const midiBuffer = await midiService.fetchMIDI(item.midiUrl);
if (!midiBuffer) throw new Error('Failed to fetch');
currentEvents = MIDIParser.parseMIDI(midiBuffer);
currentTitle = item.title;
currentMidiUrl = item.midiUrl;
currentSource = item.source;
// Setup audio
const audioContext = await unlockAudio();
// Create preview player
previewPlayer = new SoundfontMIDIPlayer(audioContext);
await previewPlayer.load(currentEvents);
previewPlayer.setVolume(parseFloat(volumeSlider.value));
// Create motif engine
motifEngine = new MotifEngine();
// Setup analyser
// Note: SoundfontMIDIPlayer doesn't expose a stable analyser hook.
// Keep analyser null and use faux EQ animation for the test page.
analyser = null;
dataArray = null;
// Show player
nowPlayingTitle.textContent = currentTitle;
playerCard.classList.add('visible');
playBtn.disabled = false;
copyLinkBtn.disabled = false;
shareXBtn.disabled = false;
downloadMp3Btn.disabled = false;
setStatus('Ready to play');
shareHint.textContent = '';
} catch (e) {
setStatus(`Error: ${e.message}`, true);
}
}
async function handlePlay() {
if (!currentEvents) return;
try {
isPlaying = true;
playBtn.disabled = true;
stopBtn.disabled = false;
if (currentMode === 'preview') {
await previewPlayer.play();
} else {
// Match main page output: passthrough → SynthesisEngine
await motifEngine.generateFromMIDI(currentEvents, 'passthrough');
motifEngine.setVolume(parseFloat(volumeSlider.value));
await motifEngine.play();
}
updateVisualizer();
} catch (e) {
setStatus(`Play error: ${e.message}`, true);
stopPlayback();
}
}
function stopPlayback() {
isPlaying = false;
if (previewPlayer) previewPlayer.stop();
if (motifEngine) motifEngine.stop();
playBtn.disabled = !currentEvents;
stopBtn.disabled = true;
stopVisualizer();
}
function downloadBlob(blob, filename) {
const a = document.createElement('a');
const url = URL.createObjectURL(blob);
a.href = url;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
setTimeout(() => URL.revokeObjectURL(url), 1000);
}
function floatToInt16(input) {
const out = new Int16Array(input.length);
for (let i = 0; i < input.length; i++) {
const s = Math.max(-1, Math.min(1, input[i]));
out[i] = s < 0 ? s * 0x8000 : s * 0x7fff;
}
return out;
}
async function downloadMp3() {
if (!currentEvents) return;
try {
downloadMp3Btn.disabled = true;
shareHint.textContent = 'Preparing MP3…';
// Ensure audio unlocked (user gesture)
const audioContext = await unlockAudio();
// Stop any current playback first
stopPlayback();
// Ensure Motif engine exists
if (!motifEngine) motifEngine = new MotifEngine();
// Use synth output (the "Gameboy" render)
await motifEngine.generateFromMIDI(currentEvents, 'procedural');
motifEngine.setVolume(1);
// Lazy-load MP3 encoder
const lameMod = await import('lamejs');
const Mp3Encoder = lameMod.Mp3Encoder || (lameMod.default && lameMod.default.Mp3Encoder);
if (!Mp3Encoder) throw new Error('MP3 encoder not available');
const channels = 2;
const sampleRate = audioContext.sampleRate;
const kbps = 128;
const encoder = new Mp3Encoder(channels, sampleRate, kbps);
const mp3Chunks = [];
// Tap audio via ScriptProcessorNode
const bufferSize = 4096;
const processor = audioContext.createScriptProcessor(bufferSize, channels, channels);
const sink = audioContext.createGain();
sink.gain.value = 0; // avoid doubling audible output
processor.connect(sink);
sink.connect(audioContext.destination);
let recording = true;
processor.onaudioprocess = (e) => {
if (!recording) return;
const ib = e.inputBuffer;
const left = floatToInt16(ib.getChannelData(0));
const right = ib.numberOfChannels > 1 ? floatToInt16(ib.getChannelData(1)) : left;
// Encode in 1152-sample frames
const frameSize = 1152;
for (let i = 0; i < left.length; i += frameSize) {
const l = left.subarray(i, i + frameSize);
const r = right.subarray(i, i + frameSize);
const buf = encoder.encodeBuffer(l, r);
if (buf && buf.length) mp3Chunks.push(buf);
}
};
motifEngine.connectOutput(processor);
// Start playback (audible) while we capture/encode
isPlaying = true;
await motifEngine.play();
updateVisualizer();
const durationSec = Math.max(1, motifEngine.getDuration());
shareHint.textContent = `Recording… (${Math.round(durationSec)}s)`;
await new Promise((resolve) => setTimeout(resolve, (durationSec + 0.25) * 1000));
recording = false;
try { motifEngine.disconnectOutput(processor); } catch {}
try { processor.disconnect(); } catch {}
try { sink.disconnect(); } catch {}
// Stop playback after capture
stopPlayback();
const tail = encoder.flush();
if (tail && tail.length) mp3Chunks.push(tail);
const blob = new Blob(mp3Chunks, { type: 'audio/mpeg' });
const safeTitle = cleanTitleForShare(currentTitle || 'motif').slice(0, 80) || 'motif';
downloadBlob(blob, `${safeTitle}.mp3`);
shareHint.textContent = 'MP3 downloaded.';
window.setTimeout(() => (shareHint.textContent = ''), 1400);
} catch (e) {
shareHint.textContent = `MP3 failed: ${e && e.message ? e.message : 'Unknown error'}`;
} finally {
downloadMp3Btn.disabled = false;
}
}
async function copyShareLink() {
if (!currentMidiUrl) return;
const url = await buildShortShareUrl();
try {
if (navigator.clipboard?.writeText) {
await navigator.clipboard.writeText(url);
} else {
const ta = document.createElement('textarea');
ta.value = url;
ta.style.position = 'fixed';
ta.style.left = '-9999px';
document.body.appendChild(ta);
ta.focus();
ta.select();
document.execCommand('copy');
document.body.removeChild(ta);
}
shareHint.textContent = 'Link copied.';
window.setTimeout(() => (shareHint.textContent = ''), 1200);
} catch {
shareHint.textContent = 'Copy failed.';
}
}
function cleanTitleForShare(title) {
return (title || '')
.replace(/\.mid$/i, '')
.replace(/_/g, ' ')
.replace(/\s+/g, ' ')
.trim();
}
function buildShareUrl() {
const title = cleanTitleForShare(currentTitle);
// Make BitMidi links short: /play?src=bitmidi&id=12345&title=...
if (currentSource === 'bitmidi') {
const m = String(currentMidiUrl).match(/\/uploads\/(\d+)\.mid/i);
if (m && m[1]) {
return `${window.location.origin}/play?src=bitmidi&id=${encodeURIComponent(m[1])}&title=${encodeURIComponent(title)}`;
}
}
// Fallback: include full MIDI URL (long, but works)
return `${window.location.origin}/play?u=${encodeURIComponent(currentMidiUrl)}&title=${encodeURIComponent(title)}`;
}
async function buildShortShareUrl() {
const title = cleanTitleForShare(currentTitle);
// Prefer creating a backend short link for sharing on X.
try {
let payload = null;
if (currentSource === 'bitmidi') {
const m = String(currentMidiUrl).match(/\/uploads\/(\d+)\.mid/i);
if (m && m[1]) payload = { src: 'bitmidi', id: m[1], title };
}
if (!payload) {
payload = { u: currentMidiUrl, title };
}
const resp = await fetch('/api/share', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload),
});
if (!resp.ok) throw new Error(`share:${resp.status}`);
const data = await resp.json();
if (data && data.url) return `${window.location.origin}${data.url}`;
} catch (e) {
// fall back
}
return buildShareUrl();
}
function shareOnX() {
if (!currentMidiUrl) return;
(async () => {
const url = await buildShortShareUrl();
const niceTitle = cleanTitleForShare(currentTitle);
// Keep tweet text clean; URL is passed separately.
const text = niceTitle ? `WARIO SYNTH: ${niceTitle}` : 'WARIO SYNTH chiptune';
const intent = `https://twitter.com/intent/tweet?text=${encodeURIComponent(text)}&url=${encodeURIComponent(url)}`;
window.open(intent, '_blank', 'noopener,noreferrer');
})();
}
function setStatus(msg, isError = false) {
status.textContent = msg;
status.classList.toggle('error', isError);
}
// Mode toggle
modeBtns.forEach(btn => {
btn.addEventListener('click', () => {
modeBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
currentMode = btn.dataset.mode;
stopPlayback();
});
});
// Volume
volumeSlider.addEventListener('input', () => {
const vol = parseFloat(volumeSlider.value);
if (previewPlayer) previewPlayer.setVolume(vol);
if (motifEngine) motifEngine.setVolume(vol);
});
// Events
searchBtn.addEventListener('click', handleSearch);
songInput.addEventListener('keypress', e => {
if (e.key === 'Enter') handleSearch();
});
playBtn.addEventListener('click', handlePlay);
stopBtn.addEventListener('click', stopPlayback);
copyLinkBtn.addEventListener('click', () => void copyShareLink());
shareXBtn.addEventListener('click', shareOnX);
downloadMp3Btn.addEventListener('click', () => downloadMp3());
// Init
createBars();
</script>
</body>
</html>