From 84d292cfdad4249885e43b7123634e5a8dd0ff1f Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Wed, 18 Dec 2019 20:57:16 -0500 Subject: updated socket and space to export the main class --- examples/helloworld.js | 8 ++++---- examples/jarvis.js | 25 +++++++++++++++++++++---- examples/spam.js | 8 ++++---- 3 files changed, 29 insertions(+), 12 deletions(-) (limited to 'examples') diff --git a/examples/helloworld.js b/examples/helloworld.js index cc43666..4984914 100644 --- a/examples/helloworld.js +++ b/examples/helloworld.js @@ -1,9 +1,9 @@ -const ywot = require('../socket'); // Import direct library -const space = require('../space'); +const Socket = require('../socket'); // Import direct library +const Space = require('../space'); -writes = new space.Space(); //Generate a place to store potential writes +writes = new Space(); //Generate a place to store potential writes writes.adhoc('hello\nworld') // A method to fill internal data with inline code. -main = new ywot.Socket(''); // Open socket +main = new Socket('helloworld'); // Open socket at yourworldoftext.com/helloworld main.on('open',()=>{ // When socket opens main.write(writes.towrite([8,16])); // Tell the server to write the content of `writes` to }); diff --git a/examples/jarvis.js b/examples/jarvis.js index a130f17..e6bafc5 100644 --- a/examples/jarvis.js +++ b/examples/jarvis.js @@ -1,9 +1,22 @@ // A bot which responds to `jarvis` with a box -const space = require('../space'); -const socket = require('../socket'); +const Space = require('../space'); +const Socket = require('../socket'); +const getdims = require('../utils/getdims'); -var main = new socket.Socket(); +var main = new Socket(); + +function Sparse(){ // A "sparse" data-storage mechanism + this.data = []; + this.avail = []; + this.add = function(data){ + + } + this.del = function(id){ + this.avail.push(id); + this.data[id] = null; + } +} function equals(arg1,arg2){ // Just takes the specific case argument of each being an int pair return arg1[0] == arg2[0] && arg1[1] == arg2[1] @@ -22,5 +35,9 @@ main.on('open', ()=>{ // Tries to identify itself with a cursor movement }) main.on('identity', (sender) => { - + main.on('tileUpdate', (send, source, tiles) => { + if (send == sender) return; + // Get dimensions somehow + + }) } diff --git a/examples/spam.js b/examples/spam.js index 8134c76..53ac2af 100644 --- a/examples/spam.js +++ b/examples/spam.js @@ -1,8 +1,8 @@ // Sorry about writing this, but I want to maintain a notif about the API -const socket = require('../socket'); -const space = require('../space'); +const Socket = require('../socket'); +const Space = require('../space'); -let text = new space.Space(); +let text = new Space(); text.adhoc("\ \n\ For a node.js YWOT api: \n\ @@ -10,7 +10,7 @@ text.adhoc("\ "); let out = text.towrite([-6,20]); -let main = new socket.Socket(); +let main = new Socket(); function write(){ main.write(out.slice()); -- cgit