aboutsummaryrefslogtreecommitdiff
path: root/src/multireceive.c
blob: 77c4707908955b2db098e55417ea7a0ad68d8f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * multireceive: receive messages for various receive-names
 *
 * (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */



#include "zexy.h"

/* -------------------------- multireceive ------------------------------ */

static t_class *multireceive_class=NULL;
static t_class *multireceive_proxy_class=NULL;

typedef struct _symlist {
  t_symbol*s;
  struct _symlist*next;
} t_symlist;

typedef struct _multireceive_proxy {
  t_object x_obj;
  struct _multireceive*x_parent;
} t_multireceive_proxy;

typedef struct _multireceive {
  t_object x_obj;
  t_multireceive_proxy*x_proxy;
  t_symlist*x_symlist;
  t_outlet *x_out;
} t_multireceive;

static void multireceive_any(t_multireceive_proxy *x, t_symbol*s, int argc,
                             t_atom*argv)
{
  outlet_anything(x->x_parent->x_out, s, argc, argv);
}

static void multireceive_add(t_multireceive *x, t_symbol*s)
{
  t_symlist*sl=x->x_symlist;
  t_symlist*element=NULL;

  if(sl) {
    while(sl->next) {
      if(s==sl->s) {
        // already bound to this symbol
        return;
      }
      sl=sl->next;
    }
  }

  element=(t_symlist*)getbytes(sizeof(t_symlist));
  element->s=s;
  element->next=NULL;
  pd_bind(&x->x_proxy->x_obj.ob_pd, s);

  if(sl) {
    sl->next=element;
  } else {
    x->x_symlist=element;
  }
}

static void multireceive_clear(t_multireceive *x)
{
  t_symlist*sl=x->x_symlist;
  t_symlist*current=NULL;
  while(sl) {
    current=sl;
    sl=sl->next;

    pd_unbind(&x->x_proxy->x_obj.ob_pd, current->s);

    current->s=NULL;
    current->next=NULL;
    freebytes(current, sizeof(t_symlist));
  }
  x->x_symlist=NULL;
}


static void multireceive_set(t_multireceive *x, t_symbol*s, int argc,
                             t_atom*argv)
{
  multireceive_clear(x);

  while(argc-->0) {
    t_symbol*s=atom_getsymbol(argv);
    if(A_SYMBOL==argv->a_type) {
      multireceive_add(x, s);
    } else {
      verbose(1, "[multireceive]: ignoring non-symbol receive name");
    }
    argv++;
  }

}

static void multireceive_free(t_multireceive *x)
{
  multireceive_clear(x);
  pd_free((t_pd *)x->x_proxy);
  outlet_free(x->x_out);
  x->x_out=NULL;
}

static void *multireceive_new(t_symbol *s, int argc, t_atom *argv)
{
  t_multireceive *x = (t_multireceive *)pd_new(multireceive_class);
  x->x_proxy=(t_multireceive_proxy*)pd_new(multireceive_proxy_class);
  x->x_proxy->x_parent=x;
  x->x_symlist=NULL;
  x->x_out = outlet_new(&x->x_obj, 0);

  multireceive_set(x, 0, argc, argv);
  return (x);
}

void multireceive_setup(void)
{
  multireceive_class = class_new(gensym("multireceive"),
                                 (t_newmethod)multireceive_new,
                                 (t_method)multireceive_free,
                                 sizeof(t_multireceive),
                                 0,
                                 A_GIMME, 0);
  class_addmethod(multireceive_class,
                  (t_method)multireceive_set,
                  gensym("set"),
                  A_GIMME, 0);

  class_addmethod(multireceive_class,
                  (t_method)multireceive_add,
                  gensym("add"),
                  A_SYMBOL, 0);

  multireceive_proxy_class = class_new(
                               gensym("multireceive proxy "__DATE__""__TIME__""),
                               0, 0,
                               sizeof(t_multireceive_proxy),
                               CLASS_PD | CLASS_NOINLET, 0);

  class_addanything(multireceive_proxy_class, multireceive_any);

  zexy_register("multireceive");
}