Loading...
Logo
Processing Forum
For some reason, every time I try to run this program, I just get a gray window. Anybody know how to make this program work? I'm using a combination of Conway's Game of Life ( http://processing.org/learning/topics/conway.html) and the Ess library ( http://www.tree-axis.com/Ess/). Thanks!

Copy code
  1. import krister.Ess.*;

  2. int sx, sy; 
  3. float density = 0.5; 
  4. int[][][] world; //triple array

  5. AudioChannel myChannel1;
  6. SineWave myWave1;

  7. int frameDuration;

  8. void setup() 
  9.   size(640, 500, P2D);
  10.   frameRate(12); //set a framerate variable--1000/framerate = new variable called frameDuration
  11.   sx = width;
  12.   sy = height;
  13.   world = new int[sx][sy][2]; 

  14.   frameDuration = 1000/12;

  15.   // Set random cells to 'on' 
  16.   for (int i = 0; i < sx * sy * density; i++) { 
  17.     world[(int)random(sx)][(int)random(sy)][1] = 1;
  18.   }

  19.   // start up Ess
  20.   Ess.start(this);

  21.   // create a new AudioChannel
  22.   myChannel1=new AudioChannel();

  23.   // set the channel size to 5 seconds
  24.   myChannel1.initChannel(myChannel1.frames(frameDuration));

  25. void draw() 
  26.   background(0); 

  27.   // Drawing and update cycle 
  28.   for (int x = 0; x < sx; x=x+1) { 
  29.     for (int y = 0; y < sy; y=y+1) { 
  30.       //if (world[x][y][1] == 1) 
  31.       // Change recommended by The.Lucky.Mutt
  32.       if ((world[x][y][1] == 1) || (world[x][y][1] == 0 && world[x][y][0] == 1)) 
  33.       { 
  34.         world[x][y][0] = 1; 
  35.         set(x, y, #FFFFFF);
  36.       } 
  37.       if (world[x][y][1] == -1) 
  38.       { 
  39.         world[x][y][0] = 0;
  40.       } 
  41.       world[x][y][1] = 0;
  42.     }
  43.   } 
  44.   // Birth and death cycle 
  45.   for (int x = 0; x < sx; x=x+1) { 
  46.     for (int y = 0; y < sy; y=y+1) { 
  47.       int count = neighbors(x, y); 
  48.       if (count == 3 && world[x][y][0] == 0) // if the cell is black and has three white neighbors 
  49.       { 
  50.         world[x][y][1] = 1;
  51.         // audio here 
  52.         myWave1=new SineWave(480,.1);
  53.         myWave1.generate(myChannel1,0,myChannel1.frames(frameDuration));
  54.       } 
  55.       if ((count < 2 || count > 3) && world[x][y][0] == 1) // if the cell is white and has less than 2 or more than 3 white neighbors
  56.       { 
  57.         world[x][y][1] = -1;
  58.         //audio here
  59.         myWave1=new SineWave(680,.1);
  60.         myWave1.generate(myChannel1,0,myChannel1.frames(frameDuration));
  61.       }
  62.     }
  63.   }

  64. // differentiate between different coordinates on the grid

  65. // Count the number of adjacent cells 'on' 
  66. int neighbors(int x, int y) 
  67.   return world[(x + 1) % sx][y][0] + 
  68.     world[x][(y + 1) % sy][0] + 
  69.     world[(x + sx - 1) % sx][y][0] + 
  70.     world[x][(y + sy - 1) % sy][0] + 
  71.     world[(x + 1) % sx][(y + 1) % sy][0] + 
  72.     world[(x + sx - 1) % sx][(y + 1) % sy][0] + 
  73.     world[(x + sx - 1) % sx][(y + sy - 1) % sy][0] + 
  74.     world[(x + 1) % sx][(y + sy - 1) % sy][0];

  75. public void stop() {
  76.   Ess.stop();
  77.   super.stop();
  78. }

Replies(4)

I also don't know Ess, but I tried your code with the Ess stuff removed, and it worked fine. 

I think you are killing your frame rate, and are seeing the first (gray) frame only.  You are killing performance because you are creating as many as one sine wave object per pixel, per frame, which comes out to 320,000 sine waves or so, which is massive polyphony, and probably way more than Ess can handle.

In a typical music synthesis program, you would create most of your sine waves in the setup function, not in draw, and you would typically create no more than a few hundred, and probably far less than that.

You gotta be careful what you put inside of a double loop...
All right, well I tried making the screen dimensions smaller (100x100) and now the Conway program runs (slowly, though) but still no music.

Perhaps I'm putting the audio code in the wrong place?
If there' s anybody who could walk me through this code step-by-step, then maybe I'll manage to figure out how to place the audio code in the program.
This is a really good illustration of why it's better to have written the code yourself in the first place, rather than copying an example you don't understand.

I'm a little too busy to do a complete line by line, but my suggestion to you is this:

1) Read the Wikipedia entry on Conway's life, so you understand what's going on thoroughly.  Then walk through your own code, line by line, and figure it out, or better yet, rewrite it from scratch, attempting to do what the Wikipedia article describes.

2) Remove this line completely from your draw function:

myWave1=new SineWave(480,.1);

Allocate all your wave forms in your setup function, instead.  You can start with just a single sinewave oscillator.

Then in your draw function, count the number of live cells, and use that number to change the frequency of your sine wave.  This will produce much better performance.  So you would remove all existing music code from your draw function, and then add something like this:

Copy code
  1. int cnt = 0;
  2.  for (int x = 0; x < sx; x=x+1) { 
  3.     for (int y = 0; y < sy; y=y+1) { 
  4.       count += world[x][y];
  5.    }
  6. }
  7. // use cnt here to change the frequency of your oscillator
  8.