I want my object to shoot in the direction my object is facing when it rotates or moves, any ideas on how to do it?
I'm a beginner as well i started few days ago so its pretty hard on me to find the codes and to learn them as well as i cant find a good teacher or a website for it. this is the code, I tried something but I'm pretty sure it was a total failure..
var myGamePiece;
function startGame() {
bullet = new component(5, 5, 'blue', 300, 300);
myGamePiece = new component(30, 30, "red", 225, 225);
myGameArea.start();
}
var myGameArea = {
canvas : document.createElement("canvas"),
start : function() {
this.canvas.width = 1400;
this.canvas.height = 750;
this.context = this.canvas.getContext("2d");
document.body.insertBefore(this.canvas, document.body.childNodes[0]);
this.frameNo = 0;
this.interval = setInterval(updateGameArea, 20);
window.addEventListener('keydown', function (e) {
e.preventDefault();
myGameArea.keys = (myGameArea.keys || []);
myGameArea.keys[e.keyCode] = (e.type == "keydown");
})
window.addEventListener('keyup', function (e) {
myGameArea.keys[e.keyCode] = (e.type == "keydown");
})
},
stop : function() {
clearInterval(this.interval);
},
clear : function() {
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}
function component(width, height, color, x, y, type) {
this.type = type;
this.width = width;
this.height = height;
this.speedx = 0;
this.speedy = 0;
this.angle = 0;
this.moveAngle = 0;
this.x = x;
this.y = y;
this.s = x;
this.u = y;
this.update = function() {
ctx = myGameArea.context;
ctx.save();
ctx.translate(this.x, this.y);
ctx.rotate(this.angle);
ctx.fillStyle = color;
ctx.fillRect(this.width / -2, this.height / -2, this.width, this.height);
ctx.restore();
}
this.newPos = function() {
this.angle += this.moveAngle * Math.PI / 180;
this.x += this.speedx;
this.y += this.speedy;
this.s += this.speed * Math.sin(this.angle);
this.u -= this.speed * Math.cos(this.angle);
}
}
function updateGameArea() {
myGameArea.clear();
myGamePiece.moveAngle = 0;
myGamePiece.speedx = 0;
myGamePiece.speedy = 0;
bullet.speed = 0;
if (myGameArea.keys && myGameArea.keys[90]) {myGamePiece.moveAngle = -3; }
if (myGameArea.keys && myGameArea.keys[88]) {myGamePiece.moveAngle = 3; }
if (myGameArea.keys && myGameArea.keys[38]) {myGamePiece.speedy= -2; }
if (myGameArea.keys && myGameArea.keys[40]) {myGamePiece.speedy= 2; }
if (myGameArea.keys && myGameArea.keys[39]) {myGamePiece.speedx= 2; }
if (myGameArea.keys && myGameArea.keys[37]) {myGamePiece.speedx= -2; }
if (myGameArea.keys && myGameArea.keys[32]) {bullet.speed= -3; }
bullet.newPos();
bullet.update();
myGamePiece.newPos();
myGamePiece.update();
}