mirror of
https://github.com/hiloteam/Hilo.git
synced 2025-12-08 20:35:59 +00:00
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
/**
|
|
* Hilo
|
|
* Copyright 2015 alibaba.com
|
|
* Licensed under the MIT License
|
|
*/
|
|
|
|
var _cacheCanvas = Hilo.createElement('canvas');
|
|
var _cacheContext = _cacheCanvas.getContext('2d');
|
|
/**
|
|
* @language=zh
|
|
* @class CacheMixin是一个包含cache功能的mixin。可以通过 Class.mix(target, CacheMixin) 来为target增加cache功能。
|
|
* @mixin
|
|
* @static
|
|
* @module hilo/view/CacheMixin
|
|
* @requires hilo/core/Hilo
|
|
* @requires hilo/core/Class
|
|
* @requires hilo/view/Drawable
|
|
*/
|
|
var CacheMixin = {
|
|
_cacheDirty:true,
|
|
/**
|
|
* @language=zh
|
|
* 缓存到图片里。可用来提高渲染效率。
|
|
* @param {Boolean} forceUpdate 是否强制更新缓存
|
|
*/
|
|
cache: function(forceUpdate){
|
|
if(forceUpdate || this._cacheDirty || !this._cacheImage){
|
|
this.updateCache();
|
|
}
|
|
},
|
|
/**
|
|
* @language=zh
|
|
* 更新缓存
|
|
*/
|
|
updateCache:function(){
|
|
//TODO:width, height自动判断
|
|
_cacheCanvas.width = this.width;
|
|
_cacheCanvas.height = this.height;
|
|
this._draw(_cacheContext);
|
|
this._cacheImage = new Image();
|
|
this._cacheImage.src = _cacheCanvas.toDataURL();
|
|
this.drawable = this.drawable||new Drawable();
|
|
this.drawable.init(this._cacheImage);
|
|
this._cacheDirty = false;
|
|
},
|
|
/**
|
|
* @language=zh
|
|
* 设置缓存是否dirty
|
|
*/
|
|
setCacheDirty:function(dirty){
|
|
this._cacheDirty = dirty;
|
|
}
|
|
}; |