Hi guys, I'm still working on this piece of code, I was wondering if anyone could tell me how to change between colors in this sketch. When I strike a note it draws in as I want, however it just continues to draw in continuously, and I've been trying to get it display white (or not at all) if the note is not down.
myOutput.sendController(channel, number, value); // Send a controllerChange
}
}
Any help would be greatly appreciated, I'm completely stuck I've been trying to crack this code for weeks now and I'm pretty much at my wits end... I'm sure its probably a relatively quick fix as well, I just can't figure it out.
Hi guys, I'm currently working on editing a piece of code from
http://krazydad.com/processing_music/ I've managed to get it working roughly how I wanted, but there's a few gripes I'm thus far unable to get my head around.
This is what I'm struggling with;
1; I want the visual to draw in for however long I hold a note on my midi keyboard
2; I don't want the visual to disappear when I strike the note for a second time
Here's the code I'm working with, once again many thanks to Jim (KrazyDad) for the original code!
import rwmidi.*; //Import the library
MidiOutput myOutput; // The MidiBus
MidiInput myInput;
boolean midiThru = false; // echo all received midi in messages to the midi out device
int maxNotes = 128;
class MNote {
long startTime;
float ax;
float ay;
float bx;
float by;
float cx;
float cy;
float dx;
float dy;
float ex;
float ey;
float fx;
float fy;
float gx;
float gy;
float hx;
float hy;
float initRad;
float weight;
float kMinVelocity = 10;
float kMaxVelocity = 100;
float a = 100;
int pitch;
int velocity;
boolean isOn = false;
MNote(int pitch) {
this.pitch = pitch;
}
void init(int pitch, int velocity)
{
startTime = millis();
int rotation = 50000;
int currentTime = millis();
float m = (currentTime%rotation)* PI*2 / rotation; //creates motion
Hi guys I'm currently working on mocking up some visuals for a project I'm working on, I'm relatively new to processing, so I'm doing everything in a very round about way. I'm trying to re-code the current piece of code so each motion comes from an array (so I can add additional motions with relative ease), but I'm finding doing so a touch confusing, I've done a few example from learning processing, but they're not really helping!
int start;// start time
int time = 0; //time
int rotation = 10000; //time taken to draw one rotation
color c1 = color(45,0,100,50); //red
color c2 = color(90,0,100,50); //orange
color c3 = color(135,0,100,50); //yellow
color c4 = color(180,0,100,50); //light green
color c5 = color(225,0,100,50); //green
color c6 = color(270,0,100,50); //teal
color c7 = color(315,0,100,50); //blue
color c8 = color(360,0,100,50); //purple
color change = color(2,1,1,0);
void setup(){
noStroke();
colorMode(HSB, 360,100,100);
for (int i = 0; i < 100; i++) {
for (int j = 0; j < 100; j++) {
stroke(i, j, 100);
point(i, j);
}
}
size(900,650); // canvas size
smooth();
background(0,0,100); //background
start=millis(); //open the Serial myPort
}
void draw(){
//1st motion
float a = 100;
int currentTime = millis();
float m = (currentTime%rotation)* PI*2 / rotation; //creates motion
//set the x,y coords for the visual
float ax = (sin(m)*a+width/2);
float ay = (cos(m)*a+height/2);
noStroke();
fill(c1); //red
ellipse(ax, ay,20,20); // draws an ellipse
c1 = c1 - change;
//2nd motion
float b = 120; //radius
float bx = (sin(m)*b+width/2);
float by = (cos(m)*b+height/2);
noStroke();
fill(c2); //orange
ellipse(bx,by,20,20);
c2 = c2 - change;
//3rd motion
float c = 140; //radius
float cx = (sin(m)*c+width/2);
float cy = (cos(m)*c+height/2);
noStroke();
fill(c3); //yellow
ellipse(cx,cy,20,20);
c3 = c3 - change;
//4th motion
float d = 160; //radius
float dx = (sin(m)*d+width/2);
float dy = (cos(m)*d+height/2);
noStroke();
fill(c4); //light green
ellipse(dx,dy,20,20);
c4 = c4 - change;
//5th motion
float e = 180; //radius
float ex = (sin(m)*e+width/2);
float ey = (cos(m)*e+height/2);
noStroke();
fill(c5); //green
ellipse(ex,ey,20,20);
c5 = c5 - change;
//6th motion
float f = 200; //radius
float fx = (sin(m)*f+width/2);
float fy = (cos(m)*f+height/2);
noStroke();
fill(c6); //teal
ellipse(fx,fy,20,20);
c6 = c6 - change;
//7th motion
float g = 220; //radius
float gx = (sin(m)*g+width/2);
float gy = (cos(m)*g+height/2);
noStroke();
fill(c7); //blue
ellipse(gx,gy,20,20);
c7 = c7 - change;
//8th motion
float h = 240; //radius
float hx = (sin(m)*h+width/2);
float hy = (cos(m)*h+height/2);
noStroke();
fill(c8); //purple
ellipse(hx,hy,20,20);
c8 = c8 - change;
}
I'm re-coding it as we speak, but I'm not entirely sure what I need to define and where! if anyone could point me in the right direction that'd be great! I've been smashing my head off the table for hours trying to figure it out. :(
Hi guys, I've been at Processing for a couple of months now, and I realize there's been quite a lot of posts about this in the past, but from what I've seen I can't find too much about how to actually get processing to communicate with midi data.
I essentially want to create two sketches, one which I can run live through a midi keyboard, and one which I can run a midi track through to create a static visual when the track ends. I've been looking at midi libraries (rwmidi and promidi), but I'm not really sure which one is best. I think once I have processing actually receiving midi data I should be able to code the rest myself, but I'm a little lost as to how I can achieve this.
Does anyone have any suggestions/tutorials/examples that might be able to point me in the right direction?
Many thanks!
EDIT: I realised as I posted that this is most likely in the wrong section, I do apologise!