Update of /cvsroot/pure-data/externals/grill/flext/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32521/source
Modified Files: flattr.cpp flattr_ed.cpp fldsp.cpp flext.cpp flitem.cpp fllib.cpp flout.cpp flstdc.h Log Message: dropped support for Max UI objects fix for _long_ attribute dialogs delete project builder project (in favor of xcode) typo fixed in attribute editor add xcode project some fixes for OSX builds
Index: flstdc.h =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flstdc.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** flstdc.h 24 Aug 2004 02:34:30 -0000 1.26 --- flstdc.h 16 Dec 2004 05:01:07 -0000 1.27 *************** *** 126,130 ****
! typedef t_pxbox t_sigobj; // that's the all-in-one object type of Max/MSP (not very memory-efficent, i guess) typedef t_patcher t_canvas;
--- 126,130 ----
! typedef t_pxobject t_sigobj; // that's the all-in-one object type of Max/MSP (not very memory-efficent, i guess) typedef t_patcher t_canvas;
Index: flitem.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flitem.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** flitem.cpp 21 Jun 2004 13:58:19 -0000 1.12 --- flitem.cpp 16 Dec 2004 05:01:07 -0000 1.13 *************** *** 31,35 ****
flext_base::ItemCont::ItemCont(): ! memsize(0),size(0),members(0),cont(NULL) {}
--- 31,35 ----
flext_base::ItemCont::ItemCont(): ! members(0),memsize(0),size(0),cont(NULL) {}
Index: fldsp.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/fldsp.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** fldsp.cpp 21 Jun 2004 13:58:19 -0000 1.21 --- fldsp.cpp 16 Dec 2004 05:01:06 -0000 1.22 *************** *** 28,33 ****
#if FLEXT_SYS == FLEXT_SYS_MAX ! // dsp_initclass(); ! dsp_initboxclass(); add_dsp(c,cb_dsp); #elif FLEXT_SYS == FLEXT_SYS_PD --- 28,33 ----
#if FLEXT_SYS == FLEXT_SYS_MAX ! dsp_initclass(); ! // dsp_initboxclass(); add_dsp(c,cb_dsp); #elif FLEXT_SYS == FLEXT_SYS_PD *************** *** 47,52 **** blksz(fts_dsp_get_tick_size()), #else ! srate(sys_getsr()), // should we set it? ! blksz(sys_getblksize()), #endif #if FLEXT_SYS == FLEXT_SYS_PD --- 47,51 ---- blksz(fts_dsp_get_tick_size()), #else ! srate(sys_getsr()),blksz(sys_getblksize()), #endif #if FLEXT_SYS == FLEXT_SYS_PD *************** *** 54,59 **** chnsout(sys_get_outchannels()), #elif FLEXT_SYS == FLEXT_SYS_MAX ! chnsin(sys_getch()), ! chnsout(sys_getch()), #elif FLEXT_SYS == FLEXT_SYS_JMAX #pragma message("not implemented") --- 53,57 ---- chnsout(sys_get_outchannels()), #elif FLEXT_SYS == FLEXT_SYS_MAX ! chnsin(0),chnsout(0), #elif FLEXT_SYS == FLEXT_SYS_JMAX #pragma message("not implemented")
Index: flattr_ed.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flattr_ed.cpp,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** flattr_ed.cpp 28 Nov 2004 05:00:59 -0000 1.30 --- flattr_ed.cpp 16 Dec 2004 05:01:06 -0000 1.31 *************** *** 448,452 **** static size_t escapeit(char *dst,size_t maxlen,const char *src) { - int ret = 0; char *d; for(d = dst; *src && (d-dst) < (int)maxlen; ++src) { --- 448,451 ----
Index: flext.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flext.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** flext.cpp 9 Sep 2004 04:00:47 -0000 1.29 --- flext.cpp 16 Dec 2004 05:01:06 -0000 1.30 *************** *** 62,67 **** #if FLEXT_SYS == FLEXT_SYS_MAX // according to David Z. one should do that first... ! // if(insigs) dsp_free(thisHdr()); ! if(insigs) dsp_freebox(thisHdr()); #endif
--- 62,67 ---- #if FLEXT_SYS == FLEXT_SYS_MAX // according to David Z. one should do that first... ! if(insigs) dsp_free(thisHdr()); ! // if(insigs) dsp_freebox(thisHdr()); #endif
Index: flattr.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flattr.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** flattr.cpp 28 Oct 2004 04:01:46 -0000 1.26 --- flattr.cpp 16 Dec 2004 05:01:06 -0000 1.27 *************** *** 29,34 **** Item(NULL),index(0), flags(fl|afl_shown), ! argtp(tp),fun(f),tag(t), ! counter(NULL) {}
--- 29,34 ---- Item(NULL),index(0), flags(fl|afl_shown), ! argtp(tp),fun(f), ! counter(NULL),tag(t) {}
Index: flout.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/flout.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** flout.cpp 31 Aug 2004 04:01:13 -0000 1.17 --- flout.cpp 16 Dec 2004 05:01:07 -0000 1.18 *************** *** 231,236 ****
if(insigs) ! // dsp_setup(thisHdr(),insigs); // signal inlets ! dsp_setupbox(thisHdr(),insigs); // signal inlets } #elif FLEXT_SYS == FLEXT_SYS_JMAX --- 231,236 ----
if(insigs) ! dsp_setup(thisHdr(),insigs); // signal inlets ! // dsp_setupbox(thisHdr(),insigs); // signal inlets } #elif FLEXT_SYS == FLEXT_SYS_JMAX
Index: fllib.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/source/fllib.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** fllib.cpp 23 Aug 2004 02:33:17 -0000 1.27 --- fllib.cpp 16 Dec 2004 05:01:07 -0000 1.28 *************** *** 282,286 **** // add to name list const t_symbol *lsym = MakeSymbol(c); ! libclass *lcl = FindName(lsym,lo); #if FLEXT_SYS == FLEXT_SYS_PD --- 282,286 ---- // add to name list const t_symbol *lsym = MakeSymbol(c); ! /*libclass *lcl =*/ FindName(lsym,lo); #if FLEXT_SYS == FLEXT_SYS_PD