[Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8
Date | 2013-04-10 02:17 |
From | Michael Gogins |
Subject | [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8 |
Attachments | None None |
In addition to alwayson, named instruments do not appear to be working.
<CsoundSynthesizer> <CsOptions> </CsOptions>
<CsInstruments> sr = 48000 ksmps = 100 nchnls = 2 alwayson "foo", 2, 2, 2 instr foo print p1, p2, p3, 4
endin instr bar print p1, p2, p3, p4 asignal init 0.01 outs asignal, asignal endin </CsInstruments>
<CsScore> i "bar" 1 2 3 i "bar" 2 2 3 </CsScore> </CsoundSynthesizer> Michael Gogins Irreducible Productions http://www.michael-gogins.com Michael dot Gogins at gmail dot com |
Date | 2013-04-10 08:57 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8 |
Attachments | None None |
Thanks, we're on to it now. On 10 Apr 2013, at 02:17, Michael Gogins wrote:
Dr Victor Lazzarini Senior Lecturer Dept. of Music NUI Maynooth Ireland tel.: +353 1 708 3545 Victor dot Lazzarini AT nuim dot ie |
Date | 2013-04-10 09:23 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8 |
Attachments | None None |
I have your CSD working now, there was a problem identifying named instruments (it would work in a list like instr Hello, 1 but not just instr Hello), which I fixed. The alwayson opcode is also working. It is possible that the reason alwayson was not working is because the opcode dir was not found (check with -z). Possibly, we should make this opcode internal, so it is always there. Victor On 10 Apr 2013, at 02:17, Michael Gogins wrote:
Dr Victor Lazzarini Senior Lecturer Dept. of Music NUI Maynooth Ireland tel.: +353 1 708 3545 Victor dot Lazzarini AT nuim dot ie |
Date | 2013-04-10 12:31 |
From | Michael Gogins |
Subject | Re: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8 |
Attachments | None None |
Yes, things are fixed now. The alwayson opcode goes with the signal flow graph opcodes and ftgenonce as a suite to enable completely self-contained orchestras of modular instruments. I will post a csd that makes extensive use of these facilities for use as a test. Also, I am working to enable the CppClass of Csound and the csound::MusicModel class of CsoundAC to work with complete memory-based orc, sco, or csd (in the CsoundFile class inherited by CppSound). I have done some things about this as well but it's not quite working yet. I will also post a test C++ or Python file for this case.
Thanks, Mike On Wed, Apr 10, 2013 at 4:23 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Michael Gogins Irreducible Productions http://www.michael-gogins.com Michael dot Gogins at gmail dot com |