我正在为等距游戏制作一个简单的引擎,以供将来使用。
问题是我无法在画布上绘图。以这段代码为例:
function pre_load() {
var imgs = ['1', '1000','1010','1011','1012','1013'];
var preload_image_object = new Image();
$.each(imgs,function(i,c){
preload_image_object.src='img/sprites/'+c.logo+'.png';
})
}
function GameWorld() {
//[...]
this.render = function() {
this.draw(1000, this.center);
this.draw(1013, this.center);
this.draw(1010, this.center);
}
this.draw = function(id, pixel_position) {
draw_position_x = pixel_position[0] - this.tile_center[0];
draw_position_y = pixel_position[1] - this.tile_center[1];
inst = this;
var img = new Image();
img.onload = function () {
inst.ctx.drawImage(img, draw_position_x, draw_position_y);
console.log('Drawn: ' + id);
}
img.src = "img/sprites/"+id+".png";
}
}
有人可能会期望事物将按顺序绘制,id 1000,然后 id 1013,然后 id 1010,因为图像已经加载(即使没有,目前我正在本地服务器上工作)。
但是如果我多次刷新页面,我会得到不同的结果:
情况1
案例2
案例3
(可能发生任何其他排列)
我能想到的唯一解决方案是让函数“挂起”,直到调用 onload 事件,然后才能继续下一个 .draw() 调用。这是正确的方法吗?我该怎么做呢?有更好的解决方案吗?
谢谢!