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

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

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

/* --------------------------- bpe -------------------------------- */
/* -- break-point-envelope, convert a list of value-time-doubles -- */
/* ------- into a time-scheduled stream of value-time-pairs ------- */

static t_class *bpe_class;

typedef struct _bpe
{
  t_object x_obj;
  t_clock  *x_clock;
  int      x_maxnum;
  int      x_curnum;
  int      x_curindex;
  t_atom   *x_beg;
  void     *x_out_val;
  void     *x_out_time;
  void     *x_out_finished;
} t_bpe;

static void bpe_stop(t_bpe *x)
{
  clock_unset(x->x_clock);
}

static void bpe_tick(t_bpe *x)
{
  t_atom *vec = x->x_beg;
  float val, time;
  
  if(x->x_curindex >= x->x_curnum)
  {
    bpe_stop(x);
    outlet_bang(x->x_out_finished);
  }
  else
  {
    vec += x->x_curindex;
    val = atom_getfloat(vec++);
    time = atom_getfloat(vec);
    outlet_float(x->x_out_time, time);
    outlet_float(x->x_out_val, val);
    x->x_curindex += 2;
    clock_delay(x->x_clock, time);
  }
}

static void bpe_bang(t_bpe *x)
{
  t_atom *vec = x->x_beg;
  float val, time;
  
  if(x->x_curnum)
  {
    x->x_curindex = 2;
    val = atom_getfloat(vec++);
    time = atom_getfloat(vec);
    outlet_float(x->x_out_time, time);
    outlet_float(x->x_out_val, val);
    clock_delay(x->x_clock, time);
  }
}

static void bpe_list(t_bpe *x, t_symbol *s, int ac, t_atom *av)
{
  int n = ac & 0xfffffffe, i;
  t_atom *vec = x->x_beg;
  if(n > x->x_maxnum)
  {
    freebytes(x->x_beg, x->x_maxnum*sizeof(t_atom));
    x->x_maxnum = 2 + n;
    x->x_beg = (t_atom *)getbytes(x->x_maxnum*sizeof(t_atom));
    vec = x->x_beg;
  }
  x->x_curnum = n;
  for(i=0; i<n; i++)
  {
    *vec++ = *av++;
  }
}

static void bpe_free(t_bpe *x)
{
  freebytes(x->x_beg, x->x_maxnum*sizeof(t_atom));
  clock_free(x->x_clock);
}

static void *bpe_new(void)
{
  t_bpe *x = (t_bpe *)pd_new(bpe_class);
  
  x->x_curindex = 0;
  x->x_maxnum = 20;
  x->x_curnum = 0;
  x->x_beg = (t_atom *)getbytes(x->x_maxnum*sizeof(t_atom));
  x->x_clock = clock_new(x, (t_method)bpe_tick);
  x->x_out_val = outlet_new(&x->x_obj, &s_float);
  x->x_out_time = outlet_new(&x->x_obj, &s_float);
  x->x_out_finished = outlet_new(&x->x_obj, &s_bang);
  return (x);
}

void bpe_setup(void)
{
  bpe_class = class_new(gensym("bpe"), (t_newmethod)bpe_new,
    (t_method)bpe_free, sizeof(t_bpe), 0, 0);
  class_addmethod(bpe_class, (t_method)bpe_stop, gensym("stop"), 0);
  class_addbang(bpe_class, bpe_bang);
  class_addlist(bpe_class, (t_method)bpe_list);
  class_sethelpsymbol(bpe_class, gensym("iemhelp/help-bpe"));
}