kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #08717
Re: Proposal for batch plotting
On Mon, Aug 06, 2012 at 09:54:35AM -0400, Wayne Stambaugh wrote:
> Shouldn't this be:
> (output TYPE # Where TYPE is PDF, SVG, GERBER, etc?
It the same issue as the XML 'attribute or subelement' debate. A sexp could contain everything... it seems to me that the 'rule' was "first element is the record type, following are items containing attributes/subelement"
The issue is when to stop since if you says that instead of
(output (type dxf) (stem "Assembly") ... )
you have to use
(output dxf (stem "Assembly") ... )
then why not
(output dxf "Assembly" ... )
or even a lambda list with keywords (the last one could be a lambda list, too)
(output :type dxf :stem "Assembly" ... )
And you're lucky we don't have destructuring binds in C++ ...
Do we have some design doc explaining the use of sexps in file formats?
> I would also like to see a path for each plot type which can be made
> relative to the project path to save the plot files into. I like to
> avoid putting a bunch of plot files in my project directory.
At the moment I implemented the output dir feature from the plot dialog. So you get:
- The output directory from the plot dialog
- The base name from the board file
- A stem declared in the plot statement
- An extension which could be the default from the file type or specified with the stem
Should be flexible enough... with some more work we could also set the output dir as a plot-level attribute instead of a job-level one. But then just put the full filename instead of a stem to add to a board name.
I'd leave that for a successive step of refinement, now I'm trying to make the parser work.
--
Lorenzo Marcantonio
Logos Srl
Follow ups
References
-
Proposal for batch plotting
From: Lorenzo Marcantonio, 2012-07-31
-
Re: Proposal for batch plotting
From: Wayne Stambaugh, 2012-08-02
-
Re: Proposal for batch plotting
From: Lorenzo Marcantonio, 2012-08-03
-
Re: Proposal for batch plotting
From: Miguel Angel Ajo Pelayo, 2012-08-03
-
Re: Proposal for batch plotting
From: Lorenzo Marcantonio, 2012-08-03
-
Re: Proposal for batch plotting
From: jean-pierre charras, 2012-08-04
-
Re: Proposal for batch plotting
From: Lorenzo Marcantonio, 2012-08-04
-
Re: Proposal for batch plotting
From: Miguel Angel Ajo Pelayo, 2012-08-04
-
Re: Proposal for batch plotting
From: Lorenzo Marcantonio, 2012-08-05
-
Re: Proposal for batch plotting
From: Wayne Stambaugh, 2012-08-06