xxxxxxxxxx
128
// Create an empty array to store bot objects.
var b = [];
// Create an empty array to store bot images.
var botsIMG = [];
// Declare a variable 'g' for the Gas object.
var g;
// Define a constructor function for bot objects.
function bots() {
// Set the initial position of the bot randomly within the canvas.
this.pos = createVector(random(0, width), random(-100, -1000));
// Set the size of the bot (width and height).
this.r = createVector(50, 85);
// Set the initial sprite for animation.
this.sprite = 0;
// Set a timer for sprite animation.
this.time = 0;
// Set a random color for the bot.
this.c = createVector(floor(random(0, 2) * 175), floor(random(0, 2) * 175), floor(random(0, 2) * 175));
// Render function for drawing the bot on the canvas.
this.render = function() {
push();
translate(this.pos.x, this.pos.y);
tint(this.c.x, this.c.y, this.c.z);
image(botsIMG[this.sprite], -this.r.x/2, -this.r.y/2, this.r.x, this.r.y);
pop();
}
// Update function for updating the bot's position and behavior.
this.update = function() {
this.time += 0.3;
this.pos.y += vel / 100;
// Change the bot's sprite for animation.
if (this.time > 1) {
if (this.sprite == 0) {
this.sprite = 1;
} else {
this.sprite = 0;
}
this.time = 0;
}
// Check for collision with the player.
if (p.pos.x - p.r.x/2 < this.pos.x + this.r.x/2 &&
p.pos.x + p.r.x/2 > this.pos.x - this.r.x/2 &&
p.pos.y - p.r.y/2 < this.pos.y + this.r.y/2 &&
p.pos.y + p.r.y/2 > this.pos.y - this.r.y/2) {
// Play a sound when a collision occurs and set the screen to 2.
songs[1].play();
screen = 2;
}
}
}
// Function to render and update all the bots.
function renderBots() {
for (var i = 0; i < b.length; i++) {
b[i].render();
b[i].update();
// Reset the bot's position and color if it goes off the screen.
if (b[i].pos.y - b[i].r.y > height) {
b[i].c = createVector(floor(random(0, 2) * 175), floor(random(0, 2) * 175), floor(random(0, 2) * 175));
b[i].pos = createVector(random(0, width), random(0, -500));
}
}
}
// Gasoline object constructor function.
function Gas() {
// Set the initial position of the gasoline randomly within the canvas.
this.pos = createVector(random(0, width), random(-100, -2000));
// Set the size of the gasoline (width and height).
this.r = createVector(30, 40);
// Render function for drawing the gasoline on the canvas.
this.render = function() {
push();
translate(this.pos.x, this.pos.y);
image(botsIMG[2], -this.r.x/2, -this.r.y/2, this.r.x, this.r.y);
pop();
}
// Update function for updating the gasoline's position and behavior.
this.update = function() {
this.pos.y += vel / 100;
// Reset the gasoline's position if it goes off the screen vertically.
if (this.pos.y - this.r.y / 2 > height) {
this.pos = createVector(random(0, width), random(-100, -2000));
}
// Check for collision with the player.
if (p.pos.x - p.r.x/2 < this.pos.x + this.r.x/2 &&
p.pos.x + p.r.x/2 > this.pos.x - this.r.x/2 &&
p.pos.y - p.r.y/2 < this.pos.y + this.r.y/2 &&
p.pos.y + p.r.y/2 > this.pos.y - this.r.y/2) {
// Play a sound, increase the gas, and reset the gasoline's position.
songs[0].play();
gas += 100;
this.pos = createVector(random(0, width), random(-100, -2000));
}
}
}
// Function to render the gasoline.
function renderGas() {
g.render();
g.update();
}
// Function to load bot images.
function renderBotsIMG() {
// Load bot images from specified file paths.
botsIMG[0] = loadImage('Bots/Images/01.png');
botsIMG[1] = loadImage('Bots/Images/02.png');
botsIMG[2] = loadImage('Bots/Images/gas.png');
}