diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-13 13:46:24 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-13 13:46:24 +0100 |
| commit | 493bb2125d1f51c0d56b0f87638a3ec23b8afd3d (patch) | |
| tree | 28b61999d6278d3fb36ec766537c3a52c14df4e3 /TODO.md | |
| parent | 2fd58be11246772dd50ede6188a4ab960e6ffc0e (diff) | |
Doc: Add tracker humanization and sample offset features
Specifies sample offset (shift trigger left) and humanization (per-note timing/volume variation) for realistic playback.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'TODO.md')
| -rw-r--r-- | TODO.md | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -46,7 +46,24 @@ Enhanced CNN post-processing with multi-dimensional feature inputs. --- -## Priority 3: 3D System Enhancements (Task #18) +## Priority 3: Tracker Humanization & Sample Offset + +Enhance tracker with sample offset and humanization for realistic playback. + +**Features:** +1. **Sample Offset:** Intrinsic offset value per sample (shifts trigger left, preserves beat sync) + - Add `offset_sec` to `NoteParams` (gen.h) and `Sample` struct + - Extend `.track` SAMPLE syntax: `SAMPLE <name> [OFFSET <sec>] [VOL <vol>]` + - Apply negative `start_offset_samples` in `trigger_note_event()` + +2. **Humanization:** Per-note random timing/volume variation (baked into WAV export) + - Add to `TrackerScore`: `humanize_seed`, `timing_variation_pct`, `volume_variation_pct` + - `.track` syntax: `HUMANIZE SEED <int> TIMING <pct> VOLUME <pct>` + - Apply per-event RNG modulation in `tracker_update()` + +--- + +## Priority 4: 3D System Enhancements (Task #18) Pipeline for importing complex 3D scenes to replace hardcoded geometry. |
