xxxxxxxxxx
65
let paperPlanes = [];
let pressedKeys = {};
function mousePressed() {
for (let i = 0; i < 1; i++) {
let p = new Planes(mouseX, mouseY, 10);
paperPlanes.push(p);
}
}
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB);
}
function draw() {
background(0);
fill(0, 0, 100);
noStroke();
text('Press and Drag Left Mouse Click on the screen to generate vehicles.', 50, 20);
text('Use W to increase Velocity, A to turn Left and D to turn Right', 50, 35);
fill(0, 0, 0)
stroke(0, 0, 100);
rect(50, 50, 50);
rect(120, 50, 50);
fill(0, 0, 100);
text("<", 70, 80);
text(">", 140, 80);
for (let p of paperPlanes) {
p.show();
p.update();
p.edges();
/* interactive keys */
if (pressedKeys.a) {
p.a -= 0.03;
p.update();
fill(0, 0, 100);
rect(50, 50, 50);
stroke(0, 0, 0);
text("<", 70, 80);
} else if (pressedKeys.d) {
p.a += 0.03;
p.update();
fill(0, 0, 100);
rect(120, 50, 50);
stroke(0, 0, 0);
text(">", 140, 80);
} else if (pressedKeys.w) {
p.vel += 0.03;
p.update();
}
}
}
function keyPressed(){
pressedKeys[key] = true;
}
function keyReleased(){
delete pressedKeys[key]
}