89 lines
No EOL
2.8 KiB
JavaScript
89 lines
No EOL
2.8 KiB
JavaScript
const { Command } = require('discord-akairo');
|
|
const util = require('util');
|
|
const exec = util.promisify(require('child_process').exec);
|
|
const os = require('os');
|
|
const rand = require('../../../rand.js');
|
|
|
|
class dectalkvcCommand extends Command {
|
|
constructor() {
|
|
super('dectalkvc', {
|
|
aliases: ['dectalkvc', 'decvc'],
|
|
category: 'fun',
|
|
clientPermissions: ['SPEAK'],
|
|
args: [
|
|
{
|
|
id: 'decMessage',
|
|
type: 'string',
|
|
prompt: {
|
|
start: 'Write something so i can say it back in dectalk',
|
|
},
|
|
match: 'rest'
|
|
}
|
|
],
|
|
description: {
|
|
content: 'Repeat what you sent in the voice chat you are currently in',
|
|
usage: '[text]',
|
|
examples: ['This command is very epic']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
let output = `${os.tmpdir()}/${message.id}_dectalk.wav`;
|
|
args.decMessage = rand.random(args.decMessage, message);
|
|
args.decMessage = args.decMessage.replace('\n', ' ');
|
|
let decMessage = '[:phoneme on] ' + args.decMessage.replace(/(["'$`\\])/g,'\\$1');
|
|
|
|
if (process.platform == 'win32') {
|
|
exec(`cd .\\dectalk && .\\say.exe -w ${output} "${decMessage}"`)
|
|
.catch(err => {
|
|
console.error(err);
|
|
return message.channel.send('Oh no! an error has occurred!');
|
|
})
|
|
.then(async () => {
|
|
const voiceChannel = message.member.voice.channel;
|
|
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
|
try {
|
|
const connection = await voiceChannel.join();
|
|
const dispatcher = connection.play(output);
|
|
dispatcher.once('finish', () => voiceChannel.leave());
|
|
dispatcher.once('error', () => voiceChannel.leave());
|
|
return null;
|
|
} catch (err) {
|
|
voiceChannel.leave();
|
|
return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
|
|
}
|
|
});
|
|
|
|
} else if (process.platform == 'linux' || process.platform == 'darwin') {
|
|
let loadingmsg = await message.channel.send('Processing ( this can take some time ) <a:loadingmin:527579785212329984>');
|
|
|
|
exec(`cd dectalk && DISPLAY=:0.0 wine say.exe -w ${output} "${decMessage}"`)
|
|
.catch(err => {
|
|
loadingmsg.delete();
|
|
console.error(err);
|
|
return message.channel.send('Oh no! an error has occurred!');
|
|
})
|
|
.then(async () => {
|
|
const voiceChannel = message.member.voice.channel;
|
|
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
|
try {
|
|
loadingmsg.delete();
|
|
const connection = await voiceChannel.join();
|
|
const dispatcher = connection.play(output);
|
|
dispatcher.once('finish', () => voiceChannel.leave());
|
|
dispatcher.once('error', () => voiceChannel.leave());
|
|
return null;
|
|
} catch (err) {
|
|
voiceChannel.leave();
|
|
loadingmsg.delete();
|
|
return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = dectalkvcCommand; |