summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-05-16Add checks to ensure statement unit conversions are idempotentHamilton Kibbe6-89/+379
2015-04-27Allow 3 digits on Excellon tool selectionPaulo Henrique Silva2-2/+10
Fritzing uses more than 2 digits for tool in their Excellons. To comply with that, I check specifically for 3 or less digits and use as tool number, more than that we treat as the standard (2 for tool and 2 for compensation index)
2015-04-26Refactor primitive unit conversion and add regression coverage to testsHamilton Kibbe2-280/+414
2015-04-24Fix indentation after PR #26Paulo Henrique Silva1-2/+2
2015-04-24Merge pull request #26 from curtacircuitos/unit_conversion_fixPaulo Henrique Silva4-136/+241
Fix for #25. Check units at the primitive level
2015-04-24Fix for #25. Checking was happening at the gerber/excellon file level, but I ↵Hamilton Kibbe4-136/+241
added units checking at the primitive level so the use case shown in the example is covered. Might want to throw a bunch more assertions in the test code (i started doing a few) to cover multiple calls to unit conversion functions
2015-04-23Fix Gerber generation for coord blocks with implicit op codePaulo Henrique Silva1-0/+3
2015-04-14Fix AM statement testPaulo Henrique Silva1-2/+2
2015-04-14AMStatement are used as is when gerbers are generatedPaulo Henrique Silva1-2/+2
2015-04-13Fix issue where D01 and D03 are implicit.Paulo Henrique Silva1-4/+7
Based on code from @rdprescott.
2015-04-07(really) Fix parsing for AM macros with zero modifiersPaulo Henrique Silva1-1/+1
2015-04-07Fix CoordStmt with missing i/j offsetsPaulo Henrique Silva1-2/+4
2015-04-07Fix CommentStmt for multi-line commentsPaulo Henrique Silva1-1/+5
2015-04-07Add some deprecated but still found statementsPaulo Henrique Silva2-6/+57
2015-04-07Small change on __str__ for SF StatementPaulo Henrique Silva2-2/+2
2015-04-07Fix parsing for AM macros with zero modifiersPaulo Henrique Silva1-2/+2
2015-04-07Add unspecified FS D leading zeros formatPaulo Henrique Silva3-14/+21
FS D leading zero format (probably form Direct) is an unspecified coordinate format where all numbers are specified with both leading and trailing zeros.
2015-04-07Fix Excellon repeat commandPaulo Henrique Silva3-14/+23
2015-04-07Allowance for weird case modifier with no zero after periodPaulo Henrique Silva1-1/+3
2015-03-06fix testsHamilton Kibbe1-9/+13
2015-03-06add rest of altium-supported ipc-d-356 statementsHamilton Kibbe1-25/+109
2015-03-06Add support for unary minus operator on macro parsingPaulo Henrique Silva1-1/+15
2015-03-05Fix parsing for multiline ipc-d-356 recordsHamilton Kibbe8-55/+218
2015-03-05Merge pull request #23 from curtacircuitos/macro-parse-evalHamilton Kibbe6-47/+418
Add aperture macro parsing and evaluation.
2015-03-05More py3 fixesPaulo Henrique Silva1-3/+3
2015-03-05Fix for py3Paulo Henrique Silva2-2/+2
2015-03-05Fix tests for macros with no variables.Paulo Henrique Silva5-33/+45
All AM*Primitive classes now handles float for all but the code modifiers. This simplifies the reading/parsing.
2015-03-03Add aperture macro parsing and evaluation.Paulo Henrique Silva5-31/+390
Aperture macros can get complex with arithmetical operations, variables and variables substitution. Current pcb-tools code just read each macro block as an independent unit, this cannot deal with variables that get changed after used. This patch splits the task in two: first we parse all macro content and creates a bytecode representation of all operations. This bytecode representation will be executed when an AD command is issues passing the required parameters. Parsing is heavily based on gerbv using a Shunting Yard approach to math parsing. Integration with rs274x.py code is not finished as I need to figure out how to integrate the final macro primitives with the graphical primitives already in use.
2015-02-28Merge pull request #22 from pklaus/python3Hamilton Kibbe1-1/+1
Updating gerber/__main__.py for Python3
2015-02-28`sys.stderr.write()` instead of `print >> sys.stderr, "..."`Philipp Klaus1-1/+1
2015-02-24Merge pull request #21 from bcho/hotfix/py3k-map-objectPaulo Henrique Silva1-1/+1
Convert py3k's map object to tuple explicitly.
2015-02-25Convert py3k's map object to tuple explicitly.hbc1-1/+1
2015-02-21Merge pull request #20 from curtacircuitos/ipc-d-356Paulo Henrique Silva6-5/+562
Add IPC-D-356 Netlist Parsing
2015-02-20Add IPC-D-356 Netlist ParsingHamilton Kibbe6-5/+562
2015-02-20Fix floating point equality testPaulo Henrique Silva1-2/+2
2015-02-20Fix size test, board is slight out of origin, so size does change now that ↵Paulo Henrique Silva1-2/+2
we properly handle non-zero origins
2015-02-20Fix GerberFile.bounds when board origin is negativePaulo Henrique Silva1-13/+10
2015-02-20Fix arc width per comment in #12Hamilton Kibbe2-2/+2
2015-02-18doc optionsHamilton Kibbe1-1/+1
2015-02-18Doc updateHamilton Kibbe4-14/+38
2015-02-18Add offset operationHamilton Kibbe9-67/+348
2015-02-19Merge pull request #19 from curtacircuitos/python3Paulo Henrique Silva11-30/+28
Python 3 tests passing
2015-02-18Add documentation link to READMEHamilton Kibbe1-0/+6
2015-02-18Python 3 tests passingHamilton Kibbe11-30/+28
2015-02-18Merge pull request #17 from pklaus/name_fixPaulo Henrique Silva1-4/+4
finish changing the project name
2015-02-18finish changing the project namePhilipp Klaus1-4/+4
2015-02-18Merge pull request #16 from pklaus/relative-importsPaulo Henrique Silva8-13/+13
Fixing more relative import statements
2015-02-18Merge pull request #15 from pklaus/dependenciesPaulo Henrique Silva1-1/+1
adding dependency cairocffi
2015-02-18accidentially changed import order in 7ace94bPhilipp Klaus1-1/+1
2015-02-18Fixing more relative import statementsPhilipp Klaus2-5/+5