Bulk of functionality complete

This commit is contained in:
b 2021-06-20 07:37:59 -07:00
parent e2a2ae02db
commit afd7d0601f
2 changed files with 139 additions and 44 deletions

View file

@ -23,6 +23,50 @@
<div class="headerright" id = "headerright"> <div class="headerright" id = "headerright">
</div> </div>
</header> </header>
<table style="padding-bottom:20px">
<tr>
<td>
<button class = "button-narrow" id = "wand" onclick = "setData('wand')">
wands
</button>
</td>
<td>
<button class = "button-narrow" id = "spear" onclick = "setData('spear')">
spears
</button>
</td>
<td>
<button class = "button-narrow" id = "dagger" onclick = "setData('dagger')">
daggers
</button>
</td>
<td>
<button class = "button-narrow" id = "bow" onclick = "setData('bow')">
bows
</button>
</td>
<td>
<button class = "button-narrow" id = "relik" onclick = "setData('relik')">
reliks
</button>
</td>
<td>
</td>
<td>
<button class = "button-narrow" id = "powderToggle" onclick = "togglePowder()">
prepowder (true)
</button>
</td>
<td>
<button class = "button-narrow" id = "strDexToggle" onclick = "toggleStrDex()">
1.20.3 (false)
</button>
</td>
</tr>
</table>
<p id="info">
SELECTED ITEM TYPE: wand
</p>
<script src="https://d3js.org/d3.v7.js"></script> <script src="https://d3js.org/d3.v7.js"></script>
<script type="text/javascript" src="utils.js"></script> <script type="text/javascript" src="utils.js"></script>

View file

@ -69,11 +69,28 @@ _yAxis.append("text");
let _grid1 = graph.append("g"); let _grid1 = graph.append("g");
let _grid2 = graph.append("g"); let _grid2 = graph.append("g");
let dps_getter_func = d => 1;
let prepowder = true;
let strDex = false;
let dps_data = {};
let current_data = null;
let baseUrl = getUrl.protocol + "//" + getUrl.host + "/";// + getUrl.pathname.split('/')[1]; let baseUrl = getUrl.protocol + "//" + getUrl.host + "/";// + getUrl.pathname.split('/')[1];
(async function() { (async function() {
let dps_data = await (await fetch(baseUrl + "/dps_data_compress.json")).json() dps_data = await (await fetch(baseUrl + "/dps_data_compress.json")).json()
console.log(dps_data) console.log(dps_data)
dps_getter_func = d => d[4];
current_data = dps_data.wand;
d3.select(window)
.on("resize", function() {
redraw(current_data);
});
redraw(current_data);
}) ();
let colorMap = new Map( let colorMap = new Map(
[ [
["Normal", "#fff"], ["Normal", "#fff"],
@ -88,23 +105,20 @@ let baseUrl = getUrl.protocol + "//" + getUrl.host + "/";// + getUrl.pathname.sp
] ]
); );
const item_points = graph.append("g")
.attr("stroke", "black")
.selectAll("circle")
.data(dps_data.wand, d => d[2])
.join("circle")
.attr("fill", d => colorMap.get(d[3]))
.attr("r", d => 5)
.call(circle => circle.append("title")
.text(d => [d[0], d[2]].join("\n")));
function redraw(data) { function redraw(data) {
let max_dps_base = 0; let max_dps_base = 0;
let tmp = dps_getter_func;
let tmp2 = prepowder;
prepowder = false;
setGetterFunc();
for (let x of data) { for (let x of data) {
if (x[4] > max_dps_base) { if (dps_getter_func(x) > max_dps_base) {
max_dps_base = x[4]; max_dps_base = dps_getter_func(x);
} }
} }
dps_getter_func = tmp;
prepowder = tmp2;
let x = d3.scaleLinear([70, 105], [margin.left, bbox().width - margin.right]); let x = d3.scaleLinear([70, 105], [margin.left, bbox().width - margin.right]);
let y = d3.scaleLinear([0, max_dps_base * 1.1], [bbox().height - margin.bottom, margin.top]); let y = d3.scaleLinear([0, max_dps_base * 1.1], [bbox().height - margin.bottom, margin.top]);
let _bbox = bbox(); let _bbox = bbox();
@ -112,13 +126,50 @@ let baseUrl = getUrl.protocol + "//" + getUrl.host + "/";// + getUrl.pathname.sp
xAxis(_xAxis, x); xAxis(_xAxis, x);
yAxis(_yAxis, y); yAxis(_yAxis, y);
grid(_grid1, _grid2, x, y); grid(_grid1, _grid2, x, y);
item_points.data(data, d => d[2]) graph.selectAll('circle')
.data(data, d => d[0])
.join(
function(enter) {
return enter.append("circle")
.attr("fill", d => colorMap.get(d[3]))
.attr("cx", d => x(d[1])) .attr("cx", d => x(d[1]))
.attr("cy", d => y(d[4])); .attr("cy", d => y(dps_getter_func(d)))
.attr("r", d => 5)
.call(circle => circle.append("title")
.text(d => [d[0], "DPS: "+dps_getter_func(d)].join("\n")));
},
update => update.attr("cx", d => x(d[1]))
.attr("cy", d => y(dps_getter_func(d)))
.select("title")
.text(d => [d[0], "DPS: "+dps_getter_func(d)].join("\n")),
exit => exit.remove()
);
}
function setData(type) {
d3.select("#info").text("SELECTED ITEM TYPE: " + type);
current_data = dps_data[type];
redraw(current_data);
}
function setGetterFunc() {
if (prepowder && (!strDex)) dps_getter_func = d => d[4];
else if ((!prepowder) && (!strDex)) dps_getter_func = d => d[5];
else if (prepowder && strDex) dps_getter_func = d => d[6];
else dps_getter_func = d => d[7];
}
function togglePowder() {
prepowder = !prepowder;
d3.select("#powderToggle").text("prepowder ("+prepowder+")");
setGetterFunc();
redraw(current_data);
}
function toggleStrDex() {
strDex = !strDex;
d3.select("#strDexToggle").text("1.20.3 ("+strDex+")");
setGetterFunc();
redraw(current_data);
} }
d3.select(window)
.on("resize", function() {
redraw(dps_data.wand);
});
redraw(dps_data.wand);
}) ();