Compare commits

..

No commits in common. "72c4622091639edd84d2c0fae14a736ba17fb759" and "1597acca727192688dd6361461a81a8cb993f850" have entirely different histories.

4 changed files with 13 additions and 39 deletions

View File

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

View File

@ -62,9 +62,6 @@ 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)]
@ -79,7 +76,7 @@ function command(username, message) {
}
}
if (username === bot.username && !message.startsWith(cfg.botAddressPrefix)) return
if (username === bot.username && !message.startsWith("!")) return
const player = bot.players[username] ? bot.players[username].entity : null
@ -91,12 +88,11 @@ function command(username, message) {
}
if (message.startsWith(cfg.botAddressPrefix) || cfg.botAddressRegex.test(message)) {
message = cfg.botAddressRegex.test(message) ? cfg.botAddressRegex.exec(message)[1] : message
console.log(message)
// remove `!`
message = message.startsWith(cfg.botAddressPrefix) ? message.slice(cfg.botAddressPrefix.length) : message
if (message.startsWith("!") || cfg.botAddress.test(message)) {
message = cfg.botAddress.test(message) ? cfg.botAddress.exec(message)[1] : message
console.log(message)
message = message.slice(1) // remove `!`
// TODO command dispatchEvent, for aliases
function subcommand(message) {
const message_parts = message.split(/\s+/)
@ -331,7 +327,7 @@ function command(username, message) {
}
break
case "info":
cfg.plugins.informer.command(message_parts.splice(1), player)
cfg.plugins.informer.command(message_parts.splice(1))
break
// case "use":
// bot.useOn(bot.nearestEntity())

View File

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

View File

@ -30,7 +30,6 @@
},
"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"