aboutsummaryrefslogtreecommitdiff
path: root/src/iemlib1/gate.c
blob: 957ee07f086069c32a547c3ab2ff2299d68b3f92 (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
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.

iemlib1 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2003 */

#ifdef NT
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif


#include "m_pd.h"
#include "iemlib.h"
#include <math.h>
#include <stdio.h>
#include <string.h>

/* -------------------------- gate ------------------------------ */

typedef struct _gate
{
    t_object  x_obj;
    float     x_state;
} t_gate;

static t_class *gate_class;

static void gate_bang(t_gate *x)
{
    if(x->x_state != 0)
	outlet_bang(x->x_obj.ob_outlet);
}

static void gate_pointer(t_gate *x, t_gpointer *gp)
{
    if(x->x_state != 0)
	outlet_pointer(x->x_obj.ob_outlet, gp);
}

static void gate_float(t_gate *x, t_floatarg f)
{
    if(x->x_state != 0)
	outlet_float(x->x_obj.ob_outlet, f);
}

static void gate_symbol(t_gate *x, t_symbol *s)
{
    if(x->x_state != 0)
	outlet_symbol(x->x_obj.ob_outlet, s);
}

static void gate_list(t_gate *x, t_symbol *s, int argc, t_atom *argv)
{
    if(x->x_state != 0)
	outlet_list(x->x_obj.ob_outlet, s, argc, argv);
}

static void gate_anything(t_gate *x, t_symbol *s, int argc, t_atom *argv)
{
    if(x->x_state != 0)
	outlet_anything(x->x_obj.ob_outlet, s, argc, argv);
}

static void *gate_new(t_floatarg f)
{
    t_gate *x = (t_gate *)pd_new(gate_class);
    floatinlet_new(&x->x_obj, &x->x_state);
    outlet_new(&x->x_obj, 0);
    x->x_state = (f==0.0)?0:1;
    return (x);
}

void gate_setup(void)
{
    gate_class = class_new(gensym("gate"), (t_newmethod)gate_new, 0,
    	sizeof(t_gate), 0, A_DEFFLOAT, 0);
    class_addbang(gate_class, gate_bang);
    class_addpointer(gate_class, gate_pointer);
    class_addfloat(gate_class, gate_float);
    class_addsymbol(gate_class, gate_symbol);
    class_addlist(gate_class, gate_list);
    class_addanything(gate_class, gate_anything);
    class_sethelpsymbol(gate_class, gensym("iemhelp/help-gate"));
}