forked from KirkMcDonald/satisfactory-calculator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
visualize.js
354 lines (324 loc) · 10.7 KB
/
visualize.js
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/*Copyright 2019 Kirk McDonald
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
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.*/
import { toggleIgnoreHandler } from "./events.js"
import { spec } from "./factory.js"
import { Rational,zero,one } from "./rational.js"
import { Ingredient } from "./recipe.js"
const iconSize = 48
const nodePadding = 20
const columnWidth = 150
const maxNodeHeight = 175
function makeGraph(totals,targets,ignore) {
let outputs = []
let rates = new Map()
for (let target of targets) {
let rate = rates.get(target.item)
if (rate === undefined) {
rate = zero
}
rate = rate.add(target.getRate())
rates.set(target.item,rate)
}
for (let [item,rate] of rates) {
let ing = new Ingredient(item,rate)
outputs.push(ing)
}
let nodes = [{
"name": "output",
"ingredients": outputs,
"building": null,
"count": zero,
"rate": null,
"ignore": false,
}]
let nodeMap = new Map()
nodeMap.set("output",nodes[0])
for (let [recipe,rate] of totals.rates) {
let building = spec.getBuilding(recipe)
let count = spec.getCount(recipe,rate)
let node = {
"name": recipe.name,
"ingredients": recipe.ingredients,
"recipe": recipe,
"building": building,
"count": count,
"rate": rate,
"ignore": ignore.has(recipe),
}
nodes.push(node)
nodeMap.set(recipe.name,node)
}
let links = []
for (let node of nodes) {
if (node.ignore) {
continue
}
for (let ing of node.ingredients) {
let rate
if (node.name == "output") {
rate = ing.amount
} else {
rate = totals.rates.get(node.recipe).mul(ing.amount)
}
for (let subRecipe of ing.item.recipes) {
if (totals.rates.has(subRecipe)) {
let link = {
"source": nodeMap.get(subRecipe.name),
"target": node,
"value": rate.toFloat(),
"rate": rate,
}
let lanes = []
let laneCountExact = spec.getLaneCount(subRecipe,rate)
let laneCount = laneCountExact.toFloat()
for (let j = one; j.less(laneCountExact); j = j.add(one)) {
let i = j.toFloat()
lanes.push({ link,i,laneCount })
}
link.lanes = lanes
links.push(link)
}
}
}
}
return { "nodes": nodes,"links": links }
}
function recipeValue(recipe,rate,ignore) {
let inputValue = zero
if (!ignore.has(recipe)) {
for (let ing of recipe.ingredients) {
inputValue = inputValue.add(rate.mul(ing.amount))
}
}
let outputValue = rate.mul(recipe.products[0].amount)
if (inputValue.less(outputValue)) {
return outputValue
} else {
return inputValue
}
}
function rankHeightEstimate(rank,valueFactor) {
let total = nodePadding * (rank.length - 1)
for (let value of rank) {
total += value.mul(valueFactor).toFloat()
}
return total
}
function getRateString(d) {
return d.rate === null ? "" : `\u00d7 ${spec.format.rate(d.rate)}/${spec.format.rateName}`
}
function getMachineCountString(d) {
console.assert(!d.count.isZero(),"Items that aren't produced through machines can't have a machine count!")
return `\u00d7 ${spec.format.count(d.count)}`
}
function getOverclockString(d) {
console.assert(!d.count.isZero(),"Items that aren't produced through machines (machine count == 0) can't have an overclock value!")
return `${spec.getOverclock(d.recipe).mul(Rational.from_float(100)).toString()}%`
}
// This is basically an educated guess, but seems to match whatever Chrome and
// Firefox do pretty well.
function lanePath(d) {
let x0 = d.link.source.x1
let y0 = d.link.y0
let y0top = y0 - d.link.width / 2
let x1 = d.link.target.x0
let y1 = d.link.y1
let y1top = y1 - d.link.width / 2
let mid = (x1 - x0) / 2
let slope = (y1 - y0) / (x1 - x0)
let dy = d.link.width / d.laneCount
let y_offset = d.i * dy
let y0lane = y0top + y_offset
let y1lane = y1top + y_offset
let midAdjust = (d.link.width / 2 - y_offset) * slope
let x_control = x0 + mid + midAdjust
return `M ${x0},${y0lane} C ${x_control},${y0lane},${x_control},${y1lane},${x1},${y1lane}`
}
let color = d3.scaleOrdinal(d3.schemeCategory10)
export function renderTotals(totals,targets,ignore) {
let data = makeGraph(totals,targets,ignore)
let maxRank = 0
let ranks = new Map()
let largestValue = zero
let largestRecipe = null;
for (let [recipe,rank] of totals.heights) {
let rankList = ranks.get(rank)
if (rankList === undefined) {
rankList = []
ranks.set(rank,rankList)
}
if (rank > maxRank) {
maxRank = rank
}
let rate = totals.rates.get(recipe)
let value = recipeValue(recipe,rate,ignore)
if (largestValue.less(value)) {
largestValue = value
largestRecipe = recipe;
}
rankList.push(value)
}
if (largestValue.isZero()) {
return
}
let laneDensity = maxNodeHeight / spec.getLaneCount(largestRecipe,largestValue).toFloat()
// The width of the display is the number of ranks, times the width of each
// rank, plus a small constant for the output node.
let maxTextWidth = 0
let testSVG = d3.select("body").append("svg")
for (let node of data.nodes) {
let text = testSVG.append("text")
if (node.count.isZero()) {
text = text.text(getRateString(node))
} else {
text.append("tspan").attr("x",0).text(getMachineCountString(node))
text.append("tspan").attr("x",0).text(getOverclockString(node))
}
let textWidth = text.node().getBBox().width
text.remove()
if (textWidth > maxTextWidth) {
maxTextWidth = textWidth
}
}
testSVG.remove()
let nodeWidth = iconSize + maxTextWidth + 4
let width = maxRank * (nodeWidth + columnWidth) + nodeWidth
// The height of the display is normalized by the height of the tallest box
// in the graph. We define it to be (approximately) maxNodeHeight pixels
// high.
let valueFactor = Rational.from_float(maxNodeHeight).div(largestValue)
let largestEstimate = 0
for (let [rank,rankList] of ranks) {
let estimate = rankHeightEstimate(rankList,valueFactor)
if (estimate > largestEstimate) {
largestEstimate = estimate
}
}
let height = largestEstimate
let svg = d3.select("svg#graph")
.attr("viewBox",`0,0,${width + 20},${height + 20}`)
.style("width",width + 20)
.style("height",height + 20)
svg.selectAll("g").remove()
let sankey = d3.sankey()
.nodeWidth(nodeWidth)
.nodePadding(nodePadding)
.nodeAlign(d3.sankeyRight)
.extent([[10,10],[width + 10,height + 10]])
let { nodes,links } = sankey(data)
// Node rects
let rects = svg.append("g")
.classed("nodes",true)
.selectAll("rect")
.data(nodes)
.join("g")
.classed("node",true)
rects.append("rect")
.attr("x",d => d.x0)
.attr("y",d => d.y0)
.attr("height",d => d.y1 - d.y0)
.attr("width",d => d.x1 - d.x0)
.attr("fill",d => d3.color(color(d.name)).darker())
rects.filter(d => d.name != "output")
.append("image")
.classed("ignore",d => ignore.has(d.recipe))
.attr("x",d => d.x0 + 2)
.attr("y",d => d.y0 + (d.y1 - d.y0) / 2 - (iconSize / 2))
.attr("height",iconSize)
.attr("width",iconSize)
.attr("xlink:href",d => d.recipe.iconPath())
// For nodes without an associated machine, display the rate on a single line:
rects.filter(d => d.count.isZero())
.append("text")
.attr("x",d => d.x0 + iconSize + 2)
.attr("y",d => (d.y0 + d.y1) / 2)
.attr("dy","0.35em")
.attr("text-anchor","start")
.text(getRateString)
// For nodes with an associated machine, display the machine count on one
// line, and the overclock rate on the next line:
let twoLineText = rects.filter(d => !d.count.isZero())
.append("text")
.attr("x",d => d.x0 + iconSize + 2)
.attr("y",d => (d.y0 + d.y1) / 2)
.attr("dy","-0.15em") // (0.35em minus half a line's height (0.5em), maintaining vertical alignment)
.attr("text-anchor","start")
twoLineText.append("tspan")
.text(getMachineCountString)
twoLineText.append("tspan") // ("x" and "dy" are used to render the text on the next line)
.attr("x",d => d.x0 + iconSize + 2)
.attr("dy","1em")
.text(getOverclockString)
// Link paths
let link = svg.append("g")
.classed("links",true)
.selectAll("g")
.data(links)
.join("g")
//.style("mix-blend-mode", "multiply")
link.append("path")
.attr("fill","none")
.attr("stroke-opacity",0.3)
.attr("d",d3.sankeyLinkHorizontal())
.attr("stroke",d => color(d.source.name))
.attr("stroke-width",d => Math.max(1,d.width))
// Don't draw lanes if we have less than three pixels per lane.
if (laneDensity >= 3) {
link.append("g")
.selectAll("path")
.data(d => d.lanes)
.join("path")
.attr("fill","none")
.attr("stroke-opacity",0.3)
.attr("d",lanePath)
.attr("stroke",d => color(d.link.source.name))
.attr("stroke-width",1)
}
link.append("title")
.text(d => `${d.source.name} \u2192 ${d.target.name}\n${spec.format.rate(d.rate)}`)
link.append("text")
.attr("x",d => d.source.x1 + 6)
.attr("y",d => d.y0)
.attr("dy","0.35em")
.attr("text-anchor","start")
.text(d => spec.format.rate(d.rate) + "/" + spec.format.rateName)
// Overlay transparent rect on top of each node, for click events.
let rectElements = svg.selectAll("g.node").nodes()
let overlayData = []
// Flash the graph tab to be visible, so that the graph is laid out and
// the BBox is not empty.
let graphTab = d3.select("#graph_tab")
let origDisplay = d3.style(graphTab.node(),"display")
graphTab.style("display","block")
for (let i = 0; i < nodes.length; i++) {
let rect = rectElements[i].getBBox()
let node = nodes[i]
let recipe = node.recipe
if (recipe !== undefined) {
overlayData.push({ rect,node,recipe })
}
}
graphTab.style("display",origDisplay)
svg.append("g")
.classed("overlay",true)
.selectAll("rect")
.data(overlayData)
.join("rect")
.attr("stroke","none")
.attr("fill","transparent")
.attr("x",d => d.rect.x)
.attr("y",d => d.rect.y)
.attr("width",d => d.rect.width)
.attr("height",d => d.rect.height)
.on("click",toggleIgnoreHandler)
.append("title")
.text(d => d.node.name + (d.node.count.isZero() ? "" : `\n${d.node.building.name} ${getMachineCountString(d.node)}\n${getOverclockString(d.node)}`))
}