Skip to content

Instantly share code, notes, and snippets.

@izebit
Created August 8, 2018 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izebit/4fbd18a53e46e817ec2da1a15958b289 to your computer and use it in GitHub Desktop.
Save izebit/4fbd18a53e46e817ec2da1a15958b289 to your computer and use it in GitHub Desktop.
Falling boulder, processingJS
angleMode = "radians";
var Boulder = function(m, x, y) {
this.position = new PVector(x, y);
this.mass = m;
this.width = this.mass * 10;
this.angle = 0;
this.aVelocity = 0;
this.aAcceleration = 0;
this.velocity = new PVector(0, 0);
this.acceleration = new PVector(0, 0);
};
Boulder.prototype.applyForce = function(force) {
if (force instanceof PVector) {
var f = PVector.div(force, this.mass);
this.acceleration.add(f);
}
};
Boulder.prototype.update = function () {
this.velocity.add(this.acceleration);
this.position.add(this.velocity);
this.aAcceleration = this.acceleration.x;
this.aVelocity+=this.aAcceleration;
this.aVelocity = constrain(this.aVelocity,0,0.5);
this.angle +=this.aVelocity;
this.acceleration.mult(0);
};
Boulder.prototype.display = function () {
pushMatrix();
translate(this.position.x, this.position.y);
image(getImage("creatures/Hopper-Jumping"), this.width*0.25, this.width*0.3, 45, 55);
rotate(this.angle);
this.drawShape();
popMatrix();
};
Boulder.prototype.drawShape = function() {
ellipseMode(CENTER);
fill(82, 82, 82);
ellipse(0, 0, this.width, this.width);
noStroke();
var from = color(102, 102, 102, 40);
var to = color(148, 148, 148, 40);
var gradientBars = 20;
for (var i = 0; i < gradientBars; i++) {
var interA = lerpColor(from, to, i*1/gradientBars);
var sWidth = (gradientBars-i)*this.width/gradientBars;
fill(interA);
ellipse(i, 0, sWidth, sWidth);
}
var from = color(102, 102, 102, 40);
var to = color(94, 94, 94, 40);
var gradientBars = 20;
for (var i = 0; i < gradientBars; i++) {
var interA = lerpColor(from, to, i*1/gradientBars);
var sWidth = (gradientBars-i)*this.width/gradientBars;
fill(interA);
ellipse(-i, 0, sWidth, sWidth);
}
};
var boulder = new Boulder(6, 10, 10);
draw = function() {
background(215, 245, 245);
// draw mountain
fill(181, 181, 181);
stroke(150, 150, 150);
triangle(0, 40, width-40, height, 0, height);
if(mouseIsPressed){
boulder.applyForce(new PVector(-0.2,-0.2));
}
// draw boulder
boulder.applyForce(new PVector(0.1,0.1));
boulder.update();
boulder.display();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment