osc+chuck=wip
This commit is contained in:
parent
2e9b344922
commit
7c91072873
@ -1,5 +1,9 @@
|
|||||||
# trucs en ChucK
|
# trucs en ChucK
|
||||||
|
|
||||||
|
Attention, il faut parfois utiliser l'option `--silent`
|
||||||
|
pour lancer Chuck sans connexion audio.
|
||||||
|
|
||||||
|
|
||||||
## dessiner.ck
|
## dessiner.ck
|
||||||
|
|
||||||
## pouet.ck
|
## pouet.ck
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
9000 => int OSCPort;
|
7777 => int OSCPort;
|
||||||
31000.0 => float Amplitude;
|
31000.0 => float Amplitude;
|
||||||
|
|
||||||
OscOut xmit;
|
OscOut xmit;
|
||||||
@ -15,13 +15,7 @@ float dx, dy;
|
|||||||
|
|
||||||
xmit.dest("localhost", OSCPort);
|
xmit.dest("localhost", OSCPort);
|
||||||
|
|
||||||
// ---- clear the screen
|
clear_the_screen();
|
||||||
xmit.start("/joystick/b");
|
|
||||||
50 => xmit.add; 1 => xmit.add;
|
|
||||||
xmit.send();
|
|
||||||
xmit.start("/joystick/b");
|
|
||||||
50 => xmit.add; 0 => xmit.add;
|
|
||||||
xmit.send();
|
|
||||||
|
|
||||||
for (0 => int foo; foo<25800; foo++) {
|
for (0 => int foo; foo<25800; foo++) {
|
||||||
<<< foo >>>;
|
<<< foo >>>;
|
||||||
@ -34,7 +28,15 @@ for (0 => int foo; foo<25800; foo++) {
|
|||||||
Std.ftoi(dy) => xmit.add;
|
Std.ftoi(dy) => xmit.add;
|
||||||
xmit.send();
|
xmit.send();
|
||||||
|
|
||||||
0.03::second => now;
|
0.02::second => now;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun void clear_the_screen()
|
||||||
|
{
|
||||||
|
xmit.start("/joystick/b");
|
||||||
|
50 => xmit.add; 1 => xmit.add;
|
||||||
|
xmit.send();
|
||||||
|
xmit.start("/joystick/b");
|
||||||
|
50 => xmit.add; 0 => xmit.add;
|
||||||
|
xmit.send();
|
||||||
|
}
|
||||||
|
@ -5,6 +5,29 @@
|
|||||||
* nouveau Rural Art System 2021 - TerreBlanque
|
* nouveau Rural Art System 2021 - TerreBlanque
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
MidiIn input;
|
||||||
|
MidiMsg msg;
|
||||||
|
|
||||||
|
1 => int port; // please explain
|
||||||
|
|
||||||
|
if (!input.open(port)) {
|
||||||
|
<<< "erreur open" >>>;
|
||||||
|
me.exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
// print out device that was opened
|
||||||
|
<<< "MIDI device:", input.num(), " -> ", input.name() >>>;
|
||||||
|
|
||||||
|
// infinite loop
|
||||||
|
while (1) {
|
||||||
|
input => now;
|
||||||
|
|
||||||
|
while ( input.recv(msg) ) {
|
||||||
|
<<< msg.data1, msg.data2, msg.data3 >>>;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ while( true ) {
|
|||||||
else {
|
else {
|
||||||
1 => envl.keyOff => envr.keyOff;
|
1 => envl.keyOff => envr.keyOff;
|
||||||
}
|
}
|
||||||
// 0.2::second => now;
|
0.2::second => now;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,13 +11,14 @@ SawOsc sr => dac.right;
|
|||||||
|
|
||||||
OscIn oscin;
|
OscIn oscin;
|
||||||
OscMsg msg;
|
OscMsg msg;
|
||||||
|
|
||||||
InPort => oscin.port;
|
InPort => oscin.port;
|
||||||
oscin.addAddress( "/joystick/xy, ii" );
|
oscin.addAddress( "/joystick/xy, ii" );
|
||||||
|
|
||||||
int x, y;
|
int x, y;
|
||||||
55 => int base;
|
55 => int base;
|
||||||
|
|
||||||
|
0.5 => sl.gain => sr.gain;
|
||||||
|
|
||||||
<<< "listening on port", InPort >>>;
|
<<< "listening on port", InPort >>>;
|
||||||
|
|
||||||
while( true ) {
|
while( true ) {
|
||||||
@ -26,8 +27,16 @@ while( true ) {
|
|||||||
msg.getInt(0) => x;
|
msg.getInt(0) => x;
|
||||||
msg.getInt(1) => y;
|
msg.getInt(1) => y;
|
||||||
<<< "got (via ", InPort,") ", x, y >>>;
|
<<< "got (via ", InPort,") ", x, y >>>;
|
||||||
|
x => sl.freq;
|
||||||
|
y => sr.freq;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* made in doubledragon2 by tTh */
|
/* made in doubledragon2 by tTh */
|
||||||
|
|
||||||
|
/* --------------------------------------------------------
|
||||||
|
conversion coordonnées vers frequence */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user