forked from lichess-bot-devs/lichess-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conversation.py
49 lines (42 loc) · 1.95 KB
/
conversation.py
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
from time import time
class Conversation():
def __init__(self, game, engine, xhr, version, challenge_queue):
self.game = game
self.engine = engine
self.xhr = xhr
self.version = version
self.challengers = challenge_queue
command_prefix = "!"
def react(self, line, game):
print("*** {} [{}] {}: {}".format(self.game.url(), line.room, line.username, line.text.encode("utf-8")))
if (line.text[0] == self.command_prefix):
self.command(line, game, line.text[1:].lower())
pass
def command(self, line, game, cmd):
if cmd == "commands" or cmd == "help":
self.send_reply(line, "Supported commands: !name, !howto, !eval, !queue")
elif cmd == "wait" and game.is_abortable():
game.ping(60, 120)
self.send_reply(line, "Waiting 60 seconds...")
elif cmd == "name":
self.send_reply(line, "{} (lichess-bot v{})".format(self.engine.name(), self.version))
elif cmd == "howto":
self.send_reply(line, "How to run your own bot: lichess.org/api#tag/Chess-Bot")
elif cmd == "eval" and line.room == "spectator":
stats = self.engine.get_stats()
self.send_reply(line, ", ".join(stats))
elif cmd == "eval":
self.send_reply(line, "I don't tell that to my opponent, sorry.")
elif cmd == "queue":
if self.challengers:
challengers = ", ".join(["@" + challenger.challenger_name for challenger in reversed(self.challengers)])
self.send_reply(line, "Challenge queue: {}".format(challengers))
else:
self.send_reply(line, "No challenges queued.")
def send_reply(self, line, reply):
self.xhr.chat(self.game.id, line.room, reply)
class ChatLine():
def __init__(self, json):
self.room = json.get("room")
self.username = json.get("username")
self.text = json.get("text")