記事一覧

Receiving by ObjCOSC

とりあえずよくわからないので、まずはココ
http://d.hatena.ne.jp/soundflower/20090425/1240618558
を参考に ObjCOSC ベースで受信プログラムを組んでみたらあっさりできました。

ただ、ちょっとハマったのが、そこに載ってるコードだけではダメで、最後に
[portIn start];
を入れないとダメなのでした;
ObjCOSC に添付の main.m を見て初めて気づきました。ていうか、上記リンクのコード自体、ほぼこの main.m を見てれば分かる話でした;

I let the problem I wrote in my last post aside and start coding receiving program based on this issue:
http://d.hatena.ne.jp/soundflower/20090425/1240618558 (in Japanese)
As result, it worked:)

There was only one thing I was stuck in:
You have to write this after the port settings to make it work
[portIn start];
which is not written in the code in the URL above.
I noticed later that all of these are written in the sample code included in the ObjCOSC package as "main.m"...

OSC - receiving

I'm testing receiving OSC message by iPhone using TouchOSC, sendOSC, dumpOSC and OSCulator, but there seems to be something strange.
When I send message from OSCulator TouchOSC does react, but from sendOSC it doesn't.
I checked the message string from OSCulator by receiving it by dumpOSC and send exactly the same from sendOSC, but TouchOSC still doesn't react.
Why????


OSC メッセージを iPhone 側で受信するテストとして、TouchOSC と sendOSC, dumpOSC, OSCulator などでメッセージの仕組みを見ているところなのだけど、どうも sendOSC からメッセージを送ると TouchOSC が反応してくれない。
OSCulator から送ると動くんだけど。
変だと思って OSCulator から送ったメッセージを dumpOSC で受信してみて、その通りに sendOSC から送ってみたんだけどやっぱり反応なし。
どういうこと???