Skip to content

Commit 9309b9d

Browse files
committed
connection established!
1 parent 4953cd9 commit 9309b9d

File tree

1 file changed

+43
-32
lines changed

1 file changed

+43
-32
lines changed

app/main.py

+43-32
Original file line numberDiff line numberDiff line change
@@ -83,37 +83,48 @@ class EyeSocket:
8383
def __init__(self):
8484
self.HOST = '127.0.0.1' # localhost
8585
self.PORT = 65432 # Port to listen on (use any free port > 1024)
86+
8687
self.server_socket = None
87-
self.thread = threading.Thread(target=self.acceptIncoming)
8888
self.running = False
89+
self.thread = threading.Thread(target=self.acceptIncoming)
8990
self.clients = []
9091

9192
def acceptIncoming(self):
92-
try:
93-
while self.running:
94-
client_socket, client_address = self.server_socket.accept()
95-
self.clients.append(client_socket, client_address)
96-
except Exception as e:
97-
print(f"Caught {e}")
98-
pass
93+
while self.running:
94+
try:
95+
if self.server_socket:
96+
client_socket, client_address = self.server_socket.accept()
97+
print(f"Accepting connection from: {client_socket}, {client_address} ")
98+
self.clients.append((client_socket, client_address))
99+
except Exception as e:
100+
print(f"Caught {e}")
101+
pass
99102

100103
def open(self):
101104
# Create a UDP socket
102-
self.server_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
103-
self.server_socket.bind((HOST, PORT))
104-
self.running = True
105+
self.server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
106+
self.server_socket.bind((self.HOST, self.PORT))
107+
self.server_socket.listen(10)
108+
if not self.running:
109+
self.running = True
110+
self.thread.start()
105111

106112
def send(self,data : dict) -> None:
107113
if self.server_socket:
108114
message = json.dumps(data)
109-
for client_socket, client_address in self.clients:
110-
self.server_socket.sendto(message.encode(), client_address)
115+
if len(self.clients):
116+
self.server_socket.sendall(message.encode())
111117

112118
def close(self,):
113-
self.running = False
114119
self.server_socket.close()
115120
self.server_socket = None
116121

122+
def quit(self):
123+
pass
124+
# self.running = False
125+
# self.thread.join()
126+
127+
117128

118129
class MyMainWindow(QMainWindow):
119130

@@ -185,7 +196,7 @@ def __init__(self):
185196
right_frame.setSignal("Settings","Cursor OFF/ON",signal=self.feature_cursor)
186197
right_frame.setSignal("Settings","Window Focus",signal=self.feature_focus)
187198
right_frame.setSignal("Settings","Display Blur",signal=self.feature_blur)
188-
right_frame.setSignal("Settings","Port open [WiP]",signal=self.feature_port)
199+
right_frame.setSignal("Settings","Port open",signal=self.feature_port)
189200

190201
desktop = QDesktopWidget()
191202
self.screen_geometry = desktop.screenGeometry(desktop.primaryScreen())
@@ -395,20 +406,21 @@ def main_loop(self):
395406

396407
self.tracker.setPosition(point[0], point[1])
397408

398-
hand_x, hand_y = self.eyeTracker.getHand(
399-
point[0],
400-
point[1],
401-
click = self.onPress,
402-
release = self.onRelease
403-
)
404-
if int(hand_x) == int(point[0]) and int(hand_y) == int(point[1]):
405-
self.handTracker.hide()
406-
else:
407-
self.handTracker.show()
408-
self.handTracker.setPosition(
409-
hand_x,
410-
hand_y,
411-
)
409+
# disable handtracking
410+
# hand_x, hand_y = self.eyeTracker.getHand(
411+
# point[0],
412+
# point[1],
413+
# click = self.onPress,
414+
# release = self.onRelease
415+
# )
416+
# if int(hand_x) == int(point[0]) and int(hand_y) == int(point[1]):
417+
# self.handTracker.hide()
418+
# else:
419+
# self.handTracker.show()
420+
# self.handTracker.setPosition(
421+
# hand_x,
422+
# hand_y,
423+
# )
412424

413425
if self.calibrationON:
414426
self.calibrationWidget.setPosition(calibration[0], calibration[1])
@@ -456,12 +468,11 @@ def main_loop(self):
456468
)
457469

458470
if self.feature_status_port:
459-
print(self.feature_status_port)
460471
payload = {
461472
"x" : point[0],
462473
"y" : point[1],
463-
"blink" : blink,
464-
"fixation" : fix,
474+
"blink" : int(blink),
475+
"fixation" : int(fix),
465476
}
466477

467478
self.sock.send(payload)

0 commit comments

Comments
 (0)