213 lines
7.7 KiB
JavaScript
Raw Normal View History

2012-01-11 19:47:00 -03:00
/*
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2012-01-05 17:34:14 -03:00
mindplot.nlayout.BalancedSorter = new Class({
2012-01-10 20:01:36 -03:00
Extends: mindplot.nlayout.AbstractBasicSorter,
2012-01-05 17:34:14 -03:00
initialize: function() {
},
computeChildrenIdByHeights: function(treeSet, node) {
var result = {};
this._computeChildrenHeight(treeSet, node, result);
return result;
},
_computeChildrenHeight : function(treeSet, node, heightCache) {
var height = node.getSize().height + (mindplot.nlayout.BalancedSorter.INTERNODE_VERTICAL_PADDING * 2); // 2* Top and down padding;
var result;
var children = treeSet.getChildren(node);
if (children.length == 0 || node.areChildrenShrunken()) {
2012-01-05 17:34:14 -03:00
result = height;
} else {
var childrenHeight = 0;
children.forEach(function(child) {
childrenHeight += this._computeChildrenHeight(treeSet, child, heightCache);
}, this);
result = Math.max(height, childrenHeight);
}
if (heightCache) {
heightCache[node.getId()] = result;
}
return result;
},
predict : function(parent, graph, position) {
if (!position) {
var right = this._getChildrenForOrder(parent, graph, 0);
var left = this._getChildrenForOrder(parent, graph, 1);
}
2012-01-13 12:37:11 -03:00
// Filter nodes on one side..
var order = position ? (position.x > 0 ? 0 : 1) : ((right.length - left.length) > 0 ? 1 : 0);
var children = this._getChildrenForOrder(parent, graph, order);
// No children?
if (children.length == 0) {
return [0, {x:parent.getPosition().x + parent.getSize().width + mindplot.nlayout.BalancedSorter.INTERNODE_HORIZONTAL_PADDING * 2, y:parent.getPosition().y}];
}
2012-01-05 17:34:14 -03:00
// Try to fit within ...
var result = null;
2012-01-13 12:37:11 -03:00
var last = children.getLast();
position = position || {x: last.getPosition().x, y:last.getPosition().y + 1};
2012-01-13 12:37:11 -03:00
children.each(function(child, index) {
2012-01-05 17:34:14 -03:00
var cpos = child.getPosition();
if (position.y > cpos.y) {
2012-01-13 12:37:11 -03:00
yOffset = child == last ?
child.getSize().height + mindplot.nlayout.BalancedSorter.INTERNODE_VERTICAL_PADDING * 2 :
(children[index + 1].getPosition().y - child.getPosition().y)/2;
result = [child.getOrder() + 2,{x:cpos.x, y:cpos.y + yOffset}];
2012-01-12 13:44:35 -03:00
}
2012-01-05 17:34:14 -03:00
});
2012-01-13 12:37:11 -03:00
// Position wasn't below any node, so it must be inserted above
if (!result) {
var first = children[0];
result = [position.x > 0 ? 0 : 1, {
x:first.getPosition().x,
y:first.getPosition().y - first.getSize().height - mindplot.nlayout.BalancedSorter.INTERNODE_VERTICAL_PADDING * 2
}];
}
2012-01-05 17:34:14 -03:00
return result;
},
insert: function(treeSet, parent, child, order) {
2012-01-13 12:37:11 -03:00
var children = this._getChildrenForOrder(parent, treeSet, order);
2012-01-05 17:34:14 -03:00
2012-01-13 12:37:11 -03:00
// Shift all the elements by two, so side is the same.
// In case of balanced sorter, order don't need to be continuous...
var max = 0;
for (var i = 0; i < children.length; i++) {
2012-01-05 17:34:14 -03:00
var node = children[i];
2012-01-13 12:37:11 -03:00
max = Math.max(max, node.getOrder());
if (node.getOrder() >= order) {
max = Math.max(max, node.getOrder() + 2);
node.setOrder(node.getOrder() + 2);
2012-01-11 19:47:00 -03:00
}
2012-01-05 17:34:14 -03:00
}
2012-01-13 12:37:11 -03:00
var newOrder = order > (max+1) ? (max + 2) : order;
child.setOrder(newOrder);
2012-01-05 17:34:14 -03:00
},
detach:function(treeSet, node) {
var parent = treeSet.getParent(node);
2012-01-13 12:37:11 -03:00
// Filter nodes on one side..
var children = this._getChildrenForOrder(parent, treeSet, node.getOrder());
children.each(function(child, index) {
if (child.getOrder() > node.getOrder()) {
child.setOrder(child.getOrder() - 2);
}
});
node.setOrder(node.getOrder() % 2 == 0 ? 0 : 1);
2012-01-05 17:34:14 -03:00
},
computeOffsets:function(treeSet, node) {
$assert(treeSet, "treeSet can no be null.");
$assert(node, "node can no be null.");
var children = this._getSortedChildren(treeSet, node);
// Compute heights ...
2012-01-11 19:47:00 -03:00
var heights = children.map(
function(child) {
2012-01-13 20:06:14 -03:00
return {id:child.getId(), order:child.getOrder(), width: child.getSize().width, height:this._computeChildrenHeight(treeSet, child)};
2012-01-11 19:47:00 -03:00
}, this).reverse();
2012-01-05 17:34:14 -03:00
// Compute the center of the branch ...
var totalPHeight = 0;
var totalNHeight = 0;
2012-01-05 17:34:14 -03:00
heights.forEach(function(elem) {
if (elem.order % 2 == 0) {
totalPHeight += elem.height;
} else {
totalNHeight += elem.height;
}
});
2012-01-11 19:47:00 -03:00
var psum = totalPHeight / 2;
var nsum = totalNHeight / 2;
2012-01-05 17:34:14 -03:00
var ysum = 0;
// Calculate the offsets ...
var result = {};
for (var i = 0; i < heights.length; i++) {
var direction = heights[i].order % 2 ? -1 : 1;
if (direction > 0) {
psum = psum - heights[i].height;
ysum = psum;
} else {
nsum = nsum - heights[i].height;
ysum = nsum;
}
2012-01-11 19:47:00 -03:00
var yOffset = ysum + heights[i].height / 2;
2012-01-13 20:06:14 -03:00
var xOffset = direction * (node.getSize().width/2 + heights[i].width/2 + + mindplot.nlayout.BalancedSorter.INTERNODE_HORIZONTAL_PADDING);
2012-01-05 17:34:14 -03:00
$assert(!isNaN(xOffset), "xOffset can not be null");
$assert(!isNaN(yOffset), "yOffset can not be null");
result[heights[i].id] = {x:xOffset,y:yOffset};
}
return result;
},
2012-01-13 12:37:11 -03:00
_getChildrenForSide: function(parent, graph, position) {
position = position || {x: parent.getPosition().x + 1, y:parent.getPosition().y + 1};
2012-01-13 12:37:11 -03:00
return graph.getChildren(parent).filter(function(child) {
return position.x > 0 ? child.getPosition().x > 0 : child.getPosition().x < 0;
});
},
_getChildrenForOrder: function(parent, graph, order) {
return this._getSortedChildren(graph, parent).filter(function(node) {
return node.getOrder() % 2 == order % 2;
});
2012-01-11 19:47:00 -03:00
},
verify:function(treeSet, node) {
2012-01-13 12:37:11 -03:00
// Check that all is consistent ...
var children = this._getChildrenForOrder(node, treeSet, node.getOrder());
// All odd ordered nodes should be "continuous" by themselves
// All even numbered nodes should be "continuous" by themselves
var factor = node.getOrder() % 2 == 0 ? 2 : 1;
for (var i = 0; i < children.length; i++) {
var order = i == 0 && factor == 1 ? 1 : (factor * i);
$assert(children[i].getOrder() == order, "Missing order elements. Missing order: " + (i*factor));
2012-01-13 12:37:11 -03:00
}
},
toString:function() {
return "Balanced Sorter";
2012-01-05 17:34:14 -03:00
}
});
2012-01-10 19:35:52 -03:00
mindplot.nlayout.BalancedSorter.INTERNODE_VERTICAL_PADDING = 5;
2012-01-13 12:37:11 -03:00
mindplot.nlayout.BalancedSorter.INTERNODE_HORIZONTAL_PADDING = 30;