csoundListChannels() question..
Date | 2016-10-22 16:59 |
From | Rory Walsh |
Subject | csoundListChannels() question.. |
This method only returns channels that have been set up using the chn opcodes right? For example, if I have an instrument that does:
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
instr 1 k1 chnget "test1" k1 chnget "test2" k1 chnget "test3" endin a call to csoundListChannels() still returns 0. My question is, is there any way I can retrieve channels without having to define them using the chn opcodes? And related to that, how does chnget work when no channel has be previously defined. Does it create the channel if it's not already found? Would run a performKsmps() and then calling csoundListChannels() retrieve the channels? |
Date | 2016-10-22 17:05 |
From | Victor Lazzarini |
Subject | Re: csoundListChannels() question.. |
Maybe the channels have not yet been created, you need to set them to make them
pop into existence. Getting something from a non-existing channel is probably not making the channel be created (I am assuming, without looking at the code).
Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2016-10-22 18:24 |
From | Rory Walsh |
Subject | Re: csoundListChannels() question.. |
So it's the call to SetChannel() in the API that likely creates the channel when they have not been defined in the orc? On 22 October 2016 at 17:05, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
|
Date | 2016-10-22 18:27 |
From | Victor Lazzarini |
Subject | Re: csoundListChannels() question.. |
or a chnset in the orchestra, I'd say.
Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2016-10-22 18:47 |
From | Rory Walsh |
Subject | Re: csoundListChannels() question.. |
I guess there is no eloquent way of finding the number of channels without using a combo of the chn opcodes and csoundListChannels. I was hoping to develop a way of creating generic GUIs on the fly based only on the chnget's used in an orchestra. Apart from parsing the orchestra myself, do you have any suggestions? At the end of the day, I guess declaring them in instr 0 is not such an ordeal. On 22 October 2016 at 18:27, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
|
Date | 2016-10-22 19:15 |
From | Victor Lazzarini |
Subject | Re: csoundListChannels() question.. |
I would not think so.
Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2016-10-22 19:20 |
From | Rory Walsh |
Subject | Re: csoundListChannels() question.. |
The chn opcode it is then. On 22 Oct 2016 19:15, "Victor Lazzarini" <Victor.Lazzarini@nuim.ie> wrote:
|