使用Camera減少背包drawcall

有關(guān)背包等滑動列表drawcall高的問題衡奥,大佬們已經(jīng)提供了很好的解決方案了,美中不足是這種修改渲染遍歷順序的方式,只適用于web端榛搔,不適用于native端。

我這里也提供一個簡單的方法煌往,通過camera拍照添加到列表項節(jié)點祈纯,然后隱藏原節(jié)點其他所有子節(jié)點,從而使一個列表項的drawcall降為1楣号,配合TableView使用最易,能將一個滑動列表的drawcall降為比較可觀的數(shù)量。

這種做法只適用于列表項全部是靜態(tài)的情況炫狱。

drawcall.gif

按下去的時候藻懒,item的drawcall恢復(fù)為4,松開后變?yōu)?视译。

做法的關(guān)鍵是截圖:

shootItem(itemNode:cc.Node):cc.Texture2D{
    let box = itemNode.getBoundingBox();
    let pt = cc.v2(box.x+box.width*0.5,box.y+box.height*0.5);
    pt = this.camera.node.parent.convertToNodeSpaceAR(itemNode.parent.convertToWorldSpaceAR(pt))

    let cameraOrthoSize = box.height*0.5;
    this.camera.alignWithScreen = false;
    this.camera.node.position = cc.v3(pt.x,pt.y,100);
    this.camera.orthoSize = cameraOrthoSize;
    
    this.renderTexture.initWithSize(box.width,box.height)
    this.camera.targetTexture = this.renderTexture;

    this.camera.enabled = true;
    this.camera.render();
    this.camera.enabled = false;

    let data = this.renderTexture.readPixels();
    data = filpYImage(data,box.width, box.height)
    let tex = new cc.Texture2D()
    tex.initWithData(data,cc.Texture2D.PixelFormat.RGBA8888, box.width, box.height)
    return tex
}

相機節(jié)點添加到content同級目錄下嬉荆,放在外面的話會因為剪裁拍不到。修改相機的正交投影視窗大小酷含,使剛好覆蓋目標(biāo)節(jié)點鄙早,然后設(shè)置相機的位置為目標(biāo)節(jié)點同一位置,這樣拍出的照片就剛好是目標(biāo)節(jié)點了椅亚。

下面是完整代碼限番,使用的時候只需要在列表項添加ListCaptureItem組件即可,列表項更新的時候調(diào)用lock方法重新拍照呀舔。


const {ccclass, property,disallowMultiple,menu,requireComponent} = cc._decorator;

@ccclass
@disallowMultiple
@menu("list_capture_item")
/**將列表項拍照保存弥虐,適用于節(jié)點項沒有動畫、沒有重疊的情況 */
export default class ListCaptureItem extends cc.Component {
    private capture:cc.Sprite = null;
    onLoad(){
        let _node = this.node.getChildByName("capture");
        if(_node==null){
            _node = new cc.Node("capture");
            _node.parent = this.node;
            this.capture = _node.addComponent(cc.Sprite);
            this.capture.spriteFrame = new cc.SpriteFrame();

            let widget = _node.addComponent(cc.Widget)
            widget.isAlignLeft = true;
            widget.isAlignRight = true;
            widget.isAlignTop = true;
            widget.isAlignBottom = true;
            widget.alignMode = cc.Widget.AlignMode.ONCE;
            widget.left = 0;
            widget.right = 0;
            widget.top = 0;
            widget.bottom = 0;
        }else{
            this.capture = _node.getComponent(cc.Sprite);
        }
        this.lock()
    }

    private shooter:ListItemCamera = null;
    private initShooter(){
        if(this.shooter){
            return this.shooter;
        }
        let scroll:cc.ScrollView = null;
        let parent = this.node.parent;
        while(parent){
            scroll = parent.getComponent(cc.ScrollView);
            if(scroll){
                break;
            }
            parent = parent.parent;
        }
        if(scroll&&scroll.content==this.node.parent){
            let children = scroll.content.parent.children;
            for(let c of children){
                this.shooter = c.getComponent(ListItemCamera);
                if(this.shooter){
                    break
                }
            }
            if(this.shooter==null){
                let _node = new cc.Node();
                _node.parent = scroll.content.parent;
                _node.addComponent(ListItemCamera)
                this.shooter = _node.getComponent(ListItemCamera);
            }
        }else{
            cc.warn("list_capture_item只應(yīng)該在Scrollview的列表項上")
        }
    }

    onEnable(){
        this.node.on(cc.Node.EventType.TOUCH_START,this.onMouseEnter,this)
        this.node.on(cc.Node.EventType.TOUCH_CANCEL,this.onMouseLeave,this)
        this.node.on(cc.Node.EventType.TOUCH_END,this.onMouseLeave,this)
    }

    onDisable(){
        this.node.off(cc.Node.EventType.TOUCH_START,this.onMouseEnter,this)
        this.node.off(cc.Node.EventType.TOUCH_CANCEL,this.onMouseLeave,this)
        this.node.on(cc.Node.EventType.TOUCH_END,this.onMouseLeave,this)
    }

    private onMouseEnter(){
        this.unlock();
    }

    private onMouseLeave(){
        this.lock(true);
    }

    /**拍照,每次UI變化之后要調(diào)用 */
    public lock(withOutCapture=false){
        this.initShooter();
        if(this.shooter==null){
            return;
        }
        this.scheduleOnce(()=>{
            let childs = this.node.children;
            if(!withOutCapture){
                childs.forEach( (child)=>{
                    child.active = this.capture.node!=child;
                })
                
                let tex = this.shooter.shootItem(this.node);
                this.capture.spriteFrame.setTexture(tex)
                let widget = this.capture.getComponent(cc.Widget)
                widget.updateAlignment();
            }
            childs.forEach( (child)=>{
                child.active = this.capture.node==child;
            })
        })
    }

    public unlock(){
        if(this.shooter==null){
            return;
        }
        let childs = this.node.children;
        childs.forEach((child)=>{
            child.active = this.capture.node!=child;
        })
    }
}


@disallowMultiple
/**生成一個照相機媚赖,掛載在scrollview.content同級節(jié)點 */
class ListItemCamera extends cc.Component {
    private camera:cc.Camera = null;
    private scroll:cc.ScrollView = null;
    private get renderTexture(){
        if(!this.camera.targetTexture){
            let renderTexture = new cc.RenderTexture();
            this.camera.targetTexture = renderTexture;
        }

        return this.camera.targetTexture;
    };
    onLoad(){
        this.camera = this.getComponent(cc.Camera);
        if(this.camera==null){
            this.camera = this.addComponent(cc.Camera);
        }
        this.scroll = this.node.parent.parent.getComponent(cc.ScrollView);
        if(this.scroll==null){
            cc.error("list_item_camera 必須掛在scrollview.content同級")
            return;
        }
        
        this.camera.alignWithScreen = false;
        this.camera.enabled = false;
    }

    shootItem(itemNode:cc.Node):cc.Texture2D{
        let box = itemNode.getBoundingBox();
        let pt = cc.v2(box.x+box.width*0.5,box.y+box.height*0.5);
        pt = this.camera.node.parent.convertToNodeSpaceAR(itemNode.parent.convertToWorldSpaceAR(pt))

        let cameraOrthoSize = box.height*0.5;
        this.camera.node.position = cc.v3(pt.x,pt.y,100);
        this.camera.orthoSize = cameraOrthoSize;

        // if(this.renderTexture.loaded){
        //     if(Math.abs(this.renderTexture.width-box.width)>Number.EPSILON||Math.abs(this.renderTexture.height-box.height)>Number.EPSILON){
        //         //@ts-ignore
        //         this.renderTexture.updateSize(box.width,box.height)
        //         this.camera.targetTexture = this.renderTexture;
        //     }
        // }else{
            this.renderTexture.initWithSize(box.width,box.height)
            this.camera.targetTexture = this.renderTexture;
        // }

        this.camera.enabled = true;
        this.camera.render();
        this.camera.enabled = false;

        let data = this.renderTexture.readPixels();
        data = filpYImage(data,box.width, box.height)
        let tex = new cc.Texture2D()
        tex.initWithData(data,cc.Texture2D.PixelFormat.RGBA8888, box.width, box.height)
        return tex
    }
}

/**翻轉(zhuǎn)圖片 */
function filpYImage (data:Uint8Array, width:number, height:number) {
    // create the data array
    let picData = new Uint8Array(width * height * 4);
    let rowBytes = width * 4;
    for (let row = 0; row < height; row++) {
        let srow = height - 1 - row;
        let start = srow * width * 4;
        let reStart = row * width * 4;
        // save the piexls data
        for (let i = 0; i < rowBytes; i++) {
            picData[reStart + i] = data[start + i];
        }
    }
    return picData;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末霜瘪,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子省古,更是在濱河造成了極大的恐慌粥庄,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件豺妓,死亡現(xiàn)場離奇詭異惜互,居然都是意外死亡布讹,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門训堆,熙熙樓的掌柜王于貴愁眉苦臉地迎上來描验,“玉大人,你說我怎么就攤上這事坑鱼”炝鳎” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵鲁沥,是天一觀的道長呼股。 經(jīng)常有香客問我,道長画恰,這世上最難降的妖魔是什么彭谁? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮允扇,結(jié)果婚禮上缠局,老公的妹妹穿的比我還像新娘。我一直安慰自己考润,他們只是感情好狭园,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著糊治,像睡著了一般。 火紅的嫁衣襯著肌膚如雪俊戳。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天燥滑,我揣著相機與錄音,去河邊找鬼阿逃。 笑死铭拧,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的恃锉。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼肪跋,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了土砂?” 一聲冷哼從身側(cè)響起州既,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤谜洽,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后吴叶,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡实束,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年逊彭,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片侮叮。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖签赃,靈堂內(nèi)的尸體忽然破棺而出分尸,到底是詐尸還是另有隱情,我是刑警寧澤箩绍,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布材蛛,位于F島的核電站圆到,受9級特大地震影響卑吭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜豆赏,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望白胀。 院中可真熱鬧抚岗,春花似錦或杠、人聲如沸宣蔚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至兄猩,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間枢冤,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工淹真, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留讶迁,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓巍糯,卻偏偏與公主長得像客扎,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子徙鱼,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容