Csound evalCode + globals
Date | 2015-12-28 09:17 |
From | Hlöðver Sigurðsson |
Subject | Csound evalCode + globals |
Hi list, I've encountered an unprefered behaviour, not sure if it's easily fixable. It's when I have one instrument for controling globals and another one performing audio tasks. That if I perform the API function evalCode (ctrl+alt+w in csoundqt I guess) on a audio performing instrument and then on the global instrument (that also is sending event_i with negative p3 (indefinite amount of time)). What happens, instead of k-rate globals changing the current instance of a running instrument, will instead create a new instance, despite using maxalloc to 1(and csound sends friendly warning that it's using the exact same instrument number (using named instruments)). I assume this is due to the fact that for every evalCode call, a new table is created and the old instrument instance continues to be running in the background for indefinite amount of time. But surprisingly a turnoff2 call will turn all instances off. So somehow turnoff2 knows that there's more than one instance running but the active opcode will not.http://pastebin.com/DZpx2V8n |
Date | 2015-12-28 09:41 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
I made an reproduceable bug example for csoundQT, well, maybe I should just file issue to github?2015-12-28 10:17 GMT+01:00 Hlöðver Sigurðsson <hlolli@gmail.com>:
|
Date | 2015-12-28 10:17 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
Did you try this using numbered instruments? I think the problem might be caused by the new definition taking a different number. It is still a bug, though. ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 28 Dec 2015, at 09:17, Hlöðver Sigurðsson |
Date | 2015-12-28 10:44 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
2015-12-28 11:17 GMT+01:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: Did you try this using numbered instruments? I think the problem might be caused by the new |
Date | 2015-12-28 11:15 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
Could you check if active limits the number of instances after the second compilation, or if it is no-op completely? I mean after the second instance you reported, can you launch others? Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|
Date | 2015-12-28 12:01 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
well, this demonstration can communicate the bug ok. Re-eavaluating instr 2 while 1 is sending messages results in the amplitude stacking up and ending out of range of few evals. 2015-12-28 12:15 GMT+01:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>:
|
Date | 2015-12-28 14:17 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
Ok, I had a quick look at this. The way maxalloc works is by adding to the instrument definition a maximum number of instances. When a new version of the instrument replaces the old one, that is cleared (it’s a new definition). If however, in that compilation you have the maxalloc line, then it will set the maximum allocation for that new definition.There might be an overlap between an instance of the old instrument with a new instance of the new instrument, but after that, the new definition will be limited to the maximum defined. In other words, maxalloc works per compilation. With active, I am not quite sure what is going on (i need to investigate further), but it looks like it works per compilation as well. So if you modify your code to: giactive init 0 instr 1 if giactive == 0 then event_i "i", 2, 0, -1 endif krand random 200, 400 gkfreq = i(krand) print giactive endin instr 2 giactive active 2 asig poscil 0.3 , gkfreq outs asig, asig endin and re-compile instr 2, you won’t see more than one concurrent instance (at least that is what I seem to be getting). ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 28 Dec 2015, at 12:01, Hlöðver Sigurðsson |
Date | 2015-12-28 14:43 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
A deeper look at active tells me that in your example what happens is this: 1) when the new code is evaluated, instr 2 gets a new definition is placed on the instrument table, and this has no instances. 2) active returns 0 because it looks at the new definition. 3) once the new instance is started, active returns 1. So in my modification of your example, active always returns 1 because it is always called after the instrument is instantiated. ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 28 Dec 2015, at 14:17, Victor Lazzarini |
Date | 2015-12-28 15:03 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
Ok, I’ve changed it so that newly-compiled instrument definitions inherit maxalloc and active values from previously existing instances. It seems to fix the bug. ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 28 Dec 2015, at 14:43, Victor Lazzarini |
Date | 2015-12-28 16:16 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
Very good! thanks so much! I updated my csound and by counting the active from within the instrument 2 does work fine so it solves my problem. The active sure can't be used in instrument 1. So maybe good to document this as a tip for future pitfalls, if so happens someone organizes their instrument controls from another instrument (and you or anyone reading this has time to spare). Didn't try maxalloc method, but it's not part of this solution, only added that to try to fix this bug which laid mainly in the active opcode.2015-12-28 16:03 GMT+01:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>: Ok, I’ve changed it so that newly-compiled instrument definitions inherit maxalloc and active values |
Date | 2015-12-28 16:28 |
From | Victor Lazzarini |
Subject | Re: Csound evalCode + globals |
Actually, with the changes in Csound, your original code seems to work fine with no modifications. Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|
Date | 2015-12-28 16:44 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
ah had to be! I forgot to update my fork, slowly and painfully learning to use github. Recompiled even older version, so I backtracked, lol. 2015-12-28 17:28 GMT+01:00 Victor Lazzarini <Victor.Lazzarini@nuim.ie>:
|
Date | 2015-12-28 17:15 |
From | Hlöðver Sigurðsson |
Subject | Re: Csound evalCode + globals |
yup confirmed. Now I compiled the latest version with changes since 2 hours ago. And my example works! 2015-12-28 17:44 GMT+01:00 Hlöðver Sigurðsson <hlolli@gmail.com>:
|