Loading...
Logo
Processing Forum
Hello ladies and gentlemen, im trying to get a ball to draggable to any cell in the grid. Ive got my grid and the balls set up. but i think my implementation is wrong since i cannot find any method to drag them

Here is what i have so far!


Ball[][] grid;  // 2D Array of objects

int cols = 15;  // Number of columns and rows in the grid
int rows = 15;
int increment;

void setup() {
  size(600, 600);
  grid = new Ball[cols][rows];

  for (int i = 0; i < cols; i ++ ) {
    for (int j = 0; j < rows; j ++ ) {
      grid[i][j] = new Ball(i*40, j*40, 40, 40, i + j);
      grid[i][j].display();
    }
  }
  for (int i = 0; i < cols; i ++ ) {
    for (int j = 14; j < rows; j ++ ) {
      grid[i][j].greyscale();
      //fill(greyscale);
      grid[i][j].drawc();
    }
  }
}
void draw() {
}

void mousePressed() {
  rect (mouseX, mouseY, 30, 30);
}

void keyPressed() {
}


And the Cell Code is :

class Ball {      // Cell object

  float x, y;   // x,y location
  float w, h;   // width and height

  Ball(float tempX, float tempY, float tempW, float tempH, float tempAngle) { // Cell Constructor
    x = tempX;
    y = tempY;
    w = tempW;
    h = tempH;
  }

  void greyscale() {         
    increment=230 ;
  }

  void drawc() {
    ellipse(x+20, y+20, w/2, h/2);
    increment=increment-20;
  }

  void display() {
    //stroke(0);
    rect(x, y, w, h);
  }
}

Replies(5)

Your code just draw rectangles wherever a mouse is clicked!
And the big loop function draw() is empty!

I believe before tackling those circles, you 1st need to learn how to check 
which square from a grid is being hovered over.

Check it out the post below and study the examples found there:

And here's an online version:

How odd. I wrote an example of doing this a while ago that I can't seem to find posted anywhere now.
Oh well. It was pretty neat so I saved a copy myself. Here it is.

Copy code
  1. class DragaBall {
  2.   int x, y, r;
  3.   color c;
  4.   boolean grabbed;
  5.   DragaBall(int _x, int _y, color _c) {
  6.     x=_x;
  7.     y=_y;
  8.     c=_c;
  9.     r = 10;
  10.     grabbed = false;
  11.   }
  12.   boolean isOver() {
  13.     return( dist( mouseX, mouseY, x, y) < r );
  14.   }
  15.   void draw() {
  16.     // Grabbed but nothing is held, release it.
  17.     if ( grabbed && !mousePressed ) {
  18.       grabbed = false;
  19.     }
  20.     // Otherwise it's where the mouse is.
  21.     if ( grabbed ) {
  22.       x = mouseX;
  23.       y = mouseY;
  24.     }
  25.     // Code to adjust to a central grid position
  26.     if( x%30 < 15) x++;
  27.     if( x%30 > 15) x--;
  28.     if( y%30 < 15) y++;
  29.     if( y%30 > 15) y--;
  30.     // Keep it on the grid too.
  31.     x = constrain(x,r, width-r);
  32.     y = constrain(y,r, height-r);
  33.     // Actually draw it.
  34.     fill(c);
  35.     ellipseMode(CENTER);
  36.     ellipse(x, y, 2*r, 2*r);
  37.   }
  38.   void mouseDown() {
  39.     if ( isOver() ) {
  40.       //// Clone balls instead by uncommenting.
  41.       //if( !grabbed ){
  42.       //   dragaballs.add( new DragaBall( x, y, c ) );
  43.       //}
  44.       grabbed = true;
  45.     }
  46.   }



  47. final int cols = 10;
  48. final int rows = 10;

  49. ArrayList<DragaBall> dragaballs = new ArrayList();

  50. void setup() {
  51.   size(300, 300);
  52.   smooth();
  53.   stroke(0);
  54.   // Create dragable balls.
  55.   for( int i= 0 ; i < cols; i++)
  56.     dragaballs.add( new DragaBall( 15 + 30*i, height - 15, color( map(i,0,10,255,0) ) ) );
  57. }

  58. void draw() {
  59.   background(255);
  60.   stroke (0);

  61.   //Drawing the Grid 15x15
  62.   int colWidth = width/cols;
  63.   int rowHeight = height/rows;
  64.   for (int i = 0; i < cols; i++)
  65.     line(i*colWidth, 0, i*colWidth, height);  
  66.   for (int i = 0; i < rows; i++)
  67.     line(0, i*rowHeight, width, i*rowHeight);

  68.   // draw dragable balls - reverse order so new balls can override old ones. Sometimes.
  69.   for( int i=dragaballs.size()-1; i >= 0; i--)
  70.     dragaballs.get(i).draw();
  71. }

  72. void mousePressed() {
  73.   int t = dragaballs.size(); // Save this value here, as we want it to not change in the loop.
  74.   // It might change due to a ball being added - that added ball should not count this time!
  75.   // See if the dragable balls need to do anything
  76.   for( int i=0; i < t; i++)
  77.     dragaballs.get(i).mouseDown();
  78. }
A big thank you tfguy44, That is exactly what i needed. I will use yours as a reference to build mine. There are a few other features id like to implement and i will definitely post back if i need help. Thanks again.
how can i stop the bolls dropping on the bottom row ??  and how can i drag the bolls when ONLY  the left clicked and delete dragged ball when rite clicked on the ball (but one on the bottom row balls change or deleted only the dragged balls) ?
If you understand the example code I have posted, it is very easy to make all of those changes.

Stop the balls from being dropped in the bottom row:
Add an additional check at the point where the ball is determined to be dropped. If the position of the ball at that time is outside the range you like, put it somewhere else instead.

Drag only with the left mouse button:
Add an additional check in mousePressed() that checks if the left mouse button is the one that was pressed.

Delete balls with a right click:
Add more code inside mousePressed() to remove that ball from the ArrayList.

Change (instead of delete) balls in the bottom row (when they are attempted to be deleted):
Before deleting the balls, check if that ball is in the bottom row. If it is, delete it like normal, but then also add a new ball to the ArrayList.

These changes are all fairly simple and should come easily to anyone who understands the example code and knows how to program. If you need additional help, I have a friend who needs money to pay the vet bills for their sick cat. Shoot me an email: tfguy44 at gmail dot com