Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
              
            
!

CSS

              
                html {
  text-align: center;
}
              
            
!

JS

              
                var player;
var computer;
var ball;
var playerServe;
var goalWaitPeriod = false;
// for sparks effect on goal
var sparks = [];
// for lightning effect before serve
var lightningForge;
// for paddle animations
var isPlayerForcePush = false;
var isCompForcePush = false;
var xoff = 0.0;

function setup() {
  var iHeight = window.innerHeight <= 542 ? window.innerHeight - 20 : 522;
  var iWidth = window.innerWidth <= 957 ? window.innerWidth - 20 : 937;
  createCanvas(iWidth, iHeight);

  player = new Player();
  computer = new Computer();
  ball = new Ball(width/2, height/2);
  scoreboard = new Scoreboard();
  playerServe = true;
  // indicator animation that a serve is coming
  lightningForge = new LightningForge();
  
  textSize(32);
  textFont("Futura");
}

function draw() {
    if (goalWaitPeriod) {
      // Screen Shakes (number 13 chosen for extra spookiness)
      translate(random(-13, 13), random(-13, 13));
    }

    background(25);

    stroke(255);
    line(width/2, 0, width/2, height);

    player.update();
    if (keyIsDown(UP_ARROW)) {
      player.move(0, -7);
    } else if (keyIsDown(DOWN_ARROW)) {
      player.move(0, 7);
    }

    player.show();
    if (isPlayerForcePush) {
      player.paddle.forceUpdate('player');
    }

    computer.update();
    if (isCompForcePush) {
      computer.paddle.forceUpdate('computer');
    }
    computer.show();

    text(scoreboard.playerScore + " / 7", width/2 - 140, 60);
    text(scoreboard.computerScore + " / 7", width/2 + 60, 60);

    for (var i = sparks.length - 1; i >= 0; i--) {
      sparks[i].update();
      sparks[i].show();
      if (sparks[i].done()) {
        sparks.splice(i, 1);
      }
    }

    if (scoreboard.gameOver()) {
      fill(25, 123);
      noStroke();
      rect(0, 0, width, height);
      fill(255);
      var result = scoreboard.playerScore > scoreboard.computerScore ? "You win! " : "You lose! ";
      text(result + scoreboard.playerScore + " to " + scoreboard.computerScore + ".", width/2 - 130, height/2 - 40);
      text("Press spacebar to play again.", width/2 - 220, height/2);
    } else {
      if (!goalWaitPeriod) {
        if (lightningForge.forgeIsFormed()) {
          ball.update();
          ball.show();
        } else {
          lightningForge.update();
          lightningForge.show();
        }
      }
    }
}

function keyPressed() {
  // if game over and spacebar is pressed
  if (scoreboard.gameOver && keyCode === 32) {
    scoreboard.resetScore();
  }
}

function Paddle(x, y, width, height) {
  this.x = x;
  this.y = y;
  this.width = width;
  this.height = height;
  this.xspeed = 0;
  this.yspeed = 0;
  this.forcePushTime = 0;

  this.show = function() {
    if (isPlayerForcePush) {
      fill(255);
    } else {
      fill(240);
    }
    rect(this.x, this.y, this.width, this.height, 5);
  }
  
  this.forceUpdate = function(pType) {
    if (this.forcePushTime < 6) {
      this.x -= 1;
      this.width += 2;
      this.y -= 1;
      this.height += 2;
      this.forcePushTime += 1;
    } else if (this.forcePushTime < 12) {
      this.x += 1;
      this.width -= 2;
      this.y += 1;
      this.height -= 2;
      this.forcePushTime += 1;
    } else {
      if (pType === 'player') {
        isPlayerForcePush = false;
      } else {
        isCompForcePush = false;
      }
      this.forcePushTime = 0;
    }
  }
}

function Scoreboard() {
  this.playerScore = 0;
  this.computerScore = 0;
  
  this.gameOver = function() {
    return this.playerScore === 7 || this.computerScore === 7;
  }
  
  this.resetScore = function() {
    this.playerScore = 0;
    this.computerScore = 0;
  }

  this.playerScored = function() {
    this.playerScore += 1;
  }

  this.computerScored = function() {
    this.computerScore += 1;
  }
}

function Player() {
  this.paddle = new Paddle(30, (height/2) - 25, 20, 70);

  this.update = function() {
    this.paddle.xspeed = 0;
    this.paddle.yspeed = 0;
  }

  this.move = function(x, y) {
    this.paddle.x += x;
    this.paddle.y += y;
    this.paddle.xspeed = x;
    this.paddle.yspeed = y;
    if (this.paddle.y < 0) { // all the way to the top
      this.paddle.y = 0;
      this.paddle.yspeed = 0;
    } else if (this.paddle.y + this.paddle.height > height) { // all the way to the bottom
      this.paddle.y = height - this.paddle.height;
      this.paddle.yspeed = 0;
    }
  }

  this.show = function() {
    this.paddle.show();
  }
}

function Computer() {
  this.paddle = new Paddle(width - 50, (height/2) - 25, 20, 70);

  this.move = function(x, y) {
    this.paddle.x += x;
    this.paddle.y += y;
    this.paddle.xspeed = x;
    this.paddle.yspeed = y;
    if (this.paddle.y < 0) { // all the way to the top
      this.paddle.y = 0;
      this.paddle.yspeed = 0;
    } else if (this.paddle.y + this.paddle.height > height) { // all the way to the bottom
      this.paddle.y = height - this.paddle.height;
      this.paddle.yspeed = 0;
    }
  }

  this.update = function() {
    var yPos = ball.y;
    var diff = -((this.paddle.y + (this.paddle.height / 2)) - yPos);
    if (diff < 0 && diff < -4) { // max speed up
      diff = -8;
    } else if (diff > 0 && diff > 4) { // max speed down
      diff = 8;
    }
    this.move(0, diff);
    if (this.paddle.y < 0) {
      this.paddle.y = 0;
    } else if (this.paddle.y + this.paddle.height > height) {
      this.paddle.y = height - this.paddle.height;
    }
};

  this.show = function() {
    this.paddle.show();
  }
}

function Ball(x, y) {
  this.x = x;
  this.y = y;
  this.xspeed = -6;
  this.yspeed = random(-1, 1);
  this.vel = createVector(this.xspeed, this.yspeed);
  this.radius = 40;
  this.yoff = random(1000);
  
  this.resetBall = function() {
    this.x = width/2;
    this.y = height/2;
    this.xspeed = playerServe ? -6 : 6;
    this.yspeed = random(-1, 1);
    this.vel.x = this.xspeed;
    this.vel.y = this.yspeed;
  }
  
  this.inDangerZone = function(x, y) {
    return (x < 200 || x > width - 200);
  }

  this.update = function() {
    this.x += this.xspeed;
    this.y += this.yspeed;
    this.vel.x = this.xspeed;
    this.vel.y = this.yspeed;

    if (this.y - this.radius <= 0) { // hitting the top wall
      this.y = this.radius;
      this.yspeed = -this.yspeed;
    } else if (this.y + this.radius > height) { // hitting the bottom wall
      this.y = height - this.radius;
      this.yspeed = -this.yspeed;
    }
    
    // a point was scored
    if (this.x - this.radius/2 < 0 || this.x + this.radius/2 > width) {
      var xSpot = this.x - this.radius/2 < 0 ? 0 : width;
      shootSparks(xSpot, this.y, -this.xspeed);
      goalWaitPeriod = true;
      setTimeout(function() {
        goalWaitPeriod = false;
        lightningForge.resetLightningForge();
      }, 500);
      xSpot === 0 ? scoreboard.computerScored() : scoreboard.playerScored();
      playerServe = !playerServe;
      this.resetBall();
    }

    var paddle1 = player.paddle;
    var paddle2 = computer.paddle;
    if(this.y + this.radius/2 >= paddle1.y && this.y - this.radius/2 <= paddle1.y + paddle1.height && this.x - this.radius/2 <= paddle1.x + paddle1.width) {
      // hit the player's paddle
      this.yspeed += (paddle1.yspeed / 2);
      
      isPlayerForcePush = true;
      this.xspeed = 10;
      
      this.x += this.xspeed;
    }
     
    if (this.y + this.radius/2 >= paddle2.y && this.y - this.radius/2 <= paddle2.y + paddle2.height && this.x + this.radius/2 >= paddle2.x) {
      isCompForcePush = true;
      this.xspeed = -10;
      // hit the computer's paddle
      this.yspeed += (paddle2.yspeed / 2);
      this.x += this.xspeed;
    }
  };

  this.show = function() {
    if (!goalWaitPeriod) {
      noStroke();
      fill(255);
      var danger = this.inDangerZone(this.x, this.y);
      push();
      translate(this.x, this.y);
      rotate(this.vel.heading() - 80);
      beginShape();
      var xoff = 0;
      for (var a = 0; a < TWO_PI; a += 0.1) {
        var offset;
        if (a > PI/6 && a < 5 * PI/6) {
          offset = map(noise(xoff, this.yoff), 0, 1, -0.31 * this.radius, 0.78 * this.radius);
        } else {
          offset = map(noise(xoff, this.yoff), 0, 1, -0.08 * this.radius, 0.08 * this.radius);
        }
        var r = this.radius + offset;
        var x = r * cos(a);
        var y = r * sin(a);
        vertex(x, y);
        xoff += 0.1;
      }
      endShape(CLOSE);

      this.yoff += 0.08;

      var eyeOffset = 0.23 * this.radius;

      stroke(54);
      fill(54);
      if (danger) {
        text(">", -eyeOffset * 2, 0);
        text("<", eyeOffset/2, 0);
      } else {
        ellipse(-eyeOffset, -eyeOffset, 0.26 * this.radius, 0.5 * this.radius);
        ellipse(eyeOffset, -eyeOffset, 0.26 * this.radius, 0.5 * this.radius);
      }
      pop();
    }
  }
};

function shootSparks(x, y, xVel) {
    for (var i = 0; i < 50; i++) {
      var s = new Spark(x, y, xVel);
      sparks.push(s);
   }
}

function Spark(x, y, xVel) {
  this.pos = createVector(x, y);
  this.lifespan = 255;

  this.vel = createVector(random(0, xVel), random(-xVel, xVel));
  // we just want the direction
  this.vel.normalize();
  // then add random speed
  this.vel.mult(random(0, 10));

  this.update = function() {
    this.vel.mult(0.95);
    this.lifespan -= 5;
    this.pos.add(this.vel);
  }

  this.done = function() {
    return this.lifespan < 0;
  }

  this.show = function() {
    if (!this.done()) {
      noStroke();
      fill(255, this.lifespan);
      rect(this.pos.x, this.pos.y, this.lifespan/20, this.lifespan/20, 3);
    }
  }

}

function LightningForge() {
  this.x = width/2;
  this.y = height/2;
  this.lifespan = 355;
  this.history = [];
  
  this.resetLightningForge = function() {
    this.x = width/2;
    this.y = height/2;
    this.lifespan = 355;
    this.history = [];
  }
  
  this.forgeIsFormed = function() {
    return this.lifespan < 0;
  }
  
  this.update = function() {
    this.lifespan -= 5;
    
    for (var i = 0; i < this.history.length; i++) {
      this.history[i].x += random(-2, 2);
      this.history[i].y += random(-5, 5);
    }

    var v = createVector(this.x, this.y);
    this.history.push(v); 
    if (this.history.length > 100) {
      this.history.splice(0, 1);
    }
  }
  
  this.show = function() {
    push();
    stroke(255);
    strokeWeight(4);
    line(width/2, 0, width/2, height);
    noFill();
    beginShape();
    for (var i = 0; i < this.history.length; i++) {
      var pos = this.history[i];
      vertex(pos.x, pos.y);
    }
    endShape(CLOSE);
    pop();
  }
}
              
            
!
999px

Console