1

キャンバスを使って画像スプライトを描きたいです。

コードが機能していません。コードを改善する方法。

エラーがあります。

var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');

var Game = {

 draw_image: function(img, sourceX, sourceY, sourceW, sourceH, destX, destY, destW, destH){

var img = new Image();   // Create new img element
img.src = 'images/background.png'; // Set source path
img.onload = function(){
            canvas.width = 1000;
            canvas.height = 500;
            ctx.drawImage(img, sourceX, sourceY, sourceW, sourceH, destX, destY, destW, destH);
};
}

var BACKGROUND = {
  image_top:    { x:   5, y:   5, w: 1280, h: 480 , dx:0 ,dy:0   ,dw:500 ,dh:500 },
  image_body:   { x:   5, y: 495, w: 1280, h: 480 , dx:0 ,dy:150 ,dw:500 ,dh:350},
  image_bottom: { x:   5, y: 985, w: 1280, h: 480 , dx:0 ,dy:300 ,dw:500 ,dh:200 }
};

for(var n = 0 ; n < BACKGROUND.length ; n++) {
     draw_image(nameImage, BACKGROUND[n].x,BACKGROUND[n].y, BACKGROUND[n].w, BACKGROUND[n].h, BACKGROUND[n].dx, BACKGROUND[n].dy, BACKGROUND[n].dw, BACKGROUND[n].dh );
    }
};
4

2 に答える 2

2

スプライトアニメーションを作成するには、それがどのように機能するかを知ることが重要です。

ピクセル精度でスプライトシートを作成する必要があります(1ピクセルでアニメーションが台無しになる可能性があります)。

ここのように、キャラクターは常に同じサイズの領域にあり、スプライトを作成するときにシンプルにします。

これを使用すると、好きなスプライトごとにオブジェクトを作成できます。

function Sprite(_position, _numberFrame, _framesize, _image, _duration){
    this.position = _position;      //Array like { x : 0, y : 0 }
    this.rendersize = _rendersize;  //Array like { width : 50, height : 80 }
    this.framesize = _framesize;    //Array like { width : 50, height : 80 }
    this.image = _image;            //Image object
    this.chrono = new Chrono(_duration); //Explanation below
}

アニメーションの精度を高めるために、アニメーションの時間を管理するクロノを追加できます。

function Chrono(_duration){
    this.currentTime = 0;
    this.lastTime = 0;
    this.timeElapse = 0;
    this.duration = _duration;
}

Chrono.prototype.countTime = function(){
    this.currentTime = Date.now();

    if(this.lastTime != 0)
        this.timeElapse += this.currentTime - this.lastTime;

        this.lastTime = Date.now();

    if(this.timeElpase >= this.duration && this.lastTime != 0){
        this.timeElapse = 0;
        return TRUE;
    } else {
        return FALSE;
    }
}

次に、スプ​​ライトをアニメーション化する関数は次のようになります。

Sprite.prototype.render = function(){
    if(this.position.x <= this.image.width && this.chrono.countTime()){
        this.position.x += this.framesize.x;
    } else {
        this.position.x = 0;
    }
    ctx.drawImage(this.image, 
                  this.position.x, this.position.y, 
                  this.framesize.width, this.framesize.height,
                  this.rendersize.width, this.rendersize.height
                 );
}

私が明確で役に立ったことを願っています、

乾杯

PS:質問や最適化のアイデアに対するコメント

于 2013-02-21T11:11:29.173 に答える
1

このスプライト アニメーションを機能させるには、このコードで多くの問題を解決する必要があります。コードの問題を指摘するつもりはありませんが、この種のコードを作成する前に、関数と変数のスコープについて少し読むことを強くお勧めします。

もう 1 つの簡単な (そして初心者に最適な) 解決策は、キャンバス フレームワークをEaselJSとして使用することです。これにより、スプライトをアニメーション化するために次のようなことができます。

var data = {
     images: ["images/background.png"],
     frames: {width:50, height:50},
     animations: {run:[0,4], jump:[5,8,"run"]}
 };
 var animation = new createjs.BitmapAnimation(data);
 animation.gotoAndPlay("run");
于 2013-02-14T06:50:48.683 に答える