qucs_s/qucs/schematic_file.cpp

1165 lines
36 KiB
C++
Raw Normal View History

2004-03-28 19:51:04 +00:00
/***************************************************************************
2006-03-28 06:10:52 +00:00
schematic_file.cpp
--------------------
2004-03-28 19:51:04 +00:00
begin : Sat Mar 27 2004
copyright : (C) 2003 by Michael Margraf
2004-06-12 12:35:04 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-03-28 19:51:04 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <qmessagebox.h>
#include <qdir.h>
#include <qstringlist.h>
#include <qregexp.h>
#include <qprocess.h>
#include <qtextedit.h>
2005-05-09 06:32:17 +00:00
#include "node.h"
2004-03-28 19:51:04 +00:00
#include "diagrams/diagrams.h"
#include "paintings/paintings.h"
2005-05-09 06:32:17 +00:00
#include "components/spicefile.h"
2005-06-23 06:06:40 +00:00
#include "components/libcomp.h"
2006-03-28 06:10:52 +00:00
#include "schematic.h"
2005-05-09 06:32:17 +00:00
#include "main.h"
2004-03-28 19:51:04 +00:00
2004-07-18 18:48:51 +00:00
extern QDir QucsWorkDir;
2004-03-28 19:51:04 +00:00
2006-03-28 06:10:52 +00:00
// Here the subcircuits, SPICE components etc are collected. It must be
// global to also work within the subcircuits.
QStringList StringList;
2004-03-28 19:51:04 +00:00
// -------------------------------------------------------------
// Creates a Qucs file format (without document properties) in the returning
// string. This is used to copy the selected elements into the clipboard.
2006-03-28 06:10:52 +00:00
QString Schematic::createClipboardFile()
2004-03-28 19:51:04 +00:00
{
int z=0; // counts selected elements
Wire *pw;
Diagram *pd;
Painting *pp;
Component *pc;
QString s("<Qucs Schematic " PACKAGE_VERSION ">\n");
2004-03-28 19:51:04 +00:00
// Build element document.
s += "<Components>\n";
2006-03-28 06:10:52 +00:00
for(pc = Components->first(); pc != 0; pc = Components->next())
2004-03-28 19:51:04 +00:00
if(pc->isSelected) {
s += pc->save()+"\n"; z++; }
s += "</Components>\n";
s += "<Wires>\n";
2006-03-28 06:10:52 +00:00
for(pw = Wires->first(); pw != 0; pw = Wires->next())
2004-03-28 19:51:04 +00:00
if(pw->isSelected) {
2004-10-02 16:21:06 +00:00
z++;
if(pw->Label) if(!pw->Label->isSelected) {
s += pw->save().section('"', 0, 0)+"\"\" 0 0 0>\n";
continue;
}
s += pw->save()+"\n";
}
2004-09-25 12:10:08 +00:00
for(Node *pn = Nodes->first(); pn != 0; pn = Nodes->next())
if(pn->Label) if(pn->Label->isSelected) {
s += pn->Label->save()+"\n"; z++; }
2004-03-28 19:51:04 +00:00
s += "</Wires>\n";
s += "<Diagrams>\n";
2006-03-28 06:10:52 +00:00
for(pd = Diagrams->first(); pd != 0; pd = Diagrams->next())
2004-03-28 19:51:04 +00:00
if(pd->isSelected) {
s += pd->save()+"\n"; z++; }
s += "</Diagrams>\n";
s += "<Paintings>\n";
2006-03-28 06:10:52 +00:00
for(pp = Paintings->first(); pp != 0; pp = Paintings->next())
2004-09-19 16:38:59 +00:00
if(pp->isSelected)
2005-05-02 06:28:45 +00:00
if(pp->Name.at(0) != '.') { // subcircuit specific -> do not copy
2004-09-19 16:38:59 +00:00
s += "<"+pp->save()+">\n"; z++; }
2004-03-28 19:51:04 +00:00
s += "</Paintings>\n";
if(z == 0) return ""; // return empty if no selection
return s;
}
2004-09-18 09:46:19 +00:00
// -------------------------------------------------------------
// Only read fields without loading them.
2006-03-28 06:10:52 +00:00
bool Schematic::loadIntoNothing(QTextStream *stream)
2004-09-18 09:46:19 +00:00
{
QString Line, cstr;
while(!stream->atEnd()) {
Line = stream->readLine();
if(Line.at(0) == '<') if(Line.at(1) == '/') return true;
}
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Format Error:\n'Painting' field is not closed!"));
return false;
}
2004-03-28 19:51:04 +00:00
// -------------------------------------------------------------
// Paste from clipboard.
2006-03-28 06:10:52 +00:00
bool Schematic::pasteFromClipboard(QTextStream *stream, QPtrList<Element> *pe)
2004-03-28 19:51:04 +00:00
{
QString Line;
Line = stream->readLine();
2004-06-12 12:35:04 +00:00
if(Line.left(16) != "<Qucs Schematic ") // wrong file type ?
2004-03-28 19:51:04 +00:00
return false;
QString s = PACKAGE_VERSION;
2004-03-28 19:51:04 +00:00
Line = Line.mid(16, Line.length()-17);
if(Line != s) { // wrong version number ?
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Wrong document version: ")+Line);
return false;
}
2004-09-18 09:46:19 +00:00
// read content in symbol edit mode *************************
2006-03-28 06:10:52 +00:00
if(symbolMode) {
2004-09-18 09:46:19 +00:00
while(!stream->atEnd()) {
Line = stream->readLine();
if(Line == "<Components>") {
if(!loadIntoNothing(stream)) return false; }
else
if(Line == "<Wires>") {
if(!loadIntoNothing(stream)) return false; }
else
if(Line == "<Diagrams>") {
if(!loadIntoNothing(stream)) return false; }
else
if(Line == "<Paintings>") {
if(!loadPaintings(stream, (QPtrList<Painting>*)pe)) return false; }
else {
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Clipboard Format Error:\nUnknown field!"));
return false;
}
}
return true;
}
// read content in schematic edit mode *************************
2004-03-28 19:51:04 +00:00
while(!stream->atEnd()) {
Line = stream->readLine();
2004-05-20 17:27:41 +00:00
if(Line == "<Components>") {
if(!loadComponents(stream, (QPtrList<Component>*)pe)) return false; }
2004-03-28 19:51:04 +00:00
else
2004-05-20 17:27:41 +00:00
if(Line == "<Wires>") {
2004-09-25 12:10:08 +00:00
if(!loadWires(stream, pe)) return false; }
2004-03-28 19:51:04 +00:00
else
2004-05-20 17:27:41 +00:00
if(Line == "<Diagrams>") {
if(!loadDiagrams(stream, (QPtrList<Diagram>*)pe)) return false; }
2004-03-28 19:51:04 +00:00
else
2004-05-20 17:27:41 +00:00
if(Line == "<Paintings>") {
if(!loadPaintings(stream, (QPtrList<Painting>*)pe)) return false; }
2004-03-28 19:51:04 +00:00
else {
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-22 16:49:55 +00:00
QObject::tr("Clipboard Format Error:\nUnknown field!"));
2004-03-28 19:51:04 +00:00
return false;
}
}
return true;
}
// -------------------------------------------------------------
// Returns the number of subcircuit ports.
2006-03-28 06:10:52 +00:00
int Schematic::saveDocument()
2004-03-28 19:51:04 +00:00
{
2006-03-28 06:10:52 +00:00
QFile file(DocName);
2004-03-28 19:51:04 +00:00
if(!file.open(IO_WriteOnly)) {
2004-06-12 12:35:04 +00:00
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Cannot save document!"));
2004-03-28 19:51:04 +00:00
return -1;
}
QTextStream stream(&file);
stream << "<Qucs Schematic " << PACKAGE_VERSION << ">\n";
2004-03-28 19:51:04 +00:00
stream << "<Properties>\n";
2006-03-28 06:10:52 +00:00
if(symbolMode) {
stream << " <View=" << tmpViewX1<<","<<tmpViewY1<<","
<< tmpViewX2<<","<<tmpViewY2<< ",";
stream <<tmpScale<<","<<tmpPosX<<","<<tmpPosY << ">\n";
2004-09-18 09:46:19 +00:00
}
else {
2006-03-28 06:10:52 +00:00
stream << " <View=" << ViewX1<<","<<ViewY1<<","
<< ViewX2<<","<<ViewY2<< ",";
stream << Scale <<","<<contentsX()<<","<<contentsY() << ">\n";
2004-09-18 09:46:19 +00:00
}
2006-03-28 06:10:52 +00:00
stream << " <Grid=" << GridX<<","<<GridY<<","
<< GridOn << ">\n";
stream << " <DataSet=" << DataSet << ">\n";
stream << " <DataDisplay=" << DataDisplay << ">\n";
stream << " <OpenDisplay=" << SimOpenDpl << ">\n";
2004-03-28 19:51:04 +00:00
stream << "</Properties>\n";
2004-09-11 16:55:12 +00:00
Painting *pp;
stream << "<Symbol>\n"; // save all paintings for symbol
2006-03-28 06:10:52 +00:00
for(pp = SymbolPaints.first(); pp != 0; pp = SymbolPaints.next())
2004-09-11 16:55:12 +00:00
stream << " <" << pp->save() << ">\n";
stream << "</Symbol>\n";
2004-06-12 12:35:04 +00:00
stream << "<Components>\n"; // save all components
2006-03-28 06:10:52 +00:00
for(Component *pc = DocComps.first(); pc != 0; pc = DocComps.next())
2004-12-19 16:06:24 +00:00
stream << " " << pc->save() << "\n";
2004-03-28 19:51:04 +00:00
stream << "</Components>\n";
2004-06-12 12:35:04 +00:00
stream << "<Wires>\n"; // save all wires
2006-03-28 06:10:52 +00:00
for(Wire *pw = DocWires.first(); pw != 0; pw = DocWires.next())
2004-12-19 16:06:24 +00:00
stream << " " << pw->save() << "\n";
2004-06-12 12:35:04 +00:00
// save all labeled nodes as wires
2006-03-28 06:10:52 +00:00
for(Node *pn = DocNodes.first(); pn != 0; pn = DocNodes.next())
2004-06-22 16:49:55 +00:00
if(pn->Label) stream << " " << pn->Label->save() << "\n";
2004-03-28 19:51:04 +00:00
stream << "</Wires>\n";
2004-06-12 12:35:04 +00:00
stream << "<Diagrams>\n"; // save all diagrams
2006-03-28 06:10:52 +00:00
for(Diagram *pd = DocDiags.first(); pd != 0; pd = DocDiags.next())
2004-06-22 16:49:55 +00:00
stream << " " << pd->save() << "\n";
2004-03-28 19:51:04 +00:00
stream << "</Diagrams>\n";
2004-06-12 12:35:04 +00:00
stream << "<Paintings>\n"; // save all paintings
2006-03-28 06:10:52 +00:00
for(pp = DocPaints.first(); pp != 0; pp = DocPaints.next())
2004-09-11 16:55:12 +00:00
stream << " <" << pp->save() << ">\n";
2004-03-28 19:51:04 +00:00
stream << "</Paintings>\n";
file.close();
2004-12-30 12:03:08 +00:00
return 0;
2004-03-28 19:51:04 +00:00
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadProperties(QTextStream *stream)
2004-03-28 19:51:04 +00:00
{
bool ok = true;
QString Line, cstr, nstr;
while(!stream->atEnd()) {
Line = stream->readLine();
2004-06-22 16:49:55 +00:00
if(Line.at(0) == '<') if(Line.at(1) == '/') return true; // field end ?
2004-03-28 19:51:04 +00:00
Line = Line.stripWhiteSpace();
2004-05-29 13:05:04 +00:00
if(Line.isEmpty()) continue;
2004-03-28 19:51:04 +00:00
if(Line.at(0) != '<') {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-29 13:05:04 +00:00
QObject::tr("Format Error:\nWrong property field limiter!"));
2004-03-28 19:51:04 +00:00
return false;
}
if(Line.at(Line.length()-1) != '>') {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-29 13:05:04 +00:00
QObject::tr("Format Error:\nWrong property field limiter!"));
2004-03-28 19:51:04 +00:00
return false;
}
Line = Line.mid(1, Line.length()-2); // cut off start and end character
cstr = Line.section('=',0,0); // property type
nstr = Line.section('=',1,1); // property value
2004-05-29 13:05:04 +00:00
if(cstr == "View") {
2006-03-28 06:10:52 +00:00
ViewX1 = nstr.section(',',0,0).toInt(&ok); if(ok) {
ViewY1 = nstr.section(',',1,1).toInt(&ok); if(ok) {
ViewX2 = nstr.section(',',2,2).toInt(&ok); if(ok) {
ViewY2 = nstr.section(',',3,3).toInt(&ok); if(ok) {
Scale = nstr.section(',',4,4).toDouble(&ok); if(ok) {
2006-05-08 06:13:04 +00:00
int PosX = nstr.section(',',5,5).toInt(&ok); if(ok) {
int PosY = nstr.section(',',6,6).toInt(&ok); if(ok)
2006-03-28 06:10:52 +00:00
setContentsPos(PosX, PosY); }}}}}} }
2004-05-29 13:05:04 +00:00
else if(cstr == "Grid") {
2006-03-28 06:10:52 +00:00
GridX = nstr.section(',',0,0).toInt(&ok); if(ok) {
GridY = nstr.section(',',1,1).toInt(&ok); if(ok) {
if(nstr.section(',',2,2).toInt(&ok) == 0) GridOn = false;
else GridOn = true; }} }
else if(cstr == "DataSet") DataSet = nstr;
else if(cstr == "DataDisplay") DataDisplay = nstr;
2004-05-29 13:05:04 +00:00
else if(cstr == "OpenDisplay")
2006-03-28 06:10:52 +00:00
if(nstr.toInt(&ok) == 0) SimOpenDpl = false;
else SimOpenDpl = true;
2004-03-28 19:51:04 +00:00
else {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-29 13:05:04 +00:00
QObject::tr("Format Error:\nUnknown property: ")+cstr);
2004-03-28 19:51:04 +00:00
return false;
}
if(!ok) {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-29 13:05:04 +00:00
QObject::tr("Format Error:\nNumber expected in property field!"));
2004-03-28 19:51:04 +00:00
return false;
}
}
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Format Error:\n'Property' field is not closed!"));
return false;
}
// ---------------------------------------------------
// Inserts a component without performing logic for wire optimization.
2006-03-28 06:10:52 +00:00
void Schematic::simpleInsertComponent(Component *c)
2004-03-28 19:51:04 +00:00
{
Node *pn;
int x, y;
// connect every node of component
for(Port *pp = c->Ports.first(); pp != 0; pp = c->Ports.next()) {
x = pp->x+c->cx;
y = pp->y+c->cy;
// check if new node lies upon existing node
2006-03-28 06:10:52 +00:00
for(pn = DocNodes.first(); pn != 0; pn = DocNodes.next())
2004-03-28 19:51:04 +00:00
if(pn->cx == x) if(pn->cy == y) break;
2004-05-29 13:05:04 +00:00
if(pn == 0) { // create new node, if no existing one lies at this position
2004-03-28 19:51:04 +00:00
pn = new Node(x, y);
2006-03-28 06:10:52 +00:00
DocNodes.append(pn);
2004-03-28 19:51:04 +00:00
}
pn->Connections.append(c); // connect schematic node to component node
pp->Connection = pn; // connect component node to schematic node
}
2006-03-28 06:10:52 +00:00
DocComps.append(c);
2004-03-28 19:51:04 +00:00
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadComponents(QTextStream *stream, QPtrList<Component> *List)
2004-03-28 19:51:04 +00:00
{
QString Line, cstr;
Component *c;
while(!stream->atEnd()) {
Line = stream->readLine();
2004-06-22 16:49:55 +00:00
if(Line.at(0) == '<') if(Line.at(1) == '/') return true;
2004-05-29 13:05:04 +00:00
Line = Line.stripWhiteSpace();
if(Line.isEmpty()) continue;
2004-03-28 19:51:04 +00:00
c = getComponentFromName(Line);
if(!c) return false;
2004-06-22 16:49:55 +00:00
if(List) { // "paste" ?
2004-03-28 19:51:04 +00:00
int z;
2004-05-29 13:05:04 +00:00
for(z=c->Name.length()-1; z>=0; z--) // cut off number of component name
2004-03-28 19:51:04 +00:00
if(!c->Name.at(z).isDigit()) break;
c->Name = c->Name.left(z+1);
List->append(c);
}
else simpleInsertComponent(c);
}
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-29 13:05:04 +00:00
QObject::tr("Format Error:\n'Component' field is not closed!"));
2004-03-28 19:51:04 +00:00
return false;
}
// -------------------------------------------------------------
// Inserts a wire without performing logic for optimizing.
2006-03-28 06:10:52 +00:00
void Schematic::simpleInsertWire(Wire *pw)
2004-03-28 19:51:04 +00:00
{
Node *pn;
// check if first wire node lies upon existing node
2006-03-28 06:10:52 +00:00
for(pn = DocNodes.first(); pn != 0; pn = DocNodes.next())
2004-03-28 19:51:04 +00:00
if(pn->cx == pw->x1) if(pn->cy == pw->y1) break;
if(!pn) { // create new node, if no existing one lies at this position
pn = new Node(pw->x1, pw->y1);
2006-03-28 06:10:52 +00:00
DocNodes.append(pn);
2004-03-28 19:51:04 +00:00
}
2004-05-29 13:05:04 +00:00
if(pw->x1 == pw->x2) if(pw->y1 == pw->y2) {
pn->Label = pw->Label; // wire with length zero are just node labels
2004-10-10 16:06:55 +00:00
if (pn->Label) {
2005-08-15 06:04:52 +00:00
pn->Label->Type = isNodeLabel;
pn->Label->pOwner = pn;
2004-10-10 16:06:55 +00:00
}
2004-03-28 19:51:04 +00:00
delete pw; // delete wire because this is not a wire
return;
}
pn->Connections.append(pw); // connect schematic node to component node
pw->Port1 = pn;
// check if second wire node lies upon existing node
2006-03-28 06:10:52 +00:00
for(pn = DocNodes.first(); pn != 0; pn = DocNodes.next())
2004-03-28 19:51:04 +00:00
if(pn->cx == pw->x2) if(pn->cy == pw->y2) break;
if(!pn) { // create new node, if no existing one lies at this position
pn = new Node(pw->x2, pw->y2);
2006-03-28 06:10:52 +00:00
DocNodes.append(pn);
2004-03-28 19:51:04 +00:00
}
pn->Connections.append(pw); // connect schematic node to component node
pw->Port2 = pn;
2006-03-28 06:10:52 +00:00
DocWires.append(pw);
2004-03-28 19:51:04 +00:00
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadWires(QTextStream *stream, QPtrList<Element> *List)
2004-03-28 19:51:04 +00:00
{
Wire *w;
QString Line;
while(!stream->atEnd()) {
Line = stream->readLine();
2004-06-22 16:49:55 +00:00
if(Line.at(0) == '<') if(Line.at(1) == '/') return true;
2004-03-28 19:51:04 +00:00
Line = Line.stripWhiteSpace();
2004-05-29 13:05:04 +00:00
if(Line.isEmpty()) continue;
2004-06-22 16:49:55 +00:00
// (Node*)4 = move all ports (later on)
w = new Wire(0,0,0,0, (Node*)4,(Node*)4);
2004-03-28 19:51:04 +00:00
if(!w->load(Line)) {
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-22 16:49:55 +00:00
QObject::tr("Format Error:\nWrong 'wire' line format!"));
2004-09-25 12:10:08 +00:00
delete w;
2004-03-28 19:51:04 +00:00
return false;
}
2004-09-25 12:10:08 +00:00
if(List) {
if(w->x1 == w->x2) if(w->y1 == w->y2) if(w->Label) {
w->Label->Type = isMovingLabel;
List->append(w->Label);
delete w;
continue;
}
List->append(w);
2004-10-02 16:21:06 +00:00
if(w->Label) List->append(w->Label);
2004-09-25 12:10:08 +00:00
}
2004-03-28 19:51:04 +00:00
else simpleInsertWire(w);
}
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-22 16:49:55 +00:00
QObject::tr("Format Error:\n'Wire' field is not closed!"));
2004-03-28 19:51:04 +00:00
return false;
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadDiagrams(QTextStream *stream, QPtrList<Diagram> *List)
2004-03-28 19:51:04 +00:00
{
Diagram *d;
QString Line, cstr;
while(!stream->atEnd()) {
Line = stream->readLine();
2004-06-22 16:49:55 +00:00
if(Line.at(0) == '<') if(Line.at(1) == '/') return true;
2004-03-28 19:51:04 +00:00
Line = Line.stripWhiteSpace();
2004-05-29 13:05:04 +00:00
if(Line.isEmpty()) continue;
2004-03-28 19:51:04 +00:00
cstr = Line.section(' ',0,0); // diagram type
if(cstr == "<Rect") d = new RectDiagram();
else if(cstr == "<Polar") d = new PolarDiagram();
else if(cstr == "<Tab") d = new TabDiagram();
else if(cstr == "<Smith") d = new SmithDiagram();
2004-11-11 18:32:34 +00:00
else if(cstr == "<ySmith") d = new SmithDiagram(0,0,false);
else if(cstr == "<PS") d = new PSDiagram();
else if(cstr == "<SP") d = new PSDiagram(0,0,false);
2005-03-22 18:39:40 +00:00
else if(cstr == "<Rect3D") d = new Rect3DDiagram();
2005-04-12 13:22:48 +00:00
else if(cstr == "<Curve") d = new CurveDiagram();
2005-11-07 07:04:50 +00:00
else if(cstr == "<Time") d = new TimingDiagram();
2005-12-05 07:04:57 +00:00
else if(cstr == "<Truth") d = new TruthDiagram();
2004-03-28 19:51:04 +00:00
else {
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-16 17:41:33 +00:00
QObject::tr("Format Error:\nUnknown diagram!"));
2004-03-28 19:51:04 +00:00
return false;
}
if(!d->load(Line, stream)) {
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-16 17:41:33 +00:00
QObject::tr("Format Error:\nWrong 'diagram' line format!"));
2004-03-28 19:51:04 +00:00
delete d;
return false;
}
List->append(d);
}
QMessageBox::critical(0, QObject::tr("Error"),
2004-06-16 17:41:33 +00:00
QObject::tr("Format Error:\n'Diagram' field is not closed!"));
2004-03-28 19:51:04 +00:00
return false;
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadPaintings(QTextStream *stream, QPtrList<Painting> *List)
2004-03-28 19:51:04 +00:00
{
2004-09-18 09:46:19 +00:00
Painting *p=0;
2004-03-28 19:51:04 +00:00
QString Line, cstr;
while(!stream->atEnd()) {
Line = stream->readLine();
2004-06-22 16:49:55 +00:00
if(Line.at(0) == '<') if(Line.at(1) == '/') return true;
2004-09-11 16:55:12 +00:00
2004-03-28 19:51:04 +00:00
Line = Line.stripWhiteSpace();
2004-05-29 13:05:04 +00:00
if(Line.isEmpty()) continue;
2004-09-11 16:55:12 +00:00
if( (Line.at(0) != '<') || (Line.at(Line.length()-1) != '>')) {
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Format Error:\nWrong 'painting' line delimiter!"));
return false;
}
Line = Line.mid(1, Line.length()-2); // cut off start and end character
2004-03-28 19:51:04 +00:00
cstr = Line.section(' ',0,0); // painting type
2004-09-18 09:46:19 +00:00
if(cstr == "Line") p = new GraphicLine();
else if(cstr == "EArc") p = new EllipseArc();
2004-10-15 07:07:57 +00:00
else if(cstr == ".PortSym") p = new PortSymbol();
else if(cstr == ".ID") p = new ID_Text();
2004-09-11 16:55:12 +00:00
else if(cstr == "Text") p = new GraphicText();
2004-09-18 09:46:19 +00:00
else if(cstr == "Rectangle") p = new Rectangle();
2004-09-11 16:55:12 +00:00
else if(cstr == "Arrow") p = new Arrow();
else if(cstr == "Ellipse") p = new Ellipse();
2004-03-28 19:51:04 +00:00
else {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-20 17:27:41 +00:00
QObject::tr("Format Error:\nUnknown painting!"));
2004-03-28 19:51:04 +00:00
return false;
}
if(!p->load(Line)) {
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-20 17:27:41 +00:00
QObject::tr("Format Error:\nWrong 'painting' line format!"));
2004-03-28 19:51:04 +00:00
delete p;
return false;
}
List->append(p);
}
QMessageBox::critical(0, QObject::tr("Error"),
2004-05-20 17:27:41 +00:00
QObject::tr("Format Error:\n'Painting' field is not closed!"));
2004-03-28 19:51:04 +00:00
return false;
}
// -------------------------------------------------------------
2006-03-28 06:10:52 +00:00
bool Schematic::loadDocument()
2004-03-28 19:51:04 +00:00
{
2006-03-28 06:10:52 +00:00
QFile file(DocName);
2004-03-28 19:51:04 +00:00
if(!file.open(IO_ReadOnly)) {
QMessageBox::critical(0, QObject::tr("Error"),
2006-03-28 06:10:52 +00:00
QObject::tr("Cannot load document: ")+DocName);
2004-03-28 19:51:04 +00:00
return false;
}
QString Line;
QTextStream stream(&file);
// read header **************************
2004-05-29 13:05:04 +00:00
do {
if(stream.atEnd()) {
file.close();
return true;
}
Line = stream.readLine();
} while(Line.isEmpty());
2004-03-28 19:51:04 +00:00
if(Line.left(16) != "<Qucs Schematic ") { // wrong file type ?
file.close();
2004-05-29 13:05:04 +00:00
QMessageBox::critical(0, QObject::tr("Error"),
2006-03-28 06:10:52 +00:00
QObject::tr("Wrong document type: ")+DocName);
2004-03-28 19:51:04 +00:00
return false;
}
Line = Line.mid(16, Line.length()-17);
if(!checkVersion(Line)) { // wrong version number ?
2004-03-28 19:51:04 +00:00
file.close();
2004-05-29 13:05:04 +00:00
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("Wrong document version: ")+Line);
2004-03-28 19:51:04 +00:00
return false;
}
// read content *************************
while(!stream.atEnd()) {
Line = stream.readLine();
2004-05-29 13:05:04 +00:00
Line = Line.stripWhiteSpace();
if(Line.isEmpty()) continue;
2004-09-11 16:55:12 +00:00
if(Line == "<Symbol>") {
2006-03-28 06:10:52 +00:00
if(!loadPaintings(&stream, &SymbolPaints)) {
2004-09-11 16:55:12 +00:00
file.close();
return false;
}
}
else
2004-05-29 13:05:04 +00:00
if(Line == "<Properties>") {
if(!loadProperties(&stream)) { file.close(); return false; } }
2004-03-28 19:51:04 +00:00
else
2004-05-29 13:05:04 +00:00
if(Line == "<Components>") {
if(!loadComponents(&stream)) { file.close(); return false; } }
2004-03-28 19:51:04 +00:00
else
2004-05-29 13:05:04 +00:00
if(Line == "<Wires>") {
if(!loadWires(&stream)) { file.close(); return false; } }
2004-03-28 19:51:04 +00:00
else
2004-05-29 13:05:04 +00:00
if(Line == "<Diagrams>") {
2006-03-28 06:10:52 +00:00
if(!loadDiagrams(&stream, &DocDiags)) { file.close(); return false; } }
2004-03-28 19:51:04 +00:00
else
2004-05-29 13:05:04 +00:00
if(Line == "<Paintings>") {
2006-03-28 06:10:52 +00:00
if(!loadPaintings(&stream, &DocPaints)) { file.close(); return false; } }
2004-03-28 19:51:04 +00:00
else {
2004-05-29 13:05:04 +00:00
QMessageBox::critical(0, QObject::tr("Error"),
QObject::tr("File Format Error:\nUnknown field!"));
2004-03-28 19:51:04 +00:00
file.close();
return false;
}
}
file.close();
return true;
}
2004-06-12 12:35:04 +00:00
// -------------------------------------------------------------
// Creates a Qucs file format (without document properties) in the returning
// string. This is used to save state for undo operation.
2006-03-28 06:10:52 +00:00
QString Schematic::createUndoString(char Op)
2004-06-12 12:35:04 +00:00
{
Wire *pw;
Diagram *pd;
Painting *pp;
Component *pc;
// Build element document.
2004-08-14 06:40:55 +00:00
QString s = " \n";
2004-06-22 16:49:55 +00:00
s.at(0) = Op;
2006-03-28 06:10:52 +00:00
for(pc = DocComps.first(); pc != 0; pc = DocComps.next())
2004-06-12 12:35:04 +00:00
s += pc->save()+"\n";
2004-06-22 16:49:55 +00:00
s += "</>\n"; // short end flag
2004-06-12 12:35:04 +00:00
2006-03-28 06:10:52 +00:00
for(pw = DocWires.first(); pw != 0; pw = DocWires.next())
2004-06-12 12:35:04 +00:00
s += pw->save()+"\n";
// save all labeled nodes as wires
2006-03-28 06:10:52 +00:00
for(Node *pn = DocNodes.first(); pn != 0; pn = DocNodes.next())
2004-06-12 12:35:04 +00:00
if(pn->Label) s += pn->Label->save()+"\n";
2004-06-22 16:49:55 +00:00
s += "</>\n";
2004-06-12 12:35:04 +00:00
2006-03-28 06:10:52 +00:00
for(pd = DocDiags.first(); pd != 0; pd = DocDiags.next())
2004-06-12 12:35:04 +00:00
s += pd->save()+"\n";
2004-06-22 16:49:55 +00:00
s += "</>\n";
2004-06-12 12:35:04 +00:00
2006-03-28 06:10:52 +00:00
for(pp = DocPaints.first(); pp != 0; pp = DocPaints.next())
2004-09-19 16:38:59 +00:00
s += "<"+pp->save()+">\n";
s += "</>\n";
return s;
}
// -------------------------------------------------------------
// Same as "createUndoString(char Op)" but for symbol edit mode.
2006-03-28 06:10:52 +00:00
QString Schematic::createSymbolUndoString(char Op)
2004-09-19 16:38:59 +00:00
{
Painting *pp;
// Build element document.
QString s = " \n";
s.at(0) = Op;
s += "</>\n"; // short end flag for components
s += "</>\n"; // short end flag for wires
s += "</>\n"; // short end flag for diagrams
2006-03-28 06:10:52 +00:00
for(pp = SymbolPaints.first(); pp != 0; pp = SymbolPaints.next())
2004-09-19 16:38:59 +00:00
s += "<"+pp->save()+">\n";
2004-06-22 16:49:55 +00:00
s += "</>\n";
2004-06-12 12:35:04 +00:00
return s;
}
// -------------------------------------------------------------
2006-04-18 06:03:52 +00:00
// Is quite similiar to "loadDocument()" but with less error checking.
2004-06-12 12:35:04 +00:00
// Used for "undo" function.
2006-03-28 06:10:52 +00:00
bool Schematic::rebuild(QString *s)
2004-06-12 12:35:04 +00:00
{
2006-03-28 06:10:52 +00:00
DocWires.clear(); // delete whole document
DocNodes.clear();
DocComps.clear();
DocDiags.clear();
DocPaints.clear();
2004-06-12 12:35:04 +00:00
QString Line;
QTextStream stream(s, IO_ReadOnly);
2004-06-22 16:49:55 +00:00
Line = stream.readLine(); // skip identity byte
2004-06-12 12:35:04 +00:00
// read content *************************
2004-06-22 16:49:55 +00:00
if(!loadComponents(&stream)) return false;
if(!loadWires(&stream)) return false;
2006-03-28 06:10:52 +00:00
if(!loadDiagrams(&stream, &DocDiags)) return false;
if(!loadPaintings(&stream, &DocPaints)) return false;
2004-06-12 12:35:04 +00:00
return true;
}
2004-07-18 18:48:51 +00:00
2004-09-19 16:38:59 +00:00
// -------------------------------------------------------------
// Same as "rebuild(QString *s)" but for symbol edit mode.
2006-03-28 06:10:52 +00:00
bool Schematic::rebuildSymbol(QString *s)
2004-09-19 16:38:59 +00:00
{
2006-03-28 06:10:52 +00:00
SymbolPaints.clear(); // delete whole document
2004-09-19 16:38:59 +00:00
QString Line;
QTextStream stream(s, IO_ReadOnly);
Line = stream.readLine(); // skip identity byte
// read content *************************
Line = stream.readLine(); // skip components
Line = stream.readLine(); // skip wires
Line = stream.readLine(); // skip diagrams
2006-03-28 06:10:52 +00:00
if(!loadPaintings(&stream, &SymbolPaints)) return false;
2004-09-19 16:38:59 +00:00
return true;
}
2004-07-18 18:48:51 +00:00
// ***************************************************************
// ***** *****
// ***** Functions to create netlist *****
// ***** *****
// ***************************************************************
2006-03-28 06:10:52 +00:00
void Schematic::createNodeSet(QStringList& Collect, int& countInit,
2005-10-24 06:10:35 +00:00
Conductor *pw, Node *p1)
{
if(pw->Label)
if(!pw->Label->initValue.isEmpty())
Collect.append("NodeSet:NS" + QString::number(countInit++) + " " +
p1->Name + " U=\"" + pw->Label->initValue + "\"");
}
2004-07-18 18:48:51 +00:00
// ---------------------------------------------------
2006-03-28 06:10:52 +00:00
void Schematic::throughAllNodes(bool User, QStringList& Collect,
2005-10-24 06:10:35 +00:00
int& countInit, bool Analog)
2004-07-18 18:48:51 +00:00
{
2005-10-24 06:10:35 +00:00
int z=0;
Node *pn, *p2;
2004-07-18 18:48:51 +00:00
Wire *pw;
Element *pe;
2005-10-24 06:10:35 +00:00
bool setName=false;
QPtrList<Node> Cons;
2006-03-28 06:10:52 +00:00
for(pn = DocNodes.first(); pn != 0; pn = DocNodes.next()) {
2005-10-24 06:10:35 +00:00
if(pn->Name.isEmpty() == User) continue; // already named ?
if(!User) {
if(Analog) pn->Name = "_net";
else pn->Name = "net_net"; // VHDL names must not begin with '_'
pn->Name += QString::number(z++); // create numbered node name
2005-10-24 06:10:35 +00:00
}
else
if(pn->State) continue; // already worked on
if(!Analog) // collect all node names for VHDL signal declaration
2006-03-06 07:07:14 +00:00
if(Signals.findIndex(pn->Name) < 0) // avoid redeclaration of signal
Signals.append(pn->Name);
2005-10-24 06:10:35 +00:00
createNodeSet(Collect, countInit, pn, pn);
pn->State = 1;
Cons.append(pn);
for(p2 = Cons.first(); p2 != 0; p2 = Cons.next())
for(pe = p2->Connections.first(); pe != 0; pe = p2->Connections.next())
if(pe->Type == isWire) {
pw = (Wire*)pe;
if(p2 != pw->Port1) {
if(pw->Port1->Name.isEmpty()) {
pw->Port1->Name = pn->Name;
pw->Port1->State = 1;
Cons.append(pw->Port1);
setName = true;
}
}
else {
if(pw->Port2->Name.isEmpty()) {
pw->Port2->Name = pn->Name;
pw->Port2->State = 1;
Cons.append(pw->Port2);
setName = true;
}
}
if(setName) {
Cons.findRef(p2); // back to current Connection
createNodeSet(Collect, countInit, pw, pn);
setName = false;
}
}
Cons.clear();
}
}
2004-07-18 18:48:51 +00:00
2005-10-24 06:10:35 +00:00
// ---------------------------------------------------
// Follows the wire lines in order to determine the node names for
// each component. Output into "stream", NodeSets are collected in
// "Collect" and counted with "countInit".
2006-03-28 06:10:52 +00:00
bool Schematic::giveNodeNames(QTextStream *stream, int& countInit,
2005-11-28 07:17:35 +00:00
QStringList& Collect, QTextEdit *ErrText, int NumPorts)
2005-10-24 06:10:35 +00:00
{
2004-07-18 18:48:51 +00:00
// delete the node names
2006-03-28 06:10:52 +00:00
for(Node *pn = DocNodes.first(); pn != 0; pn = DocNodes.next()) {
2005-10-24 06:10:35 +00:00
pn->State = 0;
2006-05-08 06:13:04 +00:00
if(pn->Label) {
if(NumPorts < 0)
pn->Name = pn->Label->Name;
else
pn->Name = "net" + pn->Label->Name;
}
2005-10-24 06:10:35 +00:00
else pn->Name = "";
}
2004-07-18 18:48:51 +00:00
// set the wire names to the connected node
2006-03-28 06:10:52 +00:00
for(Wire *pw = DocWires.first(); pw != 0; pw = DocWires.next())
2006-05-08 06:13:04 +00:00
if(pw->Label != 0) {
if(NumPorts < 0)
pw->Port1->Name = pw->Label->Name;
else // avoid to use reserved VHDL words
pw->Port1->Name = "net" + pw->Label->Name;
}
2004-07-18 18:48:51 +00:00
2005-06-23 06:06:40 +00:00
bool r;
2004-07-18 18:48:51 +00:00
QString s;
2005-10-24 06:10:35 +00:00
// give the ground nodes the name "gnd", and insert subcircuits etc.
2006-05-05 06:00:05 +00:00
for(Component *pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
if(pc->isActive != COMP_IS_ACTIVE) continue;
if(NumPorts < 0) {
if((pc->Type & isAnalogComponent) == 0) {
ErrText->insert(QObject::tr("ERROR: Component \"%1\" has no analog model.").arg(pc->Name));
return false;
2005-10-24 06:10:35 +00:00
}
2006-05-05 06:00:05 +00:00
}
else {
if((pc->Type & isDigitalComponent) == 0) {
ErrText->insert(QObject::tr("ERROR: Component \"%1\" has no digital model.").arg(pc->Name));
return false;
}
}
if(pc->Model == "GND") {
pc->Ports.getFirst()->Connection->Name = "gnd";
continue;
}
if(pc->Model == "Sub") {
s = pc->Props.getFirst()->Value;
if(StringList.findIndex(s) >= 0)
continue; // insert each subcircuit just one time
StringList.append(s);
Schematic *d = new Schematic(0, QucsWorkDir.filePath(s));
if(!d->loadDocument()) { // load document if possible
delete d;
ErrText->insert(QObject::tr("ERROR: Cannot load subcircuit \"%1\".").arg(s));
return false;
}
d->DocName = s;
r = d->createSubNetlist(stream, countInit, Collect, ErrText, NumPorts);
delete d;
if(!r) return false;
continue;
}
if(pc->Model == "Lib") {
s = pc->Props.first()->Value + "_";
s += pc->Props.next()->Value;
if(StringList.findIndex(s) >= 0)
continue; // insert each subcircuit just one time
StringList.append(s);
r = ((LibComp*)pc)->outputSubNetlist(stream);
if(!r) {
ErrText->insert(
QObject::tr("ERROR: Cannot load library component \"%1\".").arg(pc->Name));
return false;
2005-10-24 06:10:35 +00:00
}
2006-05-05 06:00:05 +00:00
continue;
}
if(pc->Model == "SPICE") {
s = pc->Props.first()->Value;
if(s.isEmpty()) {
ErrText->insert(QObject::tr("ERROR: No file name in SPICE component \"%1\".").
arg(pc->Name));
return false;
}
if(StringList.findIndex(s) >= 0)
continue; // insert each spice component just one time
StringList.append(s);
s += '"'+pc->Props.next()->Value;
if(pc->Props.next()->Value == "yes") s = "SPICE \""+s;
else s = "SPICEo\""+s;
Collect.append(s);
continue;
}
2005-10-24 06:10:35 +00:00
2006-05-05 06:00:05 +00:00
if(pc->Model == "VHDL") {
s = pc->Props.getFirst()->Value;
if(s.isEmpty()) {
ErrText->insert(QObject::tr("ERROR: No file name in VHDL component \"%1\".").
arg(pc->Name));
return false;
}
if(StringList.findIndex(s) >= 0)
continue; // insert each vhdl component just one time
StringList.append(s);
QFileInfo Info(s);
if(Info.isRelative())
s = QucsWorkDir.filePath(s);
QFile f(s);
if(!f.open(IO_ReadOnly)) {
ErrText->insert(
QObject::tr("ERROR: Cannot open VHDL file \"%1\".").arg(s));
return false;
2005-06-23 06:06:40 +00:00
}
2006-05-05 06:00:05 +00:00
// Write the whole VHDL file into the netlist output.
2006-05-05 06:00:05 +00:00
QTextStream streamVHDL(&f);
s = streamVHDL.read();
f.close();
(*stream) << '\n' << s << '\n';
continue;
}
}
2004-07-18 18:48:51 +00:00
// work on named nodes first in order to preserve the user given names
2005-11-28 07:17:35 +00:00
throughAllNodes(true, Collect, countInit, NumPorts<0);
2004-07-18 18:48:51 +00:00
// give names to the remaining (unnamed) nodes
2005-11-28 07:17:35 +00:00
throughAllNodes(false, Collect, countInit, NumPorts<0);
2004-07-18 18:48:51 +00:00
return true;
}
// ---------------------------------------------------
// Write the netlist as subcircuit to the text stream 'NetlistFile'.
2006-03-28 06:10:52 +00:00
bool Schematic::createSubNetlist(QTextStream *stream, int& countInit,
2005-11-28 07:17:35 +00:00
QStringList& Collect, QTextEdit *ErrText, int NumPorts)
2004-07-18 18:48:51 +00:00
{
2006-03-06 07:07:14 +00:00
int i, z;
// int Collect_count = Collect.count(); // position for this subcircuit
2004-12-19 16:06:24 +00:00
QString s;
2005-10-24 06:10:35 +00:00
// TODO: NodeSets have to be put into the subcircuit block.
2005-11-28 07:17:35 +00:00
if(!giveNodeNames(stream, countInit, Collect, ErrText, NumPorts))
2005-10-24 06:10:35 +00:00
return false;
2004-07-18 18:48:51 +00:00
2006-03-06 07:07:14 +00:00
/* Example for TODO
for(it = Collect.at(Collect_count); it != Collect.end(); )
if((*it).left(4) == "use ") { // output all subcircuit uses
(*stream) << (*it);
it = Collect.remove(it);
}
else it++;*/
QStringList SubcircuitPorts;
2004-08-22 14:41:35 +00:00
QStringList::Iterator it;
2004-07-18 18:48:51 +00:00
Component *pc;
2006-03-06 07:07:14 +00:00
// collect subcircuit ports and sort their node names into "SubcircuitPorts"
2006-03-28 06:10:52 +00:00
for(pc = DocComps.first(); pc != 0; pc = DocComps.next())
2004-07-18 18:48:51 +00:00
if(pc->Model == "Port") {
i = pc->Props.first()->Value.toInt();
2006-03-06 07:07:14 +00:00
for(z=SubcircuitPorts.size(); z<i; z++)
SubcircuitPorts.append(" ");
it = SubcircuitPorts.at(i-1);
2004-08-22 14:41:35 +00:00
(*it) = pc->Ports.getFirst()->Connection->Name;
2005-11-28 07:17:35 +00:00
if(NumPorts >= 0) {
2006-03-06 07:07:14 +00:00
Signals.remove(Signals.find(*it)); // remove node name of output port
switch(pc->Props.at(1)->Value.at(0).latin1()) {
case 'a': (*it) += ": inout"; // attribut "analog" is "inout"
break;
case 'o': Signals.append(*it); // output ports need workaround
2006-05-18 06:08:50 +00:00
(*it) = "net_out" + (*it);
// no "break;" here !!!
2006-03-06 07:07:14 +00:00
default: (*it) += ": " + pc->Props.at(1)->Value;
}
2005-10-24 06:10:35 +00:00
(*it) += " bit";
}
2004-07-18 18:48:51 +00:00
}
2006-03-28 06:10:52 +00:00
QString Type = properName(DocName);
2005-10-24 06:10:35 +00:00
2005-11-28 07:17:35 +00:00
if(NumPorts < 0)
2006-03-06 07:07:14 +00:00
(*stream) << "\n.Def:" << Type << " " << SubcircuitPorts.join(" ") << '\n';
2005-10-24 06:10:35 +00:00
else {
2006-03-06 07:07:14 +00:00
(*stream) << "\nentity Sub_" << Type << " is\n"
<< " port (" << SubcircuitPorts.join(";\n ") << ");\n"
2005-10-24 06:10:35 +00:00
<< "end entity;\n"
2006-03-06 07:07:14 +00:00
<< "use work.all;\n"
<< "architecture Arch_Sub_" << Type << " of Sub_" << Type << " is\n";
2005-10-24 06:10:35 +00:00
if(!Signals.isEmpty())
(*stream) << " signal " << Signals.join(",\n ") << " : bit;\n";
(*stream) << "begin\n";
2006-03-06 07:07:14 +00:00
if(Signals.findIndex("gnd") >= 0)
2006-04-10 06:12:35 +00:00
(*stream) << " gnd <= '0';\n"; // should appear only once
2005-10-24 06:10:35 +00:00
}
Signals.clear(); // was filled in "giveNodeNames()"
2004-07-18 18:48:51 +00:00
// write all components with node names into the netlist file
2006-03-28 06:10:52 +00:00
for(pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
2006-05-05 06:00:05 +00:00
if(pc->isActive == COMP_IS_OPEN) continue; // should it be simulated ?
2006-04-18 06:03:52 +00:00
2005-10-24 06:10:35 +00:00
if(pc->Model.at(0) == '.') { // no simulations in subcircuits
ErrText->insert(
2006-03-28 06:10:52 +00:00
QObject::tr("WARNING: Ignore simulation component in subcircuit \"%1\".").arg(DocName));
2005-10-24 06:10:35 +00:00
continue;
}
if(pc->Model == "Eqn") { // no equations in subcircuits
ErrText->insert(
2006-03-28 06:10:52 +00:00
QObject::tr("WARNING: Ignore equation in subcircuit \"%1\".").arg(DocName));
2005-10-24 06:10:35 +00:00
continue;
}
2006-05-05 06:00:05 +00:00
if(pc->isActive == COMP_IS_ACTIVE) {
if(NumPorts < 0)
s = pc->NetList();
else
s = pc->VHDL_Code(NumPorts);
}
else {
if(NumPorts < 0)
s = pc->getShortenNetlist();
else
s = pc->getShortenVHDL();
}
2005-10-24 06:10:35 +00:00
2004-12-19 16:06:24 +00:00
if(!s.isEmpty()) // not inserted: subcircuit ports, disabled components
2006-03-06 07:07:14 +00:00
(*stream) << s << "\n";
2004-07-18 18:48:51 +00:00
}
2005-11-28 07:17:35 +00:00
if(NumPorts < 0)
2005-10-24 06:10:35 +00:00
(*stream) << ".Def:End\n\n";
else
(*stream) << "end architecture;\n\n";
2004-07-18 18:48:51 +00:00
return true;
}
// ---------------------------------------------------
2005-05-17 06:35:55 +00:00
// Determines the node names and writes subcircuits into netlist file.
2006-03-28 06:10:52 +00:00
int Schematic::prepareNetlist(QTextStream& stream, QStringList& Collect,
2005-11-28 07:17:35 +00:00
QTextEdit *ErrText)
2004-07-18 18:48:51 +00:00
{
2006-03-28 06:10:52 +00:00
if(showBias > 0) showBias = -1; // do not show DC bias anymore
2005-08-15 06:04:52 +00:00
2005-11-28 07:17:35 +00:00
bool isTruthTable = false;
int allTypes = 0, NumPorts = 0;
2005-10-24 06:10:35 +00:00
// Detect simulation domain (analog/digital) by looking at component types.
2006-03-28 06:10:52 +00:00
for(Component *pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
2006-05-05 06:00:05 +00:00
if(pc->isActive == COMP_IS_OPEN) continue;
2005-11-28 07:17:35 +00:00
if(pc->Model.at(0) == '.') {
if(pc->Model == ".Digi") {
if(allTypes & isDigitalComponent) {
ErrText->insert(
QObject::tr("ERROR: Only one digital simulation allowed."));
return -10;
}
if(pc->Props.getFirst()->Value != "TimeList")
isTruthTable = true;
allTypes |= isDigitalComponent;
}
else allTypes |= isAnalogComponent;
if((allTypes & isComponent) == isComponent) {
ErrText->insert(
QObject::tr("ERROR: Analog and digital simulations cannot be mixed."));
return -10;
}
}
else if(pc->Model == "DigiSource") NumPorts++;
}
if((allTypes & isAnalogComponent) == 0) {
2005-12-13 07:07:13 +00:00
if(allTypes == 0) {
2006-02-20 07:12:01 +00:00
/* ErrText->insert(
2005-12-13 07:07:13 +00:00
QObject::tr("ERROR: No simulation specified on this page."));
2006-02-20 07:12:01 +00:00
return -10;*/
// If no simulation exists, assume analog simulation. There may
// be a simulation within a SPICE file. Otherwise Qucsator will
// output an error.
allTypes |= isAnalogComponent;
NumPorts = -1;
2005-12-13 07:07:13 +00:00
}
2006-02-20 07:12:01 +00:00
else {
if(NumPorts < 1) {
ErrText->insert(
QObject::tr("ERROR: Digital simulation needs at least one digital source."));
return -10;
}
if(!isTruthTable) NumPorts = 0;
2005-11-28 07:17:35 +00:00
}
}
else NumPorts = -1;
2005-10-24 06:10:35 +00:00
2004-07-18 18:48:51 +00:00
// first line is documentation
2005-11-28 07:17:35 +00:00
if(allTypes & isAnalogComponent)
2005-10-24 06:10:35 +00:00
stream << "#";
else
stream << "--";
2006-03-28 06:10:52 +00:00
stream << " Qucs " << PACKAGE_VERSION << " " << DocName << "\n";
2005-11-28 07:17:35 +00:00
// if((allTypes & isAnalogComponent) == 0)
2005-10-24 06:10:35 +00:00
// stream << "library ieee;\nuse ieee.std_logic_1164.all;\n\n";
2004-07-18 18:48:51 +00:00
2004-12-19 16:06:24 +00:00
int countInit = 0;
2005-11-28 07:17:35 +00:00
if(!giveNodeNames(&stream, countInit, Collect, ErrText, NumPorts))
return -10;
2005-10-24 06:10:35 +00:00
2005-11-28 07:17:35 +00:00
if(allTypes & isAnalogComponent)
return NumPorts;
2005-10-24 06:10:35 +00:00
2006-03-06 07:07:14 +00:00
stream << "entity TestBench is\n"
<< "end entity;\n"
<< "use work.all;\n";
2005-11-28 07:17:35 +00:00
return NumPorts;
2005-05-17 06:35:55 +00:00
}
2004-07-18 18:48:51 +00:00
2005-05-17 06:35:55 +00:00
// .................................................
// write all components with node names into the netlist file
2006-03-28 06:10:52 +00:00
QString Schematic::createNetlist(QTextStream& stream, int NumPorts)
2005-05-17 06:35:55 +00:00
{
2006-03-06 07:07:14 +00:00
if(NumPorts >= 0) {
stream << "architecture Arch_TestBench of TestBench is\n"
2005-10-24 06:10:35 +00:00
<< " signal " << Signals.join(",\n ")
<< " : bit;\n"
<< "begin\n";
2006-03-06 07:07:14 +00:00
if(Signals.findIndex("gnd") >= 0)
2006-04-10 06:12:35 +00:00
stream << " gnd <= '0';\n"; // should appear only once
2006-03-06 07:07:14 +00:00
}
2005-10-24 06:10:35 +00:00
Signals.clear(); // was filled in "giveNodeNames()"
2006-03-28 06:10:52 +00:00
StringList.clear();
2005-10-24 06:10:35 +00:00
QString s, Time;
2006-03-28 06:10:52 +00:00
for(Component *pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
2006-05-05 06:00:05 +00:00
if(pc->isActive == COMP_IS_OPEN) continue; // should it be simulated ?
2006-01-02 07:09:43 +00:00
2006-05-05 06:00:05 +00:00
if(NumPorts < 0) {
if(pc->isActive == COMP_IS_ACTIVE)
s = pc->NetList();
else
s = pc->getShortenNetlist();
}
2005-10-24 06:10:35 +00:00
else {
2006-01-16 07:19:57 +00:00
if(pc->Model.at(0) == '.') { // simulation component ?
if(NumPorts > 0) // truth table simulation ?
Time = QString::number((1 << NumPorts) - 1) + " ns";
else {
Time = pc->Props.at(1)->Value;
if(!VHDL_Time(Time, pc->Name)) return Time; // wrong time format
}
}
2006-05-05 06:00:05 +00:00
if(pc->isActive == COMP_IS_ACTIVE)
s = pc->VHDL_Code(NumPorts);
else
s = pc->getShortenVHDL();
2006-01-16 07:19:57 +00:00
if(s.at(0) == '<EFBFBD>') return s; // return error
2005-10-24 06:10:35 +00:00
}
2004-07-18 18:48:51 +00:00
if(!s.isEmpty()) // not inserted: subcircuit ports, disabled components
stream << s << "\n";
}
2005-10-24 06:10:35 +00:00
2005-11-28 07:17:35 +00:00
if(NumPorts >= 0)
2005-10-24 06:10:35 +00:00
stream << "end architecture;\n";
return Time;
2004-07-18 18:48:51 +00:00
}