discord-aquatic-bot/command.py

47 lines
1.2 KiB
Python
Raw Normal View History

2020-09-12 14:57:08 +08:00
WHITESPACES = [' ', '\t', '\n']
class Command:
command_prefix = '$'
__callbacks = {}
@staticmethod
def __getWords(string):
words = []
# Add whitespace to accept last word
string += " "
word = ""
for c in string:
if c in WHITESPACES and len(word) > 0:
words.append(word)
word = ""
elif c not in WHITESPACES:
word = word + c
return words
@staticmethod
def getCommand(string):
2020-09-12 14:57:08 +08:00
words = Command.__getWords(string);
if words[0].startswith(Command.command_prefix):
return words[0][1:]
return ""
@staticmethod
def getArgs(string):
2020-09-12 14:57:08 +08:00
words = Command.__getWords(string);
return words[1:]
@staticmethod
def registerCallback(command, callback):
Command.__callbacks[command] = callback
@staticmethod
async def call(channel, command):
func = Command.__callbacks.get(Command.getCommand(command), None)
2020-09-12 14:57:08 +08:00
if func is not None:
try:
await func(channel, *tuple(Command.getArgs(command)))
except TypeError:
await channel.send("Incorrect usage.")
2020-09-12 14:57:08 +08:00