Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 1 | define(function () { |
| 2 | "use strict"; |
| 3 | |
| 4 | var svgNS = "http://www.w3.org/2000/svg"; |
| 5 | |
| 6 | return { |
| 7 | create : function (snippet) { |
| 8 | var obj = Object.create(this)._init(snippet); |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 9 | obj._tokens = []; |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 10 | obj._arcs = [] |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 11 | obj._tokenElements = []; |
| 12 | obj._y = 0; |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 13 | |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 14 | // Some configurations |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 15 | obj.maxArc = 200; // maximum height of the bezier control point |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 16 | obj.overlapDiff = 20; |
| 17 | obj.arcDiff = 15; |
| 18 | obj.anchorDiff = 6; |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 19 | obj.anchorStart = 15; |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 20 | obj.tokenSep = 30; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 21 | return obj; |
| 22 | }, |
| 23 | |
| 24 | _init : function (snippet) { |
| 25 | /* |
| 26 | var html = document.createElement("div"); |
| 27 | html.innerHTML = snippet; |
| 28 | */ |
| 29 | return this; |
| 30 | }, |
| 31 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 32 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 33 | // This is a shorthand for SVG element creation |
| 34 | _c : function (tag) { |
| 35 | return document.createElementNS(svgNS, tag); |
| 36 | }, |
| 37 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 38 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 39 | // Returns the center point of the requesting token |
| 40 | _tokenPoint : function (node) { |
| 41 | var box = node.getBoundingClientRect(); |
| 42 | return box.x + (box.width / 2); |
| 43 | }, |
| 44 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 45 | |
| 46 | // Draws an anchor |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 47 | _drawAnchor : function (anchor) { |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 48 | |
| 49 | // Calculate the span of the first and last token, the anchor spans |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 50 | var firstBox = this._tokenElements[anchor.first].getBoundingClientRect(); |
| 51 | var lastBox = this._tokenElements[anchor.last].getBoundingClientRect(); |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 52 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 53 | var startPos = firstBox.left - this.offsetLeft; |
| 54 | var endPos = lastBox.right - this.offsetLeft; |
| 55 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 56 | var y = this._y + (anchor.overlaps * this.anchorDiff) - this.anchorStart; |
| 57 | |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 58 | var l = this._c('path'); |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 59 | l.setAttribute("d", "M " + startPos + "," + y + " L " + endPos + "," + y); |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 60 | l.setAttribute("class", "anchor"); |
| 61 | anchor.element = l; |
| 62 | anchor.y = y; |
| 63 | return l; |
| 64 | }, |
| 65 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 66 | // Create an arc with a label |
| 67 | // Potentially needs a height parameter for stacks |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 68 | _drawArc : function (arc) { |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 69 | |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 70 | var startPos, endPos; |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 71 | var startY = this._y, endY = this._y; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 72 | |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 73 | if (arc.startAnchor !== undefined) { |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 74 | startPos = this._tokenPoint(arc.startAnchor.element); |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 75 | startY = arc.startAnchor.y; |
| 76 | } |
| 77 | else { |
| 78 | startPos = this._tokenPoint(this._tokenElements[arc.first]); |
| 79 | }; |
| 80 | |
| 81 | if (arc.endAnchor !== undefined) { |
| 82 | endPos = this._tokenPoint(arc.endAnchor.element) |
| 83 | endY = arc.endAnchor.y; |
| 84 | } |
| 85 | else { |
| 86 | endPos = this._tokenPoint(this._tokenElements[arc.last]); |
| 87 | }; |
| 88 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 89 | startPos -= this.offsetLeft; |
| 90 | endPos -= this.offsetLeft; |
| 91 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 92 | var g = this._c("g"); |
| 93 | var p = g.appendChild(this._c("path")); |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 94 | p.setAttribute('class', 'edge'); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 95 | |
| 96 | // Create arc |
| 97 | var middle = Math.abs(endPos - startPos) / 2; |
| 98 | |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 99 | // TODO: take the number of tokens into account! |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 100 | var cHeight = this.arcDiff + arc.overlaps * this.overlapDiff + (middle / 2); |
| 101 | |
| 102 | // Respect the maximum height |
| 103 | cHeight = cHeight < this.maxArc ? cHeight : this.maxArc; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 104 | |
| 105 | var x = Math.min(startPos, endPos); |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 106 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 107 | //var controlY = (startY + endY - cHeight); |
| 108 | var controlY = (endY - cHeight); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 109 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 110 | var arcE = "M "+ startPos + "," + startY + |
| 111 | " C " + startPos + "," + controlY + |
| 112 | " " + endPos + "," + controlY + |
| 113 | " " + endPos + "," + endY; |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 114 | |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 115 | p.setAttribute("d", arcE); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 116 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 117 | if (arc.direction !== undefined) { |
| 118 | p.setAttribute("marker-end", "url(#arr)"); |
| 119 | if (arc.direction === 'bi') { |
| 120 | p.setAttribute("marker-start", "url(#arr)"); |
| 121 | }; |
| 122 | }; |
| 123 | |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 124 | /* |
| 125 | * Calculate the top point of the arc for labeling using |
| 126 | * de Casteljau's algorithm, see e.g. |
| 127 | * http://blog.sklambert.com/finding-the-control-points-of-a-bezier-curve/ |
| 128 | * of course simplified to symmetric arcs ... |
| 129 | */ |
| 130 | // Interpolate one side of the control polygon |
| 131 | // var controlInterpY1 = (startY + controlY) / 2; |
| 132 | // var controlInterpY2 = (controlInterpY1 + controlY) / 2; |
| 133 | var middleY = (((startY + controlY) / 2) + controlY) / 2; |
| 134 | |
| 135 | // WARNING! |
| 136 | // This won't respect span anchors, adjusting startY and endY! |
| 137 | |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 138 | if (arc.label !== undefined) { |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 139 | var labelE = g.appendChild(this._c("text")); |
| 140 | labelE.setAttribute("x", x + middle); |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 141 | labelE.setAttribute("y", middleY + 3); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 142 | labelE.setAttribute("text-anchor", "middle"); |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 143 | labelE.appendChild(document.createTextNode(arc.label)); |
Akron | 1dc8790 | 2017-05-29 16:04:56 +0200 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | var textWidth = labelE.getComputedTextLength(); |
| 147 | |
| 148 | var labelR = g.appendChild(this._c("rect")); |
| 149 | labelR.setAttribute("x", x + middle); |
| 150 | labelR.setAttribute("y", middleY + 3); |
| 151 | labelR.setAttribute("width", textWidth +30); |
| 152 | labelR.setAttribute("height", 20); |
| 153 | */ |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 154 | }; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 155 | return g; |
| 156 | }, |
| 157 | |
| 158 | element : function () { |
| 159 | if (this._element !== undefined) |
| 160 | return this._element; |
| 161 | |
| 162 | // Create svg |
| 163 | var svg = this._c("svg"); |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 164 | |
| 165 | window.addEventListener("resize", function () { |
| 166 | // TODO: Only if text-size changed! |
| 167 | this.show(); |
| 168 | }.bind(this)); |
| 169 | |
| 170 | var defs = svg.appendChild(this._c("defs")); |
| 171 | var marker = defs.appendChild(this._c("marker")); |
| 172 | marker.setAttribute("refX", 9); |
| 173 | marker.setAttribute("id", "arr"); |
| 174 | marker.setAttribute("orient", "auto-start-reverse"); |
| 175 | marker.setAttribute("markerUnits","userSpaceOnUse"); |
| 176 | |
| 177 | var arrow = this._c("path"); |
| 178 | arrow.setAttribute("transform", "scale(0.8)"); |
| 179 | arrow.setAttribute("d", "M 0,-5 0,5 10,0 Z"); |
| 180 | marker.appendChild(arrow); |
| 181 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 182 | this._element = svg; |
| 183 | return this._element; |
| 184 | }, |
| 185 | |
| 186 | // Add a relation with a start, an end, |
| 187 | // a direction value and a label text |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 188 | addRel : function (rel) { |
| 189 | this._arcs.push(rel); |
| 190 | return this; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 191 | }, |
| 192 | |
Akron | c5b5f74 | 2017-05-23 16:04:35 +0200 | [diff] [blame] | 193 | |
| 194 | addToken : function(token) { |
| 195 | this._tokens.push(token); |
| 196 | return this; |
| 197 | }, |
| 198 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 199 | /* |
| 200 | * All arcs need to be sorted before shown, |
| 201 | * to avoid nesting. |
| 202 | */ |
| 203 | _sortArcs : function () { |
| 204 | |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 205 | |
| 206 | // TODO: |
| 207 | // Keep in mind that the arcs may have long anchors! |
| 208 | // 1. Iterate over all arcs |
| 209 | // 2. Sort all multi |
| 210 | var anchors = []; |
| 211 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 212 | // 1. Sort by length |
| 213 | // 2. Tag all spans with the number of overlaps before |
| 214 | // a) Iterate over all spans |
| 215 | // b) check the latest preceeding overlapping span (lpos) |
| 216 | // -> not found: tag with 0 |
| 217 | // -> found: Add +1 to the level of the (lpos) |
| 218 | // c) If the new tag is smaller than the previous element, |
| 219 | // reorder |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 220 | |
| 221 | // Normalize start and end |
| 222 | var sortedArcs = this._arcs.map(function (v) { |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 223 | |
| 224 | // Check for long anchors |
| 225 | if (v.start instanceof Array) { |
| 226 | var middle = Math.ceil(Math.abs(v.start[1] - v.start[0]) / 2) + v.start[0]; |
| 227 | |
| 228 | v.startAnchor = { |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 229 | "first": v.start[0], |
| 230 | "last" : v.start[1], |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 231 | "length" : v.start[1] - v.start[0] |
| 232 | }; |
| 233 | |
| 234 | // Add to anchors list |
| 235 | anchors.push(v.startAnchor); |
| 236 | v.start = middle; |
| 237 | }; |
| 238 | |
| 239 | if (v.end instanceof Array) { |
| 240 | var middle = Math.abs(v.end[0] - v.end[1]) + v.end[0]; |
| 241 | v.endAnchor = { |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 242 | "first": v.end[0], |
| 243 | "last" : v.end[1], |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 244 | "length" : v.end[1] - v.end[0] |
| 245 | }; |
| 246 | |
| 247 | // Add to anchors list |
| 248 | anchors.push(v.endAnchor); |
| 249 | v.end = middle; |
| 250 | }; |
| 251 | |
| 252 | // calculate the arch length |
Akron | 63ae00b | 2017-05-16 22:03:36 +0200 | [diff] [blame] | 253 | if (v.start < v.end) { |
| 254 | v.first = v.start; |
| 255 | v.last = v.end; |
| 256 | v.length = v.end - v.start; |
| 257 | } |
| 258 | else { |
| 259 | v.first = v.end; |
| 260 | v.last = v.start; |
| 261 | v.length = v.start - v.end; |
| 262 | }; |
| 263 | return v; |
| 264 | }); |
| 265 | |
| 266 | // Sort based on length |
| 267 | sortedArcs.sort(function (a, b) { |
| 268 | if (a.length < b.length) |
| 269 | return -1; |
| 270 | else |
| 271 | return 1; |
| 272 | }); |
| 273 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 274 | this._sortedArcs = lengthSort(sortedArcs, false); |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 275 | this._sortedAnchors = lengthSort(anchors, true); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 276 | }, |
| 277 | |
| 278 | show : function () { |
| 279 | var svg = this._element; |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 280 | var height = this.maxArc; |
| 281 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 282 | // Delete old group |
| 283 | if (svg.getElementsByTagName("g")[0] !== undefined) { |
| 284 | var group = svg.getElementsByTagName("g")[0]; |
| 285 | svg.removeChild(group); |
| 286 | this._tokenElements = []; |
| 287 | }; |
| 288 | |
| 289 | var g = svg.appendChild(this._c("g")); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 290 | |
| 291 | /* |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 292 | * Create token list |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 293 | */ |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 294 | var text = g.appendChild(this._c("text")); |
Akron | 3d20428 | 2017-09-07 18:24:18 +0200 | [diff] [blame^] | 295 | text.setAttribute('class', 'leaf'); |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 296 | text.setAttribute("text-anchor", "start"); |
| 297 | text.setAttribute("y", height); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 298 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 299 | this._y = height - (this.anchorStart); |
| 300 | |
| 301 | var ws = text.appendChild(this._c("tspan")); |
| 302 | ws.appendChild(document.createTextNode('\u00A0')); |
| 303 | ws.style.textAnchor = "start"; |
| 304 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 305 | var lastRight = 0; |
| 306 | for (var node_i in this._tokens) { |
| 307 | // Append svg |
| 308 | var tspan = text.appendChild(this._c("tspan")); |
| 309 | tspan.appendChild(document.createTextNode(this._tokens[node_i])); |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 310 | tspan.setAttribute("text-anchor", "middle"); |
| 311 | |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 312 | this._tokenElements.push(tspan); |
| 313 | |
| 314 | // Add whitespace! |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 315 | //var ws = text.appendChild(this._c("tspan")); |
| 316 | //ws.appendChild(document.createTextNode(" ")); |
| 317 | // ws.setAttribute("class", "rel-ws"); |
| 318 | tspan.setAttribute("dx", this.tokenSep); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 319 | }; |
| 320 | |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 321 | var globalBoundingBox = g.getBoundingClientRect(); |
| 322 | this.offsetLeft = globalBoundingBox.left; |
| 323 | |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 324 | var arcs = g.appendChild(this._c("g")); |
| 325 | arcs.classList.add("arcs"); |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 326 | |
| 327 | // Sort arcs if not sorted yet |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 328 | if (this._sortedArcs === undefined) { |
| 329 | this._sortArcs(); |
| 330 | }; |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 331 | |
| 332 | var i; |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 333 | |
| 334 | // Draw all anchors |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 335 | for (i in this._sortedAnchors) { |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 336 | arcs.appendChild(this._drawAnchor(this._sortedAnchors[i])); |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 337 | }; |
Akron | 1517513 | 2017-09-07 18:12:55 +0200 | [diff] [blame] | 338 | |
| 339 | |
| 340 | // draw all arcs |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 341 | for (i in this._sortedArcs) { |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 342 | arcs.appendChild(this._drawArc(this._sortedArcs[i])); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 343 | }; |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 344 | |
| 345 | var width = text.getBoundingClientRect().width; |
Akron | f3d7d8e | 2017-05-23 22:52:54 +0200 | [diff] [blame] | 346 | svg.setAttribute("width", width + 20); |
| 347 | svg.setAttribute("height", height + 20); |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 348 | svg.setAttribute("class", "relTree"); |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 349 | } |
Akron | d67d45b | 2017-05-18 21:47:38 +0200 | [diff] [blame] | 350 | }; |
| 351 | |
| 352 | function lengthSort (list, inclusive) { |
| 353 | |
| 354 | /* |
| 355 | * The "inclusive" flag allows to |
| 356 | * modify the behaviour for inclusivity check, |
| 357 | * e.g. if identical start or endpoints mean overlap or not. |
| 358 | */ |
| 359 | |
| 360 | var stack = []; |
| 361 | |
| 362 | // Iterate over all definitions |
| 363 | for (var i = 0; i < list.length; i++) { |
| 364 | var current = list[i]; |
| 365 | |
| 366 | // Check the stack order |
| 367 | var overlaps = 0; |
| 368 | |
| 369 | for (var j = (stack.length - 1); j >= 0; j--) { |
| 370 | var check = stack[j]; |
| 371 | |
| 372 | // (a..(b..b)..a) |
| 373 | if (current.first <= check.first && current.last >= check.last) { |
| 374 | overlaps = check.overlaps + 1; |
| 375 | break; |
| 376 | } |
| 377 | |
| 378 | // (a..(b..a)..b) |
| 379 | else if (current.first <= check.first && current.last >= check.first) { |
| 380 | |
| 381 | if (inclusive || (current.first != check.first && current.last != check.first)) { |
| 382 | overlaps = check.overlaps + (current.length == check.length ? 0 : 1); |
| 383 | }; |
| 384 | } |
| 385 | |
| 386 | // (b..(a..b)..a) |
| 387 | else if (current.first <= check.last && current.last >= check.last) { |
| 388 | |
| 389 | if (inclusive || (current.first != check.last && current.last != check.last)) { |
| 390 | overlaps = check.overlaps + (current.length == check.length ? 0 : 1); |
| 391 | }; |
| 392 | }; |
| 393 | }; |
| 394 | |
| 395 | // Set overlaps |
| 396 | current.overlaps = overlaps; |
| 397 | |
| 398 | stack.push(current); |
| 399 | |
| 400 | // Although it is already sorted, |
| 401 | // the new item has to be put at the correct place |
| 402 | // TODO: Use something like splice() instead |
| 403 | stack.sort(function (a,b) { |
| 404 | b.overlaps - a.overlaps |
| 405 | }); |
| 406 | }; |
| 407 | |
| 408 | return stack; |
| 409 | }; |
Akron | f5dc510 | 2017-05-16 20:32:57 +0200 | [diff] [blame] | 410 | }); |