Update of /cvsroot/pure-data/abstractions/pureunity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24885
Modified Files:
pureunity.c Makefile
Log Message:
new external [rtimer]
Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/abstractions/pureunity/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile 2 Jan 2006 01:28:18 -0000 1.3
--- Makefile 2 Jan 2006 07:20:49 -0000 1.4
***************
*** 2,5 ****
--- 2,6 ----
#PD = pd
PDFLAGS = -lib pureunity -noaudio -path generics -path specifics
+ CFLAGS = -Wall
test:: built
***************
*** 13,16 ****
pureunity.pd_linux: pureunity.c Makefile
! $(CC) -shared -o pureunity.pd_linux pureunity.c
--- 14,17 ----
pureunity.pd_linux: pureunity.c Makefile
! $(CC) $(CFLAGS) -shared -o pureunity.pd_linux pureunity.c
Index: pureunity.c
===================================================================
RCS file: /cvsroot/pure-data/abstractions/pureunity/pureunity.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pureunity.c 2 Jan 2006 01:28:18 -0000 1.1
--- pureunity.c 2 Jan 2006 07:20:47 -0000 1.2
***************
*** 1,9 ****
/*#include <m_pd.h>*/
#include "../../pd/src/m_pd.h"
void pureunity_setup() {
! t_pd *m = &pd_objectmaker;
! class_addcreator((t_newmethod)getfn(m,gensym( "inlet" )),gensym("f.inlet" ),A_GIMME,0);
! class_addcreator((t_newmethod)getfn(m,gensym( "inlet~")),gensym("~.inlet" ),A_GIMME,0);
! class_addcreator((t_newmethod)getfn(m,gensym("outlet" )),gensym("f.outlet"),A_GIMME,0);
! class_addcreator((t_newmethod)getfn(m,gensym("outlet~")),gensym("~.outlet"),A_GIMME,0);
}
--- 1,40 ----
+ #include <sys/time.h>
/*#include <m_pd.h>*/
#include "../../pd/src/m_pd.h"
+ #define ALIAS(y,x) class_addcreator((t_newmethod)getfn(m,gensym(x)),gensym(y),A_GIMME,0);
+
+ typedef struct {
+ t_text o;
+ struct timeval t0;
+ } t_rtimer;
+
+ t_class *rtimer_class;
+ void rtimer_reset(t_rtimer *self) {gettimeofday(&self->t0,0);}
+ void *rtimer_new(t_symbol *s) {
+ t_rtimer *self = (t_rtimer *)pd_new(rtimer_class);
+ inlet_new((t_text *)self, (t_pd *)self, gensym("bang"), gensym("1_bang"));
+ outlet_new((t_text *)self, gensym("float"));
+ rtimer_reset(self);
+ return self;
+ }
+
+ void rtimer_1_bang(t_rtimer *self) {
+ struct timeval t1;
+ gettimeofday(&t1,0);
+ outlet_float(self->o.ob_outlet,
+ (t1.tv_sec -self->t0.tv_sec )*1000.0 +
+ (t1.tv_usec-self->t0.tv_usec)/1000.0);
+ }
+
void pureunity_setup() {
! t_pd *m = &pd_objectmaker;
! ALIAS( "f.inlet","inlet" );
! ALIAS( "~.inlet","inlet~" );
! ALIAS("f.outlet","outlet" );
! ALIAS("~.outlet","outlet~");
! ALIAS( "f.swap","swap" );
! rtimer_class = class_new(gensym("rtimer"),(t_newmethod)rtimer_new,0,sizeof(t_rtimer),0,0);
! class_addbang(rtimer_class,rtimer_reset);
! class_addmethod(rtimer_class, (t_method)rtimer_1_bang, gensym("1_bang"), 0);
}
+