xxxxxxxxxx
178
// Melanie Laporte
// github.com/melanielaporte
let basket;
let fruits = [];
let score = 0;
let highScore = 0;
let gameSpeed = 2;
let combo = 0;
let comboTimer = 0;
let powerUpActive = false;
let powerUpTimer = 0;
let fruitColors = ['#f32223', '#ac6cff', '#f7ba00', '#42b307'];
let rottenColor = '#5a5a5a';
let goldenColor = '#ffd700';
let powerUpColor = '#00ffff';
function setup() {
createCanvas(500, 600);
basket = new Basket();
}
function draw() {
background('#f7f2c8');
basket.move();
basket.display();
if (frameCount % 45 === 0) {
spawnFruit();
}
for (let i = fruits.length - 1; i >= 0; i--) {
fruits[i].fall();
fruits[i].display();
if (fruits[i].hits(basket)) {
handleFruitCatch(fruits[i]);
fruits.splice(i, 1);
} else if (fruits[i].offScreen()) {
fruits.splice(i, 1);
combo = 0; // Reset combo if you miss a fruit
}
}
updateCombo();
updatePowerUp();
fill(0);
textSize(24);
text(`Score: ${score}`, 20, 40);
text(`High Score: ${highScore}`, 20, 70);
text(`Combo: x${combo}`, 20, 100);
gameSpeed = 2 + score / 200;
}
function spawnFruit() {
let x = random(50, width - 50);
let size = random(30, 50);
let typeChance = random();
let type, color;
if (typeChance < 0.1) {
type = 'golden';
color = goldenColor;
} else if (typeChance < 0.15) {
type = 'powerUp';
color = powerUpColor;
} else if (typeChance < 0.25) {
type = 'rotten';
color = rottenColor;
} else {
type = 'normal';
color = random(fruitColors);
}
let fruit = new Fruit(x, -size, size, color, type);
if (random() < 0.3) {
fruit.sidewaysSpeed = random(-1, 1);
}
fruits.push(fruit);
}
function handleFruitCatch(fruit) {
if (fruit.type === 'normal') {
score += 10;
combo++;
} else if (fruit.type === 'golden') {
score += 50;
combo++;
} else if (fruit.type === 'rotten') {
score -= 20;
combo = 0;
} else if (fruit.type === 'powerUp') {
activatePowerUp();
}
if (score < 0) score = 0;
highScore = max(score, highScore);
}
function updateCombo() {
if (combo > 0) {
comboTimer++;
if (comboTimer > 120) {
combo = 0;
}
}
}
function updatePowerUp() {
if (powerUpActive) {
powerUpTimer--;
if (powerUpTimer <= 0) {
powerUpActive = false;
gameSpeed *= 2;
}
}
}
function activatePowerUp() {
powerUpActive = true;
powerUpTimer = 300;
gameSpeed /= 2;
}
class Basket {
constructor() {
this.x = width / 2;
this.y = height - 50;
this.w = 80;
this.h = 30;
}
move() {
this.x = constrain(mouseX, this.w / 2, width - this.w / 2);
}
display() {
fill('#8B4513');
rect(this.x - this.w / 2, this.y, this.w, this.h, 10);
}
}
class Fruit {
constructor(x, y, size, color, type) {
this.x = x;
this.y = y;
this.size = size;
this.color = color;
this.type = type;
this.speed = gameSpeed;
this.sidewaysSpeed = 0;
}
fall() {
this.y += this.speed;
this.x += this.sidewaysSpeed;
this.x = constrain(this.x, 10, width - 10);
}
hits(basket) {
return (
this.y + this.size / 2 > basket.y &&
this.x > basket.x - basket.w / 2 &&
this.x < basket.x + basket.w / 2
);
}
offScreen() {
return this.y > height;
}
display() {
fill(this.color);
ellipse(this.x, this.y, this.size);
}
}