source: ntrip/trunk/BNC/bncfigurelate.cpp@ 1981

Last change on this file since 1981 was 1981, checked in by mervart, 14 years ago

* empty log message *

File size: 4.5 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: bncFigureLate
30 *
31 * Purpose:
32 *
33 * Author: Perlt, Mervart
34 *
35 * Created: 11-Nov-2009
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42
43#include "bncfigurelate.h"
44#include "bncsettings.h"
45
46using namespace std;
47
48// Constructor
49////////////////////////////////////////////////////////////////////////////
50bncFigureLate::bncFigureLate(QWidget *parent) : QWidget(parent) {
51 updateMountPoints();
52 slotNextAnimationFrame();
53 for (int ii = 0; ii <= 1000; ii++) {
54 _rgb[0][ii] = qrand() % 255;
55 _rgb[2][ii] = qrand() % 255;
56 _rgb[1][ii] = qrand() % 255;
57 }
58}
59
60// Destructor
61////////////////////////////////////////////////////////////////////////////
62bncFigureLate::~bncFigureLate() {
63}
64
65//
66////////////////////////////////////////////////////////////////////////////
67void bncFigureLate::updateMountPoints() {
68 QMutexLocker locker(&_mutex);
69
70 _maxLate = 0;
71 _latency.clear();
72
73 bncSettings settings;
74 QListIterator<QString> it(settings.value("mountPoints").toStringList());
75 while (it.hasNext()) {
76 QStringList hlp = it.next().split(" ");
77 QUrl url(hlp[0]);
78 QByteArray staID = url.path().mid(1).toAscii();
79 _latency[staID] = 0.0;
80 }
81}
82
83//
84////////////////////////////////////////////////////////////////////////////
85void bncFigureLate::slotNewLatency(const QByteArray staID, double clate) {
86 QMutexLocker locker(&_mutex);
87 if (_latency.find(staID) != _latency.end()) {
88 double ms = fabs(clate)*1000.0;
89 _latency[staID] = ms;
90 if (ms > _maxLate) {
91 _maxLate = ms;
92 }
93 }
94}
95
96//
97////////////////////////////////////////////////////////////////////////////
98void bncFigureLate::slotNextAnimationFrame() {
99 QMutexLocker locker(&_mutex);
100 update();
101 QTimer::singleShot(1000, this, SLOT(slotNextAnimationFrame()));
102}
103
104//
105////////////////////////////////////////////////////////////////////////////
106void bncFigureLate::paintEvent(QPaintEvent *) {
107
108 int xMin = 0;
109 int xMax = 640;
110 int yMin = 0;
111 int yMax = 140;
112 float xLine = .60;
113
114 QPainter painter(this);
115
116 QFont font;
117 font.setPointSize(int(font.QFont::pointSize()*0.8));
118 painter.setFont(font);
119
120 // y-axis
121 // ------
122 int yLength = int((yMax-yMin)*xLine) - (yMin+10);
123 painter.drawLine(xMin+50, int((yMax-yMin)*xLine), xMin+50, yMin+10);
124
125 QString maxLateStr;
126 maxLateStr = QString("%1 ms ").arg(int(_maxLate/200)*200);
127 painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+50,15,Qt::AlignRight,tr("0 ms "));
128
129 if(_maxLate > 0.0) {
130 painter.drawText(0, yMin+25-5, xMin+50,15,Qt::AlignRight,maxLateStr);
131 }
132
133 // x-axis
134 // ------
135 painter.drawLine(xMin+50, int((yMax-yMin)*xLine), xMax*3, int((yMax-yMin)*xLine));
136
137 int anchor = 0;
138 QMapIterator<QByteArray, double> it(_latency);
139 while (it.hasNext()) {
140 it.next();
141 QByteArray staID = it.key();
142
143 int xx = xMin+70+anchor*12;
144
145 painter.save();
146 painter.translate(xx-13, int(yMax-yMin)*xLine+65);
147 painter.rotate(-90);
148 painter.drawText(0,0,65,50,Qt::AlignRight,staID.left(5) + " ");
149 painter.restore();
150
151 if(_maxLate > 0.0) {
152 int yy = int(yLength * (it.value() / _maxLate));
153 QColor color = QColor::fromRgb(_rgb[0][anchor],_rgb[1][anchor],_rgb[2][anchor]);
154 painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy,
155 QBrush(color,Qt::SolidPattern));
156 }
157
158 anchor++;
159 }
160}
161
Note: See TracBrowser for help on using the repository browser.