Re: [PD] monitoring function REC-Play for looper

2018-11-08 Thread Clemens
Thank you very much for your detailed explanations, they were very helpful for my understanding!! Cheers Clemens Am 08.11.18 um 14:05 schrieb Roman Haefeli: On Thu, 2018-11-08 at 13:23 +0100, Clemens wrote: But what do you mean with "fan-outs"? A fan-out in Pd usually means that a single ou

[PD] Keeping GEM Window "always on top" on OSX

2018-11-08 Thread Jim Ruxton
In Linux when using GEM I can right click on a GEM window and select "Always on Top" to keep the GEM window the topmost window. I am wondering how you would do this on OSX. I noticed there is a "topmost " command for gemwin but according to the documentation this only works in Windows. How do I

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread Alexandre Torres Porres
Em qui, 8 de nov de 2018 às 19:16, Dan Wilcox escreveu: > Didn't he answer his own question it's open source, after all. Sounds > like "hey, can someone do this for me so people will stop asking for it?" :) > yeah, that was the deal for me too, and now this bottle with this message arrived t

Re: [PD] German translation of Pd

2018-11-08 Thread Simon Iten
> On 8 Nov 2018, at 15:58, IOhannes m zmoelnig wrote: > > none of them ring with me. > both "knopf" and "schalter" evoke quite specific images in my head, none > of which match with what you actually get (and “radiobutton" does neither) Selektor? _

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread Dan Wilcox
Didn't he answer his own question it's open source, after all. Sounds like "hey, can someone do this for me so people will stop asking for it?" :) > On Nov 8, 2018, at 9:06 PM, pd-list-requ...@lists.iem.at wrote: > > From: Alexandre Torres Porres mailto:por...@gmail.com>> > To: shreeswi...@g

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread Alexandre Torres Porres
Oh, and here's VCV on github: https://github.com/VCVRack Em qui, 8 de nov de 2018 às 18:05, Alexandre Torres Porres escreveu: > > > Em qui, 8 de nov de 2018 às 00:40, pat pagano > escreveu: > >> Hello >> >> I am a long time pd user and recently on the pd group Andrew Belt, main >> developer

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread Alexandre Torres Porres
Em qui, 8 de nov de 2018 às 00:40, pat pagano escreveu: > Hello > > I am a long time pd user and recently on the pd group Andrew Belt, main > developer of VCV Rack inquired about a VCV pd module. > For the record, here's Andrew Belt's full post on the Pure Data Facebook Group: "Hi, I'm the deve

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread Max
There is a Jack module in VCV and I used Pd with it. So at least for platforms which support Jack there is a way. On 08.11.18 03:37, pat pagano wrote: Hello I am a long time pd user and recently on the pd group Andrew Belt, main developer of VCV Rack inquired about a VCV pd module. If you’

Re: [PD] VCV & Pd: Looking for a Champion

2018-11-08 Thread me.grimm
can you load a vst as a module? or a module that loads vst/au/etc? then you can just load Camomile? or modify Camomile to be a module? just thinking out-loud m On Wed, Nov 7, 2018 at 9:40 PM pat pagano wrote: > Hello > > I am a long time pd user and recently on the pd group Andrew Belt, main

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Ok, this confirms umlaeute's PR and comments on my github repo. His PR uses the garray_getfloatwords function and copies the contents to a float array to make it accessible to the c++ code. It works very well (at least on my osx 32 bit pd), but I really dislike the waste of CPU it takes to dupli

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Christof Ressi
in your case, casting definitly won't work in 64 bit Pd because a t_word is 64bit (the largest union member is a pointer) while a float is only 32 bit, so every other float would be garbage. you *could* introduce an optional stride value in bytes to your API by which you advance the pointers. b

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Hmmm, that's what I was fearing. In my c++ lib I read the buffers/tables contents passing them as pointers to floats/doubles. I'm not sure I can do this anymore with t_words, without either copying the whole buffer to provide a simple pointer to it, or modifying the c++ API in some other way, us

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Le 08/11/18 à 14:40, Lucas Cordiviola a écrit : pd-lib-builder is ready to use 32 and 64 bit Pds if they are in the default location: 32bit: /C:\Program Files (x86)\pd/ 64bit: /C:\Program Files\pd/ If you like you can specify any other dir when calling make: /make PDDIR=your/path/to/pd/ On Msy

Re: [PD] German translation of Pd

2018-11-08 Thread IOhannes m zmoelnig
On 08.11.18 15:42, Max wrote: > >>    Also Radioknopf is wrong, since "Radioschalter"  but "Radiobutton" is >>     anyway german ( https://de.wiktionary.org/wiki/Radiobutton ) > > Very interesting, TIL. I would suggest "Optionsknopf, Auswahlschalter" > or something similar. The original Radiobutt

Re: [PD] German translation of Pd

2018-11-08 Thread IOhannes m zmoelnig
On 08.11.18 15:08, Winfried Ritsch wrote: > File > message... : "Pd-Nachricht senden" is missleading, Pd-Nachricht is not a > term which could be found anywhere, better "Message senden..." +1 >Preferences -> Startup: Voreinstellungen->Bibliotheken & Startprozess > It is to lon

Re: [PD] German translation of Pd

2018-11-08 Thread Max
On 08.11.18 15:08, Winfried Ritsch wrote: Hi, Thanks for coming up with this theme. Yes some terms are very confusing, So lets start now real discussion about this. My main issues: main menu: File message... : "Pd-Nachricht senden" is missleading, Pd-Nachricht is not a term which co

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread IOhannes m zmoelnig
On 08.11.18 14:00, Joseph Larralde wrote: > > I'll try the changes that you suggested. > I hope I won't have to rewrite a part of my underlying lib's API. > If one can just cast a t_word into a float or a double, things should go > smoothly. i've submitted a PR to fix this. signature.asc Descr

Re: [PD] German translation of Pd

2018-11-08 Thread IOhannes m zmoelnig
On 08.11.18 15:08, Winfried Ritsch wrote: > The Rest is quite fine, except: "Zusätzliche Objekte im Internet finden", > since "Finde Externals" is more correct. actually i think that "objekte im internet finden" (find objects in the internet) is more correct than "find externals". - "externals" o

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Christof Ressi
> If one can just cast a t_word into a float or a double, things should go > smoothly. the proper way is to access the union member of t_word, e.g.: myarray[0].w_float;     Gesendet: Donnerstag, 08. November 2018 um 14:40 Uhr Von: "Lucas Cordiviola" An: "Joseph Larralde" , "pd-list@lists.iem.a

Re: [PD] German translation of Pd

2018-11-08 Thread Winfried Ritsch
Hi, Thanks for coming up with this theme. Yes some terms are very confusing, So lets start now real discussion about this. My main issues: main menu: File message... : "Pd-Nachricht senden" is missleading, Pd-Nachricht is not a term which could be found anywhere, better "Message sende

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Lucas Cordiviola
On 11/8/2018 10:00 AM, Joseph Larralde wrote: Hi Lucas, Thanks a lot for the hints ! I'm curious to know how you compiled the win64 version. From what I remember, I installed msys2 and could only compile using the 32 bit version. pd-lib-builder is ready to use 32 and 64 bit Pds if they are

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread IOhannes m zmoelnig
On 08.11.18 13:18, Joseph Larralde wrote: > It seems I have some 64 bit issues with the [gbend~] object which deals > with tables. indeed. it uses garray_getfloatarray() which only works for 32bit systems. you must use garray_getfloatwords() instead. if you don't want to support Pd versions that h

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Hi Lucas, Thanks a lot for the hints ! I'm curious to know how you compiled the win64 version. From what I remember, I installed msys2 and could only compile using the 32 bit version. Later I added the [tonnetz] object to the library and had to add the "cflags = -std=c++11" line in the makefil

Re: [PD] monitoring function REC-Play for looper

2018-11-08 Thread Roman Haefeli
On Thu, 2018-11-08 at 13:23 +0100, Clemens wrote: > But what do you mean with "fan-outs"? A fan-out in Pd usually means that a single outlet is connected to two or more inlets. IOhannes strongly advises you to get rid of them, because the order the many inlets receive the message from the outlet i

Re: [PD] monitoring function REC-Play for looper

2018-11-08 Thread Clemens
But what do you mean with "fan-outs"? and how can I get rid of them? The toogle is at the end of the line, no data continues through? Could you send me an example? Thanks for your support and for your suggestions !! Cheers Clemens Am 07.11.18 um 22:45 schrieb IOhannes m zmölnig: On 11/7/18

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Joseph Larralde
Hi Pat, Yes, [stut~] is a stutter. A quite basic one I must say, but I had to write an external because all the previous abstraction attempts I made always had some artifacts. I still need to make releases of the library for windows 64 and all flavours of linux ... It seems I have some 64 bit

[PD] invoking [value] and [send] objects without arguments

2018-11-08 Thread Jean-Yves Gratius
Hello, I noticed (pd 0.49) that [value]  invoked without creation argument is  "listening" to any [send] invoked without creation argument. This can lead to error message ("value : no method for ...") when passing any message to the send object. This is a logical behaviour, as you shouldn't

Re: [PD] [PD-announce] jl lib

2018-11-08 Thread Lucas Cordiviola
On 11/7/2018 1:07 PM, Joseph Larralde wrote: I'd be glad to hear any kind of feedback if you give it a try. Hi Joseph, Some feedback: I tried compiling the .dek sources for windows64bit and found trouble and solution: On "Makefile" line 69 I changed "=" to "+=" : cflags = -std=c++11 to cfla