私はキャンバスを「偽造」しようとしています。この意図で、この偽のキャンバスを、おそらく任意のフレームワークに渡して、すべての線、曲線、およびmoveToを後処理します。
これを管理するために、実際に機能するこのコードを試しましたが、この幸運なショットでどれだけの幸運があったか知りたいです。
(function(){
function DebugCanvas(){
this._dom = document.createElement( 'canvas' );
addPropertiesToObject.call( this, this._dom );
this._fakeContext = null;
}
Object.defineProperties( DebugCanvas.prototype,
{
'constructor' : {
'value' : DebugCanvas,
'enumerable' : true
},
'getContext' : {
'value' : function( which ){
var ctx;
if( which == '2d' ){
if( this._fakeContext == null ){
this._fakeContext = new FakeContext( this._dom );
}
ctx = this._fakeContext;
} else {
ctx = this._dom.getContext( which );
}
return ctx;
},
'enumerable' : true
}
}
);
function FakeContext( debugCanvas ){
this._debugCanvas = debugCanvas;
this._realContext = debugCanvas._dom.getContext( '2d' );
addPropertiesToObject.call( this, this._realContext );
}
Object.defineProperties( FakeContext.prototype, {
'toString' : {
'value' : function(){
return '[Object FakeContext]';
},
'enumerable' : true
},
'canvas' : {
'get' : function(){
return this._debugCanvas;
},
'set' : function( c ){ return },
'enumerable' : true
}
});
function addPropertiesToObject( from ){
var description, obj;
for( var prop in from ){
obj = from;
do {
if( obj.hasOwnProperty( prop ) &&
!this.constructor.prototype.hasOwnProperty( prop ) ){
try{
description = Object.getOwnPropertyDescriptor( obj, prop );
Object.defineProperty( this.constructor.prototype, prop, description );
} catch( err ){
this[ prop ] = from[ prop ];
}
break;
}
} while( obj = Object.getPrototypeOf( obj ) );
}
};
})()
基本的な考え方は、canvas'、canvas.prototypes'(すべてのチェーンが上向き)、contexts'、context.prototypes'のすべてのプロパティを、まだ存在していない限り、偽のオブジェクトのプロトタイプにコピーすることです。