PrismarineJS/mineflayer

promisify #725

rom1504 posted onGitHub

we can do something like https://nodejs.org/api/fs.html#fs_fs_promises_api to provide promises


i have not tested it but i think it should work

const mineflayer = require('mineflayer')
const { promisify } = require('util')

const promisifyPlugin = bot => {
  bot.promisify = n => {
    if (!bot[n] || bot[n] instanceof Promise) return
    bot[n] = promisify(bot[n])
  }
  ['wake', ...].forEach(bot.promisify)
}

const bot = mineflayer.createBot(...)
bot.loadPlugin(promisifyPlugin)
bot.once('login', () => {
  bot.wake().then(...)
})
posted by plexigras over 6 years ago

Yes it's of course possible to promisify mineflayer. My point was we could have a mineflayer.promises. That seems like a reasonable choice to support promises without breaking the API

On Thu, Oct 4, 2018, 11:06 plexigras notifications@github.com wrote:

i have not tested it but i think it should work

const mineflayer = require('mineflayer')const { promisify } = require('util') const promisifyPlugin = bot => { bot.promisify = n => { if (!bot[n] || bot[n] instanceof Promise) return bot[n] = promisify(bot[n]) } ['wake', ...].forEach(bot.promisify) } const bot = mineflayer.createBot(...)bot.loadPlugin(promisifyPlugin)bot.once('login', () => { bot.wake().then(...) })

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/PrismarineJS/mineflayer/issues/725#issuecomment-426942378, or mute the thread https://github.com/notifications/unsubscribe-auth/ACPN_kdtMviOurBWAYwbXBbrJ2u4exTHks5uhc-IgaJpZM4XHDD7 .

posted by rom1504 over 6 years ago

I think I can work on that in my spare time

posted by wvffle almost 6 years ago

On this something better we can do is support both callback and promise externally. Internally we would use only promises (and async/await)

posted by rom1504 almost 5 years ago

@rom1504 has funded $2.00 to this issue.


posted by issuehunt-app[bot] over 4 years ago

@imharvol has funded $2.00 to this issue.


posted by issuehunt-app[bot] over 4 years ago

@louis030195 has funded $2.00 to this issue.


posted by issuehunt-app[bot] over 4 years ago

I'm willing to do this, but do you really want to keep supporting callbacks? I think it's beneficial to the quality of the framework to implement this in a breaking way, with everything async/promisified and no more callbacks anywhere.

posted by ph0t0shop over 4 years ago

@ph0t0shop what's the benefit of removing callback for exposed functions ? All internal can use only promises and exposing callback is just something you call on all functions to add it.

posted by rom1504 over 4 years ago

That would mean a breaking change and that all the existing projects using mineflayer would have to be updated. IMO it’s not worth a breaking change over, there’s no practical benefit other than a slightly simpler API call.

posted by extremeheat over 4 years ago

Example

function callbackify (g) {
return function(a, cb) {
return g.then(r => {cb(r); return r;})
}
}
function f(a) {
const b = a+1
return Promise.resolve(b)
}
module.exports = callbackify(f)

(Callbackify can be generalised to handle any number of arguments easily enough)

posted by rom1504 over 4 years ago

My point is it would not even be simpler.

posted by rom1504 over 4 years ago

Read https://github.com/PrismarineJS/mineflayer/pull/984 too

On Tue, Dec 1, 2020, 02:16 ph0t0shop notifications@github.com wrote:

I'm willing to do this, but do you really want to keep supporting callbacks? I think it's beneficial to the quality of the framework to implement this in a breaking way, with everything async/promisified and no more callbacks anywhere.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/PrismarineJS/mineflayer/issues/725#issuecomment-736153065, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAR437XIBZAX6BYK5NEYSP3SSQ7X3ANCNFSM4FY4GD5Q .

posted by rom1504 over 4 years ago

Yes, but then it can't be the same function so one would have to call a different function depending on whether they want to use the async or the callback version. The way you listed with callbackify will not expose the promise version

posted by ph0t0shop over 4 years ago

Yes it does. The example I did make the function both take a callback and return a promise

posted by rom1504 over 4 years ago

These are all the functions that will need to be converted. Non-exposed ones are between parentheses. I'll probably start working on converting them

```bed#wake bed#sleep blocks#waitForChunksToLoad (book#write) (book#modifyBook) book#writeBook book#signBook chat#tabComplete chest#deposit chest#withdraw craft#craft (craft#craftOnce) creative#setInventorySlot creative#flyTo digging#dig dispenser#deposit dispenser#withdraw enchantment_table#enchant enchantment_table#takeTargetItem enchantment_table#putTargetItem enchantment_table#putLapis (furnace#takeSomething) furnace#takeInput furnace#takeFuel furnace#takeOutput (furnace#putSomething) furnace#putInput furnace#putFuel inventory#consume inventory#fish inventory#putSelectedItemRange inventory#activateBlock inventory#activateEntity inventory#activateEntityAt inventory#transfer inventory#placeBlock inventory#clickWindow inventory#putAway inventory#moveSlotItem physics#look physics#lookAt simple_inventory#tossStack simple_inventory#toss simple_inventory#unequip (simple_inventory#equipEmpty) simple_inventory#equip villager#openVillager villager#trade (villager#putRequirements) (villager#deposit)

posted by ph0t0shop over 4 years ago

@rom1504 has rewarded $5.40 to @ph0t0shop. See it on IssueHunt

  • :moneybag: Total deposit: $6.00
  • :tada: Repository reward(0%): $0.00
  • :wrench: Service fee(10%): $0.60
posted by issuehunt-app[bot] over 4 years ago

congrats and thanks @ph0t0shop !

posted by rom1504 over 4 years ago

Fund this Issue

$6.00
Rewarded

Rewarded pull request

Recent activities

ph0t0shop was rewarded by rom1504 for PrismarineJS/mineflayer# 725
over 4 years ago
rom1504 submitted an output to  PrismarineJS/ mineflayer# 725
over 4 years ago