Haha-Yes/commands/fun/tts/dectalk.js

61 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-05-17 23:39:13 +02:00
const { Command } = require('discord-akairo');
2019-07-17 23:29:29 +02:00
const util = require('util');
const exec = util.promisify(require('child_process').exec);
2019-05-19 21:36:42 +02:00
const rand = require('../../../rand.js');
2019-05-17 23:39:13 +02:00
class dectalkCommand extends Command {
constructor() {
super('dectalk', {
aliases: ['dectalk', 'dec'],
category: 'fun',
2019-11-09 12:04:01 +01:00
clientPermissions: ['ATTACH_FILES'],
2019-05-17 23:39:13 +02:00
args: [
{
id: 'decMessage',
type: 'string',
2019-06-23 03:41:59 +02:00
prompt: {
start: 'Write something so i can say it back in dectalk',
},
2019-05-17 23:39:13 +02:00
match: 'rest'
}
],
description: {
2019-05-18 03:01:57 +02:00
content: 'Send a wav of what you wrote into .wav with dectalk',
usage: '[text]',
examples: ['This command is very epic']
2019-05-17 23:39:13 +02:00
}
});
}
async exec(message, args) {
2019-05-19 20:41:58 +02:00
args.decMessage = rand.random(args.decMessage, message);
2019-05-17 23:55:17 +02:00
args.decMessage = args.decMessage.replace('\n', ' ');
2019-11-04 22:19:30 +01:00
let decMessage = '[:phoneme on] ' + args.decMessage.replace(/(["\s'$`\\])/g,'\\$1');
2019-05-17 23:39:13 +02:00
2019-07-17 23:29:29 +02:00
if (process.platform == 'win32') {
2019-07-18 04:21:19 +02:00
exec(`cd .\\dectalk && .\\say.exe -w dectalk.wav "${decMessage}"`)
2019-07-17 23:29:29 +02:00
.catch(err => {
console.error(err);
return message.channel.send('Oh no! an error has occured!');
2019-07-17 23:29:29 +02:00
})
.then(() => {
return message.channel.send({files: ['./dectalk/dectalk.wav']});
});
2019-07-18 04:21:19 +02:00
} else if (process.platform == 'linux' || process.platform == 'darwin') {
let loadingmsg = await message.channel.send('Processing ( this can take some time ) <a:loadingmin:527579785212329984>');
2019-07-18 04:21:19 +02:00
exec(`cd dectalk && DISPLAY=:0.0 wine say.exe -w dectalk.wav "${decMessage}"`)
2019-07-17 23:29:29 +02:00
.catch(err => {
loadingmsg.delete();
console.error(err);
return message.channel.send('Oh no! an error has occured!');
2019-07-17 23:29:29 +02:00
})
.then(() => {
loadingmsg.delete();
2019-07-17 23:29:29 +02:00
return message.channel.send({files: ['./dectalk/dectalk.wav']});
});
}
2019-05-17 23:39:13 +02:00
}
}
module.exports = dectalkCommand;