Loading...
Logo
Processing Forum

Music Score

in Contributed Library Questions  •  7 months ago  
Hello everyone, I have some problems with this code, is some kind of music score, the code works but in the window, I need that the notes and the stave are in the window and continue in other line, I don´t have idea how can I do it?

This is the code: 

import arb.soundcipher.*;
import arb.soundcipher.constants.*;
import processing.serial.*; //llama a todas las intruccionnes con todas las extenciones

Serial mipuerto; // declaramos el puerto serial para abilitar el puerto donde se le enviara informacion a arduino esto es una variable de tipo serial
SoundCipher part1 = new SoundCipher(this);

  float[] pitches = {69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69,
                     76, 76, 74, 74, 73, 73, 71, 76, 76, 74, 74, 73, 73, 71,
                     69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69};
  float[] dynamics = new float[pitches.length];
  float[] durations = {1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2,
                       1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2,
                       1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2};
  float y;
  int n = 0;
  float xLoc = 0.0;
  boolean test = false;
  //Del siguiente arreglo las unidades indican dedo, decenas indican cuerda
  int[] pitch_to_LED = {
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 0, pitch 0 a 11
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 1, pitch 12 a 23
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 2, pitch 24 a 35
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 3, pitch 36 a 47
    0, 0, 0, 0, 0, 0, 0, 40, 0, 41, 0, 42, // octava 4, pitch 48 a 59
    43, 0, 44, 0, 31, 0, 32, 33, 0, 34, 0, 21, // octava 5, pitch 60 a 71
    0, 22, 23, 0, 24, 0, 11, 0, 12, 13, 0, 14, // octava 6, pitch 72 a 83
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 7, pitch 84 a 95
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 8, pitch 96 a 107
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 9, pitch 108 a 119
    0, 0, 0, 0, 0, 0, 0 //, 0, 0, 0, 0, 0, // octava 10, pitch 120 a 127
  };

void setup(){
 println(Serial.list());
 String Puerto = Serial.list()[1];
 mipuerto = new Serial(this,Puerto,9600);
 
 for (int i=0; i<pitches.length; i++) {
    dynamics[i] = random(40) + 70;
  }
  
  
 background(0);
 size(640, 360);
 stroke(255);
 frameRate(2);
 
}

void draw()
{
  if (n >= pitches.length-1) {
    n = 0;
  }
  if (xLoc > width) {
    background(0);
    xLoc = 0.0;
  }

  line(0, 169.5, 640, 169.5);
  line(0, 158.5, 640, 158.5);
  line(0, 147.5, 640, 147.5);
  line(0, 137, 640, 137);
  line(0, 125.5, 640, 125.5);

  line(xLoc-2.5, height-3*pitches[n], xLoc-2.5, pitches[n]*2  );
  ellipse(xLoc, height-3*pitches[n], 5 , 5);
  part1.playNote(pitches[n], dynamics[n], durations[n]);
  n += 1;
  xLoc += 20.0;
 
  int newNotas = int(pitches[n]);
  
  //mipuerto.write(newNotas);
   mipuerto.write(pitch_to_LED[newNotas]);
   println(pitch_to_LED[newNotas]);
 
 
}

Replies(3)

Re: Music Score

7 months ago

as far as I understand xLoc is your x-value for the note.

now when xLoc is >= width-60 or so, go to next line:

Copy code
  1. xLoc = 0;
  2. yLoc = yLoc + lineDistY;

and here (and in other places)

Copy code
  1.   ellipse(xLoc, height-3*pitches[n] + yLoc , 5 , 5);


lineDistY being the distance betwen two lines.
to be defined before setup()

Copy code
  1. float lineDistY = 40;


or so.


Re: Music Score

6 months ago
Hi, I'll try to do it but seems that don't works, I try to do it but I think that it's the long form to do it, but almost works, and I have the same problems to change to an other line, I'll put all the code, sorry I know that is a lot but if someone wants to run it, I'll try to do less with a FOR cycle but I don't know how yet

Regards

import arb.soundcipher.*;
import arb.soundcipher.constants.*;
import processing.serial.*; //llama a todas las intruccionnes con todas las extenciones

Serial mipuerto; // declaramos el puerto serial para abilitar el puerto donde se le enviara informacion a arduino esto es una variable de tipo serial
SoundCipher part1 = new SoundCipher(this);

  float[] pitches = {69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69,
                     76, 76, 74, 74, 73, 73, 71, 76, 76, 74, 74, 73, 73, 71,
                     69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69};
  float[] dynamics = new float[pitches.length];
  float[] durations = {1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2,
                       1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2,
                       1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2};
  float y;
  int n = 0;
  float xLoc = 0.0;
  float posX = 0.0;
  boolean test = false;
  //Del siguiente arreglo las unidades indican dedo, decenas indican cuerda
  int[] pitch_to_LED = {
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 0, pitch 0 a 11
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 1, pitch 12 a 23
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 2, pitch 24 a 35
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 3, pitch 36 a 47
    0, 0, 0, 0, 0, 0, 0, 40, 0, 41, 0, 42, // octava 4, pitch 48 a 59
    43, 0, 44, 0, 31, 0, 32, 33, 0, 34, 0, 21, // octava 5, pitch 60 a 71
    0, 22, 23, 0, 24, 0, 11, 0, 12, 13, 0, 14, // octava 6, pitch 72 a 83
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 7, pitch 84 a 95
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 8, pitch 96 a 107
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // octava 9, pitch 108 a 119
    0, 0, 0, 0, 0, 0, 0 //, 0, 0, 0, 0, 0, // octava 10, pitch 120 a 127
  };

void setup(){
 println(Serial.list());
 String Puerto = Serial.list()[1];
 mipuerto = new Serial(this,Puerto,9600);
 
 for (int i=0; i<pitches.length; i++) {
    dynamics[i] = random(40) + 70;
  }
   
 background(255);
 size(640, 360);
 stroke(0);
 frameRate(2);
 
  if (n >= pitches.length-1) {
    n = 0;
  }
  if (posX > width) {
    posX = 0.0;
  }
  
  for(int posX=0; posX<width; posX= posX+20){
    for(n = 0; n<pitches.length; n++){ 
    ellipse(posX, height-3*pitches[n], 8 , 8);
    posX += 20.0;
    }
  }   
}

void draw()
{  
 if (n >= pitches.length-1) {
    n = 0;
  }
  if (xLoc > width) {
    background(255);
    xLoc = 0.0;
  }

  line(0, 169.5, 640, 169.5);
  line(0, 158.5, 640, 158.5);
  line(0, 147.5, 640, 147.5);
  line(0, 137, 640, 137);
  line(0, 125.5, 640, 125.5);

  line(xLoc-3.5, height-3*pitches[n], xLoc-3.5, pitches[n]*2  );
  ellipse(xLoc, height-3*pitches[n], 8 , 8);
  fill(204,102,150); //rellena la ellipse con un color determinado
  part1.playNote(pitches[n], dynamics[n], durations[n]);
  n += 1;
  xLoc += 20.0;
 
  int newNotas = int(pitches[n]);
  
   mipuerto.write(pitch_to_LED[newNotas]);
   println(pitch_to_LED[newNotas]);
 
 
}

Re: Music Score

6 months ago
Hi, I've tried with this (simplifying of the previous code) but seem that write the same pitches in the next line and not the next pitch in the next line, I think taht is something with the "n" but i'm not sure how can I do it, if somebody know plaese and thanks


float[] pitches = {69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69,
                     76, 76, 74, 74, 73, 73, 71, 76, 76, 74, 74, 73, 73, 71,
                     69, 69, 76, 76, 78, 78, 76, 74, 74, 73, 73, 71, 71, 69};

int n = 0;
float xLoc = 0;
float yLoc = 0; // if I put this don't works
float lineDistY = 100;
void setup(){
  size(640,480);

if (n >= pitches.length-1){
  n= 0;
  }
  
if (xLoc>=width){
  xLoc = 0;
  yLoc = yLoc+lineDistY;
  }
  
for(int xLoc=0; xLoc<width; xLoc= xLoc+20){
  for(n = 0; n<pitches.length; n++){ 
  ellipse(xLoc, height-3*pitches[n], 8 , 8);
  //n += 1;
  xLoc += 20.0;
  println(pitches[n]);
  if (xLoc<=width){
    ellipse(xLoc, height-3*pitches[n]+100, 8 , 8);
  }
  }
}