-
Notifications
You must be signed in to change notification settings - Fork 150
/
graph.js
173 lines (162 loc) · 5.88 KB
/
graph.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
/*Copyright 2021 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 { PX_WIDTH, PX_HEIGHT, sheetHash, sheetWidth, sheetHeight } from "./icon.js"
// Code common between the Sankey and boxline visualizations.
export const colorList = [
"#1f77b4", // blue
"#8c564b", // brown
"#2ca02c", // green
"#d62728", // red
"#9467bd", // purple
"#e377c2", // pink
"#17becf", // cyan
"#7f7f7f", // gray
"#bcbd22", // yellow
"#ff7f0e", // orange
]
export const iconSize = 32
export const colonWidth = 12
function itemNeighbors(item) {
let touching = new Set()
let recipes = item.recipes.concat(item.uses)
for (let recipe of recipes) {
let ingredients = recipe.getIngredients().concat(recipe.products)
for (let ing of ingredients) {
touching.add(ing.item)
}
}
return touching
}
function itemDegree(item) {
return itemNeighbors(item).size
}
export function getColorMaps(nodes, links) {
let itemColors = new Map()
let recipeColors = new Map()
let items = []
for (let link of links) {
items.push(link.item)
}
items.sort(function (a, b) {
return itemDegree(b) - itemDegree(a)
})
items = new Set(items)
while (items.size > 0) {
let chosenItem = null
let usedColors = null
let max = -1
for (let item of items) {
let neighbors = itemNeighbors(item)
let colors = new Set()
for (let neighbor of neighbors) {
if (itemColors.has(neighbor)) {
colors.add(itemColors.get(neighbor))
}
}
if (colors.size > max) {
max = colors.size
usedColors = colors
chosenItem = item
}
}
items.delete(chosenItem)
let color = 0
while (usedColors.has(color)) {
color++
}
itemColors.set(chosenItem, color)
}
// This is intended to be taken modulo the number of colors when it is
// actually used.
let recipeColor = 0
for (let node of nodes) {
let recipe = node.recipe
if (recipe.products.length === 1 && itemColors.has(recipe.products[0].item)) {
recipeColors.set(recipe, itemColors.get(recipe.products[0].item))
} else {
recipeColors.set(recipe, recipeColor++)
}
}
return [itemColors, recipeColors]
}
export function imageViewBox(obj) {
var x1 = obj.icon_col * PX_WIDTH + 0.5
var y1 = obj.icon_row * PX_HEIGHT + 0.5
return `${x1} ${y1} ${PX_WIDTH-1} ${PX_HEIGHT-1}`
}
export function renderNode(rects, nodeMargin, justification, recipeColors, ignore) {
rects.each(d => {
if (justification === "left") {
d.labelX = d.x0
} else {
d.labelX = (d.x0 + d.x1)/2 - d.width/2
}
})
// main rect
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(colorList[recipeColors.get(d.recipe) % colorList.length]).darker())
.attr("stroke", d => colorList[recipeColors.get(d.recipe) % colorList.length])
.each(function(d) { d.element = this })
// plain text node (output, surplus)
rects.filter(d => d.rate === null)
.append("text")
.attr("x", d => (d.x0 + d.x1) / 2)
.attr("y", d => (d.y0 + d.y1) / 2)
.attr("dy", "0.35em")
.attr("text-anchor", "middle")
.text(d => d.text())
let labeledNode = rects.filter(d => d.rate !== null)
// recipe icon
labeledNode.append("svg")
.attr("viewBox", d => imageViewBox(d.recipe))
.attr("x", d => d.labelX + nodeMargin + 0.5)
.attr("y", d => (d.y0 + d.y1) / 2 - iconSize/2 + 0.5)
.attr("width", iconSize)
.attr("height", iconSize)
.append("image")
.classed("ignore", d => ignore.has(d.recipe))
.attr("xlink:href", "images/sprite-sheet-" + sheetHash + ".png")
.attr("width", sheetWidth)
.attr("height", sheetHeight)
// node text (building count, or plain rate if no building)
labeledNode.append("text")
.attr("x", d => d.labelX + nodeMargin + iconSize + (d.building === null ? 0 : colonWidth + iconSize) /*+ 5*/)
.attr("y", d => (d.y0 + d.y1) / 2)
.attr("dy", "0.35em")
.text(d => d.text())
let buildingNode = rects.filter(d => d.building !== null)
// colon
buildingNode.append("circle")
.classed("colon", true)
.attr("cx", d => d.labelX + nodeMargin + iconSize + colonWidth/2)
.attr("cy", d => (d.y0 + d.y1) / 2 - 4)
.attr("r", 1)
buildingNode.append("circle")
.classed("colon", true)
.attr("cx", d => d.labelX + nodeMargin + iconSize + colonWidth/2)
.attr("cy", d => (d.y0 + d.y1) / 2 + 4)
.attr("r", 1)
// building icon
buildingNode.append("svg")
.attr("viewBox", d => imageViewBox(d.building))
.attr("x", d => d.labelX + iconSize + colonWidth + nodeMargin + 0.5)
.attr("y", d => (d.y0 + d.y1) / 2 - iconSize/2 + 0.5)
.attr("width", iconSize)
.attr("height", iconSize)
.append("image")
.attr("xlink:href", "images/sprite-sheet-" + sheetHash + ".png")
.attr("width", sheetWidth)
.attr("height", sheetHeight)
}