I am attempting to create a simple game where I have two rectangles, a human-controlled player and a “collider” that has to be avoided.
I am trying to draw the two rectangles using fillRect()
, however only one shows up. For example, putting the “lime” colored rectangle first would result in it being drawn, but putting the “red” colored rectangle line first causes neither to be drawn.
I would expect a result where both rectangles are drawn/appear at the same time on the canvas:
JavaScript
x
113
113
1
<canvas id="gc" width="800" height="600"></canvas>
2
<script>
3
window.onload=function() {
4
canv=document.getElementById("gc");
5
ctx=canv.getContext("2d");
6
document.addEventListener("keydown",keyPush);
7
setInterval(game,1000/100);
8
}
9
// Variables
10
player_created = false;
11
collider_created = false;
12
player_width = 20;
13
player_height = 20;
14
collider_width = 15;
15
collider_height = 15;
16
player_velocity = 10;
17
collider_velocity = 20;
18
player_x = (document.getElementById("gc").getAttribute("width") - player_width)/2;
19
player_y = (document.getElementById("gc").getAttribute("height") - player_height)/2;
20
collider_x = (document.getElementById("gc").getAttribute("width") - collider_width)/4;
21
collider_y = (document.getElementById("gc").getAttribute("height") - collider_height)/4;
22
var player;
23
var collider;
24
25
// Objects
26
function Player(x, y, vx, vy, w, h) {
27
this.x = x;
28
this.y = y;
29
this.vx = vx;
30
this.vy = vy;
31
this.w = w;
32
this.h = h;
33
}
34
35
function Collider(x, y, vx, vy, w, h) {
36
this.x = x;
37
this.y = y;
38
this.vx = vx;
39
this.vy = vy;
40
this.w = w;
41
this.h = h;
42
}
43
44
function game() {
45
ctx.fillStyle="black"; // Color canvas
46
ctx.fillRect(0,0,canv.width,canv.height);
47
48
if(!player_created) {
49
player = new Player(player_x, player_y, player_velocity, player_velocity, player_width, player_height);
50
player_created = true;
51
}
52
53
if(!collider_created) {
54
collider = new Collider(collider_x, collider_y, collider_velocity, collider_velocity, collider_width, collider_height);
55
collider_created = true;
56
}
57
58
colliderWallCollision(collider, canv.width, canv.height);
59
60
playerWallCollision(player, canv.width, canv.height);
61
62
ctx.fillStyle="lime"; // Color player
63
ctx.fillRect(player.x, player.y, player.w, player.h);
64
65
ctx.fillStyle="red"; // Color collider
66
ctx.fillRect(collider.x, collider.y, collider.w. collider.h);
67
}
68
69
function playerWallCollision(entity, bound_x, bound_y) {
70
if (entity.x + entity.w > bound_x) {
71
entity.x = bound_x - entity.w;
72
}
73
if (entity.x < 0) {
74
entity.x = 0
75
}
76
if (entity.y + entity.h > bound_y) {
77
entity.y = bound_y - entity.h;
78
}
79
if (entity.y < 0) {
80
entity.y = 0
81
}
82
}
83
84
function colliderWallCollision(entity, bound_x, bound_y) {
85
if (entity.x + entity.w >= bound_x || entity.x <= 0) {
86
entity.vx = -entity.vx
87
}
88
if (entity.y + entity.h >= bound_y || entity.y <= 0) {
89
entity.vy = -entity.vy
90
}
91
}
92
93
function keyPush(evt) { // Read keystrokes
94
switch(evt.keyCode) {
95
// Vertical
96
case 87: // w
97
player.y -= player.vy;
98
break;
99
case 83: // s
100
player.y += player.vy;
101
break;
102
103
// Horizontal
104
case 65: // a
105
player.x -= player.vx;
106
break;
107
case 68: // d
108
player.x += player.vx;
109
break;
110
}
111
}
112
</script>
113
Advertisement
Answer
The second rectangle is failing to draw due to a syntax error on this line:
JavaScript
1
2
1
ctx.fillRect(collider.x, collider.y, collider.w. collider.h);
2
The following update will resolve that problem:
JavaScript
1
3
1
// Change . to ,
2
ctx.fillRect(collider.x, collider.y, collider.w, collider.h);
3
See the snippet below for a working version in action:
JavaScript
1
110
110
1
<canvas id="gc" width="800" height="600"></canvas>
2
<script>
3
window.onload=function() {
4
canv=document.getElementById("gc");
5
ctx=canv.getContext("2d");
6
document.addEventListener("keydown",keyPush);
7
setInterval(game,1000/100);
8
}
9
// Variables
10
player_width = 20;
11
player_height = 20;
12
collider_width = 15;
13
collider_height = 15;
14
player_velocity = 10;
15
collider_velocity = 20;
16
player_x = (document.getElementById("gc").getAttribute("width") - player_width)/2;
17
player_y = (document.getElementById("gc").getAttribute("height") - player_height)/2;
18
collider_x = (document.getElementById("gc").getAttribute("width") - collider_width)/4;
19
collider_y = (document.getElementById("gc").getAttribute("height") - collider_height)/4;
20
var player;
21
var collider;
22
23
// Objects
24
function Player(x, y, vx, vy, w, h) {
25
this.x = x;
26
this.y = y;
27
this.vx = vx;
28
this.vy = vy;
29
this.w = w;
30
this.h = h;
31
}
32
33
function Collider(x, y, vx, vy, w, h) {
34
this.x = x;
35
this.y = y;
36
this.vx = vx;
37
this.vy = vy;
38
this.w = w;
39
this.h = h;
40
}
41
42
function game() {
43
ctx.fillStyle="black"; // Color canvas
44
ctx.fillRect(0,0,canv.width,canv.height);
45
46
if(!player) {
47
player = new Player(player_x, player_y, player_velocity, player_velocity, player_width, player_height);
48
}
49
50
if(!collider) {
51
collider = new Collider(collider_x, collider_y, collider_velocity, collider_velocity, collider_width, collider_height);
52
}
53
54
colliderWallCollision(collider, canv.width, canv.height);
55
56
playerWallCollision(player, canv.width, canv.height);
57
58
ctx.fillStyle="lime"; // Color player
59
ctx.fillRect(player.x, player.y, player.w, player.h);
60
61
ctx.fillStyle="red"; // Color collider
62
/* Typo here */
63
ctx.fillRect(collider.x, collider.y, collider.w, collider.h);
64
}
65
66
function playerWallCollision(entity, bound_x, bound_y) {
67
68
if (entity.x + entity.w > bound_x) {
69
entity.x = bound_x - entity.w;
70
}
71
if (entity.x < 0) {
72
entity.x = 0
73
}
74
if (entity.y + entity.h > bound_y) {
75
entity.y = bound_y - entity.h;
76
}
77
if (entity.y < 0) {
78
entity.y = 0
79
}
80
}
81
82
function colliderWallCollision(entity, bound_x, bound_y) {
83
if (entity.x + entity.w >= bound_x || entity.x <= 0) {
84
entity.vx = -entity.vx
85
}
86
if (entity.y + entity.h >= bound_y || entity.y <= 0) {
87
entity.vy = -entity.vy
88
}
89
}
90
91
function keyPush(evt) { // Read keystrokes
92
switch(evt.keyCode) {
93
// Vertical
94
case 87: // w
95
player.y -= player.vy;
96
break;
97
case 83: // s
98
player.y += player.vy;
99
break;
100
101
// Horizontal
102
case 65: // a
103
player.x -= player.vx;
104
break;
105
case 68: // d
106
player.x += player.vx;
107
break;
108
}
109
}
110
</script>