2019-10-05 19:36:45 -04:00
|
|
|
"""
|
2019-12-07 17:26:55 -05:00
|
|
|
Ham extension for qrm
|
2019-10-05 19:36:45 -04:00
|
|
|
---
|
2021-03-18 09:17:30 -04:00
|
|
|
Copyright (C) 2019-2021 Abigail Gold, 0x5c
|
2019-10-05 19:36:45 -04:00
|
|
|
|
2020-02-15 06:27:48 -05:00
|
|
|
This file is part of qrm2 and is released under the terms of
|
2020-01-31 06:50:50 -05:00
|
|
|
the GNU General Public License, version 2.
|
2019-10-05 19:36:45 -04:00
|
|
|
"""
|
2019-12-25 00:42:54 -05:00
|
|
|
|
2020-01-31 06:50:50 -05:00
|
|
|
|
2021-03-18 09:17:30 -04:00
|
|
|
import json
|
2019-10-18 08:27:05 -04:00
|
|
|
from datetime import datetime
|
2019-10-05 19:36:45 -04:00
|
|
|
|
|
|
|
import discord.ext.commands as commands
|
|
|
|
|
2019-12-06 01:19:42 -05:00
|
|
|
import common as cmn
|
2019-11-28 23:48:11 -05:00
|
|
|
from resources import callsign_info
|
|
|
|
|
2019-10-05 19:36:45 -04:00
|
|
|
|
|
|
|
class HamCog(commands.Cog):
|
2019-10-18 08:27:05 -04:00
|
|
|
def __init__(self, bot: commands.Bot):
|
2019-10-05 19:36:45 -04:00
|
|
|
self.bot = bot
|
2020-09-24 19:02:12 -04:00
|
|
|
self.pfxs = callsign_info.options
|
2021-03-18 09:17:30 -04:00
|
|
|
with open(cmn.paths.resources / "phonetics.1.json") as file:
|
|
|
|
d = json.load(file)
|
|
|
|
self.phonetics: dict[str, str] = d["phonetics"]
|
|
|
|
self.pweights: dict[str, int] = d["pweights"]
|
|
|
|
with open(cmn.paths.resources / "qcodes.1.json") as file:
|
|
|
|
self.qcodes: dict = json.load(file)
|
2019-10-05 19:36:45 -04:00
|
|
|
|
2020-01-30 06:15:42 -05:00
|
|
|
@commands.command(name="qcode", aliases=["q"], category=cmn.cat.ref)
|
2019-10-18 08:27:05 -04:00
|
|
|
async def _qcode_lookup(self, ctx: commands.Context, qcode: str):
|
2020-02-15 04:59:25 -05:00
|
|
|
"""Looks up the meaning of a Q Code."""
|
2020-02-25 20:36:21 -05:00
|
|
|
qcode = qcode.upper()
|
|
|
|
embed = cmn.embed_factory(ctx)
|
2021-03-18 09:17:30 -04:00
|
|
|
if qcode in self.qcodes:
|
2020-02-25 20:36:21 -05:00
|
|
|
embed.title = qcode
|
2021-03-18 09:17:30 -04:00
|
|
|
embed.description = self.qcodes[qcode]
|
2020-02-25 20:36:21 -05:00
|
|
|
embed.colour = cmn.colours.good
|
|
|
|
else:
|
|
|
|
embed.title = f"Q Code {qcode} not found"
|
|
|
|
embed.colour = cmn.colours.bad
|
2019-10-05 19:36:45 -04:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2020-01-30 06:15:42 -05:00
|
|
|
@commands.command(name="phonetics", aliases=["ph", "phoneticize", "phoneticise", "phone"], category=cmn.cat.ref)
|
2019-10-18 08:27:05 -04:00
|
|
|
async def _phonetics_lookup(self, ctx: commands.Context, *, msg: str):
|
2020-02-15 04:59:25 -05:00
|
|
|
"""Returns NATO phonetics for a word or phrase."""
|
2020-02-25 20:36:21 -05:00
|
|
|
result = ""
|
|
|
|
for char in msg.lower():
|
|
|
|
if char.isalpha():
|
2021-03-18 09:17:30 -04:00
|
|
|
result += self.phonetics[char]
|
2020-02-25 20:36:21 -05:00
|
|
|
else:
|
|
|
|
result += char
|
|
|
|
result += " "
|
|
|
|
embed = cmn.embed_factory(ctx)
|
|
|
|
embed.title = f"Phonetics for {msg}"
|
|
|
|
embed.description = result.title()
|
|
|
|
embed.colour = cmn.colours.good
|
2019-10-05 19:36:45 -04:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2020-01-30 06:15:42 -05:00
|
|
|
@commands.command(name="utc", aliases=["z"], category=cmn.cat.ref)
|
2019-10-18 08:27:05 -04:00
|
|
|
async def _utc_lookup(self, ctx: commands.Context):
|
2020-02-15 04:59:25 -05:00
|
|
|
"""Returns the current time in UTC."""
|
2020-02-25 20:36:21 -05:00
|
|
|
now = datetime.utcnow()
|
|
|
|
result = "**" + now.strftime("%Y-%m-%d %H:%M") + "Z**"
|
|
|
|
embed = cmn.embed_factory(ctx)
|
|
|
|
embed.title = "The current time is:"
|
|
|
|
embed.description = result
|
|
|
|
embed.colour = cmn.colours.good
|
2019-10-05 19:36:45 -04:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2020-01-04 14:46:40 -05:00
|
|
|
@commands.command(name="prefixes", aliases=["vanity", "pfx", "vanities", "prefix"], category=cmn.cat.ref)
|
2020-09-24 19:02:12 -04:00
|
|
|
async def _vanity_prefixes(self, ctx: commands.Context, country: str = ""):
|
2020-02-15 04:59:25 -05:00
|
|
|
"""Lists valid callsign prefixes for different countries."""
|
2020-09-24 19:02:12 -04:00
|
|
|
country = country.lower()
|
2019-12-16 03:49:34 -05:00
|
|
|
embed = cmn.embed_factory(ctx)
|
2020-09-24 19:02:12 -04:00
|
|
|
if country not in self.pfxs:
|
|
|
|
desc = "Possible arguments are:\n"
|
|
|
|
for key, val in self.pfxs.items():
|
|
|
|
desc += f"`{key}`: {val.title}{(' ' + val.emoji if val.emoji else '')}\n"
|
|
|
|
embed.title = f"{country} Not Found!"
|
|
|
|
embed.description = desc
|
2019-12-16 03:49:34 -05:00
|
|
|
embed.colour = cmn.colours.bad
|
2020-09-24 19:02:12 -04:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
return
|
2019-12-16 03:49:34 -05:00
|
|
|
else:
|
2020-09-24 19:02:12 -04:00
|
|
|
data = self.pfxs[country]
|
|
|
|
embed.title = data.title + (" " + data.emoji if data.emoji else "")
|
|
|
|
embed.description = data.desc
|
2019-12-16 03:49:34 -05:00
|
|
|
embed.colour = cmn.colours.good
|
2019-11-28 23:48:11 -05:00
|
|
|
|
2020-09-24 19:02:12 -04:00
|
|
|
for name, val in data.calls.items():
|
2019-12-16 03:49:34 -05:00
|
|
|
embed.add_field(name=name, value=val, inline=False)
|
2019-11-28 23:48:11 -05:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2019-12-15 12:51:43 -05:00
|
|
|
@commands.command(name="contests", aliases=["cc", "tests"], category=cmn.cat.ref)
|
|
|
|
async def _contests(self, ctx: commands.Context):
|
2019-12-16 03:49:34 -05:00
|
|
|
embed = cmn.embed_factory(ctx)
|
|
|
|
embed.title = "Contest Calendar"
|
2019-12-15 12:51:43 -05:00
|
|
|
embed.description = ("*We are currently rewriting the old, Chrome-based `contests` command. In the meantime, "
|
|
|
|
"use [the website](https://www.contestcalendar.com/weeklycont.php).*")
|
2019-12-16 03:49:34 -05:00
|
|
|
embed.colour = cmn.colours.good
|
2019-12-15 12:51:43 -05:00
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2020-03-30 18:56:29 -04:00
|
|
|
@commands.command(name="phoneticweight", aliases=["pw"], category=cmn.cat.ref)
|
|
|
|
async def _weight(self, ctx: commands.Context, *, msg: str):
|
|
|
|
"""Calculates the phonetic weight of a callsign or message."""
|
|
|
|
embed = cmn.embed_factory(ctx)
|
|
|
|
msg = msg.upper()
|
|
|
|
weight = 0
|
|
|
|
for char in msg:
|
|
|
|
try:
|
2021-03-18 09:17:30 -04:00
|
|
|
weight += self.pweights[char]
|
2020-03-30 18:56:29 -04:00
|
|
|
except KeyError:
|
|
|
|
embed.title = "Error in calculation of phonetic weight"
|
|
|
|
embed.description = f"Unknown character `{char}` in message"
|
|
|
|
embed.colour = cmn.colours.bad
|
|
|
|
await ctx.send(embed=embed)
|
|
|
|
return
|
|
|
|
embed.title = f"Phonetic Weight of {msg}"
|
|
|
|
embed.description = f"The phonetic weight is **{weight}**"
|
|
|
|
embed.colour = cmn.colours.good
|
|
|
|
await ctx.send(embed=embed)
|
|
|
|
|
2019-10-05 19:36:45 -04:00
|
|
|
|
2019-10-18 08:27:05 -04:00
|
|
|
def setup(bot: commands.Bot):
|
2019-10-05 19:36:45 -04:00
|
|
|
bot.add_cog(HamCog(bot))
|