1 |
2e7e9634
|
Vincent Le Goff
|
|
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 |
|
|
"""This file contains the client that can connect to a MUD.
|
30 |
e1d2d0dc
|
Vincent Le Goff
|
|
31 |
|
|
It is launched in a new thread, so as not to block the main thread.
|
32 |
|
|
|
33 |
|
|
"""
|
34 |
|
|
|
35 |
4d2b7a46
|
Vincent Le Goff
|
import os
|
36 |
e1d2d0dc
|
Vincent Le Goff
|
import re
|
37 |
|
|
from telnetlib import Telnet, WONT, WILL, ECHO
|
38 |
|
|
import threading
|
39 |
|
|
import time
|
40 |
|
|
|
41 |
|
|
try:
|
42 |
11d4f23d
|
Vincent Le Goff
|
from UniversalSpeech import say
|
43 |
|
|
from UniversalSpeech import braille as display_braille
|
44 |
e1d2d0dc
|
Vincent Le Goff
|
except ImportError:
|
45 |
|
|
say = None
|
46 |
a4ca19ed
|
Vincent Le Goff
|
display_braille = None
|
47 |
e1d2d0dc
|
Vincent Le Goff
|
|
48 |
fa348e33
|
Vincent Le Goff
|
from sharp.engine import SharpScript
|
49 |
|
|
|
50 |
e1d2d0dc
|
Vincent Le Goff
|
|
51 |
|
|
ANSI_ESCAPE = re.compile(r'\x1b[^m]*m')
|
52 |
|
|
|
53 |
|
|
class Client(threading.Thread):
|
54 |
|
|
|
55 |
|
|
"""Class to receive data from the MUD."""
|
56 |
|
|
|
57 |
a5c338e8
|
Vincent Le Goff
|
def __init__(self, host, port=4000, timeout=0.1, engine=None,
|
58 |
|
|
world=None):
|
59 |
e1d2d0dc
|
Vincent Le Goff
|
"""Connects to the MUD."""
|
60 |
|
|
threading.Thread.__init__(self)
|
61 |
|
|
self.client = None
|
62 |
|
|
self.timeout = timeout
|
63 |
bf6b6eb0
|
Vincent Le Goff
|
self.engine = engine
|
64 |
a5c338e8
|
Vincent Le Goff
|
self.world = world
|
65 |
e1d2d0dc
|
Vincent Le Goff
|
self.running = False
|
66 |
a5c338e8
|
Vincent Le Goff
|
self.sharp_engine = SharpScript(engine, self, world)
|
67 |
e1d2d0dc
|
Vincent Le Goff
|
|
68 |
|
|
|
69 |
|
|
self.client = Telnet(host, port)
|
70 |
|
|
self.running = True
|
71 |
|
|
|
72 |
|
|
def run(self):
|
73 |
|
|
"""Run the thread."""
|
74 |
|
|
while self.running:
|
75 |
|
|
time.sleep(self.timeout)
|
76 |
|
|
msg = self.client.read_very_eager()
|
77 |
|
|
if msg:
|
78 |
f6bb9547
|
Vincent Le Goff
|
for line in msg.splitlines():
|
79 |
a5c338e8
|
Vincent Le Goff
|
for trigger in self.world.triggers:
|
80 |
f6bb9547
|
Vincent Le Goff
|
trigger.feed(line)
|
81 |
|
|
|
82 |
e1d2d0dc
|
Vincent Le Goff
|
self.handle_message(msg)
|
83 |
|
|
|
84 |
a4ca19ed
|
Vincent Le Goff
|
def handle_message(self, msg, force_TTS=False, screen=True,
|
85 |
|
|
speech=True, braille=True):
|
86 |
11d4f23d
|
Vincent Le Goff
|
"""When the client receives a message.
|
87 |
|
|
|
88 |
|
|
Parameters
|
89 |
a4ca19ed
|
Vincent Le Goff
|
msg: the text to be displayed (str)
|
90 |
11d4f23d
|
Vincent Le Goff
|
force_TTS: should the text be spoken regardless?
|
91 |
a4ca19ed
|
Vincent Le Goff
|
screen: should the text appear on screen?
|
92 |
11d4f23d
|
Vincent Le Goff
|
speech: should the speech be enabled?
|
93 |
|
|
braille: should the braille be enabled?
|
94 |
|
|
|
95 |
|
|
"""
|
96 |
e1d2d0dc
|
Vincent Le Goff
|
pass
|
97 |
|
|
|
98 |
fa348e33
|
Vincent Le Goff
|
def write(self, text):
|
99 |
|
|
"""Write text to the client."""
|
100 |
|
|
if text.startswith("#"):
|
101 |
|
|
self.sharp_engine.execute(text)
|
102 |
|
|
else:
|
103 |
|
|
self.client.write(text)
|
104 |
|
|
|
105 |
e1d2d0dc
|
Vincent Le Goff
|
|
106 |
|
|
class GUIClient(Client):
|
107 |
|
|
|
108 |
|
|
"""Client specifically linked to a GUI window.
|
109 |
|
|
|
110 |
|
|
This client proceeds to send the text it receives to the frame.
|
111 |
|
|
|
112 |
|
|
"""
|
113 |
|
|
|
114 |
a5c338e8
|
Vincent Le Goff
|
def __init__(self, host, port=4000, timeout=0.1, engine=None,
|
115 |
|
|
world=None):
|
116 |
|
|
Client.__init__(self, host, port, timeout, engine, world)
|
117 |
bf6b6eb0
|
Vincent Le Goff
|
self.window = None
|
118 |
e1d2d0dc
|
Vincent Le Goff
|
if self.client:
|
119 |
|
|
self.client.set_option_negotiation_callback(self.handle_option)
|
120 |
|
|
|
121 |
bf6b6eb0
|
Vincent Le Goff
|
def link_window(self, window):
|
122 |
|
|
"""Link to a window (a GUI object).
|
123 |
|
|
|
124 |
|
|
This objectt can be of various types. The client only interacts
|
125 |
|
|
with it in two ways: First, whenever it receives a message,
|
126 |
|
|
it sends it to the window's 'handle_message' method. It also
|
127 |
|
|
calls the window's 'handle_option' method whenever it receives
|
128 |
|
|
a Telnet option that it can recognize.
|
129 |
|
|
|
130 |
|
|
"""
|
131 |
|
|
self.window = window
|
132 |
fa348e33
|
Vincent Le Goff
|
window.client = self
|
133 |
bf6b6eb0
|
Vincent Le Goff
|
|
134 |
a4ca19ed
|
Vincent Le Goff
|
def handle_message(self, msg, force_TTS=False, screen=True,
|
135 |
|
|
speech=True, braille=True):
|
136 |
11d4f23d
|
Vincent Le Goff
|
"""When the client receives a message.
|
137 |
|
|
|
138 |
|
|
Parameters
|
139 |
|
|
msg: the text to be displayed (str)
|
140 |
|
|
force_TTS: should the text be spoken regardless?
|
141 |
a4ca19ed
|
Vincent Le Goff
|
screen: should the text appear on screen?
|
142 |
11d4f23d
|
Vincent Le Goff
|
speech: should the speech be enabled?
|
143 |
|
|
braille: should the braille be enabled?
|
144 |
|
|
|
145 |
|
|
"""
|
146 |
7b7e38e9
|
Vincent Le Goff
|
encoding = self.engine.settings["options.general.encoding"]
|
147 |
|
|
msg = msg.decode(encoding, "replace")
|
148 |
e1d2d0dc
|
Vincent Le Goff
|
msg = ANSI_ESCAPE.sub('', msg)
|
149 |
a4ca19ed
|
Vincent Le Goff
|
if self.window and screen:
|
150 |
bf6b6eb0
|
Vincent Le Goff
|
self.window.handle_message(msg)
|
151 |
|
|
|
152 |
|
|
|
153 |
11d4f23d
|
Vincent Le Goff
|
if self.engine.TTS_on or force_TTS:
|
154 |
833f56ad
|
Vincent Le Goff
|
|
155 |
|
|
window = self.window
|
156 |
|
|
focus = window.focus if window else True
|
157 |
|
|
if not focus and not self.engine.settings["options.TTS.outside"]:
|
158 |
11d4f23d
|
Vincent Le Goff
|
if not force_TTS:
|
159 |
|
|
return
|
160 |
833f56ad
|
Vincent Le Goff
|
|
161 |
11d4f23d
|
Vincent Le Goff
|
if say and speech:
|
162 |
e1d2d0dc
|
Vincent Le Goff
|
say(msg, interrupt=False)
|
163 |
a4ca19ed
|
Vincent Le Goff
|
if braille and display_braille:
|
164 |
11d4f23d
|
Vincent Le Goff
|
display_braille(msg)
|
165 |
e1d2d0dc
|
Vincent Le Goff
|
|
166 |
|
|
def handle_option(self, socket, command, option):
|
167 |
|
|
"""Handle a received option."""
|
168 |
bf6b6eb0
|
Vincent Le Goff
|
name = ""
|
169 |
e1d2d0dc
|
Vincent Le Goff
|
if command == WILL and option == ECHO:
|
170 |
bf6b6eb0
|
Vincent Le Goff
|
name = "hide"
|
171 |
e1d2d0dc
|
Vincent Le Goff
|
elif command == WONT and option == ECHO:
|
172 |
bf6b6eb0
|
Vincent Le Goff
|
name = "show"
|
173 |
|
|
|
174 |
|
|
if name and self.window:
|
175 |
|
|
self.window.handle_option(name) |