Skip to content

Instantly share code, notes, and snippets.

@Cartman0
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cartman0/0577569e45b176662494 to your computer and use it in GitHub Desktop.
Save Cartman0/0577569e45b176662494 to your computer and use it in GitHub Desktop.
Canvasのid名(canvas_id)、canvasの設定(canvas_config)、運動関数(motionFunc)、運動関数の設定(motion_config)、canvasの領域をはみ出した際の処理(outside_process)を入力して、Canvasに描画
function motionAnime(canvas_id, canvas_config, motionFunc, motion_config, outside_process){
var canvas = document.getElementById(canvas_id);
if(!canvas){
console.log('wrong canvas_id');
return false;
}
if(!motion_config.ball_config){
console.log('Not ball_config in motion_config.');
return false;
}
// 1 canvasの座標の原点を左上から左下へ移動、およびy軸反転
canvasInitialize(canvas);
function canvasInitialize(canvas){
var c = canvas.getContext('2d');
c.translate(0, canvas.height);
c.scale(1, -1);
}
var c = canvas.getContext('2d');
// ball位置初期化
motion_config.ball_config.ball_pos = {
x: motion_config.ball_config.ball_pos0.x,
y: motion_config.ball_config.ball_pos0.y
}
//時間
motion_config.t = motion_config.t0;
// アニメ~ション
setInterval(anime, motion_config.interval_s * 1000);
function anime(){
//消去
canvasReset(canvas, canvas_config);
// 3白のボールを描画
drawBall(c, motion_config);
// 4 計算
motion_config.ball_config.ball_pos = motionFunc(motion_config);
motion_config.t += motion_config.interval_s;
// はみ出しの時の処理
if(outside_process){
outside_process(canvas, motion_config);
}
function canvasReset(canvas, canvas_config){
var ctx = canvas.getContext('2d');
ctx.globalAlpha = canvas_config.globalAlpha;
ctx.fillStyle = canvas_config.fillStyle;
ctx.fillRect(0, 0, canvas.width, canvas.height);
}
function drawBall(ctx, motion_config){
c.globalAlpha = motion_config.ball_config.globalAlpha;
c.beginPath();
c.arc(motion_config.ball_config.ball_pos.x, motion_config.ball_config.ball_pos.y, motion_config.ball_config.r, 0, 2 * Math.PI);
c.closePath();
c.fillStyle = motion_config.ball_config.fillStyle;
c.fill();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment