Csound Csound-dev Csound-tekno Search About

[Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8

Date2013-04-10 02:17
FromMichael Gogins
Subject[Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8
AttachmentsNone  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

Date2013-04-10 08:57
FromVictor Lazzarini
SubjectRe: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8
AttachmentsNone  None  
Thanks, we're on to it now.
On 10 Apr 2013, at 02:17, Michael Gogins wrote:

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
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2013-04-10 09:23
FromVictor Lazzarini
SubjectRe: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8
AttachmentsNone  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:

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
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2013-04-10 12:31
FromMichael Gogins
SubjectRe: [Cs-dev] alwayson broken in Csound 6 Git head on MingW/Windows 8
AttachmentsNone  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:
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:

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
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel




--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com