xxxxxxxxxx
145
var sc;
var img;
function preload() {
img = loadImage('Ship.png');
}
function setup() {
createCanvas(windowWidth, windowHeight);
s = new ship();
sc = new screen();
for (var i = 0; i < 15; i++) {
a.push(new asteroid());
}
}
function draw() {
background(50,0,50);
//Screen
sc.render();
//Keys
keys();
}
//KEYS
function keys() {
//Move ship
if (keyIsDown(UP_ARROW)) {
s.boost();
}
//Turn left
if (keyIsDown(LEFT_ARROW)) {
s.a -= 0.1;
}
//Turn right
if (keyIsDown(RIGHT_ARROW)) {
s.a += 0.1;
}
}
function keyPressed() {
//Shot
if(keyCode===32){
b.push(new bullet(s.pos, s.a));
}
}
//Screen
function screen() {
this.s = 0;
this.final = 0;
//Which screen is render
this.render = function() {
if(this.s == 0) {
fill(0)
stroke(255);
rect(0, 0, width, height);
noFill();
stroke(255);
textSize(25);
text('THIS GAME IS A ASTEROID INSPIRATION', width / 2 - 240, 200);
textSize(20);
text('-Move with the "ARROW KEYS"', width / 2 - 200, 250);
text('-Shot with the "SPACE BAR"', width / 2 - 200, 270);
text('-Now, press the "SPACE BAR" to start', width / 2 - 200, 290);
if (keyIsDown(32)) {
this.s = 1;
a.splice(i, 1);
}
} else if (this.s == 1) {
//Render Ship
s.render();
s.edges();
//Render Asteroid
for (var i = 0; i < a.length; i++) {
if (s.hits(a[i])) {
this.s = 2;
this.final = 1;
}
a[i].render();
a[i].update();
a[i].edges();
}
//Render bullet
for (var i = b.length-1; i >= 0; i--) {
b[i].render();
b[i].update();
if (b[i].offscreen()) {
b.splice(i, 1);
break;
}
for (var j = a.length - 1; j >= 0; j--) {
if (b[i].hits(a[j])) {
a.splice(j, 1);
b.splice(i, 1);
break;
}
}
//Which final is
if (a.length == 0) {
this.final = 0;
this.s = 2;
}
}
} else if (this.s == 2) {
if (keyIsDown(32)) {
this.s = 1;
for (var i = 0; i < 15; i++) {
a.push(new asteroid());
}
for (var i = a.length; a.length > 15; i--) {
a.splice(i, 1);
}
for (var i = 0; i < a.length; i++) {
if (s.hits(a[i])) {
a.splice(i, 1)
}
}
s.pos.x = width / 2;
s.pos.y = height / 2
}
if (this.final == 0) {
fill(0)
stroke(0, 255, 0);
rect(0, 0, width, height);
noFill();
stroke(0, 255, 0);
textSize(75);
text('VICTORY', width / 2 - 150, 200);
textSize(20);
text('-Now, press "SPACE BAR" to restart', width / 2 - 200, 250);
} else {
fill(0)
stroke(255, 0, 0);
rect(0, 0, width, height);
noFill();
stroke(255, 0, 0);
textSize(75);
text('GAME OVER', width / 2 - 225, 200);
textSize(20);
text('-Now, press "SPACE BAR" to restart', width / 2 - 200, 250);
}
}
}
}