-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsphereview.cpp
332 lines (233 loc) · 8.58 KB
/
sphereview.cpp
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#include "sphereview.h"
#include <QGraphicsRectItem>
#include <qDebug>
#include <QStyleOptionGraphicsItem>
#include <QGraphicsSceneMouseEvent>
const int ITEM_SIZE = 100;
const int SCENE_SIZE_X = 500;
const int SCENE_SIZE_Y = 500;
const int OFFSET = 40;
const double SCALE_LIMIT = 1;
const double SCALE_FACTOR = 0.2;
TopologyViewer::TopologyViewer(QWidget *parent)
: QGraphicsView(parent),
scaleFactor(SCALE_LIMIT)
{
xLeft = 0;
yLeft = 0;
xCenter = SCENE_SIZE_X/2;
yCenter = SCENE_SIZE_Y/2;
xRight = SCENE_SIZE_X;
yRight = 0;
_scene = new QGraphicsScene;
this->setScene(_scene);
//this->setResizeAnchor(QGraphicsView::NoAnchor);
//this->setAlignment(Qt::AlignCenter);
//this->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
//this->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
_groupLeft = _scene->createItemGroup(QList<QGraphicsItem*>());
_groupLeft->setX(xLeft);
_groupLeft->setY(yLeft);
_groupCenter = _scene->createItemGroup(QList<QGraphicsItem*>());
_groupCenter->setX(xCenter);
_groupCenter->setY(yCenter);
_groupRight = _scene->createItemGroup(QList<QGraphicsItem*>());
_groupRight->setX(xRight);
_groupRight->setY(yRight);
setBackgroundBrush(QBrush(QColor(80, 80, 80), Qt::SolidPattern));
setRenderHints(QPainter::Antialiasing); // item smoothing
setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
setResizeAnchor(QGraphicsView::AnchorUnderMouse);
setDragMode(ScrollHandDrag);
//setInteractive(false);
}
TopologyViewer::~TopologyViewer()
{
_scene->destroyItemGroup(_groupLeft);
_scene->destroyItemGroup(_groupCenter);
_scene->destroyItemGroup(_groupRight);
}
void TopologyViewer::resizeEvent (QResizeEvent* event)
{
setSceneRect(_scene->itemsBoundingRect());
}
void TopologyViewer::wheelEvent(QWheelEvent * event)
{
int angle = event->delta();
if(angle > 0){
scaleFactor += SCALE_FACTOR;
this->scale(1.2, 1.2);
}
else{
if(scaleFactor > SCALE_LIMIT){
scaleFactor -= SCALE_FACTOR;
this->scale(1/1.2, 1/1.2);
}
}
}
void TopologyViewer::setData(QString data)
{
QStringList list = data.split("\n");
for(auto x: list){
if(x.size() < 1)
continue;
QStringList unit = x.split(";");
switch(unit.at(1).toInt()){
case SphereHostType::HOST_TYPE_ARM:
addArmItem(unit.at(0), (NetStatus)unit.at(2).toInt(), _groupLeft);
break;
case SphereHostType::HOST_TYPE_PAUS:
addPausItem(unit.at(0), (NetStatus)unit.at(2).toInt(), _groupLeft);
break;
case SphereHostType::HOST_TYPE_MANAGER:
addManagerItem(unit.at(0), (NetStatus)unit.at(2).toInt(), _groupCenter);
break;
case SphereHostType::HOST_TYPE_SERVER:
addServerItem(unit.at(0), (NetStatus)unit.at(2).toInt(), _groupRight);
break;
default:
qDebug() << "Unknown type!";
}
}
createConnection(_groupLeft, _groupCenter);
createConnection(_groupRight, _groupCenter);
qDebug() << _scene->itemsBoundingRect();
}
QGraphicsPathItem* TopologyViewer::drawConnection(const QPointF &from, const QPointF &to)
{
/*
if(from.x() > to.x())
return nullptr;
*/
int mX = /*abs*/((to.x() - from.x())/2); // середина отрезка между точками p0 и p1 по оси x
int mY = /*abs*/((to.y() - from.y())/2); // середина отрезка между точками p0 и p1 по оси y
QPoint p0 = QPoint(from.x() + mX, from.y() + mY); // центр
QPainterPath path;
path.moveTo(from);
path.cubicTo(QPoint(p0.x(), from.y()), QPoint(p0.x(), to.y()), to);
return new QGraphicsPathItem(path);
}
void TopologyViewer::createConnection(QGraphicsItemGroup *group, QGraphicsItemGroup *groupCenter)
{
if(groupCenter->childItems().empty()){
// сообщить об ошибке
return;
}
SphereItem* nodeCentral = (SphereItem*)groupCenter->childItems().at(0);
for(auto x : group->childItems()){
SphereItem* node = (SphereItem*)x;
QPointF pointFrom = node->center();
QPointF pointTo = nodeCentral->center();
QGraphicsPathItem* p = nullptr;
if(pointFrom.x() < pointTo.x())
p = drawConnection(node->connectPointRight(), nodeCentral->connectPointLeft());
else
p = drawConnection(nodeCentral->connectPointRight(), node->connectPointLeft());
if(p != nullptr){
QPen pen;
pen.setWidth(2);
pen.setColor(QColor(0, 180, 180));
pen.setCosmetic(true);
p->setPen(pen);
group->addToGroup(p);
}
}
}
void TopologyViewer::addServerItem(const QString &name, NetStatus status, QGraphicsItemGroup *group)
{
QString pictureName = "";
if (status == NetStatus::NET_STATUS_ONLINE)
pictureName = ":/images/serverONLINE.png";
else if (status == NetStatus::NET_STATUS_OFFLINE)
pictureName = ":/images/serverOFFLINE.png";
else if (status == NetStatus::NET_STATUS_INVALID)
pictureName = ":/images/serverUNKNOWN.png";
SphereItem* item = new SphereItem(name, QRectF(xRight, yRight, ITEM_SIZE, ITEM_SIZE), pictureName);
group->addToGroup(item);
yRight += ITEM_SIZE + OFFSET;
}
void TopologyViewer::addManagerItem(const QString &name, NetStatus status, QGraphicsItemGroup *group)
{
QString pictureName = "";
if (status == NetStatus::NET_STATUS_ONLINE)
pictureName = ":/images/managerONLINE.png";
else if (status == NetStatus::NET_STATUS_OFFLINE)
pictureName = ":/images/managerONLINE.png";
else if (status == NetStatus::NET_STATUS_INVALID)
pictureName = ":/images/managerONLINE.png";
SphereItem* item = new SphereItem(name, QRectF(xCenter, yCenter, ITEM_SIZE, ITEM_SIZE), pictureName);
group->addToGroup(item);
yCenter += ITEM_SIZE + OFFSET;
}
void TopologyViewer::addArmItem(const QString &name, NetStatus status, QGraphicsItemGroup *group)
{
QString pictureName = "";
if (status == NetStatus::NET_STATUS_ONLINE)
pictureName = ":/images/armONLINE.png";
else if (status == NetStatus::NET_STATUS_OFFLINE)
pictureName = ":/images/armOFFLINE.png";
else if (status == NetStatus::NET_STATUS_INVALID)
pictureName = ":/images/armUNKNOWN.png";
SphereItem* item = new SphereItem(name, QRectF(xLeft, yLeft, ITEM_SIZE, ITEM_SIZE), pictureName);
group->addToGroup(item);
yLeft += ITEM_SIZE + OFFSET;
}
void TopologyViewer::addPausItem(const QString &name, NetStatus status, QGraphicsItemGroup *group)
{
QString pictureName = "";
if (status == NetStatus::NET_STATUS_ONLINE)
pictureName = ":/images/pausONLINE.png";
else if (status == NetStatus::NET_STATUS_OFFLINE)
pictureName = ":/images/pausOFFLINE.png";
else if (status == NetStatus::NET_STATUS_INVALID)
pictureName = ":/images/pausUNKNOWN.png";
SphereItem* item = new SphereItem(name, QRectF(xLeft, yLeft, ITEM_SIZE, ITEM_SIZE), pictureName);
group->addToGroup(item);
yLeft += ITEM_SIZE + OFFSET;
}
// SphereItem --------------------------------
SphereItem::SphereItem(const QString &name, const QRectF &rect, const QString &img, QGraphicsItem *parent)
: QGraphicsItem(parent),
_name(name),
_rec(rect),
_img(img)
{
//setPos(_rec.x(), _rec.y());
}
void SphereItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
QPen pen;
pen.setColor(Qt::black);
painter->setPen(pen);
painter->drawImage(_rec, QImage(_img));
painter->drawText(QRectF(_rec.x(), _rec.y() + _rec.width(), _rec.width(), _rec.height()), _name);
}
QRectF SphereItem::boundingRect() const
{
QPointF realX = /*mapToScene*/(QPoint(_rec.x(), _rec.y()));
QPointF realY = /*mapToScene*/(QPoint(_rec.width(), _rec.height()));
QRectF recTmp = QRectF(realX.x(), realX.y(), realY.x(), realY.y());
return recTmp;
}
QPainterPath SphereItem::shape() const
{
QRectF rect = boundingRect();
QPainterPath path;
path.addRoundedRect(rect,0,0);
return path;
}
QPointF SphereItem::connectPointRight()
{
QPointF point = mapToScene(QPointF(_rec.x() + _rec.width(), (_rec.y() + _rec.height()/2)));
return point;
}
QPointF SphereItem::connectPointLeft()
{
QPointF point = mapToScene(QPointF(_rec.x(), (_rec.y() +_rec.height()/2)));
return point;
}
QPointF SphereItem::center()
{
QPointF point = mapToScene(QPointF((_rec.x() + _rec.width()/2), (_rec.y() + _rec.height()/2)));
return point;
}