-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengine.js
83 lines (71 loc) · 2.05 KB
/
engine.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
var yellowPiece;
function startGame() {
yellowPiece = new component(30, 30, "red", 10, 120);
myGameArea.start();
}
function component(width, height, color, x, y) {
this.width = width;
this.height = height;
this.color = color;
this.speedX = 0;
this.speedY = 0;
this.x = x;
this.y = y;
this.update = function () {
ctx = myGameArea.context;
ctx.fillStyle = color;
ctx.fillRect(this.x, this.y, this.width, this.height);
}
this.newPos = function() {
this.x += this.speedX;
this.y += this.speedY;
}
}
function updateGameArea() {
myGameArea.clear();
//yellowPiece.speedX = 0;
//yellowPiece.speedY = 0;
if (myGameArea.key && myGameArea.key == 37) {yellowPiece.speedX = -1; }
if (myGameArea.key && myGameArea.key == 39) {yellowPiece.speedX = 1; }
if (myGameArea.key && myGameArea.key == 38) {yellowPiece.speedY = -1; }
if (myGameArea.key && myGameArea.key == 40) {yellowPiece.speedY = 1; }
yellowPiece.newPos();
yellowPiece.update();
}
var myGameArea = {
canvas : document.createElement("canvas"),
start : function() {
this.canvas.width = 480;
this.canvas.height = 270;
this.context = this.canvas.getContext("2d");
document.body.insertBefore(this.canvas, document.body.childNodes[0]);
this.interval = setInterval(updateGameArea, 20);
window.addEventListener('keydown', function(e) {
myGameArea.key = e.keyCode;
})
window.addEventListener('keyup', function(e) {
myGameArea.key = false;
yellowPiece.speedX = 0;
yellowPiece.speedY = 0;
})
},
clear: function() {
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}
function moveup() {
yellowPiece.speedY -= 1;
}
function movedown() {
yellowPiece.speedY += 1;
}
function moveleft() {
yellowPiece.speedX -= 1;
}
function moveright() {
yellowPiece.speedX += 1;
}
function stopMove() {
yellowPiece.speedX = 0;
yellowPiece.speedY = 0;
}