Update of /cvsroot/pure-data/externals/miXed/cyclone/hammer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14365/cyclone/hammer
Modified Files: Append.c Makefile.sources allhammers.c anal.c coll.c prepend.c seq.c urn.c zl.c Log Message: importing ints
Index: coll.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/coll.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** coll.c 19 Feb 2004 22:23:16 -0000 1.3 --- coll.c 17 Apr 2004 17:45:27 -0000 1.4 *************** *** 603,607 **** if (!(fp = fopen(fname, "r"))) { ! loud_warning(&coll_class, "no coll file '%s'", fname); return; } --- 603,607 ---- if (!(fp = fopen(fname, "r"))) { ! loud_warning(&coll_class, 0, "no coll file '%s'", fname); return; }
Index: seq.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/seq.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** seq.c 11 Sep 2003 09:04:32 -0000 1.4 --- seq.c 17 Apr 2004 17:45:27 -0000 1.5 *************** *** 933,937 **** if (!warned) { ! loud_warning((t_pd *)x, "seq is not ready yet"); warned = 1; } --- 933,937 ---- if (!warned) { ! loud_warning((t_pd *)x, 0, "seq is not ready yet"); warned = 1; }
Index: anal.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/anal.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** anal.c 23 May 2003 12:29:46 -0000 1.1.1.1 --- anal.c 17 Apr 2004 17:45:27 -0000 1.2 *************** *** 77,81 **** { /* CHECKED: */ ! loud_warning(&anal_class, "size too large, using %d", ANAL_MAXSIZE); size = ANAL_MAXSIZE; /* LATER switch into a 'sparse' mode */ } --- 77,81 ---- { /* CHECKED: */ ! loud_warning(&anal_class, 0, "size too large, using %d", ANAL_MAXSIZE); size = ANAL_MAXSIZE; /* LATER switch into a 'sparse' mode */ }
Index: prepend.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/prepend.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** prepend.c 23 May 2003 12:29:48 -0000 1.1.1.1 --- prepend.c 17 Apr 2004 17:45:27 -0000 1.2 *************** *** 186,190 **** if (x->x_auxbuf) { ! loud_warning((t_pd *)x, "'set' message overridden"); freebytes(x->x_auxbuf, x->x_auxsize * sizeof(*x->x_auxbuf)); x->x_auxsize = 0; --- 186,190 ---- if (x->x_auxbuf) { ! loud_warning((t_pd *)x, 0, "'set' message overridden"); freebytes(x->x_auxbuf, x->x_auxsize * sizeof(*x->x_auxbuf)); x->x_auxsize = 0;
Index: urn.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/urn.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** urn.c 4 Jun 2003 11:50:14 -0000 1.2 --- urn.c 17 Apr 2004 17:45:27 -0000 1.3 *************** *** 51,55 **** if (range > URN_MAXSIZE) { ! loud_warning((t_pd *)x, "requested size (%d) clipped -- effective size is %d", range, URN_MAXSIZE); --- 51,55 ---- if (range > URN_MAXSIZE) { ! loud_warning((t_pd *)x, 0, "requested size (%d) clipped -- effective size is %d", range, URN_MAXSIZE);
Index: Append.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/Append.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Append.c 23 May 2003 12:29:46 -0000 1.1.1.1 --- Append.c 17 Apr 2004 17:45:27 -0000 1.2 *************** *** 142,146 **** if (x->x_auxbuf) { ! loud_warning((t_pd *)x, "'set' message overridden"); freebytes(x->x_auxbuf, x->x_auxsize * sizeof(*x->x_auxbuf)); x->x_auxsize = 0; --- 142,146 ---- if (x->x_auxbuf) { ! loud_warning((t_pd *)x, 0, "'set' message overridden"); freebytes(x->x_auxbuf, x->x_auxsize * sizeof(*x->x_auxbuf)); x->x_auxsize = 0;
Index: allhammers.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/allhammers.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** allhammers.c 2 Jun 2003 14:11:59 -0000 1.2 --- allhammers.c 17 Apr 2004 17:45:27 -0000 1.3 *************** *** 1,5 **** // Do not edit this file, run "make" instead.
! /* Copyright (c) 2002-2003 krzYszcz and others. * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ --- 1,5 ---- // Do not edit this file, run "make" instead.
! /* Copyright (c) 2002-2004 krzYszcz and others. * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ *************** *** 13,16 **** --- 13,17 ---- void MouseState_setup(void); void Peak_setup(void); + void Table_setup(void); void TogEdge_setup(void); void Trough_setup(void); *************** *** 92,95 **** --- 93,97 ---- MouseState_setup(); Peak_setup(); + Table_setup(); TogEdge_setup(); Trough_setup();
Index: Makefile.sources =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/Makefile.sources,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.sources 2 Jun 2003 14:11:59 -0000 1.2 --- Makefile.sources 17 Apr 2004 17:45:27 -0000 1.3 *************** *** 65,68 **** --- 65,69 ---- sustain.c \ switch.c \ + Table.c \ tanh.c \ thresh.c \
Index: zl.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/hammer/zl.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** zl.c 7 Apr 2004 19:57:02 -0000 1.4 --- zl.c 17 Apr 2004 17:45:27 -0000 1.5 *************** *** 261,265 **** static void zl_nop(t_zl *x, int natoms, t_atom *buf, int banged) { ! loud_warning((t_pd *)x, "unknown mode"); }
--- 261,265 ---- static void zl_nop(t_zl *x, int natoms, t_atom *buf, int banged) { ! loud_warning((t_pd *)x, 0, "unknown mode"); }