1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import collections
import json
from pathlib import Path
from random import choice
import discord
from discord.ext import commands
from pydis_core.utils.logging import get_logger
from bot.bot import Bot
from bot.constants import Colours
log = get_logger(__name__)
STATES = json.loads(Path("bot/resources/holidays/valentines/valenstates.json").read_text("utf8"))
class MyValenstate(commands.Cog):
"""A Cog to find your most likely Valentine's vacation destination."""
def levenshtein(self, source: str, goal: str) -> int:
"""Calculates the Levenshtein Distance between source and goal."""
if len(source) < len(goal):
return self.levenshtein(goal, source)
if len(source) == 0:
return len(goal)
if len(goal) == 0:
return len(source)
pre_row = list(range(len(source) + 1))
for i, source_c in enumerate(source):
cur_row = [i + 1]
for j, goal_c in enumerate(goal):
if source_c != goal_c:
cur_row.append(min(pre_row[j], pre_row[j + 1], cur_row[j]) + 1)
else:
cur_row.append(min(pre_row[j], pre_row[j + 1], cur_row[j]))
pre_row = cur_row
return pre_row[-1]
@commands.command()
async def myvalenstate(self, ctx: commands.Context, *, name: str | None = None) -> None:
"""Find the vacation spot(s) with the most matching characters to the invoking user."""
eq_chars = collections.defaultdict(int)
if name is None:
author = ctx.author.name.lower().replace(" ", "")
else:
author = name.lower().replace(" ", "")
for state in STATES:
lower_state = state.lower().replace(" ", "")
eq_chars[state] = self.levenshtein(author, lower_state)
matches = [x for x, y in eq_chars.items() if y == min(eq_chars.values())]
valenstate = choice(matches)
matches.remove(valenstate)
embed_title = "But there are more!"
if len(matches) > 1:
leftovers = f"{', '.join(matches[:-2])}, and {matches[-1]}"
embed_text = f"You have {len(matches)} more matches, these being {leftovers}."
elif len(matches) == 1:
embed_title = "But there's another one!"
embed_text = f"You have another match, this being {matches[0]}."
else:
embed_title = "You have a true match!"
embed_text = "This state is your true Valenstate! There are no states that would suit you better"
embed = discord.Embed(
title=f"Your Valenstate is {valenstate} \u2764",
description=STATES[valenstate]["text"],
colour=Colours.pink
)
embed.add_field(name=embed_title, value=embed_text)
embed.set_image(url=STATES[valenstate]["flag"])
await ctx.send(embed=embed)
async def setup(bot: Bot) -> None:
"""Load the Valenstate Cog."""
await bot.add_cog(MyValenstate())
|