@@ -83,37 +83,48 @@ class EyeSocket:
83
83
def __init__ (self ):
84
84
self .HOST = '127.0.0.1' # localhost
85
85
self .PORT = 65432 # Port to listen on (use any free port > 1024)
86
+
86
87
self .server_socket = None
87
- self .thread = threading .Thread (target = self .acceptIncoming )
88
88
self .running = False
89
+ self .thread = threading .Thread (target = self .acceptIncoming )
89
90
self .clients = []
90
91
91
92
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
99
102
100
103
def open (self ):
101
104
# 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 ()
105
111
106
112
def send (self ,data : dict ) -> None :
107
113
if self .server_socket :
108
114
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 ())
111
117
112
118
def close (self ,):
113
- self .running = False
114
119
self .server_socket .close ()
115
120
self .server_socket = None
116
121
122
+ def quit (self ):
123
+ pass
124
+ # self.running = False
125
+ # self.thread.join()
126
+
127
+
117
128
118
129
class MyMainWindow (QMainWindow ):
119
130
@@ -185,7 +196,7 @@ def __init__(self):
185
196
right_frame .setSignal ("Settings" ,"Cursor OFF/ON" ,signal = self .feature_cursor )
186
197
right_frame .setSignal ("Settings" ,"Window Focus" ,signal = self .feature_focus )
187
198
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 )
189
200
190
201
desktop = QDesktopWidget ()
191
202
self .screen_geometry = desktop .screenGeometry (desktop .primaryScreen ())
@@ -395,20 +406,21 @@ def main_loop(self):
395
406
396
407
self .tracker .setPosition (point [0 ], point [1 ])
397
408
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
+ # )
412
424
413
425
if self .calibrationON :
414
426
self .calibrationWidget .setPosition (calibration [0 ], calibration [1 ])
@@ -456,12 +468,11 @@ def main_loop(self):
456
468
)
457
469
458
470
if self .feature_status_port :
459
- print (self .feature_status_port )
460
471
payload = {
461
472
"x" : point [0 ],
462
473
"y" : point [1 ],
463
- "blink" : blink ,
464
- "fixation" : fix ,
474
+ "blink" : int ( blink ) ,
475
+ "fixation" : int ( fix ) ,
465
476
}
466
477
467
478
self .sock .send (payload )
0 commit comments