Compare commits

...

3 Commits

Author SHA1 Message Date
jay 72c4622091 feat(informer): various improvements and fixes 3 years ago
jay 0757776d8b feat(command): 🎨 make botaddress prefix and regex more flexible and configurable 3 years ago
jay a0ffaf1654 build(typescript): 🚨 add @types dep to satisfy typescript errors 3 years ago
  1. 4
      lib/index.js
  2. 16
      lib/plugins/command.js
  3. 31
      lib/plugins/informer.js
  4. 1
      package.json

@ -86,7 +86,9 @@ reloadplugin = (event, filename, pluginpath) => {
fs.watch('./lib/plugins', reloadplugin)
cfg.bot = bot
cfg.botAddress = new RegExp(`^${bot.username} (!.+)`)
// TODO better name, or switch to array
cfg.botAddressPrefix = '!'
cfg.botAddressRegex = new RegExp(`^${bot.username} (${cfg.botAddressPrefix}.+)`)
cfg.quiet = true

@ -62,6 +62,9 @@ const events = {
const events_registered = []
function command(username, message) {
// TODO better name, maybe an array?
cfg.botAddressPrefix = cfg.botAddressPrefix || "!"
function fuzzyRespond(responses, probability = 1, timeout = 1) {
if (Math.random() < probability) {
const response = responses[Math.floor(Math.random() * responses.length)]
@ -76,7 +79,7 @@ function command(username, message) {
}
}
if (username === bot.username && !message.startsWith("!")) return
if (username === bot.username && !message.startsWith(cfg.botAddressPrefix)) return
const player = bot.players[username] ? bot.players[username].entity : null
@ -88,11 +91,12 @@ function command(username, message) {
}
if (message.startsWith("!") || cfg.botAddress.test(message)) {
message = cfg.botAddress.test(message) ? cfg.botAddress.exec(message)[1] : message
if (message.startsWith(cfg.botAddressPrefix) || cfg.botAddressRegex.test(message)) {
message = cfg.botAddressRegex.test(message) ? cfg.botAddressRegex.exec(message)[1] : message
console.log(message)
message = message.slice(1) // remove `!`
// remove `!`
message = message.startsWith(cfg.botAddressPrefix) ? message.slice(cfg.botAddressPrefix.length) : message
// TODO command dispatchEvent, for aliases
function subcommand(message) {
const message_parts = message.split(/\s+/)
@ -327,7 +331,7 @@ function command(username, message) {
}
break
case "info":
cfg.plugins.informer.command(message_parts.splice(1))
cfg.plugins.informer.command(message_parts.splice(1), player)
break
// case "use":
// bot.useOn(bot.nearestEntity())

@ -1,6 +1,7 @@
let cfg
let bot
let mcData
// import v from 'vec3'
const v = require('vec3')
function block(pos) {
@ -51,34 +52,47 @@ function item(
}
function entity(name) {
const entity = bot.nearestEntity((entity) => {
const entity = typeof name === "string" ? bot.nearestEntity((entity) => {
const ename = entity.name || entity.username
return name && ename ? ename == name : true
})
}) : entity
console.log(entity)
if (!entity) {
cfg.quiet || bot.chat("no entity")
return entity
}
let info = [entity.type, entity.name || entity.username]
let info = [entity.type, entity.username || entity.name]
// TODO various info depending on the type of entity; player, villager, etc
if (entity.metadata) info.push("len: " + entity.metadata.length)
cfg.quiet || bot.chat(info.join("; "))
return entity
}
function command(message_parts) {
function command(message_parts, player) {
if (message_parts.length > 0) {
cfg.info.recentCommand = message_parts
}
switch (message_parts.length) {
case 0:
// TODO most recent command?
block()
if (cfg.info.recentCommand) {
command(cfg.info.recentCommand, player)
} else {
// TODO dispatch on instance of entity, block, etc..
// TODO have the logic inside the function or with a utility function
block(player.position || player?.entity.position || null)
}
break;
case 1:
switch (message_parts[0]) {
case "i":
case "item":
item()
break
case "e":
case "entity":
entity()
break
case "b":
case "block":
default:
block()
@ -89,9 +103,11 @@ function command(message_parts) {
case 2:
switch (message_parts[0]) {
case "i":
case "item":
item(message_parts[1])
break
case "e":
case "entity":
default:
entity(message_parts[1])
@ -101,6 +117,7 @@ function command(message_parts) {
case 4:
switch (message_parts[0]) {
case "b":
case "block":
default:
block(message_parts.slice(1))
@ -110,6 +127,7 @@ function command(message_parts) {
break;
default:
cfg.quiet || bot.chat("info: unknown command")
break;
}
}
@ -119,6 +137,7 @@ const load = (config) => {
bot = cfg.bot
cfg.info = {
quiet: cfg.quiet,
recentCommand: null,
}
mcData = bot.mcData || (bot.mcData = require('minecraft-data')(bot.version))
}

@ -30,6 +30,7 @@
},
"homepage": "https://github.com/PrismarineJS/prismarine-template#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"jest": "^26.6.3",
"require-self": "^0.2.3",
"typescript": "^4.2.3"

Loading…
Cancel
Save