Compare commits
55 Commits
d510caa123
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
59dd7c793a | ||
|
|
a9f733227c | ||
|
|
19feb9a55f | ||
|
|
df3c682ff6 | ||
|
|
aca9a4b597 | ||
|
|
e4055ad99c | ||
|
|
5dcb928c35 | ||
|
|
8c7995340e | ||
|
|
84025d6a8b | ||
|
|
84b158cf21 | ||
|
|
7531a69904 | ||
|
|
c402628161 | ||
|
|
e9df99bdcb | ||
|
|
a0f1914ce6 | ||
|
|
857f1816f0 | ||
|
|
5ac935cc95 | ||
|
|
af9f15d11d | ||
|
|
7747eabce2 | ||
|
|
990e18d3da | ||
|
|
234bbb2bbc | ||
|
|
f46d5f008b | ||
|
|
a86ef925ff | ||
|
|
ad26d2635c | ||
|
|
8d98581cd9 | ||
|
|
c2cdd55f2d | ||
|
|
34b3269d54 | ||
|
|
5aa5b1852a | ||
|
|
c3cadc3169 | ||
|
|
29cbd77e35 | ||
|
|
2310352ad6 | ||
|
|
5cc3a428f3 | ||
|
|
bbe573d8f3 | ||
|
|
3196877c37 | ||
|
|
ab25066936 | ||
|
|
f384d595e4 | ||
|
|
4ada601fb2 | ||
|
|
13e0bb9a8c | ||
|
|
055440418e | ||
|
|
352efb9147 | ||
|
|
1212261b21 | ||
|
|
a807cbc2aa | ||
|
|
f85cac7f2f | ||
|
|
402dbc3923 | ||
|
|
54968f3fb4 | ||
|
|
1228928592 | ||
|
|
6a35049609 | ||
|
|
a29eba70f0 | ||
|
|
064b4eb0d4 | ||
|
|
5e396a4abe | ||
|
|
453a3b1b42 | ||
|
|
a1a9d698e2 | ||
|
|
48cf433a5c | ||
|
|
61e935b925 | ||
|
|
9a7ef61d93 | ||
|
|
bad5dc52f7 |
@@ -15,6 +15,6 @@
|
||||
"no-console": 0,
|
||||
"indent": ["error", "tab"],
|
||||
"no-tabs": 0,
|
||||
"max-len": [2, {"code": 400, "tabWidth": 4, "ignoreUrls": true}]
|
||||
"max-len": 0
|
||||
}
|
||||
}
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,5 +4,5 @@ config/*
|
||||
*.config.js
|
||||
!ecosystem.config.js
|
||||
*.sqlite
|
||||
points*.json
|
||||
points/*
|
||||
assets/mash-words.json
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
const fs = require('fs').promises;
|
||||
|
||||
/*
|
||||
const inflect = require('inflect');
|
||||
const tensify = require('tensify');
|
||||
|
||||
const dictionary = require('./dictionary.json');
|
||||
|
||||
function getTenses(word) {
|
||||
try {
|
||||
const { past, past_participle: participle } = tensify(word);
|
||||
@@ -15,26 +15,40 @@ function getTenses(word) {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
const dictionary = require('./dictionary.json');
|
||||
|
||||
async function init() {
|
||||
/*
|
||||
const formsDictionary = Object.fromEntries(Object.entries(dictionary).flatMap(([word, definition]) => {
|
||||
const plural = inflect.pluralize(word);
|
||||
const { past, participle } = getTenses(word);
|
||||
|
||||
return [
|
||||
[word, definition],
|
||||
...(plural && !dictionary[plural] ? [[plural, `Plural of ${word}`]] : []),
|
||||
...(past && !dictionary[past] ? [[past, `Past tense of ${word}`]] : []),
|
||||
...(participle && !dictionary[participle] ? [[past, `Past participle of ${word}`]] : []),
|
||||
...(plural && !dictionary[plural] ? [[plural, definition]] : []),
|
||||
...(past && !dictionary[past] ? [[past, definition]] : []),
|
||||
...(participle && !dictionary[participle] ? [[past, definition]] : []),
|
||||
];
|
||||
}));
|
||||
*/
|
||||
|
||||
const validWords = Object.entries(formsDictionary).filter(([word]) => /^[a-zA-Z]+$/.test(word));
|
||||
const validWords = Object.entries(dictionary).filter(([word]) => /^[a-zA-Z]+$/.test(word));
|
||||
|
||||
const sortedWords = validWords.reduce((acc, [rawWord, fullDefinition]) => {
|
||||
const word = rawWord.toLowerCase();
|
||||
const anagram = word.split('').sort().join('');
|
||||
const definitions = fullDefinition?.split(/\d+\.\s+/).filter(Boolean).map((definition) => definition.split('.')[0].toLowerCase());
|
||||
const definitions = fullDefinition
|
||||
?.split(/\d+\.\s+/).filter(Boolean).map((definition) => {
|
||||
const splitIndex = definition.indexOf('.', 16); // split after n characters to avoid splitting on e.g. abbreviated categories at the start of the definition: (Anat.)
|
||||
|
||||
if (splitIndex > -1) {
|
||||
return definition.slice(0, splitIndex).trim().toLowerCase();
|
||||
}
|
||||
|
||||
return definition.toLowerCase();
|
||||
}) || [];
|
||||
|
||||
if (!acc[anagram.length]) {
|
||||
acc[anagram.length] = {};
|
||||
|
||||
180184
assets/dictionary.json
Executable file → Normal file
180184
assets/dictionary.json
Executable file → Normal file
File diff suppressed because one or more lines are too long
102260
assets/dictionary_old.json
Executable file
102260
assets/dictionary_old.json
Executable file
File diff suppressed because one or more lines are too long
31
assets/words-to-dictionary.js
Normal file
31
assets/words-to-dictionary.js
Normal file
@@ -0,0 +1,31 @@
|
||||
'use strict';
|
||||
|
||||
const fs = require('fs').promises;
|
||||
|
||||
const words = require('./words.json');
|
||||
const wordsBlacklist = require('./words_blacklist.json');
|
||||
const dictionary = require('./dictionary.json');
|
||||
|
||||
// mainly lowercase names
|
||||
const blacklist = new Set(wordsBlacklist);
|
||||
|
||||
async function init() {
|
||||
const notNameWords = words.filter((word) => word.charAt(0) === word.charAt(0).toLowerCase() && !blacklist.has(word)); // don't include names for places, products, people, etc.
|
||||
|
||||
const definitions = Object.fromEntries(notNameWords.map((word) => {
|
||||
const normalizedWord = word.normalize('NFD').replace(/\p{Diacritic}/ug, '').toLowerCase().trim();
|
||||
const definition = dictionary[normalizedWord];
|
||||
const singular = normalizedWord.replace(/s$/, '');
|
||||
const singularDefinition = dictionary[singular];
|
||||
|
||||
return [normalizedWord, definition || singularDefinition || null];
|
||||
}));
|
||||
|
||||
const string = JSON.stringify(definitions, null, 4);
|
||||
|
||||
await fs.writeFile('./dictionary.json', string);
|
||||
|
||||
console.log(`Wrote ${Object.keys(definitions).length} words to ./dictionary.json`);
|
||||
}
|
||||
|
||||
init();
|
||||
89686
assets/words.json
Normal file
89686
assets/words.json
Normal file
File diff suppressed because it is too large
Load Diff
4
assets/words_blacklist.json
Normal file
4
assets/words_blacklist.json
Normal file
@@ -0,0 +1,4 @@
|
||||
[
|
||||
"ioctl",
|
||||
"xterm"
|
||||
]
|
||||
@@ -27,6 +27,7 @@ module.exports = {
|
||||
'chat',
|
||||
'mash',
|
||||
'trivia',
|
||||
'wordle',
|
||||
'letters',
|
||||
'numbers',
|
||||
'hunt',
|
||||
@@ -133,6 +134,12 @@ module.exports = {
|
||||
z: 1,
|
||||
},
|
||||
},
|
||||
wordle: {
|
||||
minLength: 3,
|
||||
length: 5,
|
||||
bonusDictionaryThreshold: 1000, // minimum dictionary size to assign bonus points, prevent people from scoring full bonus points from 1-word dictionaries
|
||||
mode: 'easy',
|
||||
},
|
||||
numbers: {
|
||||
length: 6,
|
||||
timeout: 90,
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.28.3",
|
||||
"version": "1.30.8",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "schat2-clive",
|
||||
"version": "1.28.3",
|
||||
"version": "1.30.8",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"better-sqlite3": "^8.3.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.28.3",
|
||||
"version": "1.30.8",
|
||||
"description": "Game host for SChat 2-powered chat sites",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -37,7 +37,7 @@ function onCommand(args, context) {
|
||||
return `${style.yellow(`(${coinFaces[result - 1]})`)} ${style.bold(result === 1 ? 'heads' : 'tails')}`; // eslint-disable-line no-irregular-whitespace
|
||||
}
|
||||
|
||||
return `${style.grey(dieFaces[result - 1] || '☐')} ${style.bold(result)}`; // eslint-disable-line no-irregular-whitespace
|
||||
return `${style.grey(dieFaces[result - 1] || '⬡')} ${style.bold(result)}`; // eslint-disable-line no-irregular-whitespace
|
||||
});
|
||||
|
||||
context.sendMessage(results.join(style.grey(' | ')), context.room.id, { label: type });
|
||||
|
||||
@@ -91,13 +91,20 @@ async function play(context) {
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(settings.timeout))} seconds, let's start!`, context.room.id);
|
||||
|
||||
try {
|
||||
await timers.setTimeout((settings.timeout / 3) * 1000, null, { signal: game.ac.signal });
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round((settings.timeout / 3) * 2)} seconds`))} left`, context.room.id);
|
||||
await timers.setTimeout((settings.timeout / 5) * 1000, null, { signal: game.ac.signal });
|
||||
|
||||
await timers.setTimeout((settings.timeout / 3) * 1000, null, { signal: game.ac.signal });
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round(settings.timeout / 3)} seconds`))} left`, context.room.id);
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round((settings.timeout / 5) * 4)} seconds`))} left`, context.room.id);
|
||||
await timers.setTimeout((settings.timeout / 5) * 1000, null, { signal: game.ac.signal });
|
||||
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round((settings.timeout / 5) * 3)} seconds`))} left`, context.room.id);
|
||||
await timers.setTimeout((settings.timeout / 5) * 1000, null, { signal: game.ac.signal });
|
||||
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round((settings.timeout / 5) * 2)} seconds`))} left`, context.room.id);
|
||||
await timers.setTimeout((settings.timeout / 5) * 1000, null, { signal: game.ac.signal });
|
||||
|
||||
context.sendMessage(`${getBoard(context)} You have ${style.bold(style.green(`${Math.round(settings.timeout / 5)} seconds`))} left`, context.room.id);
|
||||
await timers.setTimeout((settings.timeout / 5) * 1000, null, { signal: game.ac.signal });
|
||||
|
||||
await timers.setTimeout((settings.timeout / 3) * 1000, null, { signal: game.ac.signal });
|
||||
stop(context);
|
||||
} catch (error) {
|
||||
// abort expected, probably not an error
|
||||
|
||||
@@ -35,7 +35,7 @@ function start(length, context, attempt = 0) {
|
||||
|
||||
if (answers.some((answer) => answer.word === anagram)) {
|
||||
if (attempt >= 10) {
|
||||
context.sendMessage(`Sorry, I did not find a mashable ${length}-letter word`);
|
||||
context.sendMessage(`Sorry, I did not find a mashable ${length}-letter word`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -81,7 +81,9 @@ function play(rawWord, context, shouted) {
|
||||
}
|
||||
|
||||
if (answer) {
|
||||
const definition = answer.definitions[0] ? `: ${style.italic(`${answer.definitions[0].slice(0, 100)}${mash.answers[0].definitions[0].length > 100 ? '...' : ''}`)}` : '';
|
||||
const definition = answer.definitions[0]
|
||||
? `: ${style.italic(`${answer.definitions[0].slice(0, 100)}${answer.definitions[0].length > 100 ? '...' : ''}`)}`
|
||||
: '';
|
||||
|
||||
context.sendMessage(mash.answers.length === 1
|
||||
? `${style.bold(style.yellow(word))} is the right answer${definition}, ${style.bold(style.cyan(`${config.usernamePrefix}${context.user.username}`))} now has ${style.bold(`${context.user.points + 1} ${context.user.points === 0 ? 'point' : 'points'}`)}! There were no other options for ${style.bold(mash.anagram)}.`
|
||||
@@ -144,10 +146,19 @@ function define(word, context) {
|
||||
return;
|
||||
}
|
||||
|
||||
context.sendMessage(`No definition available for ${style.bold(word)}, ${config.usernamePrefix}${context.user.username}`, context.room.id);
|
||||
if (answer) {
|
||||
context.sendMessage(`${style.bold(word)} is in my dictionary, but I cannot provide a definition, ${config.usernamePrefix}${context.user.username}`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
context.sendMessage(`${style.bold(word)} is not in my dictionary, ${config.usernamePrefix}${context.user.username}`, context.room.id);
|
||||
}
|
||||
|
||||
function sanitizeDefinition(definition, answers) {
|
||||
if (!definition) {
|
||||
return 'No definition';
|
||||
}
|
||||
|
||||
return definition.replaceAll(/\w+/g, (word) => {
|
||||
if (answers.some((answer) => answer.word.includes(word))) {
|
||||
return '*'.repeat(word.length);
|
||||
|
||||
245
src/games/wordle.js
Normal file
245
src/games/wordle.js
Normal file
@@ -0,0 +1,245 @@
|
||||
'use strict';
|
||||
|
||||
const config = require('config');
|
||||
const crypto = require('crypto');
|
||||
|
||||
const style = require('../utils/style');
|
||||
const words = require('../../assets/mash-words.json');
|
||||
|
||||
const settings = { ...config.wordle };
|
||||
const wordles = new Map();
|
||||
|
||||
const alphabet = Array.from({ length: 26 }, (value, index) => String.fromCharCode(65 + index));
|
||||
|
||||
function getBoard(letters, showLetters, context) {
|
||||
const wordle = wordles.get(context.room.id);
|
||||
const prefix = config.platform === 'irc' ? '' : style.grey(style.code('['));
|
||||
|
||||
const middle = letters.map((letter) => {
|
||||
if (letter === null) {
|
||||
return config.platform === 'irc'
|
||||
? style.bgsilver(' ? ')
|
||||
: style.code(' '); // em space, U+2003, charcode 8195
|
||||
}
|
||||
|
||||
if (letter[1] === true) {
|
||||
return config.platform === 'irc'
|
||||
? style.bggreen(` ${letter[0].toUpperCase()}${style.green('*')}`)
|
||||
: style.green(style.bold(style.code(letter[0].toUpperCase())));
|
||||
}
|
||||
|
||||
if (letter[1] === false) {
|
||||
return config.platform === 'irc'
|
||||
? style.bgyellow(` ${letter[0].toUpperCase()}${style.yellow('?')}`)
|
||||
: style.orange(style.bold(style.code(letter[0].toUpperCase())));
|
||||
}
|
||||
|
||||
return config.platform === 'irc'
|
||||
? style.bgsilver(` ${letter[0].toUpperCase()} `)
|
||||
: style.grey(style.bold(style.code(letter[0].toUpperCase())));
|
||||
}).join(config.platform === 'irc' ? '' : style.grey(style.code('|')));
|
||||
|
||||
const suffix = config.platform === 'irc' ? '' : `${style.grey(style.code(']'))}`;
|
||||
|
||||
if (showLetters) {
|
||||
const letterBoard = Array.from(wordle.letters).map(([letter, state]) => {
|
||||
if (state === true) {
|
||||
return config.platform === 'irc'
|
||||
? style.bggreen(`${letter}${style.green('*')}`)
|
||||
: style.green(style.bold(letter));
|
||||
}
|
||||
|
||||
if (state === false) {
|
||||
return config.platform === 'irc'
|
||||
? style.bgyellow(`${letter}${style.yellow('?')}`)
|
||||
: style.orange(style.bold(letter));
|
||||
}
|
||||
|
||||
return config.platform === 'irc'
|
||||
? letter
|
||||
: style.grey(letter);
|
||||
}).join(config.platform === 'irc' ? ' ' : ' '); // regular space vs em space
|
||||
|
||||
return `${prefix}${middle}${suffix}${wordle.mode === 'hard' ? ' (Hard)' : ''} Letters: ${letterBoard}`; // eslint-disable-line no-irregular-whitespace
|
||||
}
|
||||
|
||||
return `${prefix}${middle}${suffix}`;
|
||||
}
|
||||
|
||||
function start(length = settings.length, mode = settings.mode, context) {
|
||||
const wordPool = words[length];
|
||||
|
||||
if (length < settings.minLength) {
|
||||
context.sendMessage(`Wordle must be at least ${settings.minLength} letters long.`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!wordPool) {
|
||||
context.sendMessage(`No words with ${length} letters available.`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
const wordList = Object.values(wordPool).flat();
|
||||
const word = wordList[crypto.randomInt(wordList.length)];
|
||||
|
||||
wordles.set(context.room.id, {
|
||||
word: word.word.toUpperCase(),
|
||||
wordList,
|
||||
mode,
|
||||
definitions: word.definitions,
|
||||
letters: new Map(alphabet.map((letter) => [letter, null])),
|
||||
guesses: [],
|
||||
});
|
||||
|
||||
if (config.platform === 'irc') {
|
||||
context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)}${mode === 'hard' ? ' (Hard)' : ''} guess the word with ${config.prefix}w [word]! ${style.bgsilver(' X ')} not in word; ${style.bgyellow(` X${style.yellow('?')}`)} wrong position; ${style.bggreen(` X${style.green('*')}`)} correct position.`, context.room.id); // eslint-disable-line no-irregular-whitespace
|
||||
} else {
|
||||
context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)}${mode === 'hard' ? ' (Hard)' : ''} guess the word with ${config.prefix}w [word]! ${style.grey(style.bold('X'))} not in word; ${style.orange(style.bold('X'))} wrong position; ${style.green(style.bold('X'))} correct position.`, context.room.id);
|
||||
}
|
||||
|
||||
context.logger.info(`Wordle started: ${word.word.toUpperCase()}`);
|
||||
}
|
||||
|
||||
function play(guess, context) {
|
||||
const wordle = wordles.get(context.room.id);
|
||||
|
||||
if (!wordle) {
|
||||
context.sendMessage(`There's no wordle going on. Start one with ${config.prefix}wordle [length]!`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!guess || guess.length !== wordle.word.length) {
|
||||
context.sendMessage(`Your guess needs to be ${wordle.word.length} letters.`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!wordle.wordList.some((definition) => definition.word.toLowerCase() === guess.toLowerCase())) {
|
||||
context.sendMessage(`The word '${guess}' is not in my dictionary.`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
const upperGuess = guess.toUpperCase();
|
||||
const occurrences = wordle.word.split('').reduce((acc, letter) => acc.set(letter, (acc.get(letter) || 0) + 1), new Map());
|
||||
|
||||
const guessLetters = upperGuess.split('');
|
||||
const check = guessLetters.map((letter) => [letter, null]);
|
||||
const prevGuess = wordle.guesses.at(-1)?.[1];
|
||||
|
||||
if (wordle.mode === 'hard' && prevGuess) {
|
||||
const prevLetters = prevGuess.split('');
|
||||
|
||||
const valid = prevLetters.every((letter, index) => {
|
||||
if (wordle.letters.get(letter) === false && !guessLetters.includes(letter)) {
|
||||
context.sendMessage(`(Hard) Your guess must include the letter ${config.platform === 'irc'
|
||||
? style.bgyellow(` ${letter} `)
|
||||
: `${style.grey(style.code('['))}${style.orange(style.bold(style.code(letter)))}${style.grey(style.code(']'))}`
|
||||
}.`, context.room.id);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (wordle.letters.get(letter) === true && letter === wordle.word[index] && letter !== guessLetters[index]) {
|
||||
context.sendMessage(`(Hard) Your guess must include the letter ${config.platform === 'irc'
|
||||
? style.bggreen(` ${letter} `)
|
||||
: `${style.grey(style.code('['))}${style.green(style.bold(style.code(letter)))}${style.grey(style.code(']'))}`
|
||||
} in the correct position.`, context.room.id);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
if (!valid) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// correct
|
||||
guessLetters.forEach((letter, index) => {
|
||||
if (wordle.word[index] === letter) {
|
||||
wordle.letters.set(letter, true);
|
||||
check[index] = [letter, true];
|
||||
}
|
||||
});
|
||||
|
||||
// wrong place
|
||||
guessLetters.forEach((letter, index) => {
|
||||
if (wordle.word.includes(letter)) {
|
||||
if (wordle.letters.get(letter) !== true) {
|
||||
wordle.letters.set(letter, false);
|
||||
}
|
||||
|
||||
const marks = check.filter(([checkLetter, status]) => checkLetter === letter && status !== null).length;
|
||||
|
||||
if (check[index][1] !== true && marks < occurrences.get(letter)) {
|
||||
check[index] = [letter, false];
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
wordle.letters.delete(letter);
|
||||
});
|
||||
|
||||
wordle.guesses = wordle.guesses.concat([[context.user.username, upperGuess]]);
|
||||
|
||||
if (upperGuess === wordle.word) {
|
||||
const assignBonusPoints = wordle.wordList.length > config.wordle.bonusDictionaryThreshold;
|
||||
const points = assignBonusPoints
|
||||
? Math.max((wordle.word.length + 1) - wordle.guesses.length, 1)
|
||||
: 1;
|
||||
|
||||
const definition = wordle.definitions[0] ? `: ${style.italic(`${wordle.definitions[0].slice(0, 100)}${wordle.definitions[0].length > 100 ? '...' : ''}`)}` : '';
|
||||
|
||||
context.setPoints(context.user, points, { key: wordle.mode === 'hard' ? 'hardle' : 'wordle' });
|
||||
|
||||
context.sendMessage(`${getBoard(check, false, context)} is correct in ${wordle.guesses.length} guesses! ${style.bold(style.cyan(`${config.usernamePrefix}${context.user.username}`))} gets ${points} ${points > 1 ? 'points' : 'point'}${assignBonusPoints ? '. ' : ` (${wordle.word.length}-letter dictionary too small for bonus points). `}${style.bold(wordle.word)}${definition}`, context.room.id);
|
||||
|
||||
wordles.delete(context.room.id);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
context.sendMessage(`${getBoard(check, true, context)}`, context.room.id);
|
||||
}
|
||||
|
||||
function onCommand(args, context) {
|
||||
const wordle = wordles.get(context.room.id);
|
||||
const length = args.map((arg) => Number(arg)).find(Boolean) || settings.length;
|
||||
const mode = args.find((arg) => arg === 'easy' || arg === 'hard')
|
||||
|| (context.command === 'hardle' && 'hard')
|
||||
|| settings.mode;
|
||||
|
||||
if (['guess', 'w'].includes(context.command)) {
|
||||
play(args[0], context);
|
||||
return;
|
||||
}
|
||||
|
||||
if (context.subcommand === 'stop') {
|
||||
if (wordle) {
|
||||
context.sendMessage(`The game was stopped by ${config.usernamePrefix}${context.user.username}. The word was ${style.bold(wordle.word)}.`, context.room.id);
|
||||
wordles.delete(context.room.id);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
context.sendMessage(`The there is no wordle going on, ${config.usernamePrefix}${context.user.username}, start one with ${config.prefix}wordle [length]!`, context.room.id);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!wordle && context.room.id) {
|
||||
start(length, mode, context);
|
||||
return;
|
||||
}
|
||||
|
||||
context.sendMessage(`There is already a ${wordle.word.length}-letter wordle going on, guess with ${config.prefix}w [word]!`, context.room.id);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
name: 'Wordle',
|
||||
commands: ['wordle', 'hardle', 'lingo', 'guess', 'w'],
|
||||
help: `Guess the ${settings.length}-letter word on the board. Submit a guess with ${config.prefix}w [word]. If the letter is green, it is in the correct place. If it is yellow, it is part of the word, but not in the correct place. The number of letters in the word is the highest score you can get. You lose 1 point per guess, down to 1 point. Change the numbers of letters or switch to hard mode with ~wordle [length] [hard] or ~hardle [length].`,
|
||||
onCommand,
|
||||
// onMessage,
|
||||
};
|
||||
15
src/play.js
15
src/play.js
@@ -3,6 +3,7 @@
|
||||
const config = require('config');
|
||||
const fs = require('fs').promises;
|
||||
const logger = require('simple-node-logger').createSimpleLogger();
|
||||
const { getWeek } = require('date-fns');
|
||||
const { argv } = require('yargs');
|
||||
// const timers = require('timers/promises');
|
||||
|
||||
@@ -15,14 +16,16 @@ const points = {};
|
||||
|
||||
async function initPoints(identifier) {
|
||||
try {
|
||||
const pointsFile = await fs.readFile(`./points-${identifier}.json`, 'utf-8');
|
||||
const pointsFile = await fs.readFile(`./points/points-${identifier}.json`, 'utf-8');
|
||||
|
||||
Object.assign(points, JSON.parse(pointsFile));
|
||||
} catch (error) {
|
||||
if (error.code === 'ENOENT') {
|
||||
logger.info('Creating new points file');
|
||||
|
||||
await fs.writeFile(`./points-${identifier}.json`, '{}');
|
||||
await fs.mkdir('./points', { recursive: true });
|
||||
|
||||
await fs.writeFile(`./points/points-${identifier}.json`, '{}');
|
||||
await initPoints(identifier);
|
||||
}
|
||||
}
|
||||
@@ -50,7 +53,8 @@ async function setPoints(identifier, defaultKey, user, value, { mode = 'add', ke
|
||||
points[gameKey][userKey] = value;
|
||||
}
|
||||
|
||||
await fs.writeFile(`./points-${identifier}.json`, JSON.stringify(points, null, 4));
|
||||
await fs.writeFile(`./points/points-${identifier}_backup${getWeek(new Date())}.json`, JSON.stringify(points, null, 4)); // weekly back-up
|
||||
await fs.writeFile(`./points/points-${identifier}.json`, JSON.stringify(points, null, 4));
|
||||
}
|
||||
|
||||
function getPoints(game, rawUsername, { user, room, command }) {
|
||||
@@ -117,6 +121,11 @@ async function getGames(bot, identifier) {
|
||||
const sendMessage = (body, roomId, options, recipient) => {
|
||||
const curatedBody = curateMessageBody(body, game, key, options);
|
||||
|
||||
if (!roomId && !recipient) {
|
||||
logger.error(`Missing room ID or recipient for message: ${body}`);
|
||||
return;
|
||||
}
|
||||
|
||||
if (config.platform === 'irc') {
|
||||
bot.client.say(/^#/.test(roomId) ? roomId : recipient, curatedBody);
|
||||
}
|
||||
|
||||
@@ -130,6 +130,8 @@ function handleError(error, socket, domain, data) {
|
||||
}
|
||||
}
|
||||
|
||||
const pongRegex = /^pong:\d+$/;
|
||||
|
||||
async function connect(bot, games) {
|
||||
const socket = {
|
||||
ws: { readyState: 0 },
|
||||
@@ -154,7 +156,7 @@ async function connect(bot, games) {
|
||||
socket.ws.on('message', async (msgData) => {
|
||||
const msg = msgData.toString();
|
||||
|
||||
if (typeof msg === 'string' && msg.includes('pong')) {
|
||||
if (typeof msg === 'string' && pongRegex.test(msg)) {
|
||||
logger.debug(`Received pong ${msg.split(':')[1]}`);
|
||||
return;
|
||||
}
|
||||
|
||||
35
src/tools/merge-point-users.js
Normal file
35
src/tools/merge-point-users.js
Normal file
@@ -0,0 +1,35 @@
|
||||
const path = require('path');
|
||||
const args = require('yargs').argv;
|
||||
const fs = require('fs').promises;
|
||||
|
||||
async function init() {
|
||||
await fs.copyFile(args.file, `${path.basename(args.file, path.extname(args.file))}_backup_${Date.now()}.json`);
|
||||
|
||||
const filepath = path.join(process.cwd(), args.file);
|
||||
const points = require(filepath); // eslint-disable-line
|
||||
|
||||
Object.entries(points).forEach(([game, scores]) => {
|
||||
const originKey = Object.keys(scores).find((userKey) => userKey.includes(`:${args.origin}`));
|
||||
const originScore = scores[originKey];
|
||||
|
||||
const targetKey = Object.keys(scores).find((userKey) => userKey.includes(`:${args.target}`));
|
||||
const targetScore = scores[targetKey];
|
||||
|
||||
if (typeof originScore === 'undefined' || typeof targetScore === 'undefined') {
|
||||
return;
|
||||
}
|
||||
|
||||
const totalScore = targetScore + originScore;
|
||||
|
||||
points[game][targetKey] = targetScore + originScore;
|
||||
delete points[game][originKey];
|
||||
|
||||
console.log(`${game} ${targetScore} (${args.target}) + ${originScore} (${args.origin}) = ${totalScore}`);
|
||||
});
|
||||
|
||||
await fs.writeFile(filepath, JSON.stringify(points, null, 4));
|
||||
|
||||
console.log(`Saved ${filepath}`);
|
||||
}
|
||||
|
||||
init();
|
||||
@@ -42,6 +42,7 @@ const styleMethods = (() => {
|
||||
return {
|
||||
...styles,
|
||||
forest: styles.green,
|
||||
orange: styles.yellow,
|
||||
code: bypass,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user