X-Git-Url: https://git.cworth.org/git?p=empires-server;a=blobdiff_plain;f=lmno.js;h=569d33d620244371488a64bcdca10b8804602b72;hp=d01b3e9478543b20c9a51196677a30a02c30edef;hb=771e0ce4711a7ed723d216c28ab8d1472463d3ef;hpb=219a2dafd6eea42e66181ef2345590028e18f684 diff --git a/lmno.js b/lmno.js index d01b3e9..569d33d 100644 --- a/lmno.js +++ b/lmno.js @@ -50,11 +50,32 @@ app.use(session({ saveUninitialized: false })); -nunjucks.configure("templates", { +const njx = nunjucks.configure("templates", { autoescape: true, express: app }); +njx.addFilter('active', function(list) { + if (list) + return list.filter(e => e.active === true); + else + return []; +}); + +njx.addFilter('idle', function(list) { + if (list) + return list.filter(e => e.active === false); + else + return []; +}); + +njx.addFilter('map_prop', function(list, prop) { + if (list) + return list.map(e => e[prop]); + else + return []; +}); + /* Load each of our game mini-apps. * * Each "engine" we load here must have a property .Game on the @@ -91,7 +112,8 @@ nunjucks.configure("templates", { const engines = { empires: require("./empires").Game, tictactoe: require("./tictactoe").Game, - scribe: require("./scribe").Game + scribe: require("./scribe").Game, + empathy: require("./empathy").Game }; class LMNO { @@ -100,7 +122,11 @@ class LMNO { } generate_id() { - return Array(4).fill(null).map(() => LMNO.letters.charAt(Math.floor(Math.random() * LMNO.letters.length))).join(''); + /* Note: The copy from Array(4) to [...Array(4)] is necessary so + * that map() will actually work, (which it doesn't on an array + * from Array(N) which is in this strange state of having "empty" + * items rather than "undefined" as we get after [...Array(4)] */ + return [...Array(4)].map(() => LMNO.letters.charAt(Math.floor(Math.random() * LMNO.letters.length))).join(''); } create_game(engine_name) { @@ -123,10 +149,10 @@ class LMNO { * 1. Vowels (AEIOU) to avoid accidentally spelling an unfortunate word * 2. Lowercase letters (replace with corresponding capital on input) * 3. N (replace with M on input) - * 4. P (replace with B on input) - * 5. S (replace with F on input) + * 4. B (replace with P on input) + * 5. F,X (replace with S on input) */ -LMNO.letters = "BCDFGHJKLMQRTVWXYZ"; +LMNO.letters = "CCDDDGGGHHJKLLLLMMMMPPPPQRRRSSSTTTVVWWYYZ"; const lmno = new LMNO(); @@ -137,8 +163,9 @@ function lmno_canonize(id) { /* Replace unused letters with nearest phonetic match. */ id = id.replace(/N/g, 'M'); - id = id.replace(/P/g, 'B'); - id = id.replace(/S/g, 'F'); + id = id.replace(/B/g, 'P'); + id = id.replace(/F/g, 'S'); + id = id.replace(/X/g, 'S'); /* Replace unused numbers nearest visual match. */ id = id.replace(/0/g, 'O'); @@ -277,12 +304,12 @@ app.get('/admin/', auth_admin, (request, response) => { let idle = []; for (let id in lmno.games) { - if (lmno.games[id].players.length) + if (lmno.games[id].players.filter(p => p.active).length > 0) active.push(lmno.games[id]); else idle.push(lmno.games[id]); } - response.render('admin.html', { test: "foobar", games: { active: active, idle: idle}}); + response.render('admin.html', { games: { active: active, idle: idle}}); });