みかづきブログ その3

本ブログは更新を終了しました。通算140万ユーザーの方に観覧頂くことができました。長い間、ありがとうございました。

👆

引越し先はこちらです!

Canvasでボールをはねさせる

DEMO


JavaScript

(function(win, doc, ns) {

    "use strict";

    // x方向を反転させる
    function _reverseX(rad) {
        return (180 - rad) % 360;
    }

    // y方向を反転させる
    function _reverseY(rad) {
        return (360 - rad) % 360;
    }

    function Ball(obj) {
        var _this = this;

        _init();

    function _init() {
            _this.x = obj.x;
            _this.y = obj.y;
            _this.r = obj.r;
            _this.v = obj.v || 0;
            _this.rad = obj.rad % 360 || 0;
        }
    }

    Ball.prototype = new ns.EventDispatcher();
    Ball.prototype.constructor = Ball;

    Ball.prototype.draw = function(ctx) {
        var _this = this;

        ctx.save();
            ctx.beginPath();
            ctx.arc(_this.x, _this.y, _this.r, 0, Math.PI * 2, false);
            ctx.fill();
        ctx.restore();
    };

    Ball.prototype.appendTo = function(canvas) {
        this.stage = this.stage || {};

        this.stage.top = 0;
        this.stage.bottom = canvas.height;
        this.stage.left = 0;
        this.stage.right = canvas.width;
    };

    Ball.prototype.set = function(obj) {
        var _this = this;

        _this.x   = obj.x || _this.x;
        _this.y   = obj.y || _this.y;
        _this.r   = obj.r || _this.r;
        _this.v   = obj.v || _this.v;
        _this.rad = obj.rad % 360 || _this.rad;
    };

    Ball.prototype.move = function(delta) {
        var _this = this,
            dx    = _this.v * Math.cos(_this.rad * (Math.PI / 180)),
            dy    = _this.v * Math.sin(_this.rad * (Math.PI / 180)),
            x, y;

        x = _this.x + dx * delta / 1000;
        y = _this.y + dy * delta / 1000;

        if (_this._isOutX(x)) {
            _this.set({rad: _reverseX(_this.rad)});
        } else {
            _this.x = x;
        }

        if (_this._isOutY(y)) {
            _this.set({rad: _reverseY(_this.rad)});
        } else {
            _this.y = y;
        }
    };

    Ball.prototype._isOutX = function(x) {
        var _this = this;

        if (x <= _this.r || x >= _this.stage.right - _this.r) {
            return true;
        } else {
            return false;
        }
    };

    Ball.prototype._isOutY = function(y) {
        var _this = this;

        if (y <= _this.r || y >= _this.stage.bottom - _this.r) {
            return true;
        } else {
            return false;
        }
    };

    ns.Ball = Ball;

})(this, document, App);

つかいかた

(function(win, doc, ns) {

    "use strict";

    var ticker      = new ns.Ticker(60),
        ball        = new ns.Ball({
            x   : 200,
            y   : 100,
            r   : 20,
            v   : 800,
            rad : 10
        }),
        canvas      = doc.getElementById("canvas"),
        ctx         = canvas.getContext("2d"),
        fps         = doc.getElementById("fps"),
        CANVAS_SIZE = 600;

    setup();

    function setup() {
        canvas.width  = win.innerWidth;
        canvas.height = win.innerHeight;

        ball.appendTo(canvas);

        win.addEventListener("resize", function() {
            ball.appendTo(canvas);
        }, false);

        ticker.addEventListener("tick", function(evt) {
            fps.innerHTML = evt.measuredFPS;
            update(evt.delta);
            draw();
        });

        ticker.start();
    }

    function update(delta) {
        ball.move(delta);
    }

    function draw() {
        canvas.width  = win.innerWidth;
        canvas.height = win.innerHeight;

        ctx.fillStyle = "#83c287";
        ball.draw(ctx);
    }

})(this, document, App);