1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5 <link rel=
"stylesheet" media=
"screen" type=
"text/css" href=
"./style.css" />
6 <link rel=
"stylesheet" media=
"screen" type=
"text/css" href=
"./design.css" />
7 <link rel=
"stylesheet" media=
"print" type=
"text/css" href=
"./print.css" />
9 <meta http-equiv=
"Content-Type" content=
"text/html; charset=utf-8" />
14 <em>Translations of this page are also available in the following languages:
</em> <a href=
"pcb-projects.ru.html" class=
"wikilink1" title=
"pcb-projects.ru.html">Русский
</a>
17 <h1 id=
"pcbprojects">pcb Projects
</h1>
22 <h2 id=
"corefunctionality">Core Functionality
</h2>
25 <li class=
"level1"><div class=
"li"> <a href=
"pcb-padstacks.html" class=
"wikilink1" title=
"pcb-padstacks.html">Padstacks
</a></div>
31 <h2 id=
"designrulechecker">Design Rule Checker
</h2>
35 <a href=
"pcb-drc.html" class=
"wikilink1" title=
"pcb-drc.html">drc
</a>
40 <h3 id=
"onlinedrc">Online DRC
</h3>
45 <h1 id=
"pcblayouteditor">pcb Layout Editor
</h1>
50 <h3 id=
"plowfeature">Plow feature
</h3>
54 A
"plow
" feature where the line tool shoves existing traces aside
55 preserving the design rules when possible.
59 <code>Difficulty =
4-
5</code>
64 <h3 id=
"fastsnaproundingalgorithm">Fast snap rounding Algorithm
</h3>
68 Implement a fast snap rounding algorithm and resolve the case where
69 inserted point cause self-intersection.
73 PCB uses an integer coordinate system for all of its objects. The polygon
74 clipping code computes all points of intersection between two
75 non-self-intersecting contours (among many other things it does), but these
76 points of intersection must also have integer coordinates.
80 A snap-rounding algorithm replaces two segments that intersect at other than
81 their end points with four segments where each has an end point on an
82 integer coordinate near the original (non-integer) intersection. Because
83 this rounding operation on the point of intersection can change the slopes
84 of the four segments compare to that of the original two, it raises the
85 possibility that new intersections between the replacement segments and
86 other segments of the contours occur that did not exist with the original
87 segments. The snap rounding algorithm needs to produce a collection of
88 segments where all intersections occur at segment end points having integer
89 coordinates. The existing code in pcb does this already, but it uses a
90 theoretically slow algorithm, compared to others that are known, such as:
94 "Improved output-sensitive snap rounding,
" John Hershberger, Proceedings of
95 the
22nd annual symposium on Computational geometry,
2006, pp
357-
366.
96 http:
<em>doi.acm.org/
10.1145/
1137856.1137909
98 Algorithms described by de Berg, or Goodrich or Halperin, or Hobby would
99 probably also be better than what we currently have implemented.
101 In addition, there are rare-but-real degenerate situations where the snap
102 rounding results in one (or both) contours having a self-intersection that
103 did not exist before. This self-intersection is fatal to our polygon
104 clipping code. We do not know if the snap rounding algorithms in the
105 literature deal with this issue or not, but if they do not, we need to
106 develop a variant algorithm that does, whether done by judicious choice of
107 the rounding points that are created, or a post-processing step that
108 eliminates the self-intersection with minimal geometric distortion to the
111 <code>Difficulty =
4-
5</code>
113 ==== Snapping enhancements ====
115 There are a number of possible enhancements related to crosshair snapping that could improve usability. For example, being able to reorder the snapping priority (what objects are snapped to before others), disabling certain objects from being snapped to, changing the radius at which a snap occurs, and others.
117 Ideas for how the snapping system should work are being collected here:
<a href=
"snappinginpcb.html" class=
"wikilink2" title=
"snappinginpcb.html">Snapping in pcb
</a>. There is also a todo list with some work that needs to be done.
119 ==== Auto-routed drawing tool ====
121 Basically with this tool, you would click on a starting point, then drag the
122 crosshair to some other (typically intermediate point), possibly on another
123 layer and an auto-routing tool would show a prospective path to that point
124 (meeting design rules and style requirements). If you didn
't like the
125 offered path, you could hit a key to see a more expensive candidate, or a
126 different key to (back up) to a less expensive candidate. The prospective
127 route would dynamically change to reach the crosshair end-point as the
128 crosshair is moved. It would disappear if no path could be found. Clicking
129 would place the prospective path as copper and anchor a new starting point
130 for the tool (much like the line tool does now).
132 <code>Difficulty =
5</code>
134 ==== IPC Footprint Calculator ====
136 Build a footprint calculator that can take the IPC rules and produce a pcb footprint. Preferably write this in a way where the core program is independent of a GUI so that you can script it for generating entire large families of footprints or hook it up to a GUI of choice (lesstif, gtk, maybe even cgi). Would require the purchase of IPC-
7351 (approximately U.S.A. $
100) and verifying that one is allowed to produce such a calculator.
138 <code>Difficulty =
2</code>
140 ==== Recently loaded file list ====
142 Presently pcb does not present a list of recently loaded files in the file menu. It would be nice if pcb kept track of the last few files a user loaded. This is a common feature found in other programs.
144 <code>Difficulty =
1</code>
146 ====== User Experience (UX) Improvements ======
149 ==== Update the User Manual ====
151 In
1997, Richard Stallman wrote: “The biggest deficiency in free operating systems is not in the software — it is the lack of good free manuals that we can include in these systems.”
153 * Include a chapter on the Topological router in User Manual.
154 * Include DJ
's Getting Started in the User Manual.
155 * Extend Getting Started for both autorouter and topological router.
156 * Add more step-by-step examples for existing exporters:
159 * Usage of Blind and buried vias.
160 * Unify and combine the READMEs.
162 ==== i18n / l10n ====
164 * Get more translations/translators --
> better and more language translations.
165 * Update the Dutch translation ?
166 * Update the French translations ?
167 * Update the Cyrrilic translations ?
168 * Use Launchpad for common translations.
169 * Check on what should be translatable strings.
170 * Check on plural forms in exotic languages (Japanese, etc).
171 * Respect
"Right-To-Left
" reading users (Arabic, GUI layouts ?).
175 * Layout vs netlist/schematic check or just trust the
"import schematic
" netlist (ERC).
176 * Rebuilding a netlist from scratch, based on connectivity (copper layers).
180 * Respect the
"outline
",
"route
" and non-copper layers with the autorouter.
181 * Respect the
"outline
",
"route
" and non-copper layers with the toporouter.
182 * Add via placement to the toporouter.
184 * Importing routing style and other data from the netlist (if available).
186 ==== Other platforms, GUI
's and dependencies ====
188 * Migrate to GNOME/GTK3 … when ?
189 * Migrate to GNOME/GTK4 … when ?
190 * HTML5 (+java) GUI (web based pcb layout designer).
191 * Android GUI for tablets and smart-phones.
193 * wxWidgets for native Microsoft windows look-and-feel UX ?
194 * Single Document Interface mode GTK UI with a separate function tear-off (lessGTK ?)
195 * Separate layout window for artwork (primary screen).
196 * Separate window for buttonbox and pull-down menu-items (secondary screen).
197 * More routing styles (in pull-down combo-box ?).
198 * Multiple Document Interface mode for the GTK UI ?
199 * Multiple Document Interface mode for the lesstif UI ?
200 * Cygwin port for windows ?
201 * W32 port with minipack ?
202 * WIN32 port with a NSIS installer ?
203 * Flatpak (http:
</em>flatpak.org) pcb packages for multiple linux distributions ?
208 <h3 id=
"plug-ins">Plug-ins
</h3>
211 <li class=
"level1"><div class=
"li"> Breakout plug-in for BGA escape routes.
</div>
213 <li class=
"level1"><div class=
"li"> MUCS manhattan router plug-in.
</div>
215 <li class=
"level1"><div class=
"li"> Pcb shopper quotation plug-in.
</div>
217 <li class=
"level1"><div class=
"li"> Double Stripline/Microstrip Impedance Calculator plug-in.
</div>
219 <li class=
"level1"><div class=
"li"> Entity inspector/editor plug-in.
</div>
221 <li class=
"level1"><div class=
"li"> Serpentine length matching plug-in.
</div>
223 <li class=
"level1"><div class=
"li"> Differential pair routing plug-in.
</div>
225 <li class=
"level1"><div class=
"li"> Panelize plug-in.
</div>
227 <li class=
"level1"><div class=
"li"> Bus routing plug-in.
</div>
229 <li class=
"level1"><div class=
"li"> Push and Shove routing plug-in.
</div>
231 <li class=
"level1"><div class=
"li"> Parasitic capacitance/inductance extraction plug-in.
</div>
233 <li class=
"level1"><div class=
"li"> Load plug-ins on demand.
</div>
239 <h3 id=
"fileexchange">File exchange
</h3>
242 <li class=
"level1"><div class=
"li"> IDF importer/exporter (ECAD
<--
> MCAD).
</div>
244 <li class=
"level1"><div class=
"li"> XML importer/exporter.
</div>
246 <li class=
"level1"><div class=
"li"> DXF importer/exporter (PCB
<--
> MCAD).
</div>
248 <li class=
"level1"><div class=
"li"> DSN importer/exporter (PCB
<--
> external routing).
</div>
250 <li class=
"level1"><div class=
"li"> Verilog-AMS exporter (PCB --
> simulation / analysis, see Albert Davis talk at FOSDEM-
2016 ).
</div>
252 <li class=
"level1"><div class=
"li"> GnuCAP exporter (PCB --
> simulation / analysis).
</div>
258 <h3 id=
"exporters">Exporters
</h3>
261 <li class=
"level1 node"><div class=
"li"> Geometric model representation:
</div>
263 <li class=
"level2"><div class=
"li"> VRML exporter (PCB --
> eye-candy for visualisation / sales pitch).
</div>
265 <li class=
"level2"><div class=
"li"> OpenSCAD exporter (PCB --
> MCAD integration /
3D printing / mock-up).
</div>
267 <li class=
"level2"><div class=
"li"> STEP exporter (PCB --
> MCAD integration).
</div>
269 <li class=
"level2"><div class=
"li"> DXF exporter (PCB --
> MCAD integration).
</div>
271 <li class=
"level2"><div class=
"li"> STL exporter (PCB --
> MCAD integration /
3D printing / mock-up).
</div>
275 <li class=
"level1 node"><div class=
"li"> Electromagnetics / Capacitance exporters:
</div>
277 <li class=
"level2"><div class=
"li"> Validate the workflow for GSvit.
</div>
279 <li class=
"level2"><div class=
"li"> Validate the workflow for Nelma.
</div>
287 <h3 id=
"otherunsortedcrazyideas">Other unsorted crazy ideas
</h3>
290 <li class=
"level1"><div class=
"li"> Gerber files as a background (for reverse engineering).
</div>
292 <li class=
"level1"><div class=
"li"> Import a gerber project (for reverse engineering).
</div>
294 <li class=
"level1"><div class=
"li"> Layer definition awareness (copper, non-copper, soldermask).
</div>
296 <li class=
"level1"><div class=
"li"> Editable soldermask (gang solder mask clearance … for QFP, SO, PLCC, etc. package types).
</div>
298 <li class=
"level1"><div class=
"li"> Grouping of elements, traces and vias.
</div>
300 <li class=
"level1"><div class=
"li"> Show / define solder paste.
</div>
302 <li class=
"level1"><div class=
"li"> Show / define IPC-
356-D test points.
</div>
304 <li class=
"level1"><div class=
"li"> Back annotation (output).
</div>
306 <li class=
"level1"><div class=
"li"> Pin swapping.
</div>
308 <li class=
"level1"><div class=
"li"> Pinout awareness (in, out, inout, pas, pwr like in gschem).
</div>
310 <li class=
"level1"><div class=
"li"> Padstack definitions.
</div>
312 <li class=
"level1"><div class=
"li"> Layer stackup definitions.
</div>
314 <li class=
"level1"><div class=
"li"> Create multiple pcb executables during build time (bpcb for batch, gpcb for GTK, lpcb for lesstif).
</div>
316 <li class=
"level1"><div class=
"li"> Assist the user with repetitive tasks.
</div>
322 <h1 id=
"developerexperiencedximprovements">Developer Experience (DX) Improvements
</h1>
325 <li class=
"level1"><div class=
"li"> Travis-CI Continuous Integration for pcb on Travis (https:
<em>travis-ci.org).
326 * Under the hood structural improvements.
327 * Start a pcb-
5.x.y development blueprint and branch
"devel
" ?
328 * Object Oriented approach in source tree / files.
329 * libpcb for helper functions or abstraction stuff ?
330 * Pin/pad/traces know to which net they belong (cross reference index).
331 * Developer documentation !
332 * Further Doxygenation of source files.
333 * Descriptions of
"state machines
" within actions and other code flow.
336 *
<a href=
"pcb-pcb_tests.html" class=
"wikilink1" title=
"pcb-pcb_tests.html">PCB level tests
</a>
337 *
<a href=
"pcb-unit_tests.html" class=
"wikilink1" title=
"pcb-unit_tests.html">Code level unit tests
</a>