Compare commits

...

6 Commits

Author SHA1 Message Date
wawuwo
565efd3b81
Merge pull request #1278 from wawuwo/fix-1273-crash-in-one-two-wires
Fix crash when coordinates of wire ends are in wrong order

Fix #1273
2025-03-25 21:07:56 +01:00
Andrey Kalmykov
dfcab0a850 Fix crash when coordinates of wire ends are in wrong order
A wire loaded from a file so that its x1 coordinate is larger than
x2 coordinate causes crash. Somehow it's crucial that x1 is less
than x2. How is exactly it's crucial is not so easy to grasp so it's
easier just to go with it.

This commit fixes crashes by adding "normalization" of coordinates
just before installing the loaded wire into schematic.

Fix ra3xdh#1273
2025-03-25 20:36:32 +01:00
Vadim Kuznetsov
6c9f859a8b
Merge pull request #1275 from ra3xdh/1274_fix
Fix Xyce IC for Tline
2025-03-21 14:39:31 +01:00
Vadim Kuznetsov
b058169b94 Fix Xyce IC for Tline 2025-03-21 16:16:03 +03:00
Vadim Kuznetsov
20812e9e67
Merge pull request #1271 from wawuwo/fix-945-unable-to-paste-ports
Allow copy and paste ports in symbol editing mode
2025-03-16 17:02:57 +01:00
Andrey Kalmykov
5fb8e45e98 Allow copy and paste ports in symbol editing mode 2025-03-16 16:31:48 +01:00
2 changed files with 26 additions and 3 deletions

View File

@ -121,7 +121,7 @@ QString Schematic::createClipboardFile()
s += "<Paintings>\n";
for(pp = a_Paintings->first(); pp != 0; pp = a_Paintings->next())
if(pp->isSelected)
if(pp->Name.at(0) != '.') { // subcircuit specific -> do not copy
if ((a_isSymbolOnly && pp->Name.startsWith(".PortSym")) || pp->Name.at(0) != '.') { // subcircuit specific -> do not copy
s += "<"+pp->save()+">\n"; z++; }
s += "</Paintings>\n";
@ -983,7 +983,26 @@ bool Schematic::loadWires(QTextStream *stream, QList<Element*> *List)
List->append(w);
if(w->Label) List->append(w->Label);
}
else simpleInsertWire(w);
else {
// Quick fix for ra3xdh#1273.
//
// A wire whose (x1,y1) coordinates are not less than (x2,y2)
// coordinates somehow deals some damage like crashes or funny behaviour.
//
// I wasn't able to understand how exactly this happens, i.e. why it's
// important to have x1 less than x2 for a wire, so I decided to fix this
// in a most straightforward way by "normalizing" the wire before installing
// it into schematic
if (w->x1 > w->x2) {
std::swap(w->x1, w->x2);
std::swap(w->y1, w->y2);
} else if (w->x1 == w->x2 && w->y1 > w->y2) {
std::swap(w->x1, w->x2);
std::swap(w->y1, w->y2);
}
simpleInsertWire(w);
}
}
QMessageBox::critical(0, QObject::tr("Error"),

View File

@ -121,7 +121,11 @@ QString LTL_SPICE::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecom
s += QStringLiteral(" NL=%1").arg(Nl);
}
s += QStringLiteral(" IC=%5, %6, %7, %8 \n").arg(V1).arg(I1).arg(V2).arg(I2);
if (dialect == spicecompat::SPICEXyce) {
s += "\n"; // Xyce doesn't support IC
} else {
s += QStringLiteral(" IC=%5, %6, %7, %8 \n").arg(V1).arg(I1).arg(V2).arg(I2);
}
return s;
}