-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
mainwindow.py
1014 lines (896 loc) · 37.8 KB
/
mainwindow.py
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
"""Contains the main window of the plugin."""
from datetime import datetime as dt
import json
import logging
import os
import re
import sys
import time
import pcbnew as kicad_pcbnew
import wx # pylint: disable=import-error
from wx import adv # pylint: disable=import-error
import wx.dataview as dv # pylint: disable=import-error
from .datamodel import PartListDataModel
from .events import (
EVT_ASSIGN_PARTS_EVENT,
EVT_LOGBOX_APPEND_EVENT,
EVT_MESSAGE_EVENT,
EVT_POPULATE_FOOTPRINT_LIST_EVENT,
EVT_RESET_GAUGE_EVENT,
EVT_UPDATE_GAUGE_EVENT,
EVT_UPDATE_SETTING,
LogboxAppendEvent,
)
from .fabrication import Fabrication
from .helpers import (
PLUGIN_PATH,
GetScaleFactor,
HighResWxSize,
getVersion,
loadBitmapScaled,
set_lcsc_value,
toggle_exclude_from_bom,
toggle_exclude_from_pos,
)
from .library import Library, LibraryState
from .partdetails import PartDetailsDialog
from .partmapper import PartMapperManagerDialog
from .partselector import PartSelectorDialog
from .rotations import RotationManagerDialog
from .schematicexport import SchematicExport
from .settings import SettingsDialog
from .store import Store
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("urllib3").setLevel(logging.WARNING)
ID_GENERATE = 0
ID_LAYERS = 1
ID_ROTATIONS = 2
ID_MAPPINGS = 3
ID_DOWNLOAD = 4
ID_SETTINGS = 5
ID_SELECT_PART = 6
ID_REMOVE_LCSC_NUMBER = 7
ID_SELECT_ALIKE = 8
ID_TOGGLE_BOM_POS = 9
ID_TOGGLE_BOM = 10
ID_TOGGLE_POS = 11
ID_PART_DETAILS = 12
ID_HIDE_BOM = 13
ID_HIDE_POS = 14
ID_SAVE_MAPPINGS = 15
ID_EXPORT_TO_SCHEMATIC = 16
ID_CONTEXT_MENU_COPY_LCSC = wx.NewIdRef()
ID_CONTEXT_MENU_PASTE_LCSC = wx.NewIdRef()
ID_CONTEXT_MENU_ADD_ROT_BY_PACKAGE = wx.NewIdRef()
ID_CONTEXT_MENU_ADD_ROT_BY_NAME = wx.NewIdRef()
ID_CONTEXT_MENU_FIND_MAPPING = wx.NewIdRef()
ID_CONTEXT_MENU_ADD_MAPPING = wx.NewIdRef()
class KicadProvider:
"""KiCad implementation of the provider, see standalone_impl.py for the stub version."""
def get_pcbnew(self):
"""Get the pcbnew instance."""
return kicad_pcbnew
class JLCPCBTools(wx.Dialog):
"""JLCPCBTools main dialog."""
def __init__(self, parent, kicad_provider=KicadProvider()):
while not wx.GetApp():
time.sleep(1)
wx.Dialog.__init__(
self,
parent,
id=wx.ID_ANY,
title=f"JLCPCB Tools [ {getVersion()} ]",
pos=wx.DefaultPosition,
size=wx.Size(1300, 800),
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER | wx.MAXIMIZE_BOX,
)
self.pcbnew = kicad_provider.get_pcbnew()
self.window = wx.GetTopLevelParent(self)
self.SetSize(HighResWxSize(self.window, wx.Size(1300, 800)))
self.scale_factor = GetScaleFactor(self.window)
self.project_path = os.path.split(self.pcbnew.GetBoard().GetFileName())[0]
self.board_name = os.path.split(self.pcbnew.GetBoard().GetFileName())[1]
self.schematic_name = f"{self.board_name.split('.')[0]}.kicad_sch"
self.hide_bom_parts = False
self.hide_pos_parts = False
self.library: Library
self.store: Store
self.settings = {}
self.load_settings()
self.Bind(wx.EVT_CLOSE, self.quit_dialog)
# ---------------------------------------------------------------------
# ---------------------------- Hotkeys --------------------------------
# ---------------------------------------------------------------------
quitid = wx.NewId()
self.Bind(wx.EVT_MENU, self.quit_dialog, id=quitid)
entries = [wx.AcceleratorEntry(), wx.AcceleratorEntry(), wx.AcceleratorEntry()]
entries[0].Set(wx.ACCEL_CTRL, ord("W"), quitid)
entries[1].Set(wx.ACCEL_CTRL, ord("Q"), quitid)
entries[2].Set(wx.ACCEL_SHIFT, wx.WXK_ESCAPE, quitid)
accel = wx.AcceleratorTable(entries)
self.SetAcceleratorTable(accel)
# ---------------------------------------------------------------------
# -------------------- Horizontal top buttons -------------------------
# ---------------------------------------------------------------------
self.upper_toolbar = wx.ToolBar(
self,
wx.ID_ANY,
wx.DefaultPosition,
wx.Size(1300, -1),
wx.TB_HORIZONTAL | wx.TB_TEXT | wx.TB_NODIVIDER,
)
self.generate_button = self.upper_toolbar.AddTool(
ID_GENERATE,
"Generate",
loadBitmapScaled("fabrication.png", self.scale_factor),
"Generate fabrication files for JLCPCB",
)
self.upper_toolbar.AddSeparator()
self.layer_selection = adv.BitmapComboBox(
self.upper_toolbar, ID_LAYERS, style=wx.CB_READONLY
)
layer_options = [
"Auto",
"1 Layer",
"2 Layer",
"4 Layer",
"6 Layer",
"8 Layer",
"10 Layer",
"12 Layer",
"14 Layer",
"16 Layer",
"18 Layer",
"20 Layer",
]
for option in layer_options:
self.layer_selection.Append(
option,
loadBitmapScaled(
"mdi-layers-triple-outline.png", self.scale_factor, True
),
)
self.layer_selection.SetSelection(0)
self.upper_toolbar.AddControl(self.layer_selection)
self.upper_toolbar.AddStretchableSpace()
self.rotation_button = self.upper_toolbar.AddTool(
ID_ROTATIONS,
"Rotations",
loadBitmapScaled("mdi-format-rotate-90.png", self.scale_factor),
"Manage part rotations",
)
self.mapping_button = self.upper_toolbar.AddTool(
ID_MAPPINGS,
"Mappings",
loadBitmapScaled("mdi-selection.png", self.scale_factor),
"Manage part mappings",
)
self.upper_toolbar.AddSeparator()
self.download_button = self.upper_toolbar.AddTool(
ID_DOWNLOAD,
"Download",
loadBitmapScaled("mdi-cloud-download-outline.png", self.scale_factor),
"Download latest JLCPCB parts database",
)
self.settings_button = self.upper_toolbar.AddTool(
ID_SETTINGS,
"Settings",
loadBitmapScaled("mdi-cog-outline.png", self.scale_factor),
"Manage settings",
)
self.upper_toolbar.Realize()
self.Bind(wx.EVT_TOOL, self.generate_fabrication_data, self.generate_button)
self.Bind(wx.EVT_TOOL, self.manage_rotations, self.rotation_button)
self.Bind(wx.EVT_TOOL, self.manage_mappings, self.mapping_button)
self.Bind(wx.EVT_TOOL, self.update_library, self.download_button)
self.Bind(wx.EVT_TOOL, self.manage_settings, self.settings_button)
# ---------------------------------------------------------------------
# ------------------ Right side toolbar List --------------------------
# ---------------------------------------------------------------------
self.right_toolbar = wx.ToolBar(
self,
wx.ID_ANY,
wx.DefaultPosition,
wx.Size(int(self.scale_factor * 128), -1),
wx.TB_VERTICAL | wx.TB_TEXT | wx.TB_NODIVIDER,
)
self.select_part_button = self.right_toolbar.AddTool(
ID_SELECT_PART,
"Assign LCSC number",
loadBitmapScaled(
"mdi-database-search-outline.png",
self.scale_factor,
),
"Assign a LCSC number to a footprint",
)
self.remove_lcsc_number_button = self.right_toolbar.AddTool(
ID_REMOVE_LCSC_NUMBER,
"Remove LCSC number",
loadBitmapScaled(
"mdi-close-box-outline.png",
self.scale_factor,
),
"Remove a LCSC number from a footprint",
)
self.select_alike_button = self.right_toolbar.AddTool(
ID_SELECT_ALIKE,
"Select alike parts",
loadBitmapScaled(
"mdi-checkbox-multiple-marked.png",
self.scale_factor,
),
"Select footprint that are alike",
)
self.toggle_bom_pos_button = self.right_toolbar.AddTool(
ID_TOGGLE_BOM_POS,
"Toggle BOM & POS",
loadBitmapScaled(
"bom-pos.png",
self.scale_factor,
),
"Toggle exclud from BOM and POS attribute",
)
self.toggle_bom_button = self.right_toolbar.AddTool(
ID_TOGGLE_BOM,
"Toggle BOM",
loadBitmapScaled(
"mdi-format-list-bulleted.png",
self.scale_factor,
),
"Toggle exclude from BOM attribute",
)
self.toggle_pos_button = self.right_toolbar.AddTool(
ID_TOGGLE_POS,
"Toggle POS",
loadBitmapScaled(
"mdi-crosshairs-gps.png",
self.scale_factor,
),
"Toggle exclude from POS attribute",
)
self.part_details_button = self.right_toolbar.AddTool(
ID_PART_DETAILS,
"Part details",
loadBitmapScaled(
"mdi-text-box-search-outline.png",
self.scale_factor,
),
"Show details of an assigned LCSC part",
)
self.hide_bom_button = self.right_toolbar.AddCheckTool(
ID_HIDE_BOM,
"Hide excluded BOM",
loadBitmapScaled(
"mdi-eye-off-outline.png",
self.scale_factor,
),
wx.NullBitmap,
"Hide excluded BOM parts",
)
self.hide_pos_button = self.right_toolbar.AddCheckTool(
ID_HIDE_POS,
"Hide excluded POS",
loadBitmapScaled(
"mdi-eye-off-outline.png",
self.scale_factor,
),
wx.NullBitmap,
"Hide excluded POS parts",
)
self.save_all_button = self.right_toolbar.AddTool(
ID_SAVE_MAPPINGS,
"Save mappings",
loadBitmapScaled(
"mdi-content-save-settings.png",
self.scale_factor,
),
"Save all mappings",
)
self.export_schematic_button = self.right_toolbar.AddTool(
ID_EXPORT_TO_SCHEMATIC,
"Export to schematic",
loadBitmapScaled(
"mdi-application-export.png",
self.scale_factor,
),
"Export mappings to schematic",
)
self.Bind(wx.EVT_TOOL, self.select_part, self.select_part_button)
self.Bind(wx.EVT_TOOL, self.remove_lcsc_number, self.remove_lcsc_number_button)
self.Bind(wx.EVT_TOOL, self.select_alike, self.select_alike_button)
self.Bind(wx.EVT_TOOL, self.toggle_bom_pos, self.toggle_bom_pos_button)
self.Bind(wx.EVT_TOOL, self.toggle_bom, self.toggle_bom_button)
self.Bind(wx.EVT_TOOL, self.toggle_pos, self.toggle_pos_button)
self.Bind(wx.EVT_TOOL, self.get_part_details, self.part_details_button)
self.Bind(wx.EVT_TOOL, self.OnBomHide, self.hide_bom_button)
self.Bind(wx.EVT_TOOL, self.OnPosHide, self.hide_pos_button)
self.Bind(wx.EVT_TOOL, self.save_all_mappings, self.save_all_button)
self.Bind(wx.EVT_TOOL, self.export_to_schematic, self.export_schematic_button)
self.right_toolbar.Realize()
# ---------------------------------------------------------------------
# ----------------------- Footprint List ------------------------------
# ---------------------------------------------------------------------
table_sizer = wx.BoxSizer(wx.HORIZONTAL)
table_sizer.SetMinSize(HighResWxSize(self.window, wx.Size(-1, 600)))
self.footprint_list = dv.DataViewCtrl(
self,
style=wx.BORDER_THEME | dv.DV_ROW_LINES | dv.DV_VERT_RULES | dv.DV_MULTIPLE,
)
reference = self.footprint_list.AppendTextColumn(
"Reference", 0, width=50, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
value = self.footprint_list.AppendTextColumn(
"Value", 1, width=250, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
footprint = self.footprint_list.AppendTextColumn(
"Footprint",
2,
width=250,
mode=dv.DATAVIEW_CELL_INERT,
align=wx.ALIGN_CENTER,
)
lcsc = self.footprint_list.AppendTextColumn(
"LCSC", 3, width=100, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
type = self.footprint_list.AppendTextColumn(
"Type", 4, width=100, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
stock = self.footprint_list.AppendTextColumn(
"Stock", 5, width=100, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
bom = self.footprint_list.AppendIconTextColumn(
"BOM", 6, width=50, mode=dv.DATAVIEW_CELL_INERT
)
pos = self.footprint_list.AppendIconTextColumn(
"POS", 7, width=50, mode=dv.DATAVIEW_CELL_INERT
)
rotation = self.footprint_list.AppendTextColumn(
"Rotation", 8, width=70, mode=dv.DATAVIEW_CELL_INERT, align=wx.ALIGN_CENTER
)
side = self.footprint_list.AppendIconTextColumn(
"Side", 9, width=50, mode=dv.DATAVIEW_CELL_INERT
)
reference.SetSortable(True)
value.SetSortable(True)
footprint.SetSortable(True)
lcsc.SetSortable(True)
type.SetSortable(True)
stock.SetSortable(True)
bom.SetSortable(True)
pos.SetSortable(False)
rotation.SetSortable(True)
side.SetSortable(True)
table_sizer.Add(self.footprint_list, 20, wx.ALL | wx.EXPAND, 5)
self.footprint_list.Bind(
dv.EVT_DATAVIEW_SELECTION_CHANGED, self.OnFootprintSelected
)
self.footprint_list.Bind(dv.EVT_DATAVIEW_ITEM_CONTEXT_MENU, self.OnRightDown)
table_sizer.Add(self.right_toolbar, 1, wx.EXPAND, 5)
# ---------------------------------------------------------------------
# --------------------- Bottom Logbox and Gauge -----------------------
# ---------------------------------------------------------------------
self.logbox = wx.TextCtrl(
self,
wx.ID_ANY,
wx.EmptyString,
wx.DefaultPosition,
wx.DefaultSize,
wx.TE_MULTILINE | wx.TE_READONLY,
)
self.logbox.SetMinSize(HighResWxSize(self.window, wx.Size(-1, 150)))
self.gauge = wx.Gauge(
self,
wx.ID_ANY,
100,
wx.DefaultPosition,
HighResWxSize(self.window, wx.Size(100, -1)),
wx.GA_HORIZONTAL,
)
self.gauge.SetValue(0)
self.gauge.SetMinSize(HighResWxSize(self.window, wx.Size(-1, 5)))
# ---------------------------------------------------------------------
# ---------------------- Main Layout Sizer ----------------------------
# ---------------------------------------------------------------------
self.SetSizeHints(HighResWxSize(self.window, wx.Size(1000, -1)), wx.DefaultSize)
layout = wx.BoxSizer(wx.VERTICAL)
layout.Add(self.upper_toolbar, 0, wx.ALL | wx.EXPAND, 5)
layout.Add(table_sizer, 20, wx.ALL | wx.EXPAND, 5)
layout.Add(self.logbox, 0, wx.ALL | wx.EXPAND, 5)
layout.Add(self.gauge, 0, wx.ALL | wx.EXPAND, 5)
self.SetSizer(layout)
self.Layout()
self.Centre(wx.BOTH)
# ---------------------------------------------------------------------
# ------------------------ Custom Events ------------------------------
# ---------------------------------------------------------------------
self.Bind(EVT_RESET_GAUGE_EVENT, self.reset_gauge)
self.Bind(EVT_UPDATE_GAUGE_EVENT, self.update_gauge)
self.Bind(EVT_MESSAGE_EVENT, self.display_message)
self.Bind(EVT_ASSIGN_PARTS_EVENT, self.assign_parts)
self.Bind(EVT_POPULATE_FOOTPRINT_LIST_EVENT, self.populate_footprint_list)
self.Bind(EVT_UPDATE_SETTING, self.update_settings)
self.Bind(EVT_LOGBOX_APPEND_EVENT, self.logbox_append)
self.enable_part_specific_toolbar_buttons(False)
self.init_logger()
self.partlist_data_model = PartListDataModel(self.scale_factor)
self.footprint_list.AssociateModel(self.partlist_data_model)
self.init_library()
self.init_fabrication()
if self.library.state == LibraryState.UPDATE_NEEDED:
self.library.update()
else:
self.init_store()
self.library.create_mapping_table()
def quit_dialog(self, *_):
"""Destroy dialog on close."""
root = logging.getLogger()
root.removeHandler(self.logging_handler1)
root.removeHandler(self.logging_handler2)
self.Destroy()
self.EndModal(0)
def init_library(self):
"""Initialize the parts library."""
self.library = Library(self)
last_update = self.library.get_last_update()
if last_update:
last_update = dt.fromisoformat(last_update).strftime("%Y-%m-%d %H:%M")
self.SetTitle(
f"JLCPCB Tools [ {getVersion()} ] | Last database update: {last_update}",
)
def init_store(self):
"""Initialize the store of part assignments."""
self.store = Store(self, self.project_path, self.pcbnew.GetBoard())
if self.library.state == LibraryState.INITIALIZED:
self.populate_footprint_list()
def init_fabrication(self):
"""Initialize the fabrication."""
self.fabrication = Fabrication(self, self.pcbnew.GetBoard())
def reset_gauge(self, *_):
"""Initialize the gauge."""
self.gauge.SetRange(100)
self.gauge.SetValue(0)
def update_gauge(self, e):
"""Update the gauge."""
self.gauge.SetValue(int(e.value))
def assign_parts(self, e):
"""Assign a selected LCSC number to parts."""
for reference in e.references:
self.store.set_lcsc(reference, e.lcsc)
self.store.set_stock(reference, int(e.stock))
board = self.pcbnew.GetBoard()
fp = board.FindFootprintByReference(reference)
set_lcsc_value(fp, e.lcsc)
self.partlist_data_model.set_lcsc(reference, e.lcsc, e.type, e.stock)
def display_message(self, e):
"""Dispaly a message with the data from the event."""
styles = {
"info": wx.ICON_INFORMATION,
"warning": wx.ICON_WARNING,
"error": wx.ICON_ERROR,
}
wx.MessageBox(e.text, e.title, style=styles.get(e.style, wx.ICON_INFORMATION))
def get_correction(self, part: dict, corrections: list) -> str:
"""Try to find correction data for a given part."""
# First check if the part name matches
for regex, correction in corrections:
if re.search(regex, str(part["reference"])):
return str(correction)
# If there was no match for the part name, check if the package matches
for regex, correction in corrections:
if re.search(regex, str(part["footprint"])):
return str(correction)
return "0"
def populate_footprint_list(self, *_):
"""Populate list of footprints."""
if not self.store:
self.init_store()
self.partlist_data_model.RemoveAll()
details = {}
corrections = self.library.get_all_correction_data()
for part in self.store.read_all():
fp = self.pcbnew.GetBoard().FindFootprintByReference(part["reference"])
# Get part stock and type from library, skip if part number was already looked up before
if part["lcsc"] and part["lcsc"] not in details:
details[part["lcsc"]] = self.library.get_part_details(part["lcsc"])
# don't show the part if hide BOM is set
if self.hide_bom_parts and part["exclude_from_bom"]:
continue
# don't show the part if hide POS is set
if self.hide_pos_parts and part["exclude_from_pos"]:
continue
self.partlist_data_model.AddEntry(
[
part["reference"],
part["value"],
part["footprint"],
part["lcsc"],
details.get(part["lcsc"], {}).get("type", ""), # type
details.get(part["lcsc"], {}).get("stock", ""), # stock
part["exclude_from_bom"],
part["exclude_from_pos"],
str(self.get_correction(part, corrections)),
str(fp.GetLayer()),
]
)
def OnBomHide(self, *_):
"""Hide all parts from the list that have 'in BOM' set to No."""
self.hide_bom_parts = not self.hide_bom_parts
if self.hide_bom_parts:
self.hide_bom_button.SetNormalBitmap(
loadBitmapScaled(
"",
self.scale_factor,
)
)
self.hide_bom_button.SetNormalBitmap(
loadBitmapScaled(
"mdi-eye-outline.png",
self.scale_factor,
)
)
self.hide_bom_button.SetLabel("Show excluded BOM")
else:
self.hide_bom_button.SetNormalBitmap(
loadBitmapScaled(
"",
self.scale_factor,
)
)
self.hide_bom_button.SetNormalBitmap(
loadBitmapScaled(
"mdi-eye-off-outline.png",
self.scale_factor,
)
)
self.hide_bom_button.SetLabel("Hide excluded BOM")
self.populate_footprint_list()
def OnPosHide(self, *_):
"""Hide all parts from the list that have 'in pos' set to No."""
self.hide_pos_parts = not self.hide_pos_parts
if self.hide_pos_parts:
self.hide_pos_button.SetNormalBitmap(
loadBitmapScaled(
"",
self.scale_factor,
)
)
self.hide_pos_button.SetNormalBitmap(
loadBitmapScaled(
"mdi-eye-outline.png",
self.scale_factor,
)
)
self.hide_pos_button.SetLabel("Show excluded POS")
else:
self.hide_pos_button.SetNormalBitmap(
loadBitmapScaled(
"",
self.scale_factor,
)
)
self.hide_pos_button.SetNormalBitmap(
loadBitmapScaled(
"mdi-eye-off-outline.png",
self.scale_factor,
)
)
self.hide_pos_button.SetLabel("Hide excluded POS")
self.populate_footprint_list()
def OnFootprintSelected(self, *_):
"""Enable the toolbar buttons when a selection was made."""
self.enable_part_specific_toolbar_buttons(
self.footprint_list.GetSelectedItemsCount() > 0
)
# clear the present selections
selection = self.pcbnew.GetCurrentSelection()
for selected in selection:
selected.ClearSelected()
# select all of the selected items in the footprint_list
if self.footprint_list.GetSelectedItemsCount() > 0:
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
fp = self.pcbnew.GetBoard().FindFootprintByReference(ref)
fp.SetSelected()
# cause pcbnew to refresh the board with the changes to the selected footprint(s)
self.pcbnew.Refresh()
def enable_part_specific_toolbar_buttons(self, state):
"""Control the state of all the buttons that relate to parts in toolbar on the right side."""
for button in (
ID_SELECT_PART,
ID_REMOVE_LCSC_NUMBER,
ID_SELECT_ALIKE,
ID_TOGGLE_BOM_POS,
ID_TOGGLE_BOM,
ID_TOGGLE_POS,
ID_PART_DETAILS,
ID_HIDE_BOM,
ID_HIDE_POS,
):
self.right_toolbar.EnableTool(button, state)
def toggle_bom_pos(self, *_):
"""Toggle the exclude from BOM/POS attribute of a footprint."""
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
board = self.pcbnew.GetBoard()
fp = board.FindFootprintByReference(ref)
bom = toggle_exclude_from_bom(fp)
pos = toggle_exclude_from_pos(fp)
self.store.set_bom(ref, int(bom))
self.store.set_pos(ref, int(pos))
self.partlist_data_model.toggle_bom_pos(item)
def toggle_bom(self, *_):
"""Toggle the exclude from BOM attribute of a footprint."""
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
board = self.pcbnew.GetBoard()
fp = board.FindFootprintByReference(ref)
bom = toggle_exclude_from_bom(fp)
self.store.set_bom(ref, int(bom))
self.partlist_data_model.toggle_bom(item)
def toggle_pos(self, *_):
"""Toggle the exclude from POS attribute of a footprint."""
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
board = self.pcbnew.GetBoard()
fp = board.FindFootprintByReference(ref)
pos = toggle_exclude_from_pos(fp)
self.store.set_pos(ref, int(pos))
self.partlist_data_model.toggle_pos(item)
def remove_lcsc_number(self, *_):
"""Remove an assigned a LCSC Part number to a footprint."""
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
self.store.set_lcsc(ref, "")
self.store.set_stock(ref, None)
self.partlist_data_model.remove_lcsc_number(item)
def select_alike(self, *_):
"""Select all parts that have the same value and footprint."""
if self.footprint_list.GetSelectedItemsCount() > 1:
self.logger.warning("Select only one component, please.")
return
item = self.footprint_list.GetSelection()
for item in self.partlist_data_model.select_alike(item):
self.footprint_list.Select(item)
def get_part_details(self, *_):
"""Fetch part details from LCSC and show them one after another each in a modal."""
for item in self.footprint_list.GetSelections():
if lcsc := self.partlist_data_model.get_lcsc(item):
self.show_part_details_dialog(lcsc)
def show_part_details_dialog(self, part):
"""Show the part details modal dialog."""
wx.BeginBusyCursor()
try:
dialog = PartDetailsDialog(self, part)
dialog.ShowModal()
finally:
wx.EndBusyCursor()
def update_library(self, *_):
"""Update the library from the JLCPCB CSV file."""
self.library.update()
def manage_rotations(self, *_):
"""Manage rotation corrections."""
RotationManagerDialog(self, "").ShowModal()
def manage_mappings(self, *_):
"""Manage footprint mappings."""
PartMapperManagerDialog(self).ShowModal()
def manage_settings(self, *_):
"""Manage settings."""
SettingsDialog(self).ShowModal()
def update_settings(self, e):
"""Update the settings on change."""
if e.section not in self.settings:
self.settings[e.section] = {}
self.settings[e.section][e.setting] = e.value
self.save_settings()
def logbox_append(self, e):
"""Write text to the logbox."""
self.logbox.WriteText(e.msg)
def load_settings(self):
"""Load settings from settings.json."""
with open(os.path.join(PLUGIN_PATH, "settings.json"), encoding="utf-8") as j:
self.settings = json.load(j)
def save_settings(self):
"""Save settings to settings.json."""
with open(
os.path.join(PLUGIN_PATH, "settings.json"), "w", encoding="utf-8"
) as j:
json.dump(self.settings, j)
def select_part(self, *_):
"""Select a part from the library and assign it to the selected footprint(s)."""
selection = {}
for item in self.footprint_list.GetSelections():
ref = self.partlist_data_model.get_reference(item)
lcsc = self.partlist_data_model.get_lcsc(item)
value = self.partlist_data_model.get_value(item)
if lcsc != "":
selection[ref] = lcsc
else:
selection[ref] = value
PartSelectorDialog(self, selection).ShowModal()
def check_order_number(self):
"""Verify that the JLC order number placeholder is present."""
with open(self.pcbnew.GetBoard().GetFileName()) as f:
data = f.read()
return "JLCJLCJLCJLC" in data
def generate_fabrication_data(self, *_):
"""Generate fabrication data."""
if (
self.settings.get("general", {}).get("order_number")
and not self.check_order_number()
):
result = wx.MessageBox(
"JLC order number placehodler not present! Continue?",
"JLC order number placeholder",
wx.OK | wx.CANCEL | wx.CENTER,
)
if result == wx.ID_CANCEL:
return
self.fabrication.fill_zones()
layer_selection = self.layer_selection.GetSelection()
number = re.search(r"\d+", self.layer_selection.GetString(layer_selection))
if number:
layer_count = int(number.group(0))
else:
layer_count = None
self.fabrication.generate_geber(layer_count)
self.fabrication.generate_excellon()
self.fabrication.zip_gerber_excellon()
self.fabrication.generate_cpl()
self.fabrication.generate_bom()
def copy_part_lcsc(self, *_):
"""Fetch part details from LCSC and show them in a modal."""
for item in self.footprint_list.GetSelections():
if lcsc := self.partlist_data_model.get_lcsc(item):
if wx.TheClipboard.Open():
wx.TheClipboard.SetData(wx.TextDataObject(lcsc))
wx.TheClipboard.Close()
def paste_part_lcsc(self, *_):
"""Paste a lcsc number from the clipboard to the current part."""
text_data = wx.TextDataObject()
if wx.TheClipboard.Open():
success = wx.TheClipboard.GetData(text_data)
wx.TheClipboard.Close()
if success:
if (lcsc := self.sanitize_lcsc(text_data.GetText())) != "":
for item in self.footprint_list.GetSelections():
details = self.library.get_part_details(lcsc)
reference = self.partlist_data_model.get_reference(item)
self.partlist_data_model.set_lcsc(
reference, lcsc, details["type"], details["stock"]
)
self.store.set_lcsc(reference, lcsc)
def add_rotation(self, e):
"""Add part rotation for the current part."""
for item in self.footprint_list.GetSelections():
if e.GetId() == ID_CONTEXT_MENU_ADD_ROT_BY_PACKAGE:
if footprint := self.partlist_data_model.get_footprint(item):
RotationManagerDialog(self, "^" + re.escape(footprint)).ShowModal()
elif e.GetId() == ID_CONTEXT_MENU_ADD_ROT_BY_NAME:
if value := self.partlist_data_model.get_value(item):
RotationManagerDialog(self, re.escape(value)).ShowModal()
def save_all_mappings(self, *_):
"""Save all mappings."""
for item in self.partlist_data_model.get_all():
value = item[1]
footprint = item[2]
lcsc = item[3]
if footprint != "" and value != "" and lcsc != "":
if self.library.get_mapping_data(footprint, value):
self.library.update_mapping_data(footprint, value, lcsc)
else:
self.library.insert_mapping_data(footprint, value, lcsc)
self.logger.info("All mappings saved")
def export_to_schematic(self, *_):
"""Dialog to select schematics."""
with wx.FileDialog(
self,
"Select Schematics",
self.project_path,
self.schematic_name,
"KiCad V6 Schematics (*.kicad_sch)|*.kicad_sch",
wx.FD_OPEN | wx.FD_FILE_MUST_EXIST | wx.FD_MULTIPLE,
) as openFileDialog:
if openFileDialog.ShowModal() == wx.ID_CANCEL:
return
paths = openFileDialog.GetPaths()
SchematicExport(self).load_schematic(paths)
def add_foot_mapping(self, *_):
"""Add a footprint mapping."""
for item in self.footprint_list.GetSelections():
footprint = self.partlist_data_model.get_footprint(item)
value = self.partlist_data_model.get_value(item)
lcsc = self.partlist_data_model.get_lcsc(item)
if footprint != "" and value != "" and lcsc != "":
if self.library.get_mapping_data(footprint, value):
self.library.update_mapping_data(footprint, value, lcsc)
else:
self.library.insert_mapping_data(footprint, value, lcsc)
def search_foot_mapping(self, *_):
"""Search for a footprint mapping."""
for item in self.footprint_list.GetSelections():
reference = self.partlist_data_model.get_reference(item)
footprint = self.partlist_data_model.get_footprint(item)
value = self.partlist_data_model.get_value(item)
if footprint != "" and value != "":
if self.library.get_mapping_data(footprint, value):
lcsc = self.library.get_mapping_data(footprint, value)[2]
self.store.set_lcsc(reference, lcsc)
self.logger.info("Found %s", lcsc)
details = self.library.get_part_details(lcsc)
self.partlist_data_model.set_lcsc(
reference, lcsc, details["type"], details["stock"]
)
def sanitize_lcsc(self, lcsc_PN):
"""Sanitize a given LCSC number using a regex."""
m = re.search("C\\d+", lcsc_PN, re.IGNORECASE)
if m:
return m.group(0)
return ""
def OnRightDown(self, *_):
"""Right click context menu for action on parts table."""
right_click_menu = wx.Menu()
copy_lcsc = wx.MenuItem(
right_click_menu, ID_CONTEXT_MENU_COPY_LCSC, "Copy LCSC"
)
right_click_menu.Append(copy_lcsc)
right_click_menu.Bind(wx.EVT_MENU, self.copy_part_lcsc, copy_lcsc)
paste_lcsc = wx.MenuItem(
right_click_menu, ID_CONTEXT_MENU_PASTE_LCSC, "Paste LCSC"
)
right_click_menu.Append(paste_lcsc)
right_click_menu.Bind(wx.EVT_MENU, self.paste_part_lcsc, paste_lcsc)
rotation_by_package = wx.MenuItem(
right_click_menu,
ID_CONTEXT_MENU_ADD_ROT_BY_PACKAGE,
"Add Rotation by package",
)
right_click_menu.Append(rotation_by_package)
right_click_menu.Bind(wx.EVT_MENU, self.add_rotation, rotation_by_package)
rotation_by_name = wx.MenuItem(
right_click_menu, ID_CONTEXT_MENU_ADD_ROT_BY_NAME, "Add Rotation by name"
)
right_click_menu.Append(rotation_by_name)
right_click_menu.Bind(wx.EVT_MENU, self.add_rotation, rotation_by_name)
find_mapping = wx.MenuItem(
right_click_menu, ID_CONTEXT_MENU_FIND_MAPPING, "Find LCSC from Mappings"
)
right_click_menu.Append(find_mapping)
right_click_menu.Bind(wx.EVT_MENU, self.search_foot_mapping, find_mapping)
add_mapping = wx.MenuItem(
right_click_menu, ID_CONTEXT_MENU_ADD_MAPPING, "Add Footprint Mapping"
)
right_click_menu.Append(add_mapping)
right_click_menu.Bind(wx.EVT_MENU, self.add_foot_mapping, add_mapping)
self.footprint_list.PopupMenu(right_click_menu)
right_click_menu.Destroy() # destroy to avoid memory leak
def init_logger(self):
"""Initialize logger to log into textbox."""
root = logging.getLogger()
root.setLevel(logging.DEBUG)
# Log to stderr
self.logging_handler1 = logging.StreamHandler(sys.stderr)
self.logging_handler1.setLevel(logging.DEBUG)
# and to our GUI
self.logging_handler2 = LogBoxHandler(self)
self.logging_handler2.setLevel(logging.DEBUG)
formatter = logging.Formatter(
"%(asctime)s - %(levelname)s - %(funcName)s - %(message)s",
datefmt="%Y.%m.%d %H:%M:%S",
)
self.logging_handler1.setFormatter(formatter)
self.logging_handler2.setFormatter(formatter)
root.addHandler(self.logging_handler1)
root.addHandler(self.logging_handler2)
self.logger = logging.getLogger(__name__)
def __del__(self):
"""Cleanup."""