mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add command to print components entry formats
* The option `qucs -list-entres` print the component default entries for: - qucs schematic format - qucsator netlist format
This commit is contained in:
parent
2f306a09d7
commit
2c225394c9
@ -563,6 +563,56 @@ void createDocData() {
|
||||
fprintf(stdout, "Created data for %i components from %i categories\n", nComps, nCats);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief createListNetEntry prints to stdout the available netlist formats
|
||||
*
|
||||
* Prints the default component entries format for:
|
||||
* - Qucs schematic
|
||||
* - Qucsator netlist
|
||||
*/
|
||||
void createListComponentEntry(){
|
||||
|
||||
Module::registerModules ();
|
||||
QStringList cats = Category::getCategories ();
|
||||
// table for quick reference, schematic and netlist entry
|
||||
foreach(QString category, cats) {
|
||||
|
||||
QList<Module *> Comps;
|
||||
Comps = Category::getModules(category);
|
||||
|
||||
// \fixme, crash with diagrams, skip
|
||||
if(category == "diagrams") break;
|
||||
|
||||
char * File;
|
||||
QString Name;
|
||||
|
||||
foreach (Module *Mod, Comps) {
|
||||
Element *e = (Mod->info) (Name, File, true);
|
||||
Component *c = (Component* ) e;
|
||||
|
||||
QString qucsEntry = c->save();
|
||||
fprintf(stdout, "%s; qucs ; %s\n", c->Model.toAscii().data(), qucsEntry.toAscii().data());
|
||||
|
||||
// add dummy ports/wires, avoid segfault
|
||||
int port = 0;
|
||||
foreach (Port *p, c->Ports) {
|
||||
Node *n = new Node(0,0);
|
||||
n->Name="_net"+QString::number(port);
|
||||
p->Connection = n;
|
||||
port +=1;
|
||||
}
|
||||
|
||||
// skip Subcircuit, segfault, there is nothing to netlist
|
||||
if (c->Model == "Sub" or c->Model == ".Opt") {
|
||||
fprintf(stdout, "WARNING, qucsator netlist not generated for %s\n\n", c->Model.toAscii().data());
|
||||
continue;
|
||||
}
|
||||
|
||||
QString qucsatorEntry = c->getNetlist();
|
||||
fprintf(stdout, "%s; qucsator; %s\n", c->Model.toAscii().data(), qucsatorEntry.toAscii().data());
|
||||
} // module
|
||||
} // category
|
||||
}
|
||||
|
||||
// #########################################################################
|
||||
// ########## ##########
|
||||
@ -739,6 +789,7 @@ int main(int argc, char *argv[])
|
||||
" -o FILENAME use file as output netlist\n"
|
||||
" -icons create component icons under ./bitmaps_generated\n"
|
||||
" -doc dump data for documentation\n"
|
||||
" -list-entries list components entry format for schematic and netlist\n"
|
||||
, argv[0]);
|
||||
return 0;
|
||||
}
|
||||
@ -782,6 +833,10 @@ int main(int argc, char *argv[])
|
||||
createDocData();
|
||||
return 0;
|
||||
}
|
||||
else if(!strcmp(argv[i], "-list-entries")) {
|
||||
createListComponentEntry();
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
fprintf(stderr, "Error: Unknown option: %s\n", argv[i]);
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user