xxxxxxxxxx
76
let inTouch = false;
function setup() {
createCanvas(windowWidth, windowHeight);
textAlign(CENTER);
rectMode(CENTER);
pixelDensity(displayDensity());
}
function draw() {
background(242, 132, 141);
mouth();
fill(255);
if (touches.length > 0) {
for (let i = 0; i < touches.length; i++) {
burger(touches[i].x, touches[i].y, 700, 350);
}
textSize(60);
text("Burgers: " + touches.length, width / 2, height / 2 + 50);
} else {
if (inTouch) burger(mouseX, mouseY, 700, 350);
}
if (touches.length == 5) {
clear();
background(0);
fill(255,0,0);
textSize(60);
text("You choke and", width / 2, height / 2 - 50);
textSize(100);
text("DIE", width / 2, height / 2 + 50);
}
}
function touchStarted() {
inTouch = true;
return false;
}
function touchEnded() {
inTouch = false;
return false;
}
function mouth() {
noStroke();
fill(0);
ellipse(width / 2, height / 2, 1000, 1000);
//uvula
fill(242, 132, 141);
ellipse(width / 2, height / 3, 350, 350);
rect(width / 2, height / 5, 250, 350);
//tongue
fill(255, 183, 186);
rect(width / 2, height / 4 * 3.5, 700, 1000, 250);
}
function burger(x, y, w, h) {
//bottom bun
fill(232, 183, 133);
ellipse(x, y + 100, w, h);
//beef
fill(107, 64, 27);
ellipse(x, y + 75, w, h);
//lettuce
fill(137, 177, 141);
ellipse(x, y + 50, w, h);
//tomato
fill(235, 63, 77);
ellipse(x, y + 25, w, h);
//top bun
fill(232, 183, 133);
ellipse(x, y, w, h);
}