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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
| -
|
!
-
!
-
|
|
!
-
!
-
|
|
|
|
!
-
!
-
!
-
!
-
!
-
!
-
!
-
!
-
|
!
-
|
|
|
|
|
|
|
|
|
|
|
!
-
!
-
!
-
!
-
|
!
-
!
-
!
-
!
-
!
-
!
-
!
-
!
-
!
-
!
-
!
-
|
|
|
|
|
!
-
|
|
|
|
|
|
|
|
|
!
-
!
-
|
!
|
import os,sys
import copy
import socket
import threading
import sys
from tkinter import *
import tkinter as tk
from tkinter import scrolledtext
import tkinter.ttk as ttk
from tkinter import messagebox
from tkinter import filedialog
import time
PORT = 9998
class Com:
def __init__(self,host,window):
self.host=host
self.connected=False
self.soc=None
self.handle_thread=None
self.message_window=window
def set_message_window(self,window):
print("set_message_window",end='')
print(self.window)
self.message_window=window
def is_connected(sekf):
return self.connected
def connect_address(self,address):
self.host=address
self.connect()
def connect(self):
print("re connect to host "+self.host)
if self.soc !=None:
print("close the previous host, "+self.soc.gethostname())
try:
self.soc.close()
self.soc=None
time.sleep(2.0)
except:
print("close failed")
try:
self.soc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.soc.connect((self.host,PORT))
except Exception as e:
print("connect error.")
if self.message_window:
self.message_window.write_message("error when connect to "+self.host+":"+str(PORT))
self.connected=False
self.handle_thread=threading.Thread(target=self.handler)
self.handle_thread.start()
self.connected=True
if self.message_window:
self.message_window.write_message("connected to "+self.host+":"+str(PORT))
def send_command(self,command):
if self.soc!=None:
try:
self.soc.send(bytes(command,"utf-8"))
except KeyboardInterrupt:
if self.message_window:
self.message_window.write_message("error when sends "+command + " to "+self.host+":"+str(PORT))
self.soc.close()
exit()
else:
if self.host is not None:
self.message_window.write_message("no socket when sends "+command + " to "+self.host+":"+str(PORT))
else:
self.message_window.write_message("no host assigned when sends "+command)
def handler(self):
print("at client, connected, start handler")
while self.soc is not None:
try:
data = self.soc.recv(1024)
line="[receive]- {}".format(data.decode("utf-8"))
print(line)
if self.message_window:
self.message_window.write_message("from "+self.host+":"+str(PORT)+", "+line)
if self.message_window.recv_queue!=None:
self.message_window.recv_queue.append(line)
except Exception as e:
if self.message_window:
self.message_window.write_message(self.host+":"+str(PORT)+" closed")
if self.soc is not None:
self.soc.close()
self.soc=None
tb=sys.exec_info()[2]
print("message:{0}".format(e.with_traceback(tb)))
break
def close(self):
self.soc.close()
self.soc=None
class Coms:
def __init__(self):
self.coms=[None,None,None,None,None,None,None,None,None]
def connect_all(self):
self.coms[2]=Com("192.168.14.10" ,self.message_window) self.coms[0]=Com("192.168.14.11", self.message_window) self.coms[1]=Com("192.168.14.12",self.message_window) self.coms[3]=Com("192.168.14.13",self.message_window) self.coms[4]=Com("192.168.14.14",self.message_window) self.coms[5]=Com("192.168.14.15",self.message_window) self.coms[6]=Com("192.168.14.16",self.message_window) self.coms[8]=Com("192.168.14.18",self.message_window)
for i in range(len(self.coms)):
if self.coms[i]!=None:
self.coms[i].connect()
def connect_com_to_address(self,i,address):
print("connect_com_to_address("+str(i)+","+address+")")
if i<0 :
print("wrong plane number")
return
if i>len(self.coms) :
print("wrong plane number")
try:
if self.coms[i] is not None:
print("coms["+str(i)+"] is not None, connect, ")
self.coms[i].connect_address(address)
else:
print("coms["+str(i)+"] is None, connect, ")
self.coms[i]=Com(address,self.message_window)
self.coms[i].connect()
except Exception as e:
print("coms["+str(i)+"] connect error")
tb=sys.exec_info()[2]
print("message:{0}".format(e.with_traceback(tb)))
def set_message_window(self,window):
self.message_window=window
for i in range(len(self.coms)):
if self.coms[i]!=None:
self.coms[i].set_message_window(window)
else:
print("coms["+str(i)+"] is None, set_message_window, ")
def send_command_to_i(self,i,command):
if self.coms[i]!=None:
self.coms[i].send_command(command+"\n")
def send_command_to_all(self,command):
for i in range(len(self.coms)):
if self.coms[i]!=None:
self.coms[i].send_command(command+"\n")
def close_all(self):
for i in range(len(self.coms)):
if self.coms[i]!=None:
self.coms[i].close()
class Command_Panel:
def __init__(self,root,coms):
self.coms=coms
self.recv_queue=[]
self.root=root
self.root.title("command panel")
self.root.configure(background="white")
self.root.geometry("850x800")
self.notebook =ttk.Notebook(root)
self.main_tab=tk.Frame(self.notebook, bg='white')
self.script_tab=tk.Frame(self.notebook, bg='white')
self.notebook.add(self.main_tab, text="main", underline=0)
self.notebook.add(self.script_tab, text="script")
self.notebook.pack(expand=True, fill='both', padx=10, pady=10)
yy=10
self.connect_label=Label(self.main_tab,text="Servers",width=10)
self.connect_label.place(x=30,y=yy)
self.connect_button=Button(self.main_tab, text="connect",bd=2,bg='white',command=self.click_connect_button, width=8, relief=RIDGE)
self.connect_button.place(x=100,y=yy)
self.set_id_label=Label(self.main_tab,text="set id",width=10)
self.set_id_label.place(x=200,y=yy)
self.set_id_button=Button(self.main_tab, text="set id",bd=2,bg='white',command=self.click_set_id_button, width=8, relief=RIDGE)
self.set_id_button.place(x=270,y=yy)
self.clear_message_button=Button(self.main_tab, text="clear",bd=2,bg='white',command=self.clear_message, width=8, relief=RIDGE)
self.clear_message_button.place(x=370,y=yy)
yy=40
self.command_label=Label(self.main_tab,text="command", width=8)
self.command_label.place(x=30,y=yy)
self.command_field=Entry(self.main_tab,width=50)
self.command_field.place(x=150,y=yy)
self.enter_command_button=Button(self.main_tab,text="enter",bd=2,bg='white',command=self.enter_command,width=8,relief=RIDGE)
self.enter_command_button.place(x=550,y=yy)
self.run_script_button=Button(self.main_tab,text="run script",bd=2,bg='white',command=self.run_script,width=8,relief=RIDGE)
self.run_script_button.place(x=650,y=yy)
yy=70
self.command_field_label_1=Label(self.main_tab,text="command for ith", width=15)
self.command_field_label_1.place(x=30,y=yy)
self.command_field_for_ith_server=Entry(self.main_tab,width=40)
self.command_field_for_ith_server.place(x=150,y=yy)
self.ith_server_field=Entry(self.main_tab,width=5)
self.ith_server_field.place(x=450,y=yy)
self.ith_enter_button=Button(self.main_tab,text="enter",bd=2,bg='white',command=self.enter_ith_command,width=8,relief=RIDGE)
self.ith_enter_button.place(x=550,y=yy)
yy=100
self.command_field_label_2=Label(self.main_tab,text="command for all", width=15)
self.command_field_label_2.place(x=30,y=yy)
self.command_field_for_all_server=Entry(self.main_tab,width=50)
self.command_field_for_all_server.place(x=150,y=yy)
self.all_enter_button=Button(self.main_tab,text="enter",bd=2,bg='white',command=self.enter_all_command,width=8,relief=RIDGE)
self.all_enter_button.place(x=550,y=yy)
self.clear_message_button=Button(self.main_tab,text="clear_message",bd=2,bg='white',command=self.clear_message,width=8,relief=RIDGE)
self.clear_message_button.place(x=650,y=yy)
yy=130
self.message_frame=tk.Frame(self.main_tab,width=50,height=30)
self.message_frame.place(x=30,y=yy)
self.message_area=scrolledtext.ScrolledText(self.message_frame)
self.message_area.pack()
yy=10
self.dir_name_label=Label(self.script_tab,text="dir name",width=10)
self.dir_name_label.place(x=30,y=yy)
self.dir_name_field=Entry(self.script_tab,width=50)
self.dir_name_field.place(x=100,y=yy)
self.dir_button=Button(self.script_tab, text="directory",bd=2,bg='white',command=self.click_dir_button, width=10, relief=RIDGE)
self.dir_button.place(x=570,y=yy)
self.run_script_button2=Button(self.script_tab,text="run script",bd=2,bg='white',command=self.run_script,width=8, relief=RIDGE)
self.run_script_button2.place(x=680,y=yy)
yy=50
self.file_name_label=Label(self.script_tab,text="file name",width=10)
self.file_name_label.place(x=30,y=yy)
self.file_name_field=Entry(self.script_tab,width=50)
self.file_name_field.place(x=100,y=yy)
self.read_button=Button(self.script_tab, text="read",bd=2,bg='white',command=self.click_read_button, width=8, relief=RIDGE)
self.read_button.place(x=500,y=yy)
self.dir_button=Button(self.script_tab, text="select",bd=2,bg='white',command=self.click_select_file_button, width=10, relief=RIDGE)
self.dir_button.place(x=570,y=yy)
yy=100
self.script_frame=tk.Frame(self.script_tab,width=50,height=100)
self.script_frame.place(x=50,y=yy)
self.script_area=scrolledtext.ScrolledText(self.script_frame)
self.script_area.pack()
self.set_script()
self.display_help()
def set_script(self):
self.clear_message()
self.script_area.insert(tk.END,"time.sleep(10.0)\n")
self.script_area.insert(tk.END,"self.send_init_belt_command()\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"1\")\n")
self.script_area.insert(tk.END,"time.sleep(9.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(1.0)\n")
self.script_area.insert(tk.END,"self.send_stop_belt_command()\n")
self.script_area.insert(tk.END,"time.sleep(1.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"2\") #--- from home to place-01\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,100.0)\n")
self.script_area.insert(tk.END,"time.sleep(38.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"3\") #--- from home to place-01\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"back\")\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"6\") #--- place-02\n")
self.script_area.insert(tk.END,"time.sleep(6.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"back\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"back\")\n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"4\") #--- release 01\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(6.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"5\") #--to home---\n")
self.script_area.insert(tk.END,"time.sleep(15.0)\n")
self.script_area.insert(tk.END,"#---- virtical rotate \n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"7\") #--- grasp ---\n")
self.script_area.insert(tk.END,"time.sleep(5.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(1.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"8\") #--- virtical rotate, top to front \n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"back\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"back\")\n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,87.0)\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"back\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"back\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"9\") #--- release ---\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,85.0)\n")
self.script_area.insert(tk.END,"time.sleep(5.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"5\") #--- to home---\n")
self.script_area.insert(tk.END,"time.sleep(5.0)\n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,100.0)\n")
self.script_area.insert(tk.END,"time.sleep(10.0)\n")
self.script_area.insert(tk.END,"#---- horizontal rotate \n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,110.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"17\") #--- grasp for rotate, clock-wize---\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"18\") #--- horizontal rotate, clock-wise \n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"back\")\n")
self.script_area.insert(tk.END,"time.sleep(8.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(10.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"16\") #--- release \n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"back\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"5\") #--- to home---\n")
self.script_area.insert(tk.END,"self.send_move_command(28.0,100.0)\n")
self.script_area.insert(tk.END,"time.sleep(10.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"7\") #--- grasp ---\n")
self.script_area.insert(tk.END,"time.sleep(4.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"5\") #--- to home ---\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(1,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_move_command(88.0,10.0)\n")
self.script_area.insert(tk.END,"time.sleep(30.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"3\") #--- from home to place-01\n")
self.script_area.insert(tk.END,"time.sleep(1.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"go\")\n")
self.script_area.insert(tk.END,"time.sleep(3.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(2,\"back\")\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"6\") #--- place-02\n")
self.script_area.insert(tk.END,"time.sleep(10.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(2,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(8.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"back\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(2,\"back\")\n")
self.script_area.insert(tk.END,"time.sleep(2.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"4\") #--- release 01\n")
self.script_area.insert(tk.END,"time.sleep(7.0)\n")
self.script_area.insert(tk.END,"self.send_magnet_command(2,\"stop\")\n")
self.script_area.insert(tk.END,"self.send_magnet_command(0,\"stop\")\n")
self.script_area.insert(tk.END,"time.sleep(5.0)\n")
self.script_area.insert(tk.END,"self.send_arm_motion_command(\"5\") #--to home---\n")
self.script_area.insert(tk.END,"time.sleep(15.0)\n")
def click_read_button(self):
fn=self.file_name_field.get()
print("fn="+fn)
f=None
try:
f=open(fn,"r")
except Exception as e:
print("file open error.")
tb=sys.exec_info()[2]
print("message:{0}".format(e.with_traceback(tb)))
return
try:
self.script_area.delete(1.0,END)
line=f.readline()
while line:
print(line)
self.script_area.insert(END,line)
line=f.readline()
f.close()
except Exception as e:
print("file "+fn+" read error")
tb=sys.exec_info()[2]
print("message:{0}".format(e.with_traceback(tb)))
def click_dir_button(self):
iDir = os.path.abspath(os.path.dirname(__file__))
folder_name=tk.filedialog.askdirectory(initialdir=iDir)
if len(folder_name)==0:
print("cancel selcting folder")
else:
self.dir_name_field.insert(END,folder_name)
def click_select_file_button(self):
fType = [("python", "*.py")]
iDir=""
xdir=self.dir_name_field.get()
if xdir==None or xdir=="":
iDir=os.path.abspath(os.path.dirname(__file__))
else:
iDir=xdir
iFilePath=filedialog.askopenfilename(filetypes=fType, initialdir=iDir)
if iFilePath==None or iFilePath=="":
print("cancel")
else:
self.file_name_field.delete(0,END)
self.file_name_field.insert(END,iFilePath)
def enter_command(self):
print("enter_command")
command=self.command_field.get()
self.ex(command)
def run_script(self):
self.script=self.script_area.get(0.,END)
print("run_script:"+self.script)
exec(self.script)
def ini_recv_queue(self):
self.recv_queue=[]
def is_not_empty_recv_queue(self):
if len(recv_queue)>0 :
return True
return False
def are_in_the_recv_queue(self,messages):
for x in messages:
flag=False
for m in recv_queue:
if x in m:
flag=True
self.write_message("message "+x+" found!")
break
if flag==False:
return False
return True
def enter_ith_command(self):
command=self.command_field_for_ith_server.get()
ith_s=self.ith_server_field.get()
ith=int(ith_s)
print("send "+command+" to "+str(ith))
self.write_message("send "+command+" to "+str(ith))
self.coms.send_command_to_i(ith,command)
self.command_field_for_ith_server.delete(0,END)
def enter_all_command(self):
command=self.command_field_for_all_server.get()
print("send "+command+" to all")
self.write_message("send "+command+" to all")
self.coms.send_command_to_all(command)
self.command_field_for_all_server.delete(0,END)
def ex(self,command):
print("parse "+command)
command=self.r_b(command)
if self.parse_command(command):
self.write_message("OK")
print("OK")
else:
self.write_message("ERROR")
print("ERROR")
def write_message(self, message):
self.message_area.insert(tk.END,message)
self.message_area.insert(tk.END,'\n')
self.message_area.yview_moveto(1)
def clear_message(self):
self.message_area.delete("1.0",END)
def click_connect_button(self):
self.coms.connect_all()
def click_set_id_button(self):
self.ex("send \"set id=\\\"x\\\"\" to 2")
self.ex("send \"set id=\\\"y-l\\\"\" to 0")
self.ex("send \"set id=\\\"y-r\\\"\" to 1")
self.ex("send \"set id=\\\"b-0\\\"\" to 3")
self.ex("send \"set id=\\\"m-0\\\"\" to 4")
self.ex("send \"set id=\\\"m-1\\\"\" to 5")
self.ex("send \"set id=\\\"m-2\\\"\" to 6")
self.ex("send \"set id=\\\"a-0\\\"\" to 8")
def send_move_command(self,x,y):
self.ex("send \"id=\\\"x\\\" arduino moveTo "+str(x)+" \\\"mv-x\\\" \" to 2")
self.ex("send \"id=\\\"y-l\\\" arduino moveTo "+str(y)+" \\\"mv-yl\\\" \" to 0")
self.ex("send \"id=\\\"y-r\\\" arduino moveTo "+str(y)+" \\\"mv-yr\\\" \" to 1")
def send_init_belt_command(self):
self.ex("send \"id=\\\"b-0\\\" arduino set thresh 100\" to 3")
def send_stop_belt_command(self):
self.ex("send \"id=\\\"b-0\\\" arduino set thresh 0\" to 3")
def send_arm_motion_command(self,n):
self.ex("send \"id=\\\"a-0\\\" rcb4 motion "+n+" \" to 8")
def send_magnet_command(self,i,subcommand):
self.ex("send \"id=\\\"m-"+str(i)+"\\\" arduino "+subcommand+" \" to "+str(4+i))
def wait_until_receive(self,messages,timeout):
last_time=time.time()
for m in messages:
self.write_message("start receive "+m)
self.ini_recv_queue()
while True:
if self.is_not_empty_recv_queue():
if self.are_in_the_recv_queue(messages):
self.write_message(message+" received.")
self.ini_recv_queue()
return
time_now=time.time()
if time_now - last_time >timeout:
self.write_message("time over to receive "+message)
self.ini_recv_queue()
return
time.sleep(0.1)
def display_help(self):
self.write_message("send \"<command>\" to <i>\"")
self.write_message("send \"<command>\" to all\"")
self.write_message("connect <i> to \"<host ip>\"")
self.write_message("moveTo (<f> , <f>)")
self.write_message("arm motion <i>")
self.write_message("init belt")
self.write_message("stop belt")
self.write_message("magnet <i> go")
self.write_message("magnet <i> back")
self.write_message("magnet <i> off")
self.write_message("magnet <i> stop")
def parse_command(self,command):
rest=[""]
strc=[""]
ix=[0]
command=self.r_b(command)
print("parse_command("+command+")")
if self.parse_key("send ",command,rest):
print("parse_key(send "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_String_Constant(command,strc,rest):
print("strc="+strc[0]+",rest="+rest[0])
command=self.r_b(rest[0])
if self.parse_key("to ",command,rest):
command=self.r_b(rest[0])
if self.parse_key("all",command,rest):
self.write_message("send \""+strc[0]+"\" to all")
self.coms.send_command_to_all(strc[0])
return True
elif self.parse_p_int(command,ix,rest):
self.write_message("send \""+strc[0]+"\" to "+str(ix[0]))
self.coms.send_command_to_i(ix[0],strc[0])
return True
return False
return False
return False
elif self.parse_key("connect ",command,rest):
print("parse_key(connect "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_p_int(command,ix,rest):
print("parse_p_int("+command+","+str(ix[0])+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_key("to ",command,rest):
print("parse_key(to "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_String_Constant(command,strc,rest):
self.write_message("connect "+str(ix[0])+" to "+strc[0])
print("connect "+str(ix[0])+" to "+strc[0])
self.coms.connect_com_to_address(ix[0],strc[0])
return True
return False
return False
return False
elif self.parse_key("moveTo ",command,rest):
print("parse_key(moveTo "+command+","+rest[0]+")")
command=self.r_b(rest[0])
fx=0.0
fy=0.0
if self.parse_key("(",command,rest):
print("parse_key(( "+command+","+rest[0]+")")
fxx=[0.0]
fyy=[0.0]
command=self.r_b(rest[0])
if self.parse_p_float(command,fxx,rest):
command=self.r_b(rest[0])
fx=fxx[0]
if self.parse_key(",",command,rest):
command=self.r_b(rest[0])
if self.parse_p_float(command,fyy,rest):
command=self.r_b(rest[0])
fy=fyy[0]
if self.parse_key(")",command,rest):
self.send_move_command(fx,fy)
return True
return False
elif self.parse_key("init ",command,rest):
print("parse_key(init "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_key("belt", command,rest):
print("parse_key(belt"+command+","+rest[0]+")")
self.send_init_belt_command()
return True
return False
elif self.parse_key("stop ",command,rest):
print("parse_key(stop "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_key("belt", command,rest):
print("parse_key(belt"+command+","+rest[0]+")")
self.send_stop_belt_command()
return True
return False
elif self.parse_key("arm ",command,rest):
print("parse_key(arm "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_key("motion ", command,rest):
print("parse_key(motion "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_p_int(command,ix,rest):
print("parse_p_int("+command+","+str(ix[0])+","+rest[0]+")")
self.send_arm_motion_command(str(ix[0]))
return True
return False
return False
elif self.parse_key("magnet ",command,rest):
print("parse_key(magnet "+command+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_p_int(command,ix,rest):
print("parse_p_int("+command+","+str(ix[0])+","+rest[0]+")")
command=self.r_b(rest[0])
if self.parse_key("go",command,rest):
self.send_magnet_command(ix[0],"go")
return True
if self.parse_key("back",command,rest):
self.send_magnet_command(ix[0],"back")
return True
if self.parse_key("off",command,rest):
self.send_magnet_command(ix[0],"stop")
return True
if self.parse_key("stop",command,rest):
self.send_magnet_command(ix[0],"stop")
return True
return False
return False
return False
def parse_key(self,key,inx,rest):
keylen=len(key)
inlen=len(inx)
if inx.startswith(key):
rest[0]=inx[keylen:inlen]
return True
rest[0]=inx
return False
def parse_p_int(self,command,ix,rest):
print("parse_p_int("+command+",ix,rest)")
i=0
c=command[0]
if c in ['0','1','2','3','4','5','6','7','8','9']:
clen=len(command)
while True:
i=i*10+int(c)
command=command[1:clen]
clen=len(command)
if clen==0:
ix[0]=i
rest[0]=""
return True
print("parse_p_int command="+command)
c=command[0]
if not (c in ['0','1','2','3','4','5','6','7','8','9']):
ix[0]=i
rest[0]=command
return True
rest[0]=command
ix[0]=0
return False
def parse_p_float(self,command,fx,rest):
ixx=[0]
sxx=[0]
if self.parse_p_int(command,ixx,rest):
ix=ixx[0]
command=rest[0]
if self.parse_key(".",command,rest):
command=rest[0]
if self.parse_p_int(command,sxx,rest):
sx=sxx[0]
subscale=len(str(sx))
fxw=float(ix)+float(sx)/pow(10,subscale)
print("fx="+str(fxw))
fx[0]=fxw
else:
fxw=float(ix)
print("fx="+str(fxw))
fx[0]=fxw
return True
else:
fxw=float(ix)
print("fx="+str(fxw))
fx[0]=fxw
return True
else:
return False
def r_b(self,inx):
rx=[""]
while self.parse_key(" ",inx,rx):
inx=rx[0]
return rx[0]
def parse_String_Constant(self,inx,strc,rest):
rx=[""]
xstr=""
if self.parse_key('"',inx,rx):
inx=rx[0]
fx=inx[0]
xlen=len(inx)
while fx!='"':
if xlen==0:
return False
if fx=='\\':
inx=inx[1:xlen]
fx=inx[0]
xstr=xstr+fx
else:
xstr=xstr+fx
xlen=len(inx)
if xlen==0:
return False
inx=inx[1:xlen]
fx=inx[0]
if self.parse_key('"',inx,rx):
strc[0]=xstr
rest[0]=rx[0]
return True
return False
if __name__=="__main__":
root=Tk()
coms=Coms()
p=Command_Panel(root,coms)
coms.set_message_window(p)
root.mainloop()
|