mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
Fixed chr command to take hex/oct/binary literals and added a base command
This commit is contained in:
parent
8d287c2f66
commit
24c6eaa9df
@ -103,11 +103,29 @@ class FunCommands(callbacks.Privmsg):
|
|||||||
Returns the character associated with the 8-bit value <number>
|
Returns the character associated with the 8-bit value <number>
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
i = int(privmsgs.getArgs(args))
|
i = privmsgs.getArgs(args)
|
||||||
|
if i.startswith('0x'):
|
||||||
|
base = 16
|
||||||
|
elif i.startswith('0b'):
|
||||||
|
base = 2
|
||||||
|
i = i[2:]
|
||||||
|
elif i.startswith('0'):
|
||||||
|
base = 8
|
||||||
|
else:
|
||||||
|
base = 10
|
||||||
|
i = int(i, base)
|
||||||
irc.reply(msg, chr(i))
|
irc.reply(msg, chr(i))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
irc.error(msg, 'That number doesn\'t map to an 8-bit character.')
|
irc.error(msg, 'That number doesn\'t map to an 8-bit character.')
|
||||||
|
|
||||||
|
def base(self, irc, msg, args):
|
||||||
|
"""<base> <number>
|
||||||
|
|
||||||
|
Converts to base <base> the number <number>
|
||||||
|
"""
|
||||||
|
(base, number) = privmsgs.getArgs(args, needed=2)
|
||||||
|
irc.reply(msg, str(long(number, int(base))))
|
||||||
|
|
||||||
def hexlify(self, irc, msg, args):
|
def hexlify(self, irc, msg, args):
|
||||||
"<text>; turn string into a hexstring."
|
"<text>; turn string into a hexstring."
|
||||||
text = privmsgs.getArgs(args)
|
text = privmsgs.getArgs(args)
|
||||||
|
Loading…
Reference in New Issue
Block a user