KiCad-Diff/README.md

87 lines
6.2 KiB
Markdown
Raw Normal View History

2017-08-25 11:32:18 -07:00
# KiCad-Diff
2018-06-04 14:51:39 -07:00
2019-05-18 08:21:02 -07:00
NEWS
Added new SVG Branch which is much faster and compares SVGs directly rather than doing renderings in ImageMagick. Still needing some work but illustrates proof of concept.
2019-04-18 10:26:53 -07:00
Was originaly a bash script, this newer GUI version has been rewritten in Python3 and supports Git, SVN and Fossil as SCM tools.
2018-06-04 14:51:39 -07:00
Scripts for performing image diffs between pcbnew layout revisions. Extended to show the graphical diff in a webpage. Also included some general Kicad/Fossil observations.
2017-08-25 11:32:18 -07:00
Based on the initial scripts of Spuder and described in https://github.com/UltimateHackingKeyboard/electronics/tree/master/scripts
The workflow describes how to use a git repository for Kicad printed circuit board board versions. Kicad uses text files for schematic and pcb layout files. Whilst it is easy enough to generate and diff two pcb layout files, the results are almost meaningless as it is impossible to decide what items have moved where.
2017-08-25 11:32:18 -07:00
Additionally, Spuders workflow relied on git - and I rather prefer Fossil-scm as it is a more complete solution (has a wiki and bugtracker built in) and is a small memory footprint.
https://www.fossil-scm.org/index.html/doc/trunk/www/index.wiki
Also, Spuder's workflow relied on a python script that was downloaded to a /tmp directory. This makes the solution problematic if you are without internet access.
2018-06-04 14:51:39 -07:00
I have added a web interface to this project. It is functional but needs some work to render it more attractive...
2017-08-25 11:32:18 -07:00
The code is pretty sloppy and fairly sparsely commented but functional. The diff program should be run within a fossil checkout and takes 0, 1 or 2 commit hashes as arguments. With 0 arguments, the script compares the working copy with the last committed version (i.e what has changes since the last commit). With 1 argument, the current checkout is compared to the version identified and with two commit hashes a diff between those versions is calculated.
2017-08-25 11:32:18 -07:00
The diffed versions of the pcb are then used to generate parallel sets of svg files using the kicad python interface. The svg files are then converted to png and cropped to just the board area. ImageMagick is used to manipulate the images to highlight the changed items.
2017-08-25 11:32:18 -07:00
One strategy is to use the stereo 0 command but I had no luck with this and have come up with an alternative method.
Finally the images are presented in a webpage - clicking an image will bring up a 3-pane diff showing before and after and the composite image with the differences highlighted. The webpage generation code needs abstracting (next part of project). The three pane view is accompanied by a text diff (however, this is very limited and for it to be meaningful really needs a tool to 'reverse parse' the diff and generate a tree structure - i.e a change is noted in a gr-text line but this line is in the s-expression definition of a module that has been moved. Once the diff has been noted, you need to go back up through the s-expression tree to determine the originating module/net etc.
Determining coordinate position is also tricky. It is straightforward to overlay a grid but trickier to compute the necessary offset and scales - this is possible with the python interface but this seems to be in evolution at present. Adjusting or placing an auxillary zero causes problems. Plan to generate a full sized svg image of each page, do the visual diff and then crop the diff to the image extents. Then go back and apply the same crop to the DIFF_1 & DIFF_2 images & at the same time calculate the scale factor and the grid co-ordinates.
Working on python parsing of .kicad_pcb file to extract module/track location info. I have doubled the size of the svg to improve the render detailing when converted to png. Would like to be able to do all of thisi in the svg format.
2017-08-25 11:32:18 -07:00
Kicad tends to modify some of the minor data in the checkout making commits a bit 'noisy'. I have adopted the scheme proposed here https://jnavila.github.io/plotkicadsch/ to amend the kicad files before committing them. Although there is quite extensive scripting support in fossil it seems quite difficult to replicate the clean and smudge technique reliably in Fossil. There is a wrapper project called fsl (http://fossil.0branch.com/fsl/home) which acts as an interceptor to fossil commands and, additionally offers some extra shortcuts and some more colourful logging options (and the Dresden branch allows the use of simple revision numbers). The behaviour is controlled by a ~/.fslrc file which I have included in this repo.
2017-08-25 11:32:18 -07:00
I am running this setup on macOs 10.12 but I would imagine any linux variant would work as well. Windows - ymmv...
2017-08-25 11:32:18 -07:00
Dependencies
* gsed (Mac sed is limited)
* Kicad with python scripting enabled
* Image Magick
2018-06-04 14:51:39 -07:00
* Fossil scm (OR Git or SVN)
2017-08-25 11:32:18 -07:00
* Possibly some others but all have been installed with the help of brew
(If you are on MacOS X and having problems with Imagemagick's convert, you might try reinstalling it with RSVG lib.Using HomeBrew:
brew remove imagemagick
brew install imagemagick --with-librsvg
2018-10-04 15:20:02 -07:00
**Instructions**
2018-10-05 00:37:24 -07:00
* Check that the paths to your SCM tools are correct (lines 32-34)
* Install plotPCB2.py in /usr/local/bin (or adjust path in lines 480/481 to suit).
(I should probably add this sort of stuff to a config file but I might wait for V2...)
* Install imagemagick.
* Run the main script and select a pair of versions in a source controlled repository from the GUI.
* Select a resolution.
* Select which layers you wish to compare.
The script should build a series of svg files and display the diff in a webpage.
2018-10-04 15:20:02 -07:00
2018-06-04 14:51:39 -07:00
Plans:
2018-06-04 14:51:39 -07:00
Rewrite in Python to improve integration with Kicad. DONE
Possibly support other VCS tools. DONE
Mechanism to select layer sets and resolution. DONE
Improvement in parsing and meaning of text diffs. IN PROGRESS
2017-08-25 11:32:18 -07:00
## screenshots
2018-06-04 14:51:39 -07:00
GUI
![GUI](/Documents/Screen%20Shot%202018-06-04%20at%2022.28.05.png)
2017-08-25 11:32:18 -07:00
Overview
![screenshot overview](/Documents/Overview.png)
Three panel view
![screenshot Three panel view](/Documents/3panel.png)
2017-08-25 11:48:05 -07:00
F_Cu
![screenshot F-Cu](/Documents/F_Cu.png)
F_Cu2
![screenshot TF_Cu2](/Documents/F_Cu2.png)
F_Fab
![screenshot F_Fab](/Documents/F_Fab.png)
F_Mask
![screenshot F_Mask](/Documents/F_Mask.png)
2018-06-04 14:51:39 -07:00
Output with PCBDraw (In progress)
![PCBDraw Output](/Documents/diff-74b1-b1d3.png)