aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Bullock <postlude@users.sourceforge.net>2006-04-07 10:28:02 +0000
committerJamie Bullock <postlude@users.sourceforge.net>2006-04-07 10:28:02 +0000
commitb539fbef5df62f211e2caa0842a7b6729256955e (patch)
tree6081295f6f353e3a24f7da73b4489205cfbf53c1
parent91493ec59eabeadbeb00a386beee48638bef3886 (diff)
Now sending note messages to instance 0 sends to all instances
svn path=/trunk/externals/postlude/; revision=4840
-rw-r--r--dssi/src/dssi~.c24
-rw-r--r--dssi/src/dssi~.h3
2 files changed, 21 insertions, 6 deletions
diff --git a/dssi/src/dssi~.c b/dssi/src/dssi~.c
index f50989c..aba38ee 100644
--- a/dssi/src/dssi~.c
+++ b/dssi/src/dssi~.c
@@ -616,7 +616,7 @@ static void dssi_tilde_control (t_dssi_tilde *x,
t_int instance = (t_int)instance_f - 1;
int n_instances = x->n_instances;
- if (instance > x->n_instances || instance < 0){
+ if (instance > x->n_instances || instance < -1){
post("dssi~: control: invalid instance number %d", instance);
return;
}
@@ -653,9 +653,13 @@ static void dssi_tilde_control (t_dssi_tilde *x,
}
static void dssi_tilde_info (t_dssi_tilde *x){
- unsigned int i;
+ unsigned int i,
+ ctrl_portno,
+ audio_portno;
t_atom argv[7];
+ ctrl_portno = audio_portno = 0;
+
for(i = 0; i < x->descriptor->LADSPA_Plugin->PortCount; i++){
memcpy(&argv[0], &x->port_info[i].type,
sizeof(t_atom));
@@ -670,7 +674,12 @@ static void dssi_tilde_info (t_dssi_tilde *x){
memcpy(&argv[6], &x->port_info[i].p_default,
sizeof(t_atom));
argv[2].a_type = A_FLOAT;
- argv[2].a_w.w_float = (t_float)i - 1;
+ if(!strcmp(argv[1].a_w.w_symbol->s_name, "control"))
+ argv[2].a_w.w_float = (t_float)++ctrl_portno;
+
+ else if(!strcmp(argv[1].a_w.w_symbol->s_name, "audio"))
+ argv[2].a_w.w_float = (t_float)++audio_portno;
+
outlet_anything (x->control_outlet, gensym ("port"), 7, argv);
}
}
@@ -1296,6 +1305,8 @@ static void dssi_tilde_list(t_dssi_tilde *x, t_symbol *s, int argc, t_atom *argv
int chan = (int)atom_getfloatarg(1, argc, argv) - 1;
int param = (int)atom_getfloatarg(2, argc, argv);
int val = (int)atom_getfloatarg(3, argc, argv);
+ int n_instances = x->n_instances;
+
switch (msg_type[0]){
case ASCII_n: ev_type = SND_SEQ_EVENT_NOTEON;
break;
@@ -1314,7 +1325,12 @@ static void dssi_tilde_list(t_dssi_tilde *x, t_symbol *s, int argc, t_atom *argv
post("initial midi NOTE:, arg1 = %d, arg2 = %d, arg3 = %d, arg4 = %d",ev_type,chan,param,val);
#endif
if(ev_type != 0){
- MIDIbuf(ev_type, chan, param, val, x);
+ if(chan > 0)
+ MIDIbuf(ev_type, chan, param, val, x);
+ else {
+ while(n_instances--)
+ MIDIbuf(ev_type, n_instances, param, val, x);
+ }
}
free(msg_type);
}
diff --git a/dssi/src/dssi~.h b/dssi/src/dssi~.h
index 3c16995..b49bda0 100644
--- a/dssi/src/dssi~.h
+++ b/dssi/src/dssi~.h
@@ -31,7 +31,6 @@
#include <unistd.h>
#include <stdio.h>
#include <string.h>
-
#include <stdlib.h> /*for exit()*/
#include <sys/types.h> /* for fork() */
#include <signal.h> /* for kill() */
@@ -41,7 +40,7 @@
#define DX7_DUMP_SIZE_BULK 4096+8
-#define VERSION 0.94
+#define VERSION 0.95
#define EVENT_BUFSIZE 1024
#define OSC_BASE_MAX 1024
#define TYPE_STRING_SIZE 20 /* Max size of event type string (must be two more bytes than needed) */