1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
|
/*
VeroRoute - Qt based Veroboard/Perfboard/PCB layout & routing application.
Copyright (C) 2017 Alex Lawrow ( dralx@users.sourceforge.net )
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Board.h"
#include <QTextStream>
#include <QFile>
bool Board::BuildAndPlacePart(TemplateManager& templateMgr, const CompStrings& compStrings, std::list<std::string>& offBoard, std::string& errorStr, bool& bPartTypeOK)
{
Component comp; // Only configured if the part type is OK
// First see if m_importStr is an alias for a valid import string
const std::string& validImportStr = templateMgr.GetImportStrFromAlias(compStrings.m_importStr);
CompStrings test(compStrings); // A working copy of compStrings (with possibly modified m_importStr)
if ( !validImportStr.empty() ) test.m_importStr = validImportStr;
bool bOK = bPartTypeOK = templateMgr.CheckPartOK(test, &offBoard, &errorStr, &comp);
if ( !bOK )
templateMgr.AddAlias(compStrings.m_importStr, ""); // Don't have a valid import string yet
else
{
bOK = ( AddComponent(-1, -1, comp) != BAD_COMPID ); // Create the part and place it
if ( !bOK )
{
const std::string strID = "Part: Name = " + compStrings.m_nameStr + ", Value = " + compStrings.m_valueStr + ", Type = " + compStrings.m_importStr;
errorStr = strID + "\nInternal error creating and placing part";
}
}
return bOK;
}
// Helper to get all part info from a Protel V1 / Tango file
bool Board::GetPartsTango(const std::string& filename, std::list<CompStrings>& listOut) const
{
CompStrings compStrings;
// References to keep code tidy
std::string& nameStr = compStrings.m_nameStr; // TinyCAD "Ref" / gEDA "refdes" ==> VeroRoute "Name" (e.g. "U4")
std::string& valueStr = compStrings.m_valueStr; // TinyCAD "Name" / gEDA "device" ==> VeroRoute "Value" (e.g. "TL072")
std::string& importStr = compStrings.m_importStr; // TinyCAD "Package" / gEDA "footprint" ==> VeroRoute "Type" (e.g. "DIP8")
QFile file( QString::fromStdString(filename) );
bool bOK = file.open(QIODevice::ReadOnly);
if ( !bOK ) return bOK;
QTextStream inStream(&file);
bool bPart(false), bNet(false); // Flags indicating "part" and "netlist" sections
int iRow(0); // Row counter within "part" and "netlist" sections
while( bOK ) // Loop through file
{
if ( inStream.atEnd() ) break;
const std::string str = inStream.readLine().toStdString();
if ( str == "[" ) { bOK = !bPart && !bNet; bPart = true; iRow = 0; compStrings.Clear(); continue; }
if ( str == "]" ) { bOK = bPart && !bNet; bPart = false; continue; }
if ( str == "(" ) { bOK = !bPart && !bNet; bNet = true; iRow = 0; continue; }
if ( str == ")" ) { bOK = !bPart && bNet; bNet = false; continue; }
if ( bPart ) // We're in a "Part" description section
{
switch(iRow)
{
case 0: nameStr = str; break;
case 1: importStr = str; break;
case 2: valueStr = str; listOut.push_back(compStrings); break;
}
}
iRow++;
}
if ( file.isOpen() ) file.close();
return bOK;
}
// Helper to get all part info from an OrcadPCB2 file
bool Board::GetPartsOrcad(const std::string& filename, std::list<CompStrings>& listOut) const
{
CompStrings compStrings;
// References to keep code tidy
std::string& nameStr = compStrings.m_nameStr; // KiCAD "Reference" ==> VeroRoute "Name" (e.g. "U4")
std::string& valueStr = compStrings.m_valueStr; // KiCAD "Value" ==> VeroRoute "Value" (e.g. "TL072")
std::string& importStr = compStrings.m_importStr; // KiCAD "Footprint" ==> VeroRoute "Type" (e.g. "DIP8")
QFile file( QString::fromStdString(filename) );
bool bOK = file.open(QIODevice::ReadOnly);
if ( !bOK ) return bOK;
QTextStream inStream(&file);
bool bPartStart(false);
while( bOK ) // Loop through file
{
if ( inStream.atEnd() ) break;
const std::string str = inStream.readLine().toStdString();
if ( str.empty() ) continue; // Skip blank lines
// First non-blank char on every line should be '(' or ')' or '*'
const bool bCurvedOpen = str.find("(") != std::string::npos;
const bool bCurvedClose = str.find(")") != std::string::npos;
if ( bCurvedOpen && str.find("{") != std::string::npos && str.find("}") != std::string::npos )
continue; // Line is a comment so skip it
if ( !bCurvedOpen && !bCurvedClose )
{
if ( str.find("*") != std::string::npos )
break; // reached the '*'
bOK = false;
//errorStr = "Expecting all lines to start with '('' or ')'' or '*'";
break;
}
if ( bCurvedOpen && !bPartStart )
{
// We're expecting the line to say something like "( /5D5ADFE2 DIP16 IC1 SAD1024"
std::vector<std::string> strList;
StringHelper::GetSubStrings(str, strList); // Break str into space separated list
const size_t numSubStrings = strList.size();
bOK = ( numSubStrings == 4 || numSubStrings == 5 );
//if ( !bOK ) errorStr = "Expecting format: ( /5D5ADFE2 FOOTPRINT NAME VALUE , but got:" + str;
if ( !bOK ) break;
importStr = strList[2];
nameStr = strList[3];
valueStr = ( numSubStrings == 5 ) ? strList[4] : "";
listOut.push_back(compStrings);
bPartStart = true;
}
else
{
// We're in the pin section...
assert( bCurvedClose ); // Should have ')' on every line
if ( !bCurvedOpen )
{
// If we have just a ')' on the line then we're done with the pins ...
bPartStart = false; // ... and we're done with the part, move onto the next one
continue;
}
}
}
if ( file.isOpen() ) file.close();
return bOK;
}
// Import Protel V1 / Tango netlist (exported from TinyCAD / gEDA)
bool Board::ImportTango(TemplateManager& templateMgr, const std::string& filename, std::string& errorStr, bool& bPartTypeOK)
{
Clear();
CompStrings compStrings;
// References to keep code tidy
std::string& nameStr = compStrings.m_nameStr; // TinyCAD "Ref" / gEDA "refdes" ==> VeroRoute "Name" (e.g. "U4")
std::string& valueStr = compStrings.m_valueStr; // TinyCAD "Name" / gEDA "device" ==> VeroRoute "Value" (e.g. "TL072")
std::string& importStr = compStrings.m_importStr; // TinyCAD "Package" / gEDA "footprint" ==> VeroRoute "Type" (e.g. "DIP8")
std::string netStr; // Net name
QFile file( QString::fromStdString(filename) );
bool bOK = file.open(QIODevice::ReadOnly);
if ( !bOK ) return bOK;
QTextStream inStream(&file);
bool bPart(false), bNet(false); // Flags indicating "part" and "netlist" sections
int iRow(0); // Row counter within "part" and "netlist" sections
int iNodeId(BAD_NODEID); // Increase this with each imported net
std::list<std::string> offBoard; // List of off-board part names (for breaking into pads)
while( bOK ) // Loop through file
{
if ( inStream.atEnd() ) break;
const std::string str = inStream.readLine().toStdString();
if ( str == "[" ) { bOK = !bPart && !bNet; bPart = true; iRow = 0; continue; }
if ( str == "]" ) { bOK = bPart && !bNet; bPart = false; continue; }
if ( str == "(" ) { bOK = !bPart && !bNet; bNet = true; iRow = 0; continue; }
if ( str == ")" ) { bOK = !bPart && bNet; bNet = false; continue; }
if ( bPart ) // We're in a "Part" description section
{
if ( iRow == 0 )
{
nameStr = str;
bOK = ( nameStr.find("-") == std::string::npos ); // Name should not have a "-"
if ( !bOK ) errorStr = "Part section: " + nameStr + "\nPart names must not contain a minus sign";
if ( !bOK ) break;
bOK = ( m_compMgr.GetComponentIdFromName(nameStr) == BAD_COMPID ); // Name must be unique
if ( !bOK ) errorStr = "Part section: " + nameStr + "\nPart names must be unique";
if ( !bOK ) break;
}
if ( iRow == 1 )
{
importStr = str;
}
if ( iRow == 2 )
{
valueStr = str;
// Build the part and place it ...
bOK = BuildAndPlacePart(templateMgr, compStrings, offBoard, errorStr, bPartTypeOK);
if ( !bOK ) break;
}
}
if ( bNet ) // We're in a "Netlist" description section
{
if ( iRow == 0 )
{
netStr = str;
iNodeId++; // str has the net name, so make a new NodeID for it
}
else
{
// The line should have a part identifier and pin number separated by a '-'.
const auto pos = str.find("-");
bOK = ( pos != std::string::npos ); // Should have a "-" on the line
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine has no minus sign: " + str;
if ( !bOK ) break;
const std::string pinStr = str.substr(pos+1);; // Pin number
bOK = ( pinStr.find("-") == std::string::npos ); // Should only have one "-" on the line
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine has more than one minus sign: " + str;
if ( !bOK ) break;
const std::string lineNameStr = str.substr(0, pos);
bOK = !StringHelper::IsEmptyStr(lineNameStr); // Should have part name
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine has no part identifier: " + str;
if ( !bOK ) break;
// Paint the component pin using SetNodeIdByUser
const size_t iPinIndex = static_cast<size_t>( atoi(pinStr.c_str()) - 1 );
const int compId = m_compMgr.GetComponentIdFromName(lineNameStr);
bOK = compId != BAD_COMPID;
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine has unknown part identifier: " + str;
if ( !bOK ) break;
const Component& comp = m_compMgr.GetComponentById( compId );
assert( comp.GetType() != COMP::INVALID );
bOK = iPinIndex < comp.GetNumPins();
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine has invalid pin number: " + str;
if ( !bOK ) break;
int row, col;
bOK = GetPinRowCol(compId, iPinIndex, row, col);
if ( !bOK ) errorStr = "Net section: " + netStr + "\nLine: " + str + "\nInternal error mapping the pin to a board location";
if ( !bOK ) break;
SetNodeIdByUser(0, row, col, iNodeId, true); // true ==> paint pins
}
}
iRow++;
}
if ( file.isOpen() ) file.close();
// Break the SIPs representing off-board parts into PADs
BreakSIPSintoPADS(offBoard);
return bOK;
}
// Import OrcadPCB2 netlist (exported from KiCAD)
bool Board::ImportOrcad(TemplateManager& templateMgr, const std::string& filename, std::string& errorStr, bool& bPartTypeOK)
{
Clear();
CompStrings compStrings;
// References to keep code tidy
std::string& nameStr = compStrings.m_nameStr; // KiCAD "Reference" ==> VeroRoute "Name" (e.g. "U4")
std::string& valueStr = compStrings.m_valueStr; // KiCAD "Value" ==> VeroRoute "Value" (e.g. "TL072")
std::string& importStr = compStrings.m_importStr; // KiCAD "Footprint" ==> VeroRoute "Type" (e.g. "DIP8")
QFile file( QString::fromStdString(filename) );
bool bOK = file.open(QIODevice::ReadOnly);
if ( !bOK ) return bOK;
QTextStream inStream(&file);
int maxNodeId(BAD_NODEID); // Increase this with each new node we encounter
std::unordered_map<std::string, int> mapNetToNodeId;
std::list<std::string> offBoard; // List of off-board part names
bool bPartStart(false);
while( bOK ) // Loop through file
{
if ( inStream.atEnd() ) break;
const std::string str = inStream.readLine().toStdString();
if ( str.empty() ) continue; // Skip blank lines
// First non-blank char on every line should be '(' or ')' or '*'
const bool bCurvedOpen = str.find("(") != std::string::npos;
const bool bCurvedClose = str.find(")") != std::string::npos;
if ( bCurvedOpen && str.find("{") != std::string::npos && str.find("}") != std::string::npos )
continue; // Line is a comment so skip it
if ( !bCurvedOpen && !bCurvedClose )
{
if ( str.find("*") != std::string::npos )
break; // reached the '*'
bOK = false;
errorStr = "Expecting all lines to start with '('' or ')'' or '*'";
break;
}
if ( bCurvedOpen && !bPartStart )
{
// We're expecting the line to say something like "( /5D5ADFE2 DIP16 IC1 SAD1024"
std::vector<std::string> strList;
StringHelper::GetSubStrings(str, strList); // Break str into space separated list
const size_t numSubStrings = strList.size();
bOK = ( numSubStrings == 4 || numSubStrings == 5 );
if ( !bOK ) errorStr = "Expecting format: ( /5D5ADFE2 FOOTPRINT NAME VALUE , but got:" + str;
if ( !bOK ) break;
importStr = strList[2];
nameStr = strList[3];
valueStr = ( numSubStrings == 5 ) ? strList[4] : "";
bOK = ( m_compMgr.GetComponentIdFromName(nameStr) == BAD_COMPID ); // Name must be unique
if ( !bOK ) errorStr = "\nPart name " + nameStr + " is not unique";
if ( !bOK ) break;
// Build the part and place it ...
bOK = BuildAndPlacePart(templateMgr, compStrings, offBoard, errorStr, bPartTypeOK);
if ( !bOK ) break;
bPartStart = true;
}
else
{
const std::string strID = "Part: Type = " + importStr + ", Name = " + nameStr + ", Value = " + valueStr;
// We're in the pin section...
assert( bCurvedClose ); // Should have ')' on every line
if ( !bCurvedOpen )
{
// If we have just a ')' on the line then we're done with the pins ...
bPartStart = false; // ... and we're done with the part, move onto the next one
continue;
}
std::vector<std::string> strList;
StringHelper::GetSubStrings(str, strList); // Break str into space separated list
bOK = ( strList.size() == 4 );
if ( !bOK ) errorStr = strID + "\nLine: " + str + "\nError: Expecting line with format: ( PINNUMBER NETNAME )";
if ( !bOK ) break;
const std::string pinStr = strList[1];; // Pin number
const std::string netStr = strList[2];; // Net name
if ( netStr == "?" ) continue; // KiCad outputs a net name of "?" for unused pins instead of omitting them from the netlist
int nodeId(BAD_NODEID);
auto iter = mapNetToNodeId.find(netStr);
if ( iter != mapNetToNodeId.end() )
nodeId = iter->second;
else
{
maxNodeId++;
mapNetToNodeId[netStr] = nodeId = maxNodeId;
}
bOK = ( nodeId != BAD_NODEID );
if ( !bOK ) errorStr = strID + "\nInternal error: VeroRoute has run out of net IDs";
if ( !bOK ) break;
// Paint the component pin using SetNodeIdByUser
const size_t iPinIndex = static_cast<size_t>( atoi(pinStr.c_str()) - 1 );
const int compId = m_compMgr.GetComponentIdFromName( nameStr );
bOK = compId != BAD_COMPID;
if ( !bOK ) errorStr = strID + "\nInternal error: VeroRoute lost the component ID";
if ( !bOK ) break;
const Component& comp = m_compMgr.GetComponentById( compId );
assert( comp.GetType() != COMP::INVALID );
bOK = iPinIndex < comp.GetNumPins();
if ( !bOK ) errorStr = strID + "\nLine: " + str + "\nError: Line has invalid pin number";
if ( !bOK ) break;
int row, col;
bOK = GetPinRowCol(compId, iPinIndex, row, col);
if ( !bOK ) errorStr = strID + "\nLine: " + str + "\nInternal error mapping the pin to a board location";
if ( !bOK ) break;
SetNodeIdByUser(0, row, col, nodeId, true); // true ==> paint pins
}
}
if ( file.isOpen() ) file.close();
// Break the SIPs representing off-board parts into PADs
BreakSIPSintoPADS(offBoard);
return bOK;
}
void Board::BreakSIPSintoPADS(const std::list<std::string>& offBoard)
{
// Break the SIPS representing off-board parts into PADs
for (const auto& nameStr : offBoard)
{
const int compId = m_compMgr.GetComponentIdFromName( nameStr );
Component& comp = m_compMgr.GetComponentById( compId );
assert( comp.GetType() != COMP::INVALID );
BreakComponentIntoPads(comp);
}
}
void Board::BreakComponentIntoPads(Component& comp)
{
const COMP& eType = comp.GetType();
if ( eType == COMP::MARK || eType == COMP::PAD || eType == COMP::PAD_FLYINGWIRE || eType == COMP::WIRE || eType == COMP::VERO_NUMBER || eType == COMP::VERO_LETTER ) return; // Not real components
if ( !comp.GetIsPlaced() ) return; // Can't break a floating component
std::vector<int> nodeList = { BAD_NODEID }; // Re-used for each new pad
const size_t numPins = comp.GetNumPins();
for (size_t iPinIndex = 0; iPinIndex < numPins; iPinIndex++) // Loop component pins
{
// Create a new PAD component for the pin, with suitable name, value, nodeId
nodeList[0] = comp.GetNodeId(iPinIndex);
Component tmp(comp.GetNameStr() + std::string("_") + std::to_string(iPinIndex+1), comp.GetValueStr(), COMP::PAD, nodeList);
// Find board location of existing pin, and put the new PAD there
int row, col;
if ( GetPinRowCol(comp.GetId(), iPinIndex, row, col) )
{
tmp.SetRow(row);
tmp.SetCol(col);
AddComponent(-1, -1, tmp, false); // Add PAD floating over the existing pin
}
}
DestroyComponent(comp); // All pins have been copied, so destroy the old component
PlaceFloaters(); // Unfloat the new PADs
}
bool Board::GetPinRowCol(int compId, size_t iPinIndex, int& row, int& col) const
{
if ( compId == BAD_COMPID || iPinIndex == BAD_PININDEX ) return false;
for (int i = 0, iSize = GetSize(); i < iSize; i++)
{
const Element* p = GetAtConst(i);
for (int iSlot = 0; iSlot < 2; iSlot++)
{
if ( !p->GetHasWire() && p->GetSlotCompId(iSlot) == compId && p->GetSlotPinIndex(iSlot) == iPinIndex )
{
GetRowCol(p, row, col);
return true;
}
}
}
return false;
}
|