关于creator动态合图

在creator中,为了降低DC,提供了一个方法,在项目运行的时候,运行时将内存中的任意纹理组合成一张虚拟的图集,当渲染一张贴图的时候,动态合图系统会自动检测这张贴图是否已经被加入到了动态合图系统,如果没有,并且此贴图又符合动态合图的条件,就会将此贴图合并到动态合图系统生成的大贴图中。

动态合图 是按照 渲染顺序 来选取要将哪些贴图合并到一张大图中的,这样就能确保相邻的 DrawCall 能合并为一个 DrawCall。

注意事项:

在场景加载前,动态合图系统会进行重置, SpriteFrame贴图的引用和 uv 都会恢复到初始值。

Cocos Creator是如何实现这个功能的呢?

核心思想是数据结构中常说的空间换时间, 原理其实并不复杂,就是帧缓存,简单来说就是将多份spriteFrame绘制到RenderTexture上,并记录其在新的RenderTexture中所属的位置和长宽,渲染的时候利用这些信息从RenderTexture所得到的纹理上取所需要的区域`

```

onstAtlas=require('./atlas');

let_atlases=[];

let_atlasIndex=-1;

let_maxAtlasCount=5;

let_textureSize=2048;

// Smaller frame is more likely to be affected by linear filter

let_minFrameSize=8;

let_maxFrameSize=512;

let_debugNode=null;

functionnewAtlas(){

letatlas=_atlases[++_atlasIndex]

if(!atlas){

atlas=newAtlas(_textureSize,_textureSize);

_atlases.push(atlas);

}

returnatlas;

}

functionbeforeSceneLoad(){

dynamicAtlasManager.reset();

}

let_enabled=false;

/**

* !#en Manager the dynamic atlas.

* !#zh 管理动态图集。

*@classDynamicAtlasManager

*/

letdynamicAtlasManager={


/**

    * !#en Enabled or Disabled dynamic atlas.

    * !#zh 开启或者关闭动态图集。

*@propertyenabled

*@type{Boolean}

    */

getenabled(){

return_enabled;

},

setenabled(value){

if(_enabled===value)return;

if(value){

this.reset();

cc.director.on(cc.Director.EVENT_BEFORE_SCENE_LAUNCH,beforeSceneLoad);

}

else{

cc.director.off(cc.Director.EVENT_BEFORE_SCENE_LAUNCH,beforeSceneLoad);

}

_enabled=value;

},

/**

    * !#en The maximum number of atlas that can be created.

    * !#zh 可以创建的最大图集数量。

*@propertymaxAtlasCount

*@type{Number}

    */

getmaxAtlasCount(){

return_maxAtlasCount;

},

setmaxAtlasCount(value){

_maxAtlasCount=value;

},

/**

    * !#en The size of the atlas that was created

    * !#zh 创建的图集的宽高

*@propertytextureSize

*@type{Number}

    */

gettextureSize(){

return_textureSize;

},

settextureSize(value){

_textureSize=value;

},

/**

    * !#en The maximum size of the picture that can be added to the atlas.

    * !#zh 可以添加进图集的图片的最大尺寸。

*@propertymaxFrameSize

*@type{Number}

    */

getmaxFrameSize(){

return_maxFrameSize;

},

setmaxFrameSize(value){

_maxFrameSize=value;

},

/**

    * !#en Append a sprite frame into the dynamic atlas.

    * !#zh 添加碎图进入动态图集。

*@methodinsertSpriteFrame

*@param{SpriteFrame} spriteFrame

    */

insertSpriteFrame(spriteFrame){

if(CC_EDITOR)returnnull;

if(!_enabled||_atlasIndex===_maxAtlasCount||

!spriteFrame||spriteFrame._original)returnnull;


lettexture=spriteFrame._texture;

if(textureinstanceofcc.RenderTexture||texture._isCompressed())returnnull;

letw=texture.width,h=texture.height;

if(w>_maxFrameSize||h>_maxFrameSize||w<=_minFrameSize||h<=_minFrameSize

||texture._getHash()!==Atlas.DEFAULT_HASH){

returnnull;

}

letatlas=_atlases[_atlasIndex];

if(!atlas){

atlas=newAtlas();

}

letframe=atlas.insertSpriteFrame(spriteFrame);

if(!frame&&_atlasIndex!==_maxAtlasCount){

atlas=newAtlas();

returnatlas.insertSpriteFrame(spriteFrame);

}

returnframe;

},

/**

    * !#en Resets all dynamic atlas, and the existing ones will be destroyed.

    * !#zh 重置所有动态图集,已有的动态图集会被销毁。

*@methodreset

    */

reset(){

for(leti=0,l=_atlases.length;i<l;i++){

_atlases[i].destroy();

}

_atlases.length=0;

_atlasIndex=-1;

},

/**

    * !#en Displays all the dynamic atlas in the current scene, which you can use to view the current atlas state.

    * !#zh 在当前场景中显示所有动态图集,可以用来查看当前的合图状态。

*@methodshowDebug

*@param{Boolean} show

    */

showDebug:CC_DEV&&function(show){

if(show){

if(!_debugNode||!_debugNode.isValid){

letwidth=cc.visibleRect.width;

letheight=cc.visibleRect.height;

_debugNode=newcc.Node('DYNAMIC_ATLAS_DEBUG_NODE');

_debugNode.width=width;

_debugNode.height=height;

_debugNode.x=width/2;

_debugNode.y=height/2;

_debugNode.zIndex=cc.macro.MAX_ZINDEX;

_debugNode.parent=cc.director.getScene();

_debugNode.groupIndex=cc.Node.BuiltinGroupIndex.DEBUG;

cc.Camera._setupDebugCamera();

letscroll=_debugNode.addComponent(cc.ScrollView);

letcontent=newcc.Node('CONTENT');

letlayout=content.addComponent(cc.Layout);

layout.type=cc.Layout.Type.VERTICAL;

layout.resizeMode=cc.Layout.ResizeMode.CONTAINER;

content.parent=_debugNode;

content.width=_textureSize;

content.anchorY=1;

content.x=_textureSize;

scroll.content=content;

for(leti=0;i<=_atlasIndex;i++){

letnode=newcc.Node('ATLAS');


lettexture=_atlases[i]._texture;

letspriteFrame=newcc.SpriteFrame();

spriteFrame.setTexture(_atlases[i]._texture);

letsprite=node.addComponent(cc.Sprite)

sprite.spriteFrame=spriteFrame;

node.parent=content;

}

}

}

else{

if(_debugNode){

_debugNode.parent=null;

_debugNode=null;

}

}

},

update(){

if(!this.enabled)return;

for(leti=0;i<=_atlasIndex;i++){

_atlases[i].update();

}

},

};

/**

*@modulecc

*/

/**

*@propertydynamicAtlasManager

*@typeDynamicAtlasManager

*/

module.exports=cc.dynamicAtlasManager=dynamicAtlasManager;

```

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,525评论 6 507
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,203评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,862评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,728评论 1 294
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,743评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,590评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,330评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,244评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,693评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,885评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,001评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,723评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,343评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,919评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,042评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,191评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,955评论 2 355

推荐阅读更多精彩内容