xxxxxxxxxx
213
let buns = [];
let cheeses = [];
let tomatoes = [];
let lettuces = [];
let patties = [];
function setup() {
createCanvas(500, 500);
}
function draw() {
background(0);
for (let i = 0; i < buns.length; i++) {
let b = buns[i];
b.update();
}
for (let j = 0; j < cheeses.length; j++) {
let c = cheeses[j];
c.update();
}
for (let k = 0; k < tomatoes.length; k++) {
let t = tomatoes[k];
t.update();
}
for (let h = 0; h < lettuces.length; h++) {
let l = lettuces[h];
l.update();
}
for (let g = 0; g < patties.length; g++) {
let p = patties[g];
p.update();
}
}
function mouseClicked() {
let r = random(100);
if (r < 100 / 6) {
cheeses.push(new Cheese(mouseX, mouseY, random(-2, 2), random(-2, 2)));
} else if (r < (100 / 6) * 2) {
tomatoes.push(new Tomato(mouseX, mouseY, random(-2, 2), random(-2, 2)));
} else if (r < (100 / 6) * 3) {
lettuces.push(new Lettuce(mouseX, mouseY, random(-2, 2), random(-2, 2)));
} else if (r < (100 / 6) * 4) {
patties.push(new Patty(mouseX, mouseY, random(-2, 2), random(-2, 2)));
} else {
buns.push(new Bun(mouseX, mouseY, random(-2, 2), random(-2, 2)));
}
}
function mouseDragged() {
mouseClicked();
}
class Bun {
constructor(x, y, xSpeed, ySpeed) {
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
}
update() {
fill(217, 168, 105);
stroke(227, 190, 144);
strokeWeight(2);
ellipse(this.x, this.y, 20, 20);
this.x = this.x + this.xSpeed;
this.y = this.y + this.ySpeed;
if(this.x > width || this.x < 0){
this.xSpeed = this.xSpeed * -1
}
if (this.y > height || this.y < 0){
this.ySpeed = this.ySpeed * -1
}
}
}
class Cheese {
constructor(x, y, xSpeed, ySpeed) {
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
}
update() {
fill(255, 234, 76);
stroke(255, 241, 137);
strokeWeight(2);
rect(this.x, this.y, 20, 20);
this.x = this.x + this.xSpeed;
this.y = this.y + this.ySpeed;
if(this.x > width || this.x < 0){
this.xSpeed = this.xSpeed * -1
}
if (this.y > height || this.y < 0){
this.ySpeed = this.ySpeed * -1
}
}
}
class Tomato {
constructor(x, y, xSpeed, ySpeed) {
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
}
update() {
fill(255, 79, 79);
stroke(255, 119, 119);
strokeWeight(2);
ellipse(this.x, this.y, 20, 20);
this.x = this.x + this.xSpeed;
this.y = this.y + this.ySpeed;
if(this.x > width || this.x < 0){
this.xSpeed = this.xSpeed * -1
}
if (this.y > height || this.y < 0){
this.ySpeed = this.ySpeed * -1
}
}
}
class Lettuce {
constructor(x, y, xSpeed, ySpeed) {
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
}
update() {
fill(117, 255, 119);
stroke(96, 247, 98);
strokeWeight(2);
rect(this.x, this.y, 20, 20);
this.x = this.x + this.xSpeed;
this.y = this.y + this.ySpeed;
if(this.x > width || this.x < 0){
this.xSpeed = this.xSpeed * -1
}
if (this.y > height || this.y < 0){
this.ySpeed = this.ySpeed * -1
}
}
}
class Patty {
constructor(x, y, xSpeed, ySpeed) {
this.x = x;
this.y = y;
this.xSpeed = xSpeed;
this.ySpeed = ySpeed;
}
update() {
fill(124, 64, 4);
stroke(104, 58, 12);
strokeWeight(2);
ellipse(this.x, this.y, 20, 20);
this.x = this.x + this.xSpeed;
this.y = this.y + this.ySpeed;
if(this.x > width || this.x < 0){
this.xSpeed = this.xSpeed * -1
}
if(this.y > height || this.y < 0){
this.ySpeed = this.ySpeed * -1
}
}
}
// erases everything by pressing spacebar
function keyPressed(){
if(keyCode === 32){
buns = [];
cheeses = [];
tomatoes = [];
lettuces = [];
patties = [];
}
}