forked from JarrettR/Stretch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstretch_plugin_action.py
51 lines (43 loc) · 1.8 KB
/
stretch_plugin_action.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
import pcbnew
import os
from .svg_writer import SvgWrite
from .pcb_writer import PcbWrite
class StretchPluginAction(pcbnew.ActionPlugin):
def __init__(self, tool):
self.tool = tool
super(StretchPluginAction, self).__init__()
def defaults(self):
if self.tool == "to_svg":
self.name = "Stretch-To-SVG"
self.category = "A KiCad plugin"
self.description = "A plugin to add beauty"
self.show_toolbar_button = True # Optional, defaults to False
self.icon_file_name = os.path.join(os.path.dirname(__file__), 'icons', 'to_svg.png') # Optional
elif self.tool == "to_pcb":
self.name = "Stretch-To-PCB"
self.category = "A KiCad plugin"
self.description = "A plugin to add beauty"
self.show_toolbar_button = True # Optional, defaults to False
self.icon_file_name = os.path.join(os.path.dirname(__file__), 'icons', 'to_pcb.png') # Optional
self.svg_file_name = 'out.svg'
def Run(self):
b = pcbnew.GetBoard()
pcb_filename = b.GetFileName()
#If BS4 not installed:
try:
import bs4
except ImportError:
pcbnew._pcbnew.ProcessExecute('pip install bs4')
#todo: test!
if self.tool == "to_svg":
a = SvgWrite()
a.Run_Plugin(pcb_filename, self.svg_file_name)
elif self.tool == "to_pcb":
a = PcbWrite()
a.Run_Plugin(pcb_filename, self.svg_file_name)
pcbnew.Refresh()
#Only run using when issuing the following command, for testing the environment
# D:\Programs\KiCad\bin\python.exe .\stretch_plugin_action.py
if __name__ == '__main__':
a = PcbWrite()
a.Run_Plugin('D:\\Projects\\git\\test\\what.kicad_pcb', 'out.svg')