| Pads/ |
Pad-page XML harnesses used by the VDJScript local test tracker and related source notes. |
| Skins/ |
Skin fixtures used with local pad/controller/script tests. |
verb-table.json |
Authoritative. VirtualDJ's own verb table, extracted from a serialised record array in __DATA,__data ({const char *name; uint32 id; uint32 flags;}): 1,028 records, 955 ids, 61 alias groups, 37 editor-hidden names, and every verb's Button Editor category (38 categories, from a const char *[38] name array plus a uint8 category-per-id array indexed by id+1). Membership proves a name is a verb and absence disproves it; records sharing an id are the same verb, flags==1 marking the alias spelling, flags==256 the hidden bit. Written by tools/extract_verb_table.py; query with just verb-table <name>. |
action-contracts.json |
Structural contract per verb, read from the surviving ACTION_ class RTTI: name string → std::type_info → vtable. Gives every one of the 955 distinct verbs its implementation class (a checked 955/955 bijection), base-class family (toggle/slider/plain), context mixins (IActionPlugin, IActionSampler), vtable length, and the override matrix — execute, generic query, specialized text query — with slot meanings calibrated from HTTP-proven verbs, not hard-coded. Also carries method-body fingerprints: arg_demand_slots (E_INVALIDARG materialization — 114/116 agreement with sweep needs-args, plus 301 bare-answering query verbs flagged as taking optional args) method_strings (per-slot string refs), and keyword_candidates — 259 verbs whose methods compare an argument against literals, recovering undocumented enum arguments (`get_bpm absolute |
verb-return-types.json |
Observed return type per query verb (Tier 1, HTTP): all 652 query verbs sampled in three read-only contexts and classified — 334 bool, 145 int, 68 float, 4 percent, 72 text, 29 untyped. Also records boolean_truth — whether the verb is true in ternary-condition position, which is independent of its value — and flags truthiness_trap for the 171 verbs that report a true-looking value while being false (get_version → 2026, false; no slider verb is ever true). Only 106/652 query verbs are boolean-true. The authority for a verb's concrete rendered type (proves can return, not always returns); 0 capability conflicts against action-contracts.json. Written by tools/sweep_return_types.py (needs live VirtualDJ); query with just verb-return-type <name>. |
binary-verbs.json |
The structured verb list extracted from the app itself, unioning three sources: 1,012 mangled ACTION_<name> implementation classes, 812 languages.zip catalog entries, and the parser's 967-entry alphabetically sorted name table (which is where aliases live). 1,076 names, covering 998 of the 1,007 the HTTP sweep proved real; flags 63 alias_candidate names (in the table with no implementation class of their own). Membership proves a name is real; absence is NOT a disproof. Written by tools/extract_binary_verbs.py; query with just binary-verb <name>. |
verb-existence-sweep.json |
HTTP existence probe for every verb-store name plus candidates-doc names: status (exists/unresolved), kind (query/action-only/needs-args/context-gated/false-here), the HRESULT, and a live sample value for query verbs. Written by tools/sweep_verb_existence.py; query with just verb-probe <name>. Proves existence and kind only, never behavior. |
vdjremote-opener.bin |
Raw opening handshake captured from a real VirtualDJ Remote device (app build 8515), the reference input for tools/vdjremote_dial.py --decode and the prefix reused by tools/vdjremote_subscribe.py. Backs docs/Remote Protocol.md. |
vdjremote-actions.log |
Decoded device→desktop action frames captured while a real device's controls were touched, including the timed press sequence that maps play/cue/crossfader/volume to control ids. |
| Stems/ |
Stem-file generators for docs/Stem File Format.md claims. make-diagnostic-stems.zsh builds probe files where the master is white noise and each stem a distinct sine tone (100/200/400/800/1600 Hz = kick/bass/vocal/instruments/hihat), so pad→stream routing and master↔stems switching are verifiable by ear; includes a stamped vs unstamped writing-application sidecar A/B. |