1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
base.require('tracing.trace_model.object_instance');
base.require('cc.layer_impl');
base.exportTo('cc', function() {
var ObjectSnapshot = tracing.trace_model.ObjectSnapshot;
/**
* @constructor
*/
function LayerTreeImplSnapshot() {
ObjectSnapshot.apply(this, arguments);
}
LayerTreeImplSnapshot.prototype = {
__proto__: ObjectSnapshot.prototype,
preInitialize: function() {
cc.preInitializeObject(this);
this.layerTreeHostImpl = undefined;
this.whichTree = undefined;
},
initialize: function() {
cc.moveRequiredFieldsFromArgsToToplevel(
this, ['rootLayer',
'renderSurfaceLayerList']);
this.rootLayer.layerTreeImpl = this;
},
iterLayers: function(func, thisArg) {
var visitedLayers = {};
function visitLayer(layer, depth, isMask, isReplica) {
if (visitedLayers[layer.layerId])
return;
visitedLayers[layer.layerId] = true;
func.call(thisArg, layer, depth, isMask, isReplica);
for (var i = 0; i < layer.children.length; i++)
visitLayer(layer.children[i], depth + 1);
if (layer.maskLayer)
visitLayer(layer.maskLayer, depth + 1, true, false);
if (layer.replicaLayer)
visitLayer(layer.replicaLayer, depth + 1, false, true);
}
visitLayer(this.rootLayer, 0, false, false);
},
findLayerWithId: function(id) {
var foundLayer = undefined;
function visitLayer(layer) {
if (layer.layerId == id)
foundLayer = layer;
}
this.iterLayers(visitLayer);
return foundLayer;
}
};
ObjectSnapshot.register('cc::LayerTreeImpl', LayerTreeImplSnapshot);
return {
LayerTreeImplSnapshot: LayerTreeImplSnapshot
};
});
|