From 8f6fa73cb955b9955abc9c9847f1b44cac541794 Mon Sep 17 00:00:00 2001 From: alyx Date: Thu, 2 Jun 2022 20:58:28 +0000 Subject: Rebranded! --- grapher/index.html | 6 +++--- grapher/script.js | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'grapher') diff --git a/grapher/index.html b/grapher/index.html index 3c88bad..aa275d2 100644 --- a/grapher/index.html +++ b/grapher/index.html @@ -3,10 +3,10 @@ - + - CV2 Node Graph Generator + RRC Node Graph Generator @@ -17,7 +17,7 @@ - + diff --git a/grapher/script.js b/grapher/script.js index 67fcfa3..3e3a155 100644 --- a/grapher/script.js +++ b/grapher/script.js @@ -34,7 +34,7 @@ Serialization format: */ -var v2data; +var rrcdata; var graph; var searcher; const rootel = document.documentElement; @@ -137,7 +137,7 @@ function delConnections(el) { function newChip(GUID) { const types = {}; - const typeParams = v2data.Nodes[GUID].NodeDescs[0].ReadonlyTypeParams; + const typeParams = rrcdata.Nodes[GUID].NodeDescs[0].ReadonlyTypeParams; for (const desc of Object.keys(typeParams)) types[desc] = [ `${desc}: ${typeParams[desc]}`, @@ -146,7 +146,7 @@ function newChip(GUID) { const ne = newEl('div', 'chipbox'); const chipcontainer = newEl('div', 'selUI'); - chipcontainer.append(generateChipHTML(v2data.Nodes[GUID].NodeDescs)); + chipcontainer.append(generateChipHTML(rrcdata.Nodes[GUID].NodeDescs)); ne.append(chipcontainer); graph.append(ne); @@ -159,7 +159,7 @@ function newChip(GUID) { el: ne, typeInfo: types, currentOverrides: {}, - nd: v2data.Nodes[GUID].NodeDescs, + nd: rrcdata.Nodes[GUID].NodeDescs, GUID: GUID, }; @@ -287,17 +287,17 @@ async function getPermalink() { }).then(m => m.text()) console.log(ret); linkerp.innerText = "Success! Permalinked at:" - linker.href = `https://cv2.aleteoryx.me/grapher/pl#${ret}` - linker.innerText = `https://cv2.aleteoryx.me/grapher/pl#${ret}` + linker.href = `https://circuits.aleteoryx.me/grapher/pl#${ret}` + linker.innerText = `https://circuits.aleteoryx.me/grapher/pl#${ret}` } window.onload = async function() { graph = document.getElementById("graph"); searcher = document.getElementById("searcher"); - v2data = await fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuitsv2.json") + rrcdata = await fetch(/*"https://raw.githubusercontent.com/tyleo-rec/CircuitsV2Resources/master/misc/circuitsv2.json"/*/"/circuits.json") .then(res => res.json()); - allTypes.push(...ListAllTypes(v2data.Nodes).sort((a,b) => (a.toLowerCase() > b.toLowerCase()) ? 1 : -1)); + allTypes.push(...ListAllTypes(rrcdata.Nodes).sort((a,b) => (a.toLowerCase() > b.toLowerCase()) ? 1 : -1)); window.onmessage = function({data}) { clean = false -- cgit v1.2.3-54-g00ecf