Loading...
Logo
Processing Forum
Hello all;

I hope we're all having a fine day :)

I'm sure this is a fairly simple issue I'm having but I'm very new to Processing.

I'm trying to control parameters in Pure Data through OSC and have looked over Sending and Receiving OSC Data Using Processing tutorial here.
I've managed to work through it and get everything that's in the tutorial working using void mousePressed(); although I'm now confused on a whole new level.

I really can't figure out how to do more than this. I'd really like to say; use mouseX to send data to a filter cutoff in Pure Data. 
I guess an easier way of getting across what I want to do is in this video  https://www.youtube.com/watch?v=M3h8msaZiC8

Obviously the mouseX & mouseY are sending numbers to OSC, but I've absolutely no idea how to go about writing that code in Processing.

Eventually I want to make a GUI for a Pure Data synth in Processing, creating faders, knobs and buttons which will all send OSC data to PD, but I'm trying to start out small for the time being.

I'd really appreciate any help with this; it's been doing funny things to my mind for the last 48 hours and I think I'm starting to dream in incorrect code =$

Replies(3)

Hi, to capture mouse events in processing you can make use of mousePressed(), mouseReleased(), mouseDragged(), mouseMoved(), mouseX, mouseY, mousePressed
here a quick example that sends OSC messages when the mouse is moved or dragged. In order to receive messages sent from the example below, you need to set the receiving port in PureData to 8000 and route incoming messages to /mousex and /mousey. to keep things simple, I have followed the PureData setup as seen in the youtube video you provided.

When getting to the point to implement a gui, remember to check the contributed libraries interface section which offers a couple of options to build a gui. These libraries come with lots of examples, maybe have a look at the controlP5 examples for a range of gui controllers to choose from.


Copy code
  1. import oscP5.*;
  2. import netP5.*;
  3.   
  4. OscP5 oscP5;

  5. NetAddress puredata;

  6. void setup() {
  7.   size(400,400);
  8.   
  9.   oscP5 = new OscP5(this,12000);
  10.   
  11.   // PureData address
  12.   puredata = new NetAddress("127.0.0.1",8000);
  13. }

  14. void draw() {
  15.   background(0);
  16.   rect(mouseX, mouseY, 20,20);
  17. }

  18. void mouseDragged() {
  19.     // send 2 osc messages with address /mousex and /mousey 
  20.     // when the mouse is dragged
  21.     oscP5.send(new OscMessage("/mousex").add(mouseX), puredata);
  22.     oscP5.send(new OscMessage("/mousey").add(mouseY), puredata);
  23.   println("sending 2 osc messages while dragging the mouse");  
  24. }


  25. void mouseMoved() {
  26.     // send 2 osc messages with address /mousex and /mousey 
  27.     // when the mouse is moved
  28.     oscP5.send(new OscMessage("/mousex").add(mouseX), puredata);
  29.     oscP5.send(new OscMessage("/mousey").add(mouseY), puredata);
  30.   println("sending 2 osc messages while moving the mouse");
  31. }


andreas schlegel, http://www.sojamo.de


You can also search the forum about Pure Data, PureData and OSC, I am pretty sure there are several threads about them.
Thank you very much for the help andreas, that's precicely what I was looking for. I've now a whole new amount of confusion now but I'll scour the search before asking any more questions that have already been covered :)

Thanks guys