Csound Csound-dev Csound-tekno Search About

[Csnd] OSC in Cabbage?

Date2013-06-09 03:42
FromDavid Akbari
Subject[Csnd] OSC in Cabbage?
Hello list,

Is it a known issue that OSC does not work in Cabbage [using Csound 5]? 

I am not sure if this is user error or a limitation in the software. The following CSD works in vanilla Csound from the commandline but not in Cabbage. I was thinking it would be great to use Cabbage's GUI widgets to display the status of sliders etc sent from OSC but this seems to crash the program... any hints?

<Cabbage>
form size(400, 300), caption("OSC yeahh"), pluginID("plu1")
hslider bounds(260, 157, 291, 40), channel("OSC"), range(0, 1, 0)
</Cabbage>
<CsoundSynthesizer>
<CsOptions>
-odac -d 
</CsOptions>
<CsInstruments>
sr = 44100
ksmps = 100
nchnls = 2

gihandle OSCinit 6969
;gkf1 init 0
;//--

instr 1

kf1 init 0
kk  OSClisten gihandle, "/noggers/blorch", "f",kf1
chnset kf1, "OSC"
printk2 kf1
endin

;//--

instr 2

;there was once a printk2 thing here
;it's gone now

endin

</CsInstruments>  
<CsScore>
i1 0 3600

</CsScore>
</CsoundSynthesizer>

-David

Date2013-06-09 14:07
FromRory Walsh
SubjectRe: [Csnd] OSC in Cabbage?
Hi David, this is new to me, as I haven't yet tried using OSC with
Cabbage. Let me take a look and see where it's failing. It's exam time
here so I might not get a chance to look at it for a day or two, but
I'll get back to you when I can!

Rory.


On 9 June 2013 03:42, David Akbari  wrote:
> Hello list,
>
> Is it a known issue that OSC does not work in Cabbage [using Csound 5]?
>
> I am not sure if this is user error or a limitation in the software. The
> following CSD works in vanilla Csound from the commandline but not in
> Cabbage. I was thinking it would be great to use Cabbage's GUI widgets to
> display the status of sliders etc sent from OSC but this seems to crash the
> program... any hints?
>
> 
> form size(400, 300), caption("OSC yeahh"), pluginID("plu1")
> hslider bounds(260, 157, 291, 40), channel("OSC"), range(0, 1, 0)
> 
> 
> 
> -odac -d
> 
> 
> sr = 44100
> ksmps = 100
> nchnls = 2
>
> gihandle OSCinit 6969
> ;gkf1 init 0
> ;//--
>
> instr 1
>
> kf1 init 0
> kk  OSClisten gihandle, "/noggers/blorch", "f",kf1
> chnset kf1, "OSC"
> printk2 kf1
> endin
>
> ;//--
>
> instr 2
>
> ;there was once a printk2 thing here
> ;it's gone now
>
> endin
>
> 
> 
> i1 0 3600
>
> 
> 
>
> -David