mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-16 15:57:54 +02:00
That Sign Won't Stop Me Command
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { createCanvas, loadImage, registerFont } = require('canvas');
|
||||
const path = require('path');
|
||||
const { wrapText } = require('../../util/Canvas');
|
||||
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'TragicMarker.otf'), { family: 'Tragic Marker' });
|
||||
|
||||
module.exports = class ThatSignWontStopMeCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'that-sign-wont-stop-me',
|
||||
aliases: ['sign-wont-stop-me', 'i-cant-read', 'because-i-cant-read', 'dw-sign'],
|
||||
group: 'edit-meme',
|
||||
memberName: 'lisa-presentation',
|
||||
description: 'Sends a "That Sign Won\'t Stop Me, I Can\'t read!" meme with the presentation of your choice.',
|
||||
throttling: {
|
||||
usages: 1,
|
||||
duration: 10
|
||||
},
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'PBS Kids',
|
||||
url: 'https://pbskids.org/',
|
||||
reason: 'Image, Original "Arthur" Show',
|
||||
reasonURL: 'https://pbskids.org/arthur/'
|
||||
},
|
||||
{
|
||||
name: 'Missy Meyer',
|
||||
url: 'https://missymeyer.com/',
|
||||
reason: 'Tragic Marker Font',
|
||||
reasonURL: 'https://missymeyer.com/tragic-marker-free-font'
|
||||
},
|
||||
{
|
||||
name: 'Overtime2005',
|
||||
url: 'https://github.com/Overtime2005',
|
||||
reason: 'Concept'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'text',
|
||||
prompt: 'What should the text of the sign be?',
|
||||
type: 'string',
|
||||
max: 500
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
async run(msg, { text }) {
|
||||
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'that-sign-wont-stop-me.png'));
|
||||
const canvas = createCanvas(base.width, base.height);
|
||||
const ctx = canvas.getContext('2d');
|
||||
ctx.drawImage(base, 0, 0);
|
||||
ctx.textAlign = 'center';
|
||||
ctx.textBaseline = 'top';
|
||||
ctx.font = '62px Tragic Marker';
|
||||
let fontSize = 62;
|
||||
while (ctx.measureText(text).width > 1002) {
|
||||
fontSize--;
|
||||
ctx.font = `${fontSize}px Tragic Marker`;
|
||||
}
|
||||
const lines = await wrapText(ctx, text, 334);
|
||||
const topMost = 220 - (((fontSize * lines.length) / 2) + ((10 * (lines.length - 1)) / 2));
|
||||
for (let i = 0; i < lines.length; i++) {
|
||||
const height = topMost + ((fontSize + 10) * i);
|
||||
ctx.fillText(lines[i], 210, height);
|
||||
}
|
||||
ctx.font = '16px Tragic Marker';
|
||||
fontSize = 16;
|
||||
while (ctx.measureText(text).width > 264) {
|
||||
fontSize--;
|
||||
ctx.font = `${fontSize}px Tragic Marker`;
|
||||
}
|
||||
const bLines = await wrapText(ctx, text, 88);
|
||||
const bTopMost = 640 - (((fontSize * bLines.length) / 2) + ((2 * (bLines.length - 1)) / 2));
|
||||
for (let i = 0; i < bLines.length; i++) {
|
||||
const height = bTopMost + ((fontSize + 2) * i);
|
||||
ctx.fillText(bLines[i], 280, height);
|
||||
}
|
||||
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'that-sign-wont-stop-me.png' }] });
|
||||
}
|
||||
};
|
||||
@@ -31,6 +31,11 @@ module.exports = class TuxedoPoohCommand extends Command {
|
||||
url: 'https://www.google.com/',
|
||||
reason: 'Noto Font',
|
||||
reasonURL: 'https://www.google.com/get/noto/'
|
||||
},
|
||||
{
|
||||
name: 'Overtime2005',
|
||||
url: 'https://github.com/Overtime2005',
|
||||
reason: 'Concept'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
|
||||
Reference in New Issue
Block a user