JavaScript Pong
Written by Mike James   
Friday, 24 December 2010
Article Index
JavaScript Pong
Ball and bats
Timer for animation
Enhancements

The Ball object

Of course we need a ball to bounce around the court and this is just another use of the CBlock object:

CBall = function(position, 
velocity, radius) {
DOMObj =new CBlock(position,
{h:radius,w:radius},"white");
DOMObj.p = position;
DOMObj.v = velocity;
DOMObj.r = radius;

Notice that we create a ball with the specified radius and store its position and velocity as new properties of the DOM object.

 

Banner

 

This particular new object has more than just properties, it also has a method that can be used to move it around the court:

DOMObj.move = function() {
this.p.x += this.v.x;
this.p.y += this.v.y;
this.style.top = this.p.y + 'px';
this.style.left = this.p.x + 'px';

The first pair of instructions add the velocity to the current position and the next pair up-date the ball's position. Notice that in this case we have to use “this” to provide the context of the call because when the method is used “this” will be set to the current instance of the ball and the DOMObj variable will be long gone.

In general use the DOM object reference when creating properties and methods on the object but use “this” when an instance is going to be accessing the properties and methods.

The final part of the move method simply checks to see if the ball has hit the side of the court or has gone out of play:

  this.play = 0;
if (this.p.x + this.r >
parseInt(this.parentNode.
style.width))
this.play = 1;
if (this.p.x < 0)
this.play = 2;
if (this.p.y + this.r >
parseInt(this.parentNode.
style.height))
this.v.y = -this.v.y;
if (this.p.y < 0)
this.v.y = -this.v.y;
return this.play;
};
return DOMObj;
};

Notice the use of the play property to signal that the ball is or is not in play. A bounce is implemented by simply reversing the appropriate velocity. It was tempting to add a “beep” noise to the bounce but this isn’t easy within a browser as JavaScript has no “beep” or noise making command.

Now that we have a ball to play with we simply add it to the court with an initial position and velocity:

Ball = new CBall( 
{x: 2,y: 1},
{x: 2,y: 1},
 10);
Court.appendChild(Ball);

Bats

The next task is to create a bat object and two instances of it, one for each bat.

  CBat = function(position, size) {
DOMObj = CBlock(position,
size, "white");
DOMObj.p = position;
DOMObj.s = size;
DOMObj.move = function(d) {
this.p.y += d;
this.style.top = this.p.y + 'px';
};
  DOMObj.hit = function(B) {
if (((B.p.x + B.r) >= this.p.x) &&
(B.p.x <= (this.p.x + this.s.w))){
if (B.p.y >= this.p.y &&
B.p.y <= (this.p.y + this.s.h)) {
B.v.x = -B.v.x;
}
}
}
return DOMObj;
};

The bat needs two methods – a move method which simply allows the bat to move up or down and a hit testing method which tests to see if the bat has hit the ball passed as parameter B.

Notice that we could dispense with the property p and simply use style.top and style.left and the same with s and style.width and style.height but it is easier to have integer versions of these string style properties rather than keeping on having to type convert them.

Creating two bats is now very easy, which is one of the advantages of the object-oriented approach:

BatL = new CBat(
{x: 15,y: (h / 2 - 20)},
 { h: 40, w: 10 });
Court.appendChild(BatL);

BatR = new CBat(
{x: w - 15 - 10,
{ y: (h / 2 - 20)},
 { h: 40, w: 10 });
Court.appendChild(BatR);

We now have a court, a net, two bats and a ball but nothing moves:

fig3

Banner

<ASIN:1430210664>

<ASIN:0596101996>

<ASIN:1590596803>



Last Updated ( Sunday, 10 July 2022 )