xxxxxxxxxx
170
let width = 200;
let height = 300;
let size = width * 0.04 ;
let robot;
let road;
let count=0;
function setup(){
canvas = createCanvas(300, 300);
robot = new Sprite();
robot.rotationLock =true;
robot.collider='s';
robot.y = height - size * 4;
robotShape();
road = new Sprite();
road.rotationLock =true;
road.collider='s';
road.x = size;
road.y = -size * 2;
roadShape();
}
function score(){
text(' SCORE\n '+count+'\n \n HIGH SCORE\n '+2300,width,height * 0.1);
text(' LEVEL SPEED\n '+5,width,height * 0.4);
}
function roadShape(){
road.draw = () => {
push();
shape(0,0);
shape(0,size);
shape(0,size * 2);
pop();
};
}
function robotShape(){
robot.draw = () => {
push();
shape(0,0);
shape(-size,size);
shape(size,size);
shape(0,size);
shape(0,size*2);
shape(-size,size * 3);
shape(size,size * 3);
pop();
};
}
function shape(x,y){
noFill();
rect(x, y, size,size);
fill(0);
rect(x, y, size * 0.5,size * 0.5);
}
function addRoad(x){
let r = new Sprite();
r.rotationLock =true;
r.collider = 'static';
r.x = x;
r.y = -size * 2;
r.draw = () => {
push();
shape(0,0);
shape(0,size);
shape(0,size * 2);
pop();
};
r.update = () => {
r.y+=1;
if(r.y > height + size * 2){
r.remove();
}
};
}
function addVehicle(){
let vehicle = new Sprite();
vehicle.rotationLock =true;
vehicle.collider='n';
vehicle.x = random(size * 4 ,width - size * 4);
vehicle.y = (-size * 4);
vehicle.draw = () => {
push();
shape(0,0);
shape(-size,size);
shape(size,size);
shape(0,size);
shape(0,size*2);
shape(-size,size * 3);
shape(size,size * 3);
pop();
};
vehicle.update = () => {
vehicle.vel.y=1;
if(vehicle.y > height + size * 4){
if(!vehicle.overlaps(robot)){
count++;
}
vehicle.remove();
}
};
}
function draw(){
background(120);
score();
if(frameCount % 70 == 0){
addRoad(size);
addRoad(width - size);
addVehicle();
}
if(keyboard.pressing('left')){
robot.x-=size;
}else if(kb.pressing('right')){
robot.x+=size;
}
road.y+=1;
}