flow/proc_dict.cfg : Updates to score_player.

This commit is contained in:
kevin 2024-11-18 11:50:16 -05:00
parent a9aabb76a8
commit c450378d78

View File

@ -784,12 +784,22 @@
doc: [ "Generate MIDI and score location information from a score file." ] doc: [ "Generate MIDI and score location information from a score file." ]
vars: { vars: {
fname: { type:string, flags:["init"], value:"", doc:"Score file name." }, fname: { type:string, flags:["init"], value:"", doc:"Score file name." },
vel_tbl_fname:{ type:string, flags:["init"], value:"", doc:"Velocity table filename as create by vwVelTableTuner." },
vel_tbl_label:{ type:string, value:"", doc:"Name of the active velocity table referenced by 'vel_fname."},
out: { type:midi, doc:"MIDI output." }, out: { type:midi, doc:"MIDI output." },
loc: { type:uint, value:0, doc:"Score location output." }, loc: { type:uint, value:0, doc:"Score location output." },
done_fl: { type:bool, value:false, doc:"Emits true on done." }, done_fl: { type:bool, value:false, doc:"Emits true on done." },
} }
} }
// out: { type:record
// value: {
// midi: { type:midi, doc:"MIDI channel event message."},
// loc: { type:uint, value:-1, doc:"Score location id."},
// meas: { type:uint, value:-1, doc:"Score measure location."}
// },
// doc:"Score event messages."
// },
midi_to_msg: { midi_to_msg: {
doc:[ "Convert MIDI event to the 'messages'." ] doc:[ "Convert MIDI event to the 'messages'." ]