Files
@ 79f94eaa3b9e
Branch filter:
Location: EI/VirtualLeaf/src/wallitem.cpp
79f94eaa3b9e
5.0 KiB
text/x-c++src
Initial Commit
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 | /*
*
* This file is part of the Virtual Leaf.
*
* The Virtual Leaf 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 3 of the License, or
* (at your option) any later version.
*
* The Virtual Leaf is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the Virtual Leaf. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010 Roeland Merks.
*
*/
#include <string>
#include <QGraphicsScene>
#include <QVector>
#include "canvas.h"
#include "wallitem.h"
#include "parameter.h"
#include "node.h"
#include "transporterdialog.h"
static const std::string _module_id("$Id$");
WallItem::WallItem( Wall *w, int wallnumber, QGraphicsScene *canvas )
: QGraphicsLineItem( 0, canvas ), SimItemBase( w, canvas){
wn = wallnumber;
extern Parameter par;
//Wall *w=&getWall();
// Draw amount of "PIN1"
//double val = wn==1?(w->Transporters1(1)/par.Pi_tot)*255.:(w->Transporters2(1)/par.Pi_tot)*255.;
/* if (val > 255 || val < 0 ) {
std::cerr << "val = " << val << endl;
if (wn == 1) {
std::cerr << "Transporters1(1) = " << w->Transporters1(1) << endl;
} else {
std::cerr << "Transporters2(1) = " << w->Transporters2(1) << endl;
}
}*/
setColor();
// line with "PIN1"is a bit inside the cell wall
Vector edgevec = (*(w->N2())) - (*(w->N1()));
Vector perp = edgevec.Normalised().Perp2D();
Vector offs = Cell::Offset();
double factor = Cell::Factor();
Vector from = ( offs + *(w->N1()) ) * factor + (wn==1?-1:1) * par.outlinewidth * 0.5 * factor * perp;
Vector to = ( offs + *(w->N2()) ) *factor + (wn==1?-1:1) * par.outlinewidth * 0.5 * factor * perp;
Vector tmp_centroid = ( *(w->N2()) + *(w->N1()) )/2.;
Vector centroid = ( offs + tmp_centroid ) * factor;
QString text=QString("%1").arg(w->Index());
/* if (0) {
QGraphicsSimpleTextItem *ctext = new QGraphicsSimpleTextItem ( text, 0, canvas );
ctext->setPen( QPen(QColor("orange")) );
ctext->setZValue(20);
ctext->setFont( QFont( "Helvetica", par.nodenumsize, QFont::Bold) );
//ctext->setTextFlags(Qt::AlignCenter);
ctext->show();
ctext ->setPos(centroid.x,
centroid.y );
}*/
setLine(( from.x ),
( from.y ),
( to.x ),
( to.y ) );
setZValue(12);
}
void WallItem::setColor(void) {
QColor diffcolor;
static const QColor purple("Purple");
static const QColor blue("blue");
Wall *w=&getWall();
double tr = wn==1?w->Transporters1(1):w->Transporters2(1);
CellBase *c = wn==1?w->C1():w->C2();
diffcolor.setRgb( (int)( ( tr / (1 + tr) )*255.), 0, 0);
//diffcolor.setRgb( (int)( ((wn==1?w->Transporters1(1):w->Transporters2(1)))*255.), 0, 0);
/* if (wn==1) {
cerr << "Transporter: " << w->Transporters1(1) << endl;
} else {
cerr << "Transporter: " << w->Transporters2(1) << endl;
}*/
if (w->AuxinSource() && c->BoundaryPolP()) {
setPen( QPen(purple , par.outlinewidth) );
} else {
if (w->AuxinSink() && c->BoundaryPolP()) {
setPen( QPen(blue, par.outlinewidth));
} else {
setPen (QPen(diffcolor, par.outlinewidth) );
}
}
// if (c->BoundaryPolP()) {
// setPen(QPen(QColor("red"), 20));
// }
}
void WallItem::OnClick(QMouseEvent *e) {
Wall *w=&getWall();
cerr << "Wall ID = " << w->Index() << ", this = " << w << "\n";
cerr << "Wall item = " << this << "\n";
cerr << "C1 = " << w->C1()->Index() << ", C2 = " << w->C2()->Index() << endl;
cerr << "N1 = " << w->N1()->Index() << ", N2 = " << w->N2()->Index() << endl;
//double tr = wn==1?w->Transporters1(1):w->Transporters2(1);
CellBase *c = wn==1?w->C1():w->C2();
TransporterDialog dialog(w, c, wn);
dialog.exec();
if (e->button() == Qt::RightButton) {
QString message;
if (wn==1) {
message=QString("Transporter 1 = %1, color = %2, length = %3\n").arg(w->Transporters1(1)).arg(pen().color().red()).arg(getWall().Length());
} else {
message=QString("Transporter 2 = %1, color = %2, length = %3\n").arg(w->Transporters2(1)).arg(pen().color().red()).arg(getWall().Length());
}
//extern MainBase *main_window;
//((Main *)main_window)->UserMessage(message);
} else {
if (e->button() == Qt::LeftButton) {
if (c->BoundaryPolP()) {
w->cycleWallType();
} else {
if (e->modifiers() == Qt::ShiftModifier) {
wn==1?w->setTransporters1(1,0):w->setTransporters2(1,0);
} else {
// set high amount of PIN1
//cerr << "Setting PIN1\n";
wn==1?w->setTransporters1(1,10):w->setTransporters2(1,10);
}
}
setColor();
update(boundingRect());
}
/* else {
if (e->button() == Qt::MidButton && (e->modifiers == Qt::ShiftModifier & Qt::ControlModifier)) {
// hidden feature for correcting
}*/
}
}
|