From 63267f93733d68b358e82eea52360334503133ce Mon Sep 17 00:00:00 2001 From: alyx Date: Tue, 15 Mar 2022 15:01:21 +0000 Subject: small bit of work on sims --- chipBehavior.js | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ grapher/script.js | 16 +++++++++-- 2 files changed, 96 insertions(+), 2 deletions(-) create mode 100644 chipBehavior.js diff --git a/chipBehavior.js b/chipBehavior.js new file mode 100644 index 0000000..04c500b --- /dev/null +++ b/chipBehavior.js @@ -0,0 +1,82 @@ +/* + Big object of code for each stateless chip. Each takes in (array<{type: String, value:any}>, {String:String}) + ^Ports^ ^typeoverrides^ + and returns an array or false. + int: bigint + float: number + bool: boolean + string: string + vector3: {x:number,y:number,z:number} + Player: Object ----------| These two have no meaning right now. null and undefined are invalid, everything else is valid. + Rec Room Object: Object -| +*/ +function dtr (n) {return n / 360 * Math.PI * 2} +function rtd (n) {return n / (Math.PI * 2) * 360} +const SchipBehaviors = { + //basic maths + "98b99011-9be8-43b3-89cc-1e9d55bd8b51": ([{value}], {T}) => { //abs + switch (T) { + case 'float': + return [Math.abs(value)] + break; + case 'int': + return [value < 0 ? value * -1n : value] + break; + default: + return false; + break; + } + }, + "0ccb153c-dd08-4f22-80fd-9d8c5940928c": (values, {T}) => { //add + switch(T) { + case 'int': + case 'float': + return [values.reduce((a,b) => a+b, 0)]; + break; + case 'Vector3': + return [values.reduce((a,b) => ({x:a.x+b.x,y:a.y+b.y,y:a.z+b.z}), {x:0,y:0,z:0})] + break; + default: + return false; + break; + } + }, + + //logic + "3fb9fd93-8d45-4395-b9a3-63a99a14442b": (values) => [values.reduce((a,{value:b}) => a && b, true)], //and + "b5dcded0-eb2b-468d-a4b9-ffb1054f6214": (values) => [values.reduce((a,{value:b}) => a || b, false)], //or + "ff551243-beb4-470e-ab48-9d616818d5e4": ([{value}]) => [!value], //not + "3663225d-e18d-40e6-a234-ef10378528be": ([{value:a},{value:b}]) => [a==b], //equals + "110c29b1-ac90-4a71-b3c0-53372aa134bc": ([{value:a},{value:b}]) => [a>b], //greater + "a10e7788-f016-4390-a68e-87d93b47edb1": ([{value:a},{value:b}]) => [a>=b], //greater equal + "7e58b3f4-2694-4ced-b3a8-0fe23f48f60f": ([{value:a},{value:b}]) => [a [a<=b], //less equal + + //trig + "46ce50b8-0a20-43d2-9646-484ce2a6752c": ([{value}]) => [rtd(Math.acos(dtr(value)))], + "aaa4e58f-16df-426a-b7a7-a654eab97037": ([{value}]) => [rtd(Math.asin(dtr(value)))], + "02d62908-550d-4f8b-8bc7-0960fb1b547f": ([{value:a},{value:b}]) => [rtd(Math.atan2(dtr(a),dtr(b)))], + "84646ed2-015e-4a8b-9d37-5115cb9ebadc": ([{value}]) => [rtd(Math.atan(dtr(value)))], + + //string + "77afc9dd-baa9-4312-b8b8-7ef479c840e6": ([{value:fmt}, ...props]) => + [props.reduce((p, {value:c}, i) => + p.replaceAll(`{${i}}`, c), + fmt)], + "aa24edab-c707-4cff-8c73-07e479b4cd07": ([{value:str}, {value:seq}]) => [Boolean(str.search(seq) != -1)], + "dcde9345-00f2-41fb-9a2d-5a938f39bfb5": ([{value:str}]) => [str.length], + "ad169649-1050-48c5-a540-f03a2059bcdb": ([{value:str}, {value:del}]) => [str.split(del)], + "6b92c345-e6bc-40d9-aae9-4754e634777c": ([{value:str}, {value:idx}]) => [[str.slice(0, idx), str.slice(idx)]], + "1af21999-38f8-4231-9de9-26b43f47fe0d": ([{value:str}, {value:seq}]) => [str.search(seq)], + "678f6d33-1e94-4be6-b959-0212c1a2207f": ([{value:str}]) => [str.toLowerCase()], + "8f5995c7-5af0-4064-9cb7-2b80d75d157f": ([{value:str}]) => [str.toUpperCase()], +} + +/* + Big object of code for each stateful(exec-having) chip. + "ReadonlyName": "String +*/ +const EchipBehaviors = { + +} +module.exports = SchipBehaviors; \ No newline at end of file diff --git a/grapher/script.js b/grapher/script.js index 5a8d8ef..67fcfa3 100644 --- a/grapher/script.js +++ b/grapher/script.js @@ -51,6 +51,7 @@ const chips = []; */ const connections = []; +var clean; var mode; var targ; var start; @@ -299,6 +300,7 @@ window.onload = async function() { allTypes.push(...ListAllTypes(v2data.Nodes).sort((a,b) => (a.toLowerCase() > b.toLowerCase()) ? 1 : -1)); window.onmessage = function({data}) { + clean = false switch(data.type) { case 'newChip': newChipHandler(data); @@ -346,6 +348,7 @@ window.onload = async function() { mode = 'drag'; else if (e.target == graph) switchID(null, 'selected') + clean = false } }); @@ -374,6 +377,7 @@ window.onload = async function() { break; } mode = null; + clean = false } }); @@ -382,12 +386,14 @@ window.onload = async function() { mode = ''; let tmp = connections.pop(); if ((tmp.i instanceof Element) && (tmp.o instanceof Element)) connections.push(tmp); + clean = false } if (e.buttons & 4) { graphPos.x += e.clientX - lastmp.x; graphPos.y += e.clientY - lastmp.y; graph.style.setProperty('--graphOffsetX', graphPos.x); graph.style.setProperty('--graphOffsetY', graphPos.y); + clean = false } switch (mode) { case 'drag': @@ -395,10 +401,13 @@ window.onload = async function() { let newchipy = Number(targ.style.getPropertyValue('--chipOffsetY')) + e.clientY - lastmp.y; targ.style.setProperty('--chipOffsetX', newchipx); targ.style.setProperty('--chipOffsetY', newchipy); + clean = false break; } lastmp.x = e.clientX; lastmp.y = e.clientY; + if (mode) + clean = false }); @@ -417,6 +426,7 @@ window.onload = async function() { chips.push(...tmp); } sel.remove(); + clean = false; } root.addEventListener("keydown", e => { @@ -439,11 +449,12 @@ window.onload = async function() { window.addEventListener("resize", e => { canvas.width = window.innerWidth; canvas.height = window.innerHeight; + clean = false }); (async function updateanim(t) { - + if(!clean) { ctx.clearRect(0,0,window.innerWidth,window.innerHeight); for(const wire of connections) { const points = []; @@ -470,7 +481,8 @@ window.onload = async function() { renderCurveBetweenPorts(...points); } } - + clean = true; + } requestAnimationFrame(updateanim); })() -- cgit v1.2.3-54-g00ecf