40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2020-2021 Salvador E. Tropea
|
|
# Copyright (c) 2020-2021 Instituto Nacional de Tecnología Industrial
|
|
# License: GPL-3.0
|
|
# Project: KiBot (formerly KiPlot)
|
|
from .gs import GS
|
|
from .out_base import VariantOptions
|
|
from .macros import macros, document, output_class # noqa: F401
|
|
|
|
|
|
class Sch_Variant_Options(VariantOptions):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def get_targets(self, out_dir):
|
|
return GS.sch.file_names_variant(out_dir)
|
|
|
|
def run(self, output_dir):
|
|
super().run(output_dir)
|
|
# Create the schematic
|
|
GS.sch.save_variant(output_dir)
|
|
|
|
|
|
@output_class
|
|
class Sch_Variant(BaseOutput): # noqa: F821
|
|
""" Schematic with variant generator
|
|
Creates a copy of the schematic with all the filters and variants applied.
|
|
This copy isn't intended for development.
|
|
Is just a tweaked version of the original where you can look at the results. """
|
|
def __init__(self):
|
|
super().__init__()
|
|
with document:
|
|
self.options = Sch_Variant_Options
|
|
""" [dict] Options for the `sch_variant` output """
|
|
self._sch_related = True
|
|
|
|
def run(self, output_dir):
|
|
# No output member, just a dir
|
|
self.options.run(output_dir)
|