Browse Source

Maybe even better andling of connection reset error

feature/balanceutils
klonfish 7 years ago committed by klonfish
parent
commit
69b8086996
  1. 41
      wii-pair/daemon.py

41
wii-pair/daemon.py

@ -173,29 +173,32 @@ try: @@ -173,29 +173,32 @@ try:
conn, addr = s.accept()
while True:
try:
m = conn.recv(1)
except ConnectionResetError:
break
if len(m) == 0:
conn.close()
break
if len(m) == 0:
conn.close()
break
r = b''
for w in wiis:
if w.pos_x is None:
v = -128
else:
v = int(round(w.pos_x*100))
r += struct.pack('b', v)
if w.pos_y is None:
v = -128
else:
v = int(round(w.pos_y*100))
r += struct.pack('b', v)
r = b''
for w in wiis:
if w.pos_x is None:
v = -128
else:
v = int(round(w.pos_x*100))
r += struct.pack('b', v)
if w.pos_y is None:
v = -128
else:
v = int(round(w.pos_y*100))
r += struct.pack('b', v)
try:
conn.send(r)
except ConnectionResetError:
break
try:
conn.send(r)
except ConnectionResetError:
break
except (KeyboardInterrupt, SystemExit):
t1.stop = True
t2.stop = True

Loading…
Cancel
Save