xxxxxxxxxx
149
let song;
// game states and scores
let gameState = 0;
let score = 0;
// Player variables
let myPlayer;
let gif_player;
// Bullet variables
let bullets = [];
let img_bullet; // var to hold the image
// Enemy variables
let enemies = [];
let img_enemy;
function preload() {
gif_player = loadImage("player.gif");
img_bullet = loadImage("bullet.png");
img_enemy = loadImage("enemy.png");
song = loadSound("kidding.mp3");
}
function setup() {
createCanvas(400, 400);
// loop for player
myPlayer = new Player();
// spawning new enemies
setInterval(() => {
enemies.push(new Enemy());
}, random(500, 1000));
} // end of setup function
function restartGame() {
// Reset character position, lives, etc
gameState = 0;
enemies = []
bullets=[]
score=0
}
function draw() {
background(210);
song.loop();
// game gtates and their funcions defined
if (gameState == 0) {
startGame();
} else if (gameState == 1) {
playGame();
} else if (gameState == 2) {
finishGame();
}
} // end of draw function
function startGame() {
for (var i = 0; i < width; i += 50) {
stroke(255)
line(i, 0, i, height);
line(width, i, 0, i);
}
textAlign(CENTER);
textSize(30);
text("WHEN WAS THIS DUE!?", 195, 100);
textSize(22);
text('A battle against raining deadlines.', 200, 130);
textSize(20);
text('Fire yourself up to get things done...', 200, 230);
textSize(20);
text('...now do not just sit here, get clicking!', 200, 270);
} // end of startGame function
function playGame() {
background(210);
// player is drawn and updated
myPlayer.display();
myPlayer.move();
//objects from the Bullet class are called in the array
for (let i = 0; i < bullets.length; i++) {
bullets[i].move();
bullets[i].display();
}
// objects from the Enemy class are called in the array
for (let i = 0; i < enemies.length; i++) {
enemies[i].move();
enemies[i].display();
}
// Bullet hits the Enemy and disappears i.e. COLLISIONS
for (let Enemy of enemies) {
for (let Bullet of bullets) {
if (dist(Enemy.x, Enemy.y, Bullet.x, Bullet.y) < 40) {
enemies.splice(enemies.indexOf(Enemy), 1);
bullets.splice(bullets.indexOf(Bullet), 1);
score++;
}
}
}
// calling finish game function
for (let i = 0; i < enemies.length; i++) {
if (enemies[i].y > height) {
gameState = 2;
}
}
//finishGame();
// displaying score
text(score, 15, 30);
} // end of play game function
function finishGame() {
background(210);
textAlign(CENTER);
textSize(28);
text("OOPS...seems like a burnout!", 195, 190);
textSize(20);
text("Deadlines countered: " + score, 200, 230);
} // end of finish game function
function mousePressed() {
if (gameState == 0) {
gameState += 1;}
else if(gameState == 2){
restartGame();
}
else {
bullets.push(new Bullet());
}
}