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
|
|
|
|
|
|
2006-06-02 07:47:24 +00:00
|
|
|
|
#include <qmessagebox.h>
|
|
|
|
|
#include <qdir.h>
|
|
|
|
|
#include <qstringlist.h>
|
|
|
|
|
#include <qregexp.h>
|
|
|
|
|
#include <qprocess.h>
|
|
|
|
|
#include <qtextedit.h>
|
2007-05-17 09:30:12 +00:00
|
|
|
|
#include <qptrlist.h>
|
2006-06-02 07:47:24 +00:00
|
|
|
|
|
2006-10-16 06:17:29 +00:00
|
|
|
|
#include "main.h"
|
2005-05-09 06:32:17 +00:00
|
|
|
|
#include "node.h"
|
2006-10-16 06:17:29 +00:00
|
|
|
|
#include "schematic.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"
|
2007-05-08 20:50:53 +00:00
|
|
|
|
#include "components/vhdlfile.h"
|
|
|
|
|
#include "components/verilogfile.h"
|
2005-06-23 06:06:40 +00:00
|
|
|
|
#include "components/libcomp.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;
|
|
|
|
|
|
2004-04-30 22:32:03 +00:00
|
|
|
|
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;
|
|
|
|
|
|
2004-04-30 22:32:03 +00:00
|
|
|
|
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);
|
|
|
|
|
|
2004-04-30 22:32:03 +00:00
|
|
|
|
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";
|
2006-07-17 06:02:57 +00:00
|
|
|
|
stream << " <showFrame=" << showFrame << ">\n";
|
|
|
|
|
|
2006-12-18 06:57:24 +00:00
|
|
|
|
QString t;
|
|
|
|
|
convert2ASCII(t = Frame_Text0);
|
2006-07-17 06:02:57 +00:00
|
|
|
|
stream << " <FrameText0=" << t << ">\n";
|
2006-12-18 06:57:24 +00:00
|
|
|
|
convert2ASCII(t = Frame_Text1);
|
|
|
|
|
stream << " <FrameText1=" << t << ">\n";
|
|
|
|
|
convert2ASCII(t = Frame_Text2);
|
|
|
|
|
stream << " <FrameText2=" << t << ">\n";
|
|
|
|
|
convert2ASCII(t = Frame_Text3);
|
|
|
|
|
stream << " <FrameText3=" << t << ">\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-10-23 06:25:14 +00:00
|
|
|
|
tmpViewX1 = nstr.section(',',5,5).toInt(&ok); if(ok)
|
|
|
|
|
tmpViewY1 = nstr.section(',',6,6).toInt(&ok); }}}}} }
|
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;
|
2006-07-17 06:02:57 +00:00
|
|
|
|
else if(cstr == "showFrame")
|
2006-07-24 06:12:23 +00:00
|
|
|
|
showFrame = nstr.at(0).latin1() - '0';
|
2006-12-18 06:57:24 +00:00
|
|
|
|
else if(cstr == "FrameText0") convert2Unicode(Frame_Text0 = nstr);
|
|
|
|
|
else if(cstr == "FrameText1") convert2Unicode(Frame_Text1 = nstr);
|
|
|
|
|
else if(cstr == "FrameText2") convert2Unicode(Frame_Text2 = nstr);
|
|
|
|
|
else if(cstr == "FrameText3") convert2Unicode(Frame_Text3 = nstr);
|
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);
|
2006-06-02 07:47:24 +00:00
|
|
|
|
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) {
|
2006-05-12 15:38:56 +00:00
|
|
|
|
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
|
|
|
|
|
2007-04-05 19:58:47 +00:00
|
|
|
|
if(Analog) createNodeSet(Collect, countInit, pn, pn);
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
|
|
|
|
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
|
2007-04-05 19:58:47 +00:00
|
|
|
|
if (Analog) createNodeSet(Collect, countInit, pw, pn);
|
2005-10-24 06:10:35 +00:00
|
|
|
|
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.
|
2007-05-17 09:30:12 +00:00
|
|
|
|
QPtrListIterator<Component> it(DocComps);
|
|
|
|
|
Component *pc;
|
|
|
|
|
while((pc = it.current()) != 0) {
|
|
|
|
|
++it;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
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") {
|
2007-05-10 21:54:06 +00:00
|
|
|
|
QString f = "SCH:"+pc->getSubcircuitFile();
|
|
|
|
|
if(StringList.findIndex(f) >= 0)
|
2006-05-05 06:00:05 +00:00
|
|
|
|
continue; // insert each subcircuit just one time
|
2007-05-10 21:54:06 +00:00
|
|
|
|
StringList.append(f);
|
2006-05-05 06:00:05 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
s = pc->Props.first()->Value;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
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;
|
2007-03-28 16:02:00 +00:00
|
|
|
|
d->isVerilog = isVerilog;
|
2007-05-10 21:54:06 +00:00
|
|
|
|
d->creatingLib = creatingLib;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
r = d->createSubNetlist(stream, countInit, Collect, ErrText, NumPorts);
|
|
|
|
|
delete d;
|
|
|
|
|
if(!r) return false;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(pc->Model == "Lib") {
|
2007-05-10 21:54:06 +00:00
|
|
|
|
if(creatingLib) {
|
|
|
|
|
ErrText->insert(
|
|
|
|
|
QObject::tr("WARNING: Skipping library component \"%1\".").
|
|
|
|
|
arg(pc->Name));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
s = "LIB:" + pc->getSubcircuitFile();
|
|
|
|
|
s += "/" + pc->Props.next()->Value;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
if(StringList.findIndex(s) >= 0)
|
|
|
|
|
continue; // insert each subcircuit just one time
|
|
|
|
|
StringList.append(s);
|
2007-05-10 21:54:06 +00:00
|
|
|
|
|
2007-05-09 16:02:32 +00:00
|
|
|
|
if(NumPorts < 0)
|
2007-05-10 21:54:06 +00:00
|
|
|
|
r = ((LibComp*)pc)->createSubNetlist(stream, StringList, 1);
|
2007-05-09 16:02:32 +00:00
|
|
|
|
else {
|
|
|
|
|
if(isVerilog)
|
2007-05-10 21:54:06 +00:00
|
|
|
|
r = ((LibComp*)pc)->createSubNetlist(stream, StringList, 4);
|
2007-05-09 16:02:32 +00:00
|
|
|
|
else
|
2007-05-10 21:54:06 +00:00
|
|
|
|
r = ((LibComp*)pc)->createSubNetlist(stream, StringList, 2);
|
2007-05-09 16:02:32 +00:00
|
|
|
|
}
|
2006-05-05 06:00:05 +00:00
|
|
|
|
if(!r) {
|
2007-05-09 16:02:32 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2007-05-10 21:54:06 +00:00
|
|
|
|
QString f = "CIR:"+pc->getSubcircuitFile();
|
|
|
|
|
if(StringList.findIndex(f) >= 0)
|
2006-05-05 06:00:05 +00:00
|
|
|
|
continue; // insert each spice component just one time
|
2007-05-10 21:54:06 +00:00
|
|
|
|
StringList.append(f);
|
2006-05-05 06:00:05 +00:00
|
|
|
|
|
2007-05-08 20:50:53 +00:00
|
|
|
|
#if 0
|
2006-05-05 06:00:05 +00:00
|
|
|
|
s += '"'+pc->Props.next()->Value;
|
|
|
|
|
if(pc->Props.next()->Value == "yes") s = "SPICE \""+s;
|
|
|
|
|
else s = "SPICEo\""+s;
|
|
|
|
|
Collect.append(s);
|
2007-05-10 21:54:06 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2007-05-08 20:50:53 +00:00
|
|
|
|
SpiceFile *sf = (SpiceFile*)pc;
|
2007-05-09 16:02:32 +00:00
|
|
|
|
r = sf->createSubNetlist(stream);
|
2007-05-08 20:50:53 +00:00
|
|
|
|
ErrText->insert(sf->getErrorText());
|
2007-05-09 16:02:32 +00:00
|
|
|
|
if(!r) return false;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
2007-05-08 20:50:53 +00:00
|
|
|
|
if(pc->Model == "VHDL" || pc->Model == "Verilog") {
|
2007-03-31 15:45:23 +00:00
|
|
|
|
if(isVerilog && pc->Model == "VHDL")
|
|
|
|
|
continue;
|
|
|
|
|
if(!isVerilog && pc->Model == "Verilog")
|
|
|
|
|
continue;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
s = pc->Props.getFirst()->Value;
|
|
|
|
|
if(s.isEmpty()) {
|
2007-03-31 15:45:23 +00:00
|
|
|
|
ErrText->insert(QObject::tr("ERROR: No file name in %1 component \"%2\".").
|
|
|
|
|
arg(pc->Model).
|
2006-05-05 06:00:05 +00:00
|
|
|
|
arg(pc->Name));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2007-05-10 21:54:06 +00:00
|
|
|
|
QString f = pc->getSubcircuitFile();
|
|
|
|
|
f = ((pc->Model == "VHDL") ? "VHD:" : "VER:") + f;
|
|
|
|
|
if(StringList.findIndex(f) >= 0)
|
2007-05-08 20:50:53 +00:00
|
|
|
|
continue; // insert each vhdl/verilog component just one time
|
2007-05-10 21:54:06 +00:00
|
|
|
|
StringList.append(f);
|
2006-05-05 06:00:05 +00:00
|
|
|
|
|
2007-05-08 20:50:53 +00:00
|
|
|
|
if(pc->Model == "VHDL") {
|
|
|
|
|
VHDL_File *vf = (VHDL_File*)pc;
|
2007-05-09 16:02:32 +00:00
|
|
|
|
r = vf->createSubNetlist(stream);
|
2007-05-08 20:50:53 +00:00
|
|
|
|
ErrText->insert(vf->getErrorText());
|
2007-05-09 16:02:32 +00:00
|
|
|
|
if(!r) return false;
|
2007-05-08 20:50:53 +00:00
|
|
|
|
}
|
|
|
|
|
if(pc->Model == "Verilog") {
|
|
|
|
|
Verilog_File *vf = (Verilog_File*)pc;
|
2007-05-09 16:02:32 +00:00
|
|
|
|
r = vf->createSubNetlist(stream);
|
2007-05-08 20:50:53 +00:00
|
|
|
|
ErrText->insert(vf->getErrorText());
|
2007-05-09 16:02:32 +00:00
|
|
|
|
if(!r) return false;
|
2007-05-08 20:50:53 +00:00
|
|
|
|
}
|
2006-05-05 06:00:05 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------
|
2007-05-10 21:54:06 +00:00
|
|
|
|
bool Schematic::createLibNetlist(QTextStream *stream, QTextEdit *ErrText,
|
|
|
|
|
int NumPorts)
|
2004-07-18 18:48:51 +00:00
|
|
|
|
{
|
2007-05-10 21:54:06 +00:00
|
|
|
|
int countInit = 0;
|
|
|
|
|
QStringList Collect;
|
|
|
|
|
Collect.clear();
|
|
|
|
|
StringList.clear();
|
2007-05-17 09:30:12 +00:00
|
|
|
|
Signals.clear();
|
2007-05-10 21:54:06 +00:00
|
|
|
|
|
|
|
|
|
// Apply node names and collect subcircuits and file include
|
|
|
|
|
creatingLib = true;
|
|
|
|
|
if(!giveNodeNames(stream, countInit, Collect, ErrText, NumPorts)) {
|
|
|
|
|
creatingLib = false;
|
2005-10-24 06:10:35 +00:00
|
|
|
|
return false;
|
2007-05-10 21:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
creatingLib = false;
|
2004-07-18 18:48:51 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
// Marking start of actual top-level subcircuit
|
|
|
|
|
QString c;
|
|
|
|
|
if(NumPorts >= 0) {
|
|
|
|
|
if (isVerilog)
|
|
|
|
|
c = "///";
|
|
|
|
|
else
|
|
|
|
|
c = "---";
|
|
|
|
|
}
|
|
|
|
|
else c = "###";
|
|
|
|
|
(*stream) << "\n" << c << " TOP LEVEL MARK " << c << "\n";
|
2006-03-06 07:07:14 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
// Emit subcircuit components
|
|
|
|
|
createSubNetlistPlain(stream, ErrText, NumPorts);
|
2007-05-17 09:30:12 +00:00
|
|
|
|
|
|
|
|
|
Signals.clear(); // was filled in "giveNodeNames()"
|
2007-05-10 21:54:06 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 17:21:11 +00:00
|
|
|
|
//#define VHDL_SIGNAL_TYPE "bit"
|
|
|
|
|
//#define VHDL_LIBRARIES ""
|
|
|
|
|
#define VHDL_SIGNAL_TYPE "std_logic"
|
|
|
|
|
#define VHDL_LIBRARIES "\nlibrary ieee;\nuse ieee.std_logic_1164.all;\n"
|
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
// ---------------------------------------------------
|
|
|
|
|
void Schematic::createSubNetlistPlain(QTextStream *stream, QTextEdit *ErrText,
|
|
|
|
|
int NumPorts)
|
|
|
|
|
{
|
|
|
|
|
int i, z;
|
|
|
|
|
QString s;
|
2006-03-06 07:07:14 +00:00
|
|
|
|
QStringList SubcircuitPorts;
|
2007-03-28 16:02:00 +00:00
|
|
|
|
QStringList InPorts;
|
|
|
|
|
QStringList OutPorts;
|
|
|
|
|
QStringList InOutPorts;
|
2004-08-22 14:41:35 +00:00
|
|
|
|
QStringList::Iterator it;
|
2004-07-18 18:48:51 +00:00
|
|
|
|
Component *pc;
|
2007-05-10 21:54:06 +00:00
|
|
|
|
|
|
|
|
|
// probably creating a library currently
|
|
|
|
|
QTextStream * tstream = stream;
|
|
|
|
|
QFile ofile;
|
|
|
|
|
if(creatingLib) {
|
|
|
|
|
QString f = properAbsFileName(DocName) + ".lst";
|
|
|
|
|
ofile.setName(f);
|
|
|
|
|
if(!ofile.open(IO_WriteOnly)) {
|
|
|
|
|
ErrText->insert(tr("ERROR: Cannot create library file \"%s\".").arg(f));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tstream = new QTextStream(&ofile);
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-06 07:07:14 +00:00
|
|
|
|
// collect subcircuit ports and sort their node names into "SubcircuitPorts"
|
2007-02-19 07:07:50 +00:00
|
|
|
|
for(pc = DocComps.first(); pc != 0; pc = DocComps.next()) {
|
|
|
|
|
if(pc->Model.at(0) == '.') { // no simulations in subcircuits
|
|
|
|
|
ErrText->insert(
|
|
|
|
|
QObject::tr("WARNING: Ignore simulation component in subcircuit \"%1\".").arg(DocName)+"\n");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if(pc->Model == "Port") {
|
2004-07-18 18:48:51 +00:00
|
|
|
|
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) {
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
Signals.remove(Signals.find(*it)); // remove node name
|
|
|
|
|
switch(pc->Props.at(1)->Value.at(0).latin1()) {
|
|
|
|
|
case 'a':
|
|
|
|
|
InOutPorts.append(*it);
|
|
|
|
|
break;
|
|
|
|
|
case 'o':
|
|
|
|
|
OutPorts.append(*it);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
InPorts.append(*it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
Signals.remove(Signals.find(*it)); // remove node name of output port
|
|
|
|
|
switch(pc->Props.at(1)->Value.at(0).latin1()) {
|
2006-03-06 07:07:14 +00:00
|
|
|
|
case 'a': (*it) += ": inout"; // attribut "analog" is "inout"
|
2007-03-28 16:02:00 +00:00
|
|
|
|
break;
|
2006-03-06 07:07:14 +00:00
|
|
|
|
case 'o': Signals.append(*it); // output ports need workaround
|
2007-03-28 16:02:00 +00:00
|
|
|
|
(*it) = "net_out" + (*it);
|
|
|
|
|
// no "break;" here !!!
|
2006-03-06 07:07:14 +00:00
|
|
|
|
default: (*it) += ": " + pc->Props.at(1)->Value;
|
2007-03-28 16:02:00 +00:00
|
|
|
|
}
|
2008-01-28 17:21:11 +00:00
|
|
|
|
(*it) += " " VHDL_SIGNAL_TYPE;
|
2007-03-28 16:02:00 +00:00
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
}
|
2004-07-18 18:48:51 +00:00
|
|
|
|
}
|
2007-02-19 07:07:50 +00:00
|
|
|
|
}
|
2004-07-18 18:48:51 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
QString f = properFileName(DocName);
|
|
|
|
|
QString Type = properName(f);
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
2006-10-16 06:17:29 +00:00
|
|
|
|
Painting *pi;
|
|
|
|
|
if(NumPorts < 0) {
|
2007-02-19 07:07:50 +00:00
|
|
|
|
// ..... analog subcircuit ...................................
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << "\n.Def:" << Type << " " << SubcircuitPorts.join(" ");
|
2006-10-16 06:17:29 +00:00
|
|
|
|
for(pi = SymbolPaints.first(); pi != 0; pi = SymbolPaints.next())
|
|
|
|
|
if(pi->Name == ".ID ") {
|
|
|
|
|
SubParameter *pp;
|
|
|
|
|
ID_Text *pid = (ID_Text*)pi;
|
|
|
|
|
for(pp = pid->Parameter.first(); pp != 0; pp = pid->Parameter.next()) {
|
|
|
|
|
s = pp->Name; // keep 'Name' unchanged
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " " << s.replace("=", "=\"") << '"';
|
2006-10-16 06:17:29 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << '\n';
|
2007-02-19 07:07:50 +00:00
|
|
|
|
|
|
|
|
|
// write all components with node names into netlist file
|
|
|
|
|
for(pc = DocComps.first(); pc != 0; pc = DocComps.next())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << pc->getNetlist();
|
2007-02-19 07:07:50 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << ".Def:End\n";
|
2007-02-19 07:07:50 +00:00
|
|
|
|
|
2006-10-16 06:17:29 +00:00
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
else {
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
// ..... digital subcircuit ...................................
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << "\nmodule Sub_" << Type << " ("
|
|
|
|
|
<< SubcircuitPorts.join(", ") << ");\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(!InPorts.isEmpty())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " input " << InPorts.join(", ") << ";\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(!OutPorts.isEmpty())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " output " << OutPorts.join(", ") << ";\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(!InOutPorts.isEmpty())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " inout " << InOutPorts.join(", ") << ";\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(!Signals.isEmpty())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " wire " << Signals.join(",\n ")
|
|
|
|
|
<< ";\n";
|
|
|
|
|
(*tstream) << "\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
|
|
|
|
if(Signals.findIndex("gnd") >= 0)
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " assign gnd = 0;\n"; // should appear only once
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
|
|
|
|
// write all components into netlist file
|
|
|
|
|
for(pc = DocComps.first(); pc != 0; pc = DocComps.next())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << pc->get_Verilog_Code(NumPorts);
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << "endmodule\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
// ..... digital subcircuit ...................................
|
2008-01-28 17:21:11 +00:00
|
|
|
|
(*tstream) << VHDL_LIBRARIES;
|
|
|
|
|
(*tstream) << "entity Sub_" << Type << " is\n"
|
2007-05-10 21:54:06 +00:00
|
|
|
|
<< " port (" << SubcircuitPorts.join(";\n ") << ");\n"
|
|
|
|
|
<< "end entity;\n"
|
|
|
|
|
<< "use work.all;\n"
|
|
|
|
|
<< "architecture Arch_Sub_" << Type << " of Sub_" << Type
|
|
|
|
|
<< " is\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(!Signals.isEmpty())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " signal " << Signals.join(",\n ")
|
2008-01-28 17:21:11 +00:00
|
|
|
|
<< " : " VHDL_SIGNAL_TYPE ";\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << "begin\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
|
|
|
|
if(Signals.findIndex("gnd") >= 0)
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << " gnd <= '0';\n"; // should appear only once
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
|
|
|
|
// write all components into netlist file
|
|
|
|
|
for(pc = DocComps.first(); pc != 0; pc = DocComps.next())
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << pc->get_VHDL_Code(NumPorts);
|
2007-03-28 16:02:00 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
(*tstream) << "end architecture;\n";
|
2007-03-28 16:02:00 +00:00
|
|
|
|
}
|
2007-02-19 07:07:50 +00:00
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
// close file
|
|
|
|
|
if(creatingLib) {
|
|
|
|
|
ofile.close();
|
2007-05-11 17:33:10 +00:00
|
|
|
|
delete tstream;
|
2007-05-10 21:54:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------
|
|
|
|
|
// Write the netlist as subcircuit to the text stream 'stream'.
|
|
|
|
|
bool Schematic::createSubNetlist(QTextStream *stream, int& countInit,
|
|
|
|
|
QStringList& Collect, QTextEdit *ErrText, int NumPorts)
|
|
|
|
|
{
|
|
|
|
|
// int Collect_count = Collect.count(); // position for this subcircuit
|
|
|
|
|
|
|
|
|
|
// TODO: NodeSets have to be put into the subcircuit block.
|
|
|
|
|
if(!giveNodeNames(stream, countInit, Collect, ErrText, NumPorts))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* 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++;*/
|
|
|
|
|
|
|
|
|
|
// Emit subcircuit components
|
|
|
|
|
createSubNetlistPlain(stream, ErrText, NumPorts);
|
|
|
|
|
|
2007-02-19 07:07:50 +00:00
|
|
|
|
Signals.clear(); // was filled in "giveNodeNames()"
|
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
|
|
|
|
|
2007-03-26 19:50:51 +00:00
|
|
|
|
isVerilog = false;
|
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;
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if(pc->Props.getLast()->Value != "VHDL")
|
|
|
|
|
isVerilog = true;
|
2005-11-28 07:17:35 +00:00
|
|
|
|
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 << "#";
|
2007-03-26 19:50:51 +00:00
|
|
|
|
else if (isVerilog)
|
|
|
|
|
stream << "//";
|
2005-10-24 06:10:35 +00:00
|
|
|
|
else
|
|
|
|
|
stream << "--";
|
2006-03-28 06:10:52 +00:00
|
|
|
|
stream << " Qucs " << PACKAGE_VERSION << " " << DocName << "\n";
|
2004-07-18 18:48:51 +00:00
|
|
|
|
|
2006-06-06 06:14:17 +00:00
|
|
|
|
int countInit = 0; // counts the nodesets to give them unique names
|
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
|
|
|
|
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
stream << "`timescale 1ps/100fs\n";
|
|
|
|
|
} else {
|
2008-01-28 17:21:11 +00:00
|
|
|
|
stream << VHDL_LIBRARIES;
|
2007-03-26 19:50:51 +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) {
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
stream << "module TestBench ();\n"
|
2007-03-28 16:02:00 +00:00
|
|
|
|
<< " wire " << Signals.join(",\n ")
|
|
|
|
|
<< ";\n\n";
|
2007-03-26 19:50:51 +00:00
|
|
|
|
} else {
|
|
|
|
|
stream << "architecture Arch_TestBench of TestBench is\n"
|
|
|
|
|
<< " signal " << Signals.join(",\n ")
|
2008-01-28 17:21:11 +00:00
|
|
|
|
<< " : " VHDL_SIGNAL_TYPE ";\n"
|
2007-03-26 19:50:51 +00:00
|
|
|
|
<< "begin\n";
|
|
|
|
|
}
|
2006-03-06 07:07:14 +00:00
|
|
|
|
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if(Signals.findIndex("gnd") >= 0) {
|
|
|
|
|
if (isVerilog) {
|
|
|
|
|
stream << " assign gnd = 0;\n";
|
|
|
|
|
} else {
|
|
|
|
|
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(NumPorts < 0) {
|
2007-02-19 07:07:50 +00:00
|
|
|
|
s = pc->getNetlist();
|
2006-05-05 06:00:05 +00:00
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
else {
|
2007-03-28 16:02:00 +00:00
|
|
|
|
if(pc->Model == ".Digi" && pc->isActive) { // simulation component ?
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if(NumPorts > 0) { // truth table simulation ?
|
|
|
|
|
if (isVerilog)
|
|
|
|
|
Time = QString::number((1 << NumPorts));
|
|
|
|
|
else
|
|
|
|
|
Time = QString::number((1 << NumPorts) - 1) + " ns";
|
|
|
|
|
} else {
|
2006-01-16 07:19:57 +00:00
|
|
|
|
Time = pc->Props.at(1)->Value;
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
if(!Verilog_Time(Time, pc->Name)) return Time;
|
|
|
|
|
} else {
|
|
|
|
|
if(!VHDL_Time(Time, pc->Name)) return Time; // wrong time format
|
|
|
|
|
}
|
2006-01-16 07:19:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if (isVerilog) {
|
|
|
|
|
s = pc->get_Verilog_Code(NumPorts);
|
|
|
|
|
} else {
|
|
|
|
|
s = pc->get_VHDL_Code(NumPorts);
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
2007-02-19 07:07:50 +00:00
|
|
|
|
stream << s;
|
2004-07-18 18:48:51 +00:00
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
2007-03-26 19:50:51 +00:00
|
|
|
|
if(NumPorts >= 0) {
|
|
|
|
|
if (isVerilog) {
|
|
|
|
|
} else {
|
|
|
|
|
stream << "end architecture;\n";
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-10-24 06:10:35 +00:00
|
|
|
|
|
|
|
|
|
return Time;
|
2004-07-18 18:48:51 +00:00
|
|
|
|
}
|