summaryrefslogtreecommitdiffstats
path: root/src/electronics/components/dependentsource.cpp
blob: 764cc536f7fbcf5e641c1a3f222b31cbbd37712b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/***************************************************************************
 *   Copyright (C) 2005 by David Saxton                                    *
 *   david@bluehaze.org                                                    *
 *                                                                         *
 *   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 "dependentsource.h"
#include "ecnode.h"
#include "libraryitem.h"
#include "pin.h"

#include "cccs.h"
#include "ccvs.h"
#include "vccs.h"
#include "vcvs.h"

#include <klocale.h>
#include <qpainter.h>

//BEGIN class DependentSource
DependentSource::DependentSource( ICNDocument *icnDocument, bool newItem, const char *id )
	: Component( icnDocument, newItem, id )
{
	setSize( -16, -16, 32, 32 );
	
	init2PinLeft();
	init2PinRight();
	
	createProperty( "gain", Variant::Type::Double );
	property("gain")->setCaption( i18n("Gain") );
	property("gain")->setValue(1.0);
	
	addDisplayText( "gain", QRect( -16, -32, 32, 16 ), "" );
}


DependentSource::~DependentSource()
{
}


void DependentSource::drawOutline( QPainter & p )
{
	const int _x = (int)x()-16;
	const int _y = (int)y()-32;
	
	// Top rectangle
	p.drawRect( _x, _y+19, width(), 11 );
	
	p.save();
	bool canSetCol = (p.pen().color() != Qt::color0) && (p.pen().color() != Qt::color1);
	
	// Bottom lines
	if (canSetCol)
		p.setPen( m_pNNode[1]->isSelected() ? m_selectedCol : Qt::black );
	p.drawLine( _x, _y+40, _x+8, _y+40 ); // Left inny
	
	if (canSetCol)
		p.setPen( m_pPNode[1]->isSelected() ? m_selectedCol : Qt::black );
	p.drawLine( _x+width(), _y+40, _x+24, _y+40 ); // Right inny
	
	p.restore();
	
	// Bottom diamond
	QPointArray pa4(4);
	pa4[0] = QPoint( _x+6, _y+40 );
	pa4[1] = QPoint( _x+16, _y+32 );
	pa4[2] = QPoint( _x+26, _y+40 );
	pa4[3] = QPoint( _x+16, _y+48 );
	p.drawPolygon(pa4);
}


void DependentSource::drawTopArrow( QPainter & p )
{
	const int _x = (int)x()-16;
	const int _y = (int)y()-32;

	if ( p.pen().color() == m_selectedCol )
		p.setPen(Qt::black);
	
	if ( p.brush().color() == m_brushCol )
		p.setBrush(Qt::black);
	
	p.drawLine( _x+8, _y+24, _x+24, _y+24 );
	
	QPointArray pa3(3);
	pa3[0] = QPoint( _x+24, _y+24 );
	pa3[1] = QPoint( _x+19, _y+21 );
	pa3[2] = QPoint( _x+19, _y+27 );
	p.drawPolygon(pa3);
}


void DependentSource::drawBottomArrow( QPainter & p )
{
	const int _x = (int)x()-16;
	const int _y = (int)y()-32;

	if ( p.pen().color() == m_selectedCol )
		p.setPen(Qt::black);
	
	if ( p.brush().color() == m_brushCol )
		p.setBrush(Qt::black);
	
	p.drawLine( _x+11, _y+40, _x+21, _y+40 );
	
	QPointArray pa3(3);
	pa3[0] = QPoint( _x+21, _y+40 );
	pa3[1] = QPoint( _x+16, _y+37 );
	pa3[2] = QPoint( _x+16, _y+43 );
	p.drawPolygon(pa3);
}
//END class DependentSource


//BEGIN class ECCCCS
Item* ECCCCS::construct( ItemDocument *itemDocument, bool newItem, const char *id )
{
	return new ECCCCS( (ICNDocument*)itemDocument, newItem, id );
}

LibraryItem* ECCCCS::libraryItem()
{
	return new LibraryItem(
		QString("ec/cccs"),
		i18n("CCCS"),
		i18n("Sources"),
		"cccs.png",
		LibraryItem::lit_component,
		ECCCCS::construct );
}

ECCCCS::ECCCCS( ICNDocument *icnDocument, bool newItem, const char *id )
	: DependentSource( icnDocument, newItem, id ? id : "cccs" )
{
	m_name = i18n("Current Controlled Currrent Source");
	m_cccs = createCCCS( m_pNNode[0], m_pPNode[0], m_pNNode[1], m_pPNode[1], 1. );
	m_pNNode[1]->pin()->setGroundType( Pin::gt_medium );
}

ECCCCS::~ECCCCS()
{
}

void ECCCCS::dataChanged()
{
	double gain = dataDouble("gain");
	
	QString display = QString::number( gain / getMultiplier(gain), 'g', 3 ) + getNumberMag(gain) + QChar(' ');
	setDisplayText( "gain", display );
	
	m_cccs->setGain(gain);
}

void ECCCCS::drawShape( QPainter &p )
{
	initPainter(p);
	drawOutline(p);
	drawTopArrow(p);
	drawBottomArrow(p);
	deinitPainter(p);
}
//END class ECCCCS


//BEGIN class ECCCVS
Item* ECCCVS::construct( ItemDocument *itemDocument, bool newItem, const char *id )
{
	return new ECCCVS( (ICNDocument*)itemDocument, newItem, id );
}

LibraryItem* ECCCVS::libraryItem()
{
	return new LibraryItem(
		QString("ec/ccvs"),
		i18n("CCVS"),
		i18n("Sources"),
		"ccvs.png",
		LibraryItem::lit_component,
		ECCCVS::construct );
}

ECCCVS::ECCCVS( ICNDocument *icnDocument, bool newItem, const char *id )
	: DependentSource( icnDocument, newItem, id ? id : "ccvs" )
{
	m_name = i18n("Current Controlled Voltage Source");
	m_ccvs = createCCVS( m_pNNode[0], m_pPNode[0], m_pNNode[1], m_pPNode[1], 1. );
	m_pNNode[1]->pin()->setGroundType( Pin::gt_medium );
}

ECCCVS::~ECCCVS()
{
}

void ECCCVS::dataChanged()
{
	double gain = dataDouble("gain");
	
	QString display = QString::number( gain / getMultiplier(gain), 'g', 3 ) + getNumberMag(gain) + QChar(' ');
	setDisplayText( "gain", display );
	
	m_ccvs->setGain(gain);
}

void ECCCVS::drawShape( QPainter &p )
{
	initPainter(p);
	drawOutline(p);
	drawTopArrow(p);
	deinitPainter(p);
}
//END class ECCCVS


//BEGIN class ECVCCS
Item* ECVCCS::construct( ItemDocument *itemDocument, bool newItem, const char *id )
{
	return new ECVCCS( (ICNDocument*)itemDocument, newItem, id );
}

LibraryItem* ECVCCS::libraryItem()
{
	return new LibraryItem(
		QString("ec/vccs"),
		i18n("VCCS"),
		i18n("Sources"),
		"vccs.png",
		LibraryItem::lit_component,
		ECVCCS::construct );
}

ECVCCS::ECVCCS( ICNDocument *icnDocument, bool newItem, const char *id )
	: DependentSource( icnDocument, newItem, id ? id : "vccs" )
{
	m_name = i18n("Voltage Controlled Current Source");
	m_vccs = createVCCS( m_pNNode[0], m_pPNode[0], m_pNNode[1], m_pPNode[1], 1. );
	m_pNNode[1]->pin()->setGroundType( Pin::gt_medium );
}

ECVCCS::~ECVCCS()
{
}

void ECVCCS::dataChanged()
{
	double gain = dataDouble("gain");
	
	QString display = QString::number( gain / getMultiplier(gain), 'g', 3 ) + getNumberMag(gain) + QChar(' ');
	setDisplayText( "gain", display );
	
	m_vccs->setGain(gain);
}

void ECVCCS::drawShape( QPainter &p )
{
	initPainter(p);
	drawOutline(p);
	drawBottomArrow(p);
	deinitPainter(p);
}
//END class ECVCCS


//BEGIN class ECVCVS
Item* ECVCVS::construct( ItemDocument *itemDocument, bool newItem, const char *id )
{
	return new ECVCVS( (ICNDocument*)itemDocument, newItem, id );
}

LibraryItem* ECVCVS::libraryItem()
{
	return new LibraryItem(
		QString("ec/vcvs"),
		i18n("VCVS"),
		i18n("Sources"),
		"vcvs.png",
		LibraryItem::lit_component,
		ECVCVS::construct );
}

ECVCVS::ECVCVS( ICNDocument *icnDocument, bool newItem, const char *id )
	: DependentSource( icnDocument, newItem, id ? id : "vcvs" )
{
	m_name = i18n("Voltage Controlled Voltage Source");
	m_vcvs = createVCVS( m_pNNode[0], m_pPNode[0], m_pNNode[1], m_pPNode[1], 1. );
	m_pNNode[1]->pin()->setGroundType( Pin::gt_medium );
}

ECVCVS::~ECVCVS()
{
}

void ECVCVS::dataChanged()
{
	double gain = dataDouble("gain");
	
	QString display = QString::number( gain / getMultiplier(gain), 'g', 3 ) + getNumberMag(gain) + QChar(' ');
	setDisplayText( "gain", display );
	
	m_vcvs->setGain(gain);
}

void ECVCVS::drawShape( QPainter &p )
{
	initPainter(p);
	drawOutline(p);
	deinitPainter(p);
}
//END class ECVCVS