2017-03-03 16:09:51 +03:00
|
|
|
/***************************************************************************
|
|
|
|
xyce_script.cpp
|
|
|
|
------------
|
|
|
|
begin : Wed Jun 22 2016
|
|
|
|
copyright : (C) 2016 by Vadim Kuznetsov
|
|
|
|
email : ra3xdh@gmail.com
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
#include "incl_script.h"
|
|
|
|
#include "main.h"
|
2024-06-15 10:14:20 +02:00
|
|
|
#include <QFontInfo>
|
2017-03-03 16:09:51 +03:00
|
|
|
#include <QFontMetrics>
|
|
|
|
|
|
|
|
|
|
|
|
InclScript::InclScript()
|
|
|
|
{
|
|
|
|
isEquation = false;
|
|
|
|
Type = isComponent; // Analogue and digital component.
|
|
|
|
Description = QObject::tr("Include script before simulation");
|
2023-06-09 13:54:29 +03:00
|
|
|
Simulator = spicecompat::simSpice;
|
2017-03-03 16:09:51 +03:00
|
|
|
|
|
|
|
QFont f = QucsSettings.font;
|
|
|
|
f.setWeight(QFont::Light);
|
|
|
|
f.setPointSizeF(12.0);
|
|
|
|
QFontMetrics metrics(f, 0); // use the the screen-compatible metric
|
|
|
|
QSize r = metrics.size(0, QObject::tr(".INCLUDE SCRIPT"));
|
|
|
|
int xb = r.width() >> 1;
|
|
|
|
int yb = r.height() >> 1;
|
|
|
|
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line(-xb, -yb, -xb, yb,QPen(Qt::darkRed,2)));
|
|
|
|
Lines.append(new qucs::Line(-xb, yb, xb+3,yb,QPen(Qt::darkRed,2)));
|
2017-03-03 16:09:51 +03:00
|
|
|
Texts.append(new Text(-xb+4, -yb-3, QObject::tr(".INCLUDE SCRIPT"),
|
2024-06-15 10:14:20 +02:00
|
|
|
QColor(0,0,0), QFontInfo(f).pixelSize()));
|
2017-03-03 16:09:51 +03:00
|
|
|
|
|
|
|
x1 = -xb-3; y1 = -yb-5;
|
|
|
|
x2 = xb+9; y2 = yb+3;
|
|
|
|
|
|
|
|
tx = x1+4;
|
|
|
|
ty = y2+4;
|
|
|
|
Model = "INCLSCR";
|
|
|
|
Name = "INCLSCR";
|
|
|
|
SpiceModel = "INCLSCR";
|
|
|
|
|
|
|
|
// The index of the first 4 properties must not changed. Used in recreate().
|
|
|
|
Props.append(new Property("SpiceCode", "\n"
|
|
|
|
".PARAM rp = 1k\n"
|
|
|
|
".FUNC prod(x,y) = {x*y}", true,
|
|
|
|
"Insert spice code here"));
|
|
|
|
Props.append(new Property("","",false,"Extra property"));
|
|
|
|
Props.append(new Property("","",false,"Extra property"));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
InclScript::~InclScript()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Component* InclScript::newOne()
|
|
|
|
{
|
|
|
|
return new InclScript();
|
|
|
|
}
|
|
|
|
|
|
|
|
Element* InclScript::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
|
|
{
|
|
|
|
Name = QObject::tr("Include script");
|
|
|
|
BitmapFile = (char *) "incl_script";
|
|
|
|
|
|
|
|
if(getNewOne) return new InclScript();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-01-19 15:18:24 +01:00
|
|
|
QString InclScript::getExpression(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
2017-03-03 16:09:51 +03:00
|
|
|
{
|
2025-01-19 15:18:24 +01:00
|
|
|
if (isActive != COMP_IS_ACTIVE || dialect == spicecompat::CDL)
|
2024-10-19 15:13:10 +08:00
|
|
|
return QString();
|
2017-03-03 16:09:51 +03:00
|
|
|
return Props.at(0)->Value+"\n";
|
|
|
|
}
|