// a delay: once a wheel event is reported upstream, any such events are suppressed during
// the delay.
//
-// Note that with a MIDI KEY, you can choose that an action is
-// generated only for a NOTE_ON event or both for NOTE_ON and
-// NOTE_OFF. In the first case, if the key is associated to MOX,
-// then MOX is toggled each time the key is pressed. This behaves
-// very much like point-and-clicking the MOX buttion in the GUI.
+// Note that with a MIDI KEY, normally only "Note on" messages
+// are processed, except for the actions
+// CW_KEYER, CW_LEFT, CW_RIGHT, PTT_KEYER which generate actions
+// also for Note-Off.
//
-// If an action is generated both on NOTE_ON and NOTE_OFF,
-// then MOX is engaged when pressing the key and disengaged
-// when releasing it. For MOX this makes little send but you
-// might want to configure the TUNE button this way.
-// The latter behaviour is triggered when the line assigning the key
-// or "NOTE OFF". The table speficying the behaviour of layer-2 thus
-// contains the key word "ONOFF". This is stored in the field "onoff"
-// in struct desc.
struct desc {
int channel; // -1 for ANY channel
enum MIDIevent event; // type of event (NOTE on/off, Controller change, Pitch value)
- int onoff; // 1: generate upstream event both for Note-on and Note-off
enum ACTIONtype type; // Key, Knob, or Wheel
int vfl1,vfl2; // Wheel only: range of controller values for "very fast left"
int fl1,fl2; // Wheel only: range of controller values for "fast left"
// Found matching entry
switch (desc->event) {
case MIDI_NOTE:
- if ((val == 1 || (desc->onoff == 1)) && desc->type == MIDI_KEY) {
- DoTheMidi(desc->action, desc->type, val);
- }
- break;
+ if (desc->type == MIDI_KEY) {
+ switch (desc->action) {
+ case CW_LEFT:
+ case CW_RIGHT:
+ case CW_KEYER:
+ case PTT:
+ // deliver message for note-on and note-off
+ DoTheMidi(desc->action, desc->type, val);
+ break;
+ default:
+ // deliver only note-on messages
+ if (val == 1) DoTheMidi(desc->action, desc->type, val);
+ break;
+ }
+ }
+ break;
case MIDI_CTRL:
if (desc->type == MIDI_KNOB) {
// normalize value to range 0 - 100
int action;
int chan;
int t1,t2,t3,t4,t5,t6,t7,t8,t9,t10,t11,t12;
- int onoff, delay;
+ int delay;
struct desc *desc;
enum ACTIONtype type;
enum MIDIevent event;
t5= 0; t6= 63;
t7=65; t8=127;
t9 = t10 = t11 = t12 = -1;
- onoff=0; // this will be set automatically
event=EVENT_NONE;
type=TYPE_NONE;
key=0;
while (*cq != 0 && *cq != '\n' && *cq != ' ' && *cq != '\t') cq++;
*cq=0;
action=keyword2action(cp+7);
- //
- // set ONOFF flag automatically
- //
- switch (action) {
- case CW_LEFT:
- case CW_RIGHT:
- case CW_KEYER:
- case PTT_KEYER:
- onoff=1;
- break;
- default:
- onoff=0;
- break;
- }
-//g_print("MIDI:ACTION:%s (%d), onoff=%d\n",cp+7, action, onoff);
+//g_print("MIDI:ACTION:%s (%d)\n",cp+7, action);
}
//
// All data for a descriptor has been read. Construct it!
desc->action = action;
desc->type = type;
desc->event = event;
- desc->onoff = onoff;
desc->delay = delay;
desc->vfl1 = t1;
desc->vfl2 = t2;
gint i;
gint type;
gint action;
- gint onoff;
if(str_type==NULL) {
return;
}
action=NO_ACTION;
- onoff=0;
i=0;
while(ActionTable[i].action!=ACTIONS) {
if(strcmp(ActionTable[i].str,str_action)==0) {
desc->action = action; // MIDIaction
desc->type = type; // MIDItype
desc->event = thisEvent; // MIDevent
- desc->onoff = onoff;
desc->delay = thisDelay;
desc->vfl1 = thisVfl1;
desc->vfl2 = thisVfl2;
char str_channel[16];
char str_note[16];
int i;
- int onoff;
if (current_cmd == NULL) {
g_print("%s: current_cmd is NULL!\n", __FUNCTION__);
//g_print("%s: type=%s action=%s\n",__FUNCTION__,str_type,str_action);
thisAction=NO_ACTION;
- onoff=0;
i=0;
while(ActionTable[i].action!=ACTIONS) {
if(strcmp(ActionTable[i].str,str_action)==0) {
current_cmd->channel=thisChannel;
current_cmd->type =thisType;
current_cmd->action =thisAction;
- current_cmd->onoff =onoff;
current_cmd->delay =thisDelay;
current_cmd->vfl1 =thisVfl1;
gint indices;
gint channel;
gint event;
- gint onoff;
gint type;
gint action;
gint delay;
vfr2=-1;
if (value) vfr2=atoi(value);
- onoff=0;
- if (action == CW_LEFT || action == CW_RIGHT || action == CW_KEYER || action == PTT_KEYER) onoff=1;
-
struct desc *desc = (struct desc *) malloc(sizeof(struct desc));
desc->next = NULL;
desc->action = action; // MIDIaction
desc->type = type; // MIDItype
desc->event = event; // MIDevent
- desc->onoff = onoff;
desc->delay = delay;
desc->vfl1 = vfl1;
desc->vfl2 = vfl2;
desc->vfr2 = vfr2;
desc->channel = channel;
-//g_print("DESC INIT Note=%3d Action=%3d Type=%3d Event=%3d OnOff=%3d Chan=%3d Delay=%3d THR=%3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d\n",
-// i, action, type, event, onoff, channel, delay,
+//g_print("DESC INIT Note=%3d Action=%3d Type=%3d Event=%3d Chan=%3d Delay=%3d THR=%3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d\n",
+// i, action, type, event, channel, delay,
// vfl1, vfl2, fl1, fl2, lft1, lft2, rgt1, rgt2, fr1, fr2, vfr1, vfr2);
MidiAddCommand(i, desc);
}