xxxxxxxxxx
79
let sauceAmount = 0;
let maxSauce = 300; // Absolute maximum amount of sauce before the game forcibly ends
let targetSauce = 150; // Target amount of sauce for winning
let tooMuchSauce = 200; // Amount of sauce after which the player loses
let sauceAddedPerPress = 0; // Amount of sauce added per key press
let gameOver = false;
let gameWon = false;
let startTime = 0; // Variable to store the start time when the sauce amount enters the perfect range
let perfectAmountTimeRequired = 5000; // 5 seconds in milliseconds
function setup() {
createCanvas(400, 400);
}
function draw() {
background(240);
// Display the dish
noStroke();
fill(255);
ellipse(width / 2, height / 2, 200, 100);
// Display the sauce
fill(150, 0, 0, 200);
let sauceWidth = map(sauceAmount, 0, maxSauce, 0, 200);
ellipse(width / 2, height / 2, sauceWidth, 50);
// Text instructions and feedback
fill(0);
textSize(16);
textAlign(CENTER);
if (!gameOver && !gameWon) {
text("Press SPACE to add sauce", width / 2, 30);
} else if (gameWon) {
text("Perfect! You've won!", width / 2, 30);
} else if (gameOver) {
text("Too much sauce! Game Over!", width / 2, 30);
}
if (!gameOver && !gameWon) {
sauceAmount += sauceAddedPerPress;
checkGameStatus();
}
// Check if sauce amount is within the perfect range
if (sauceAmount >= targetSauce - 10 && sauceAmount <= targetSauce + 10) {
print("start")
if (startTime === 0) {
startTime = millis(); // Set the start time if it's not already set
}
// Check if the required time has passed
if (millis() - startTime >= perfectAmountTimeRequired) {
gameWon = true;
}
} else {
startTime = 0; // Reset start time if the sauce amount is not within the perfect range
}
}
function checkGameStatus() {
if (sauceAmount > tooMuchSauce) {
gameOver = true;
}
}
function keyPressed() {
if (key == " ") {
// Calls a function to set up the serial connection
setUpSerial();
}
}
function readSerial(data) {
// Check if data received is not null
if (data != null) {
sauceAddedPerPress = map(int(data), 0, 1023, 0, 20);
}
}