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
|
/* stdout -- write messages to standard output.
Copyright 2008 Miller Puckette
BSD license; see README.txt in this distribution for details.
*/
#include "m_pd.h"
#include <stdio.h>
#include <string.h>
static t_class *stdout_class;
typedef struct _stdout
{
t_object x_obj;
} t_stdout;
static void *stdout_new(t_float fnonrepeat)
{
t_stdout *x = (t_stdout *)pd_new(stdout_class);
return (x);
}
static void stdout_anything(t_stdout *x, t_symbol *s, int argc, t_atom *argv)
{
char msgbuf[MAXPDSTRING], *sp, *ep = msgbuf+MAXPDSTRING;
msgbuf[0] = 0;
strncpy(msgbuf, s->s_name, MAXPDSTRING);
msgbuf[MAXPDSTRING-1] = 0;
sp = msgbuf + strlen(msgbuf);
while (argc--)
{
if (sp < ep-1)
sp[0] = ' ', sp[1] = 0, sp++;
atom_string(argv++, sp, ep-sp);
sp += strlen(sp);
}
printf("%s;\n", msgbuf);
}
static void stdout_flush(t_stdout *x)
{
fflush(stdout);
}
void stdout_setup(void)
{
stdout_class = class_new(gensym("stdout"), (t_newmethod)stdout_new,
(t_method)stdout_flush, sizeof(t_stdout), 0, 0);
class_addmethod(stdout_class, (t_method)stdout_flush, gensym("flush"), 0);
class_addanything(stdout_class, stdout_anything);
}
|