Loading...
Logo
Processing Forum

Finally: 3D sphere in a box

in Share your Work  •  7 months ago  



I was dreaming about this all my life:
create a 3D sphere in a box moving there and be reflected by the walls.

Thanks to processing I finally was able to do this. Thank you.

That's maybe the starting point for a 3D pong game (which already exists, I know...).




Copy code
  1. //
  2. // vars ====================================================
  3. // Creating an array of objects.
  4. Mover[] movers = new Mover[1];
  5. // main functions ========================================
  6. void setup() {
  7.   // automatic init
  8.   size(displayWidth, displayHeight, OPENGL );
  9.   fill(204);
  10.   movers[0] = new Mover();
  11.   //
  12.   sphereDetail(15);
  13. } // function
  14. void draw() {
  15.   // automatically loops
  16.   background ( 0, 0, 54 );
  17.   lights();
  18.   // camera
  19.   camera( 110, 150, 430, // eyeX, eyeY, eyeZ   
  20.   150, 150, -100, // centerX, centerY, centerZ      
  21.   0.0, 1.0, 0.0 );       // upX, upY, upZ  
  22.   // Big Game Box
  23.   BigGameBox ();
  24.   int i = 0;
  25.   movers[i].update();
  26.   movers[i].checkEdges();
  27.   movers[i].display();
  28. } // function
  29. // ------------------------------------------------------------
  30. void BigGameBox () {
  31.   noStroke();
  32.   fill(122);
  33.   // left wall 
  34.   beginShape ();
  35.   vertex (0, 0, 0);
  36.   vertex (0, 0, -300); 
  37.   vertex (0, 300, -300);   
  38.   vertex (0, 300, 0 );   
  39.   endShape(CLOSE);
  40.   fill(22);
  41.   // Wall in the back
  42.   beginShape ();
  43.   vertex (0, 0, -300); 
  44.   vertex (0, 300, -300);   
  45.   vertex (300, 300, -300 );   
  46.   vertex (300, 0, -300);   
  47.   endShape(CLOSE);
  48.   fill(222);
  49.   // Right wall
  50.   beginShape ();
  51.   vertex (300, 300, -300 );   
  52.   vertex (300, 0, -300);   
  53.   vertex (300, 0, 0);     
  54.   vertex (300, 300, 0);       
  55.   endShape(CLOSE);
  56.   fill(254);
  57.   // floor
  58.   beginShape ();
  59.   vertex (0, 300, 0 );   
  60.   vertex (300, 300, 0);   
  61.   vertex (300, 300, -300);     
  62.   vertex (0, 300, -300);       
  63.   endShape(CLOSE);
  64.   fill(2);
  65.   // ceiling
  66.   beginShape ();
  67.   vertex (0, 0, 0 );   
  68.   vertex (300, 0, 0);   
  69.   vertex (300, 0, -300);     
  70.   vertex (0, 0, -300);       
  71.   endShape(CLOSE);
  72. }
  73. // ------------------------------------------------------------
  74. class Mover {
  75.   // the sphere
  76.   PVector location;
  77.   PVector velocity;
  78.   // PVector acceleration;
  79.   float topspeed;
  80.   int radius = 30;
  81.   Mover() {
  82.     location = new PVector (100, 60, -100); //  (random(width),random(height));
  83.     velocity = new PVector(3, 3, 10);
  84.     topspeed = 4;
  85.   }
  86.   void update() {
  87.     velocity.limit(topspeed);
  88.     location.add(velocity);
  89.   }
  90.   void display() {
  91.     fill(175);
  92.     SphereParameters(location.x, location.y, location.z, radius);
  93.   }
  94.   void checkEdges() {
  95.     // We still sometimes need to refer to the individual components of a PVector
  96.     // and can do so using the dot syntax (location.x, velocity.y, etc.)
  97.     if (location.x+radius > 300) {
  98.       velocity.x = abs(velocity.x) * -1;
  99.     }
  100.     else if (location.x-radius <= 0) {
  101.       velocity.x = abs ( velocity.x );
  102.     }
  103.     //
  104.     if (location.y+radius > 300) {
  105.       velocity.y = abs ( velocity.y ) * -1;
  106.     }
  107.     else if (location.y-radius < 0) {
  108.       velocity.y = abs ( velocity.y );
  109.     }
  110.     //
  111.     if (location.z-radius < -300) {
  112.       velocity.z = abs ( velocity.z ) ;
  113.     }
  114.     else if (location.z+radius > -10) {
  115.       velocity.z = - abs ( velocity.z );
  116.     }
  117.   }
  118.   //
  119.   void SphereParameters ( float x, float y, float z,
  120.   float w ) {
  121.     // Position and size of a sphere
  122.     noStroke();
  123.     pushMatrix();
  124.     translate ( x, y, z );
  125.     sphere ( w );
  126.     popMatrix();
  127.   } // function
  128.   //
  129. }// class
  130. //

Replies(4)

Looking good!
by me it glitches really hard!


Yeah, it's not really smooth....

I could get of the array since it's only one sphere...

But otherwise wouldn't know where to optimize

Only in wall collision (but that would risk stuttering) using if (collision left wall || right wall) velocity *-1

I could get rid of lights().....

Any advice?




Couldn't resist hacking this one (my version requires processing-2.0b8) makes use of PShape api, which could also be used for ball createShape(SPHERE, radius):-

Copy code
  1. //
  2. // vars ====================================================
  3. // Creating an array of objects.
  4. Mover[] movers = new Mover[1];
  5. PShape gameBox;

  6. // main functions ========================================
  7. void setup() {
  8.   // automatic init
  9.   size(600, 600, P3D );
  10.   fill(204);
  11.   movers[0] = new Mover();
  12.   gameBox = bigGameBox();
  13.   // 
  14.   sphereDetail(15);
  15. } // function 

  16. void draw() {
  17.   // automatically loops
  18.   background ( 0, 0, 54 );
  19.   lights();
  20.   // camera 
  21.   camera( 300, 300, 430, // eyeX, eyeY, eyeZ    
  22.   300, 300, -150, // centerX, centerY, centerZ       
  23.   0.0, 1.0, 0.0 );       // upX, upY, upZ   
  24.   // Big Game Box
  25.   shape(gameBox);
  26.   int i = 0;
  27.   movers[i].update();
  28.   movers[i].checkEdges();
  29.   movers[i].display();

  30. // function 
  31. // ------------------------------------------------------------
  32. PShape bigGameBox() {
  33.   PShape gameBox = createShape(GROUP);
  34.   noStroke();
  35.   // left wall 
  36.   PShape left = createShape();
  37.   left.beginShape();
  38.   left.fill(122);
  39.   left.vertex(0, 0, 0);
  40.   left.vertex(0, 0, -600);
  41.   left.vertex(0, 600, -600);
  42.   left.vertex(0, 600, 0);
  43.   left.endShape();

  44.   // Wall in the back
  45.   PShape back = createShape();
  46.   back.beginShape();
  47.   back.fill(22);
  48.   back.vertex(0, 0, -600);
  49.   back.vertex(0, 600, -600);
  50.   back.vertex(600, 600, -600);
  51.   back.vertex(600, 0, -600);
  52.   back.endShape();

  53.   // Right wall 
  54.   PShape right = createShape();
  55.   right.beginShape();
  56.   right.fill(222);
  57.   right.vertex(600, 600, -600);
  58.   right.vertex(600, 0, -600);
  59.   right.vertex(600, 0, 0);
  60.   right.vertex(600, 600, 0);
  61.   right.endShape();

  62.   // floor
  63.   PShape floor = createShape();
  64.   floor.beginShape();
  65.   floor.fill(254);
  66.   floor.vertex(0, 600, 0);
  67.   floor.vertex(600, 600, 0);
  68.   floor.vertex(600, 600, -600);
  69.   floor.vertex(0, 600, -600);
  70.   floor.endShape();

  71.   // ceiling
  72.   PShape ceiling = createShape();
  73.   ceiling.beginShape();
  74.   ceiling.fill(2);
  75.   ceiling.vertex(0, 0, 0);
  76.   ceiling.vertex(600, 0, 0);
  77.   ceiling.vertex(600, 0, -600);
  78.   ceiling.vertex(0, 0, -600);
  79.   ceiling.endShape();
  80.   gameBox.addChild(back);
  81.   gameBox.addChild(floor);
  82.   gameBox.addChild(ceiling);
  83.   gameBox.addChild(left);
  84.   gameBox.addChild(right);
  85.   return gameBox;
  86. }

  87. // ------------------------------------------------------------
  88. class Mover {
  89.   // the sphere 
  90.   PVector location;
  91.   PVector velocity;
  92.   // PVector acceleration;
  93.   float topspeed;
  94.   int radius = 30; 
  95.   Mover() {
  96.     location = new PVector (100, 60, -100); //  (random(width),random(height));
  97.     velocity = new PVector(3, 3, 10);
  98.     topspeed = 4;
  99.   }
  100.   void update() {
  101.     velocity.limit(topspeed);
  102.     location.add(velocity);
  103.   }
  104.   void display() {
  105.     fill(175);
  106.     SphereParameters(location.x, location.y, location.z, radius);
  107.   }
  108.   void checkEdges() {
  109.     // We still sometimes need to refer to the individual components of a PVector 
  110.     // and can do so using the dot syntax (location.x, velocity.y, etc.)
  111.     if (location.x+radius > 600) {
  112.       velocity.x = abs(velocity.x) * -1;
  113.     }
  114.     else if (location.x-radius <= 0) {
  115.       velocity.x = abs ( velocity.x );
  116.     }
  117.     // 
  118.     if (location.y+radius > 600) {
  119.       velocity.y = abs ( velocity.y ) * -1;
  120.     }
  121.     else if (location.y-radius < 0) {
  122.       velocity.y = abs ( velocity.y );
  123.     }
  124.     //
  125.     if (location.z-radius < -600) {
  126.       velocity.z = abs ( velocity.z ) ;
  127.     }
  128.     else if (location.z+radius > -10) {
  129.       velocity.z = - abs ( velocity.z );
  130.     }
  131.   }
  132.   //
  133.   void SphereParameters ( float x, float y, float z, 
  134.   float w ) {
  135.     // Position and size of a sphere
  136.     noStroke(); 
  137.     pushMatrix();
  138.     translate ( x, y, z );
  139.     sphere ( w );
  140.     popMatrix();
  141.   } // function 
  142.   //
  143. }// class
  144. //

Copy code