~arcachofo/simulide/1.1.0

« back to all changes in this revision

Viewing changes to src/gui/circuitwidget/components/outputs/ledbase.cpp

  • Committer: arcachofo
  • Date: 2021-01-01 14:23:42 UTC
  • Revision ID: arcachofo@simulide.com-20210101142342-ozfljnll44g5lbl3
Initial Commit 0.5.15-RC3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2012 by santiago González                               *
 
3
 *   santigoro@gmail.com                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, see <http://www.gnu.org/licenses/>.  *
 
17
 *                                                                         *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "ledbase.h"
 
21
#include "circuitwidget.h"
 
22
#include "connector.h"
 
23
#include "simulator.h"
 
24
#include "pin.h"
 
25
 
 
26
static const char* LedBase_properties[] = {
 
27
    QT_TRANSLATE_NOOP("App::Property","MaxCurrent"),
 
28
    QT_TRANSLATE_NOOP("App::Property","Grounded")
 
29
};
 
30
 
 
31
LedBase::LedBase( QObject* parent, QString type, QString id )
 
32
       : Component( parent, type, id )
 
33
       , eLed( id )
 
34
{
 
35
    Q_UNUSED( LedBase_properties );
 
36
    
 
37
    m_graphical = true;
 
38
    m_overCurrent = false;
 
39
    m_grounded = false;
 
40
    m_scrEnode = 0l;
 
41
    m_counter = 0;
 
42
    m_bright = 0;
 
43
    
 
44
    m_color = QColor( Qt::black );
 
45
    setColor( yellow );
 
46
    
 
47
    m_valLabel->setEnabled( false );
 
48
    m_valLabel->setVisible( false );
 
49
 
 
50
    Simulator::self()->addToUpdateList( this );
 
51
}
 
52
LedBase::~LedBase() {}
 
53
 
 
54
void LedBase::initialize()
 
55
{
 
56
    eLed::initialize();
 
57
    update();
 
58
}
 
59
 
 
60
void LedBase::updateStep()
 
61
{
 
62
    uint bright = m_bright;
 
63
    eLed::updateBright();
 
64
    
 
65
    if( m_bright > 255+75 )
 
66
    {
 
67
        m_bright = 255+75;
 
68
        m_counter++;
 
69
        
 
70
        if( m_counter > 4 )
 
71
        {
 
72
            m_counter = 0;
 
73
            m_overCurrent = !m_overCurrent;
 
74
            update();
 
75
        }
 
76
    }
 
77
    else if( m_overCurrent )
 
78
    {
 
79
        m_overCurrent = false;
 
80
        m_counter = 0;
 
81
        update();
 
82
    }
 
83
    else if( bright != m_bright ) update();
 
84
}
 
85
 
 
86
bool LedBase::grounded()
 
87
{
 
88
    return m_grounded;
 
89
}
 
90
 
 
91
void LedBase::setGrounded( bool grounded )
 
92
{
 
93
    if( grounded == m_grounded ) return;
 
94
    
 
95
    if( Simulator::self()->isRunning() )  CircuitWidget::self()->powerCircOff();
 
96
 
 
97
    if( grounded )
 
98
    {
 
99
        Pin* pin1 = (static_cast<Pin*>(m_ePin[1]));
 
100
        if( m_ePin[1]->isConnected() ) pin1->connector()->remove();
 
101
        pin1->setEnabled( false );
 
102
        pin1->setVisible( false );
 
103
 
 
104
        if( !m_scrEnode )
 
105
        {
 
106
            m_scrEnode = new eNode( m_id+"Gnod" );
 
107
            m_scrEnode->setNodeNumber(0);
 
108
            Simulator::self()->remFromEnodeList( m_scrEnode, /*delete=*/ false );
 
109
        }
 
110
        m_ePin[1]->setEnode( m_scrEnode );
 
111
    }
 
112
    else
 
113
    {
 
114
        Pin* pin1 = (static_cast<Pin*>(m_ePin[1]));
 
115
 
 
116
        pin1->setEnabled( true );
 
117
        pin1->setVisible( true );
 
118
 
 
119
        m_ePin[1]->setEnode( 0l );
 
120
    }
 
121
    m_grounded = grounded;
 
122
}
 
123
 
 
124
void LedBase::remove()
 
125
{
 
126
    if( m_grounded ) m_ePin[1]->setEnode( 0l );
 
127
    //if( m_scrEnode ) delete m_scrEnode;
 
128
    Simulator::self()->remFromUpdateList( this ); 
 
129
    
 
130
    Component::remove();
 
131
}
 
132
 
 
133
void LedBase::paint( QPainter *p, const QStyleOptionGraphicsItem *option, QWidget *widget )
 
134
{
 
135
    Component::paint( p, option, widget );
 
136
 
 
137
    QPen pen(Qt::black, 4, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
 
138
    
 
139
    QColor color;
 
140
 
 
141
    if( m_overCurrent )                               // Max Current
 
142
    {
 
143
        //m_bright = 0;
 
144
        p->setBrush( Qt::white );
 
145
        color = QColor( Qt::white );
 
146
        pen.setColor( color );
 
147
    }
 
148
    else
 
149
    {
 
150
        int overBight = 100;
 
151
        
 
152
        if( m_bright > 25 )
 
153
        {
 
154
            m_bright += 15;                          // Set a Minimun Bright
 
155
            
 
156
            if( m_bright > 255 ) 
 
157
            {
 
158
                overBight += m_bright-255;
 
159
                m_bright = 255;
 
160
            }
 
161
        }
 
162
        
 
163
        color = QColor( m_bright, m_bright, overBight ); // Default = yellow
 
164
        
 
165
        if     ( m_ledColor == red )    color = QColor( m_bright,  m_bright/3, overBight );
 
166
        else if( m_ledColor == green )  color = QColor( overBight, m_bright,   m_bright*2/3 );
 
167
        else if( m_ledColor == blue )   color = QColor( overBight, m_bright/2, m_bright );
 
168
        else if( m_ledColor == orange ) color = QColor( m_bright,  m_bright*2/3, overBight );
 
169
        else if( m_ledColor == purple ) color = QColor( m_bright,  overBight,  m_bright*2/3 );
 
170
    }
 
171
    p->setPen(pen);
 
172
    drawBackground( p );
 
173
    
 
174
    pen.setColor( color );
 
175
    pen.setWidth(2.5);
 
176
    p->setPen(pen);
 
177
    p->setBrush( color );
 
178
 
 
179
    drawForeground( p );
 
180
}
 
181
 
 
182
#include "moc_ledbase.cpp"