-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvivado_pid9976.str
More file actions
4537 lines (4526 loc) · 334 KB
/
Copy pathvivado_pid9976.str
File metadata and controls
4537 lines (4526 loc) · 334 KB
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
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Vivado v2016.2 (64-bit)
SW Build 1577090 on Thu Jun 2 16:32:40 MDT 2016
Process ID: 9976
Current time: 1/6/20 11:37:37 AM CST
Time zone: China Standard Time (Asia/Shanghai)
OS: Windows 10
Version: 10.0
Architecture: amd64
Available processors (cores): 8
Screen size: 1536x864
Screen resolution (DPI): 96
Available screens: 1
Default font: family=SimSun,name=ËÎÌå,style=plain,size=12
Java version: 1.8.0_66 64-bit
Java home: E:/shuziluoji/Xilinx/Vivado/2016.2/tps/win64/jre
User name: zjd
User home directory: C:/Users/zjd
User working directory: C:/Users/zjd/police
User country: CN
User language: zh
User locale: zh_CN
RDI Base root directory: E:/shuziluoji/Xilinx/Vivado
RDI Data directory: E:/shuziluoji/Xilinx/Vivado/2016.2/data
RDI Bin directory: E:/shuziluoji/Xilinx/Vivado/2016.2/bin
Vivado preferences path: C:/Users/zjd/AppData/Roaming/Xilinx/Vivado/2016.2/vivado.ini
Vivado layouts directory: C:/Users/zjd/AppData/Roaming/Xilinx/Vivado/2016.2/layouts
GUI allocated memory: 172 MB
GUI max memory: 3,052 MB
Engine allocated memory: 456 MB
*/
// TclEventType: START_GUI
// Tcl Message: start_gui
// TclEventType: PROJECT_OPEN_DIALOG
// [GUI Memory]: 30 MB (+29438kb) [00:00:09]
// [Engine Memory]: 403 MB (+270596kb) [00:00:09]
// bL:g (cv:JFrame): Open Project : addNotify
// Opening Vivado Project: C:\Users\zjd\police\police.xpr. Version: Vivado v2016.2
// TclEventType: DEBUG_PROBE_SET_CHANGE
// Tcl Message: open_project C:/Users/zjd/police/police.xpr
// TclEventType: MSGMGR_MOVEMSG
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: FILE_SET_NEW
// TclEventType: RUN_COMPLETED
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: RUN_COMPLETED
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: RUN_CURRENT
// TclEventType: PROJECT_NEW
// Tcl Message: open_project C:/Users/zjd/police/police.xpr
// Tcl Message: Scanning sources... Finished scanning sources
// Tcl Message: INFO: [IP_Flow 19-234] Refreshing IP repositories INFO: [IP_Flow 19-1704] No user IP repositories specified
// TclEventType: PROJECT_NEW
// [GUI Memory]: 44 MB (+12600kb) [00:00:14]
// [Engine Memory]: 520 MB (+102421kb) [00:00:14]
// [GUI Memory]: 47 MB (+1010kb) [00:00:16]
// [GUI Memory]: 54 MB (+4738kb) [00:00:16]
// TclEventType: FILE_SET_OPTIONS_CHANGE
// Tcl Message: INFO: [IP_Flow 19-2313] Loaded Vivado IP repository 'E:/shuziluoji/Xilinx/Vivado/2016.2/data/ip'.
// HMemoryUtils.trashcanNow. Engine heap size: 540 MB. GUI used memory: 34 MB. Current time: 1/6/20 11:37:42 AM CST
// TclEventType: FILE_SET_OPTIONS_CHANGE
// Project name: police; location: C:/Users/zjd/police; part: xc7a100tcsg324-1
// Tcl Message: open_project: Time (s): cpu = 00:00:15 ; elapsed = 00:00:09 . Memory (MB): peak = 766.289 ; gain = 137.051
dismissDialog("Open Project"); // bL:g (cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Tcl Message: update_compile_order -fileset sources_1
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, Disabled Sources]", 2); // z:k (G:JPanel, cv:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v)]", 1); // z:k (G:JPanel, cv:JFrame)
// PAPropertyPanels.initPanels (game_state.v) elapsed time: 0.2s
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), states - game_state (game_state.v)]", 2, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), states - game_state (game_state.v)]", 2, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), vga - vga_sync (vga_sync.v)]", 3, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), vga - vga_sync (vga_sync.v)]", 3, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("vga_sync.v", 219, 45); // bH:N (JPanel:JComponent, cv:JFrame)
// [Engine Memory]: 548 MB (+1372kb) [00:00:35]
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// [GUI Memory]: 59 MB (+2321kb) [00:00:40]
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("vga_sync.v", 45, 142); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 66, 50); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 27, 265); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 90, 221); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 48, 186); // bH:N (JPanel:JComponent, cv:JFrame)
// [GUI Memory]: 65 MB (+3335kb) [00:00:54]
selectCodeEditor("vga_sync.v", 9, 198); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 44, 355); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("vga_sync.v", 27, 351); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v)]", 4); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), people0 - people (people.v)]", 10, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), people0 - people (people.v)]", 10, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
// HMemoryUtils.trashcanNow. Engine heap size: 559 MB. GUI used memory: 36 MB. Current time: 1/6/20 11:39:14 AM CST
// [GUI Memory]: 74 MB (+6207kb) [00:02:54]
// Elapsed time: 102 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "people.v", 1); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
// [GUI Memory]: 78 MB (+328kb) [00:05:05]
// [GUI Memory]: 83 MB (+219kb) [00:16:37]
// [GUI Memory]: 87 MB (+0kb) [00:26:40]
// HMemoryUtils.trashcanNow. Engine heap size: 572 MB. GUI used memory: 37 MB. Current time: 1/6/20 12:09:14 PM CST
// Elapsed time: 1740 seconds
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Constraints]", 18); // z:k (G:JPanel, cv:JFrame)
// Elapsed time: 701 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "game_state.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("people.v", 137, 231); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 239, 98); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 102, 54); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 12 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("people.v", 66, 204); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 101, 216); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 174, 207); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 50, 156); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 17, 138); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("people.v", 51, 169); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("people.v", 32, 103); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 225, 68); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("people.v", 12, 105); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("people.v", 11, 205); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// [GUI Memory]: 92 MB (+981kb) [00:45:27]
// Elapsed time: 314 seconds
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources]", 21); // z:k (G:JPanel, cv:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources, sim_1]", 22); // z:k (G:JPanel, cv:JFrame)
// Elapsed time: 171 seconds
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 6, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 6, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("cursor.v", 563, 149); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey(null, null, 'z');
selectCodeEditor("cursor.v", 105, 231); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("cursor.v", 38, 87); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("cursor.v", 226, 101); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 13 seconds
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
// Elapsed time: 14 seconds
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), yellowlines - yellowline (yellowline.v)]", 8, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), yellowlines - yellowline (yellowline.v)]", 8, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("yellowline.v", 135, 181); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("yellowline.v", 12, 238); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("yellowline.v", 67, 232); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("yellowline.v", 73, 173); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("yellowline.v", 29, 85); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("yellowline.v", 247, 100); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("yellowline.v", 79, 41); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), roads - road (road.v)]", 7, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), roads - road (road.v)]", 7, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("road.v", 113, 232); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("road.v", 0, 146); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("road.v", 2, 163); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("road.v", 246, 100); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("road.v", 36, 225); // bH:N (JPanel:JComponent, cv:JFrame)
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cars - car (car.v)]", 9, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cars - car (car.v)]", 9, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("car.v", 273, 182); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 31, 179); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 2, 187); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 2, 187, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
selectCodeEditor("car.v", 19, 349); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 235, 105); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 215, 145); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 203, 164); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 263, 180); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 186, 217); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 196, 102); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 163, 236); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 217, 249); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 163, 237); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 161, 240); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
selectCodeEditor("car.v", 267, 246); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 268, 253); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 271, 244); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 200, 213); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 185, 276); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 187, 104); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 264, 109); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 191, 143); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 270, 155); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 65, 275); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 341, 130); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 295, 127); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 263, 122); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 359, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 253, 121); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
selectCodeEditor("car.v", 349, 232); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 346, 247); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 115, 208); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("car.v", 358, 299); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 365, 276); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 358, 298); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 372, 284); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 429, 264, false, false, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Alt Key
selectCodeEditor("car.v", 416, 288); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 341, 293, false, true, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Control Key - Alt Key
typeControlKey(null, null, 'z');
selectCodeEditor("car.v", 332, 230); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 343, 222); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 319, 321); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 317, 341); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 304, 353); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 320, 309); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 314, 299); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 316, 277); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 305, 262); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 307, 242); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 315, 206); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 315, 225); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 319, 201); // bH:N (JPanel:JComponent, cv:JFrame)
// [GUI Memory]: 97 MB (+245kb) [00:56:13]
selectCodeEditor("car.v", 316, 190); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 311, 184); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 314, 167); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 305, 142); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 300, 121); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 294, 106); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 293, 90); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 291, 79); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("car.v", 305, 74); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 150 seconds
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources, sim_1, Disabled Sources]", 24); // z:k (G:JPanel, cv:JFrame)
collapseTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources, sim_1, Disabled Sources]", 24); // z:k (G:JPanel, cv:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources, sim_1, Disabled Sources]", 24); // z:k (G:JPanel, cv:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Simulation Sources, sim_1, police_top (police_top.v)]", 23); // z:k (G:JPanel, cv:JFrame)
// HMemoryUtils.trashcanNow. Engine heap size: 572 MB. GUI used memory: 40 MB. Current time: 1/6/20 12:39:15 PM CST
// Elapsed time: 398 seconds
selectCodeEditor("car.v", 86, 140); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 12 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 6, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 6, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("cursor.v", 99, 97); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
// Elapsed time: 17 seconds
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v)]", 5, true); // z:k (G:JPanel, cv:JFrame) - Node
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), font_unit - font_rom (font_rom.v)]", 6, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("text.v", 31, 235); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 219, 101); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("text.v", 41, 119); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 12 seconds
collapseTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v)]", 4); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), mymouse - mouse (mouse.v)]", 5, true); // z:k (G:JPanel, cv:JFrame) - Node
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), mymouse - mouse (mouse.v)]", 5, true, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click - Node
collapseTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), mymouse - mouse (mouse.v)]", 5); // z:k (G:JPanel, cv:JFrame)
// Elapsed time: 718 seconds
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
selectCodeEditor("text.v", 60, 181); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 655, 257); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 56 seconds
selectCodeEditor("text.v", 652, 321); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 55, 331); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 56, 334, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
selectCodeEditor("text.v", 56, 334); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 42, 332); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 43 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("text.v", 49, 270); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 99, 274); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 143, 276); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 104, 277); // bH:N (JPanel:JComponent, cv:JFrame)
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Project Manager, Add Sources]", 2, false); // x:Y (w:G, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_ADD_SOURCES
// b:g (cv:JFrame): Add Sources: addNotify
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, b:g)
selectButton(PAResourceQtoS.SrcChooserPanel_CREATE_FILE, "Create File"); // a:JButton (F:JPanel, b:g)
// J:x (b:g): Create Source File: addNotify
setText(PAResourceAtoD.CreateSrcFileDialog_FILE_NAME, "siren1"); // ao:JTextField (JPanel:JComponent, J:x)
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, J:x)
dismissDialog("Create Source File"); // J:x (b:g)
selectButton("FINISH", "Finish"); // JButton:AbstractButton (ButtonPanel:JPanel, b:g)
// 'h' command handler elapsed time: 11 seconds
dismissDialog("Add Sources"); // b:g (cv:JFrame)
// bL:g (cv:JFrame): Add Sources : addNotify
// Tcl Message: close [ open C:/Users/zjd/police/police.srcs/sources_1/new/siren1.v w ]
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: add_files C:/Users/zjd/police/police.srcs/sources_1/new/siren1.v
// M:x (cv:JFrame): Define Module: addNotify
dismissDialog("Add Sources"); // bL:g (cv:JFrame)
// Elapsed time: 121 seconds
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, M:x)
// TclEventType: DG_GRAPH_STALE
selectButton("PAResourceAtoD.DefineModulesDialog_YOU_HAVE_MADE_CHANGES_TO_MODULE_Yes", "Yes"); // BasicOptionPaneUI$ButtonFactory:JButton (JPanel:JComponent, U:JDialog)
dismissDialog("Define Module"); // M:x (cv:JFrame)
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Tcl Message: update_compile_order -fileset sources_1
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v)]", 4); // z:k (G:JPanel, cv:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v)]", 5); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 12, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), cursors - cursor (cursor.v)]", 12, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), siren1 - siren1 (siren1.v)]", 11, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), siren1 - siren1 (siren1.v)]", 11, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("siren1.v", 44, 314); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 43, 307); // bH:N (JPanel:JComponent, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), paratitle - paratitle (paratitle.v)]", 8, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), paratitle - paratitle (paratitle.v)]", 8, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), paratitle - paratitle (paratitle.v)]", 8, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("paratitle.v", 169, 122); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "paratitle.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "paratitle.v", 4); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("siren1.v", 15, 299); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "siren1.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 53, 277); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 49, 269); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 1, 295, false, true, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Control Key - Alt Key
selectCodeEditor("siren1.v", 230, 209); // bH:N (JPanel:JComponent, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
closeView(PAResourceOtoP.PAViews_CODE, "Code"); // D:b
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), score - score (score.v)]", 10, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), score - score (score.v)]", 10, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
selectCodeEditor("score.v", 151, 237); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "score.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "score.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
typeControlKey((HResource) null, "siren1.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("siren1.v", 95, 273); // bH:N (JPanel:JComponent, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("siren1.v", 64, 338); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), score - score (score.v)]", 10, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), score - score (score.v)]", 10, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
floatFrame(PAResourceOtoP.PAViews_CODE, "score.v"); // ao:DockableFrame (FrameContainer:JideTabbedPane, cv:JFrame)
// PAResourceOtoP.PAViews_CODE: Code: float view
// [GUI Memory]: 110 MB (+8111kb) [01:25:03]
// Elapsed time: 12 seconds
selectCodeEditor("siren1.v", 66, 300); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 54 seconds
selectCodeEditor("siren1.v", 55, 342); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 54, 341); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 38, 353); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("score.v", 8, 271); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("score.v", 146, 311); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("score.v", 6, 271); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
typeControlKey((HResource) null, "score.v", 'c'); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("siren1.v", 53, 364); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "siren1.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 32, 149); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 44, 148); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// [GUI Memory]: 116 MB (+1417kb) [01:26:31]
// TclEventType: DG_UPDATE_GRAPH
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 40 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("siren1.v", 159, 163); // bH:N (JPanel:JComponent, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), paratitle - paratitle (paratitle.v)]", 8, false); // z:k (G:JPanel, cv:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, police_top (police_top.v), display - vga_display (vga_display.v), texts - text (text.v), paratitle - paratitle (paratitle.v)]", 8, false, false, false, false, false, true); // z:k (G:JPanel, cv:JFrame) - Double Click
// [GUI Memory]: 123 MB (+886kb) [01:27:21]
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "paratitle.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
// Elapsed time: 13 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// [GUI Memory]: 133 MB (+3530kb) [01:27:47]
// Elapsed time: 12 seconds
selectCodeEditor("siren1.v", 147, 183); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 147, 185); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 11 seconds
selectCodeEditor("siren1.v", 194, 229); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 149, 185); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// [GUI Memory]: 139 MB (+213kb) [01:30:16]
// Elapsed time: 171 seconds
selectCodeEditor("siren1.v", 147, 167); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 151, 179); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 147, 193); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 143, 212); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 284, 302); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 271, 295); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 275, 295); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 37 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// HMemoryUtils.trashcanNow. Engine heap size: 572 MB. GUI used memory: 51 MB. Current time: 1/6/20 1:09:15 PM CST
selectCodeEditor("siren1.v", 101, 254); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("siren1.v", 147, 79); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("text.v", 194, 224); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 197, 225); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 3); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("siren1.v", 233, 228); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 149, 241); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 61, 245); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 257, 233); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("score.v", 107, 613); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("score.v", 9, 447); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("score.v", 11, 485); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
typeControlKey((HResource) null, "score.v", 'c'); // bH:N (JPanel:JComponent, FrameFloatingContainer:ResizableFrame)
selectCodeEditor("siren1.v", 259, 340); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 267, 327); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "siren1.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 38, 161); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 37, 158); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 39, 181); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 42, 188); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 272, 140); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey(null, null, 'z');
selectCodeEditor("siren1.v", 266, 150); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 34, 201); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 43, 195); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 52, 155); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 49, 158); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 47, 166, false, true, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Control Key - Alt Key
selectCodeEditor("siren1.v", 99, 226); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 262, 315); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 62 seconds
selectCodeEditor("siren1.v", 156, 185); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 176, 234); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 24 seconds
selectCodeEditor("siren1.v", 218, 350); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 287, 339); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 268, 333); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("text.v", 658, 146); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 652, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 601, 123); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 641, 127); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 595, 126); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 627, 142); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 601, 125); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 601, 125, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 662, 143); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 598, 125); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 641, 124); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 646, 122); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 650, 122, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
selectCodeEditor("text.v", 651, 128); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 705, 131); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 668, 122); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 661, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 670, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 664, 126); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 761, 128); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 759, 127); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 753, 139); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 663, 123); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 757, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 760, 128, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
selectCodeEditor("text.v", 759, 128); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 756, 144); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 666, 125); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 769, 134); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 768, 130); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 663, 122); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 849, 124); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 856, 124); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 854, 123, false, false, false, false, true); // bH:N (JPanel:JComponent, cv:JFrame) - Double Click
selectCodeEditor("text.v", 860, 122); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 650, 149); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 13 seconds
selectCodeEditor("text.v", 546, 104); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 10 seconds
selectCodeEditor("text.v", 87, 124); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 85, 124); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 53, 144); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 13, 142); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 24, 141, false, true, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Control Key - Alt Key
selectCodeEditor("text.v", 25, 143, false, true, true, false, false); // bH:N (JPanel:JComponent, cv:JFrame) - Control Key - Alt Key
selectCodeEditor("text.v", 8, 141); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 81, 199); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 64, 167); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 102, 143); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 146, 180); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 158, 223); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("text.v", 151, 216); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("text.v", 160, 220); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("text.v", 150, 220); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 10 seconds
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectCodeEditor("text.v", 73, 244); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 109, 232); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 137, 216); // bH:N (JPanel:JComponent, cv:JFrame)
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Generate Bitstream]", 25, false); // x:Y (w:G, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_RUN_BITGEN
// G:be (cv:JFrame): Synthesis is Out-of-date: addNotify
selectButton(RDIResource.BaseDialog_YES, "Yes"); // a:JButton (JPanel:JComponent, G:be)
// bL:g (cv:JFrame): Resetting Runs : addNotify
dismissDialog("Synthesis is Out-of-date"); // G:be (cv:JFrame)
// Tcl Message: reset_run synth_1
// TclEventType: RUN_MODIFY
// TclEventType: RUN_RESET
// TclEventType: RUN_MODIFY
// 'ck' command handler elapsed time: 5 seconds
dismissDialog("Resetting Runs"); // bL:g (cv:JFrame)
// TclEventType: FILESET_TARGET_UCF_CHANGE
// Tcl Message: launch_runs impl_1 -to_step write_bitstream -jobs 4
// bL:g (cv:JFrame): Generate Bitstream : addNotify
// TclEventType: RUN_LAUNCH
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: RUN_MODIFY
// Tcl Message: [Mon Jan 06 13:14:37 2020] Launched synth_1... Run output will be captured here: C:/Users/zjd/police/police.runs/synth_1/runme.log [Mon Jan 06 13:14:37 2020] Launched impl_1... Run output will be captured here: C:/Users/zjd/police/police.runs/impl_1/runme.log
dismissDialog("Generate Bitstream"); // bL:g (cv:JFrame)
// TclEventType: RUN_COMPLETED
// TclEventType: RUN_STEP_COMPLETED
// TclEventType: RUN_COMPLETED
// Elapsed time: 196 seconds
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Open Hardware Manager]", 26, true); // x:Y (w:G, cv:JFrame) - Node
// Run Command: PAResourceCommand.PACommandNames_OPEN_HARDWARE_MANAGER
// Tcl Command: 'rdi::info_commands get_hw_probes'
// Tcl Command: 'load_features labtools'
// TclEventType: LOAD_FEATURE
// TclEventType: HW_SESSION_OPEN
// 'K' command handler elapsed time: 5 seconds
// Tcl Message: open_hw
expandTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Hardware Manager]", 26); // x:Y (w:G, cv:JFrame)
floatFrame(PAResourceOtoP.PAViews_CODE, "score.v"); // ao:DockableFrame (FrameContainer:JideTabbedPane, cv:JFrame)
collapseTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Hardware Manager]", 26); // x:Y (w:G, cv:JFrame)
selectButton(PAResourceOtoP.ProgramDebugTab_OPEN_TARGET, "Open target"); // i:l (JPanel:JComponent, cv:JFrame)
selectMenuItem(PAResourceCommand.PACommandNames_AUTO_CONNECT_TARGET, "Auto Connect"); // af:JMenuItem (am:JPopupMenu, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_AUTO_CONNECT_TARGET
// bL:g (cv:JFrame): Auto Connect : addNotify
// Tcl Message: connect_hw_server
// Tcl Message: INFO: [Labtools 27-2285] Connecting to hw_server url TCP:localhost:3121
// TclEventType: HW_SERVER_UPDATE
// TclEventType: HW_TARGET_CHANGE
// TclEventType: HW_TARGET_CLOSE
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: open_hw_target
// Tcl Message: INFO: [Labtoolstcl 44-466] Opening hw_target localhost:3121/xilinx_tcf/Digilent/210292709808A
// TclEventType: HW_SYSMON_ADD
// TclEventType: HW_TARGET_UPDATE
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: set_property PROGRAM.FILE {C:/Users/zjd/police/police.runs/impl_1/police_top.bit} [lindex [get_hw_devices] 0]
// Tcl Message: current_hw_device [lindex [get_hw_devices] 0]
// TclEventType: HW_DEVICE_CHANGE
// TclEventType: HW_SYSMON_CHANGE
// TclEventType: HW_DEVICE_UPDATE
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: refresh_hw_device -update_hw_probes false [lindex [get_hw_devices] 0]
// Tcl Message: INFO: [Labtools 27-1434] Device xc7a100t (JTAG device index = 0) is programmed with a design that has no supported debug core(s) in it.
dismissDialog("Auto Connect"); // bL:g (cv:JFrame)
selectButton(PAResourceOtoP.ProgramDebugTab_PROGRAM_DEVICE, "Program device"); // i:l (JPanel:JComponent, cv:JFrame)
selectMenuItem((HResource) null, "xc7a100t_0"); // af:JMenuItem (am:JPopupMenu, cv:JFrame)
// PAPropertyPanels.initPanels (xc7a100t_0) elapsed time: 0.2s
// Run Command: PAResourceCommand.PACommandNames_PROGRAM_FPGA
// aW:ak (cv:JFrame): Program Device: addNotify
selectButton(PAResourceOtoP.ProgramFpgaDialog_PROGRAM, "Program"); // a:JButton (JPanel:JComponent, aW:ak)
// bL:g (cv:JFrame): Program Device : addNotify
// TclEventType: HW_DEVICE_CHANGE
dismissDialog("Program Device"); // aW:ak (cv:JFrame)
// Tcl Message: set_property PROBES.FILE {} [lindex [get_hw_devices] 0]
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: set_property PROGRAM.FILE {C:/Users/zjd/police/police.runs/impl_1/police_top.bit} [lindex [get_hw_devices] 0]
// Tcl Message: program_hw_devices [lindex [get_hw_devices] 0]
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: INFO: [Labtools 27-3164] End of startup status: HIGH
// TclEventType: HW_DEVICE_CHANGE
// TclEventType: HW_SYSMON_CHANGE
// TclEventType: HW_DEVICE_UPDATE
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: refresh_hw_device [lindex [get_hw_devices] 0]
// Tcl Message: INFO: [Labtools 27-1434] Device xc7a100t (JTAG device index = 0) is programmed with a design that has no supported debug core(s) in it.
// 'A' command handler elapsed time: 4 seconds
dismissDialog("Program Device"); // bL:g (cv:JFrame)
// Elapsed time: 14 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "game_state.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "siren1.v", 1); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
// Elapsed time: 29 seconds
selectCodeEditor("text.v", 379, 102); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 261, 114); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 263, 105); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 397, 108); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 435, 111); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Generate Bitstream]", 25, false); // x:Y (w:G, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_RUN_BITGEN
// G:be (cv:JFrame): Synthesis is Out-of-date: addNotify
selectButton(RDIResource.BaseDialog_YES, "Yes"); // a:JButton (JPanel:JComponent, G:be)
// bL:g (cv:JFrame): Resetting Runs : addNotify
dismissDialog("Synthesis is Out-of-date"); // G:be (cv:JFrame)
// TclEventType: RUN_MODIFY
// TclEventType: RUN_RESET
// TclEventType: RUN_MODIFY
// Tcl Message: reset_run synth_1
dismissDialog("Resetting Runs"); // bL:g (cv:JFrame)
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: FILESET_TARGET_UCF_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: RUN_MODIFY
// Tcl Message: launch_runs impl_1 -to_step write_bitstream -jobs 4
// Tcl Message: [Mon Jan 06 13:19:19 2020] Launched synth_1... Run output will be captured here: C:/Users/zjd/police/police.runs/synth_1/runme.log [Mon Jan 06 13:19:19 2020] Launched impl_1... Run output will be captured here: C:/Users/zjd/police/police.runs/impl_1/runme.log
// TclEventType: RUN_COMPLETED
// TclEventType: RUN_STEP_COMPLETED
// TclEventType: RUN_COMPLETED
// Elapsed time: 353 seconds
selectButton(PAResourceOtoP.ProgramDebugTab_PROGRAM_DEVICE, "Program device"); // i:l (JPanel:JComponent, cv:JFrame)
selectMenuItem((HResource) null, "xc7a100t_0"); // af:JMenuItem (am:JPopupMenu, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_PROGRAM_FPGA
// aW:ak (cv:JFrame): Program Device: addNotify
selectButton(PAResourceOtoP.ProgramFpgaDialog_PROGRAM, "Program"); // a:JButton (JPanel:JComponent, aW:ak)
// bL:g (cv:JFrame): Program Device : addNotify
dismissDialog("Program Device"); // aW:ak (cv:JFrame)
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: set_property PROBES.FILE {} [lindex [get_hw_devices] 0]
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: set_property PROGRAM.FILE {C:/Users/zjd/police/police.runs/impl_1/police_top.bit} [lindex [get_hw_devices] 0]
// Tcl Message: program_hw_devices [lindex [get_hw_devices] 0]
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: INFO: [Labtools 27-3164] End of startup status: HIGH
// TclEventType: HW_DEVICE_CHANGE
// TclEventType: HW_SYSMON_CHANGE
// TclEventType: HW_DEVICE_UPDATE
// TclEventType: HW_DEVICE_CHANGE
// Tcl Message: refresh_hw_device [lindex [get_hw_devices] 0]
// Tcl Message: INFO: [Labtools 27-1434] Device xc7a100t (JTAG device index = 0) is programmed with a design that has no supported debug core(s) in it.
// 'A' command handler elapsed time: 3 seconds
dismissDialog("Program Device"); // bL:g (cv:JFrame)
selectCodeEditor("text.v", 587, 285); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 518, 112); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 394, 104); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'c'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 525, 106); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 532, 108); // bH:N (JPanel:JComponent, cv:JFrame)
typeControlKey((HResource) null, "text.v", 'v'); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("text.v", 575, 106); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 19 seconds
selectCodeEditor("text.v", 492, 123); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("text.v", 647, 104); // bH:N (JPanel:JComponent, cv:JFrame)
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 11 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "text.v", 2); // TdiGroup:JideTabbedPane (CodeEditorDocumentPane:DocumentPane, cv:JFrame)
selectCodeEditor("siren1.v", 148, 165); // bH:N (JPanel:JComponent, cv:JFrame)
selectCodeEditor("siren1.v", 146, 161); // bH:N (JPanel:JComponent, cv:JFrame)
selectButton(RDIResourceCommand.RDICommands_SAVE_FILE, (String) null); // y:JideButton (CommandBar:DockableBar, cv:JFrame)
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// Elapsed time: 156 seconds
selectCodeEditor("siren1.v", 882, 35); // bH:N (JPanel:JComponent, cv:JFrame)
// Elapsed time: 15 seconds
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Project Manager, Add Sources]", 2, false); // x:Y (w:G, cv:JFrame)
// Run Command: PAResourceCommand.PACommandNames_ADD_SOURCES
// b:g (cv:JFrame): Add Sources: addNotify
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, b:g)
selectButton(PAResourceQtoS.SrcChooserPanel_CREATE_FILE, "Create File"); // a:JButton (F:JPanel, b:g)
// J:x (b:g): Create Source File: addNotify
// Elapsed time: 10 seconds
setText(PAResourceAtoD.CreateSrcFileDialog_FILE_NAME, "siren2"); // ao:JTextField (JPanel:JComponent, J:x)
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, J:x)
dismissDialog("Create Source File"); // J:x (b:g)
selectButton("FINISH", "Finish"); // JButton:AbstractButton (ButtonPanel:JPanel, b:g)
// 'h' command handler elapsed time: 15 seconds
dismissDialog("Add Sources"); // b:g (cv:JFrame)
// Tcl Message: close [ open C:/Users/zjd/police/police.srcs/sources_1/new/siren2.v w ]
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: add_files C:/Users/zjd/police/police.srcs/sources_1/new/siren2.v
// M:x (cv:JFrame): Define Module: addNotify
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, M:x)
// TclEventType: DG_GRAPH_STALE
selectButton("PAResourceAtoD.DefineModulesDialog_YOU_HAVE_MADE_CHANGES_TO_MODULE_Yes", "Yes"); // BasicOptionPaneUI$ButtonFactory:JButton (JPanel:JComponent, U:JDialog)
dismissDialog("Define Module"); // M:x (cv:JFrame)
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_UPDATE_GRAPH
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE