]> sigrok.org Git - pulseview.git/blame - pv/views/trace/analogsignal.cpp
Move delayed conversion starter to SignalBase
[pulseview.git] / pv / views / trace / analogsignal.cpp
CommitLineData
aba1dd16
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
20#include <extdef.h>
21
3b68d03d
JH
22#include <cassert>
23#include <cmath>
8a2fafcc
JH
24#include <cstdlib>
25#include <limits>
a8fd2759 26#include <vector>
aba1dd16 27
37b9fed4 28#include <QApplication>
73e377fe 29#include <QCheckBox>
368a37c2 30#include <QComboBox>
4cffac16 31#include <QFormLayout>
368a37c2
SA
32#include <QGridLayout>
33#include <QLabel>
03cc651d 34#include <QString>
37b9fed4 35
2acdb232 36#include "analogsignal.hpp"
1573bf16
SA
37#include "logicsignal.hpp"
38#include "view.hpp"
39
2acdb232 40#include "pv/data/analog.hpp"
f3d66e52 41#include "pv/data/analogsegment.hpp"
a8fd2759
SA
42#include "pv/data/logic.hpp"
43#include "pv/data/logicsegment.hpp"
bf0edd2b 44#include "pv/data/signalbase.hpp"
8de1e1b2 45#include "pv/globalsettings.hpp"
aba1dd16 46
fe3a1c21 47#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 48
6f925ba9
UH
49using std::deque;
50using std::div;
51using std::div_t;
819f4c25 52using std::max;
a5d93c27 53using std::make_pair;
819f4c25 54using std::min;
6f925ba9
UH
55using std::numeric_limits;
56using std::pair;
f9abf97e 57using std::shared_ptr;
a8fd2759 58using std::vector;
aba1dd16 59
2b6e7a72
SA
60using pv::data::SignalBase;
61
aba1dd16 62namespace pv {
f4e57597 63namespace views {
1573bf16 64namespace trace {
aba1dd16 65
568b90d4
JH
66const QColor AnalogSignal::SignalColours[4] = {
67 QColor(0xC4, 0xA0, 0x00), // Yellow
68 QColor(0x87, 0x20, 0x7A), // Magenta
69 QColor(0x20, 0x4A, 0x87), // Blue
70 QColor(0x4E, 0x9A, 0x06) // Green
71};
72
561ba3ae 73const QPen AnalogSignal::AxisPen(QColor(0, 0, 0, 30 * 256 / 100), 2);
c063290a
UH
74const QColor AnalogSignal::GridMajorColor = QColor(0, 0, 0, 40 * 256 / 100);
75const QColor AnalogSignal::GridMinorColor = QColor(0, 0, 0, 20 * 256 / 100);
37b9fed4 76
8de1e1b2
UH
77const QColor AnalogSignal::SamplingPointColour(0x77, 0x77, 0x77);
78
4433246b
SA
79const QColor AnalogSignal::ThresholdColor = QColor(0, 0, 0, 30 * 256 / 100);
80
fdfd5b3e
SA
81const int64_t AnalogSignal::TracePaintBlockSize = 1024 * 1024; // 4 MiB (due to float)
82const float AnalogSignal::EnvelopeThreshold = 64.0f;
7c68ddae 83
4cffac16 84const int AnalogSignal::MaximumVDivs = 10;
368a37c2
SA
85const int AnalogSignal::MinScaleIndex = -6;
86const int AnalogSignal::MaxScaleIndex = 7;
4cffac16 87
03cc651d
SA
88const int AnalogSignal::InfoTextMarginRight = 20;
89const int AnalogSignal::InfoTextMarginBottom = 5;
90
b86aa8f4 91AnalogSignal::AnalogSignal(
2b81ae46 92 pv::Session &session,
cbd2a2de 93 shared_ptr<data::SignalBase> base) :
73a25a6e 94 Signal(session, base),
834a4f1b 95 scale_index_(4), // 20 per div
37b9fed4 96 scale_index_drag_offset_(0),
459db2c5
SA
97 pos_vdivs_(1),
98 neg_vdivs_(1),
73e377fe 99 resolution_(0),
a970015f 100 display_type_(DisplayBoth),
1f1d55ce 101 autoranging_(true)
aba1dd16 102{
561ba3ae
SA
103 axis_pen_ = AxisPen;
104
85715407
SA
105 pv::data::Analog* analog_data =
106 dynamic_cast<pv::data::Analog*>(data().get());
107
108 connect(analog_data, SIGNAL(samples_added(QObject*, uint64_t, uint64_t)),
109 this, SLOT(on_samples_added()));
110
cbb50547
SA
111 GlobalSettings gs;
112 div_height_ = gs.value(GlobalSettings::Key_View_DefaultDivHeight).toInt();
113
73a25a6e 114 base_->set_colour(SignalColours[base_->index() % countof(SignalColours)]);
834a4f1b 115 update_scale();
aba1dd16
JH
116}
117
3009b5b3
JH
118shared_ptr<pv::data::SignalData> AnalogSignal::data() const
119{
cbd2a2de 120 return base_->analog_data();
9a0cd293
JH
121}
122
3a21afa6
SA
123void AnalogSignal::save_settings(QSettings &settings) const
124{
459db2c5
SA
125 settings.setValue("pos_vdivs", pos_vdivs_);
126 settings.setValue("neg_vdivs", neg_vdivs_);
3a21afa6 127 settings.setValue("scale_index", scale_index_);
a970015f 128 settings.setValue("display_type", display_type_);
73e377fe 129 settings.setValue("autoranging", autoranging_);
cbb50547 130 settings.setValue("div_height", div_height_);
3a21afa6
SA
131}
132
133void AnalogSignal::restore_settings(QSettings &settings)
134{
459db2c5
SA
135 if (settings.contains("pos_vdivs"))
136 pos_vdivs_ = settings.value("pos_vdivs").toInt();
137
138 if (settings.contains("neg_vdivs"))
139 neg_vdivs_ = settings.value("neg_vdivs").toInt();
3a21afa6
SA
140
141 if (settings.contains("scale_index")) {
142 scale_index_ = settings.value("scale_index").toInt();
143 update_scale();
144 }
73e377fe 145
a970015f
SA
146 if (settings.contains("display_type"))
147 display_type_ = (DisplayType)(settings.value("display_type").toInt());
148
73e377fe
SA
149 if (settings.contains("autoranging"))
150 autoranging_ = settings.value("autoranging").toBool();
cbb50547
SA
151
152 if (settings.contains("div_height")) {
153 const int old_height = div_height_;
154 div_height_ = settings.value("div_height").toInt();
155
156 if ((div_height_ != old_height) && owner_) {
157 // Call order is important, otherwise the lazy event handler won't work
158 owner_->extents_changed(false, true);
159 owner_->row_item_appearance_changed(false, true);
160 }
161 }
3a21afa6
SA
162}
163
6f925ba9 164pair<int, int> AnalogSignal::v_extents() const
a5d93c27 165{
459db2c5
SA
166 const int ph = pos_vdivs_ * div_height_;
167 const int nh = neg_vdivs_ * div_height_;
168 return make_pair(-ph, nh);
a5d93c27
JH
169}
170
214470fc
JH
171int AnalogSignal::scale_handle_offset() const
172{
459db2c5 173 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
37b9fed4 174
c063290a 175 return ((scale_index_drag_offset_ - scale_index_) * h / 4) - h / 2;
214470fc
JH
176}
177
178void AnalogSignal::scale_handle_dragged(int offset)
179{
459db2c5 180 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
37b9fed4 181
c063290a 182 scale_index_ = scale_index_drag_offset_ - (offset + h / 2) / (h / 4);
834a4f1b
SA
183
184 update_scale();
8a2fafcc
JH
185}
186
187void AnalogSignal::scale_handle_drag_release()
188{
189 scale_index_drag_offset_ = scale_index_;
834a4f1b 190 update_scale();
214470fc
JH
191}
192
60938e04 193void AnalogSignal::paint_back(QPainter &p, ViewItemPaintParams &pp)
fe08b6e8 194{
73a25a6e 195 if (base_->enabled()) {
99af6802 196 Trace::paint_back(p, pp);
97904bf7 197 paint_axis(p, pp, get_visual_y());
99af6802 198 }
fe08b6e8
JH
199}
200
60938e04 201void AnalogSignal::paint_mid(QPainter &p, ViewItemPaintParams &pp)
aba1dd16 202{
cbd2a2de 203 assert(base_->analog_data());
8dbbc7f0 204 assert(owner_);
a8acb46e 205
be9e7b4b 206 const int y = get_visual_y();
01fd3263 207
73a25a6e 208 if (!base_->enabled())
cec48d16
JH
209 return;
210
a8fd2759
SA
211 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
212 paint_grid(p, y, pp.left(), pp.right());
213
214 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
215 base_->analog_data()->analog_segments();
216 if (segments.empty())
217 return;
218
219 const shared_ptr<pv::data::AnalogSegment> &segment =
220 segments.front();
221
222 const double pixels_offset = pp.pixels_offset();
223 const double samplerate = max(1.0, segment->samplerate());
224 const pv::util::Timestamp& start_time = segment->start_time();
225 const int64_t last_sample = segment->get_sample_count() - 1;
226 const double samples_per_pixel = samplerate * pp.scale();
227 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
228 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
229
230 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
231 (int64_t)0), last_sample);
232 const int64_t end_sample = min(max((ceil(end) + 1).convert_to<int64_t>(),
233 (int64_t)0), last_sample);
234
235 if (samples_per_pixel < EnvelopeThreshold)
236 paint_trace(p, segment, y, pp.left(),
237 start_sample, end_sample,
238 pixels_offset, samples_per_pixel);
239 else
240 paint_envelope(p, segment, y, pp.left(),
241 start_sample, end_sample,
242 pixels_offset, samples_per_pixel);
243 }
a8acb46e 244
4433246b
SA
245 const SignalBase::ConversionType conv_type = base_->get_conversion_type();
246
247 if (((conv_type == SignalBase::A2LConversionByThreshold) ||
248 (conv_type == SignalBase::A2LConversionBySchmittTrigger))) {
249
250 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth))
251 paint_conversion_thresholds(p, pp);
a8acb46e 252
4433246b 253 if ((display_type_ == DisplayConverted) || (display_type_ == DisplayBoth))
a8fd2759 254 paint_logic_mid(p, pp);
a8fd2759 255 }
7c68ddae
JH
256}
257
60938e04 258void AnalogSignal::paint_fore(QPainter &p, ViewItemPaintParams &pp)
03cc651d
SA
259{
260 if (!enabled())
261 return;
262
b8c4a95b
SA
263 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
264 const int y = get_visual_y();
03cc651d 265
b8c4a95b
SA
266 // Show the info section on the right side of the trace
267 const QString infotext = QString("%1 V/div").arg(resolution_);
03cc651d 268
b8c4a95b
SA
269 p.setPen(base_->colour());
270 p.setFont(QApplication::font());
03cc651d 271
b8c4a95b
SA
272 const QRectF bounding_rect = QRectF(pp.left(),
273 y + v_extents().first,
274 pp.width() - InfoTextMarginRight,
275 v_extents().second - v_extents().first - InfoTextMarginBottom);
03cc651d 276
b8c4a95b
SA
277 p.drawText(bounding_rect, Qt::AlignRight | Qt::AlignBottom, infotext);
278 }
03cc651d
SA
279}
280
37b9fed4
SA
281void AnalogSignal::paint_grid(QPainter &p, int y, int left, int right)
282{
46a0cadc
SA
283 p.setRenderHint(QPainter::Antialiasing, false);
284
8ad61f40
UH
285 GlobalSettings settings;
286 const bool show_analog_minor_grid =
287 settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool();
288
459db2c5
SA
289 if (pos_vdivs_ > 0) {
290 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
291 for (int i = 1; i <= pos_vdivs_; i++) {
292 const float dy = i * div_height_;
293 p.drawLine(QLineF(left, y - dy, right, y - dy));
294 }
8ad61f40 295 }
459db2c5 296
8ad61f40 297 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
459db2c5
SA
298 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
299 for (int i = 0; i < pos_vdivs_; i++) {
300 const float dy = i * div_height_;
301 const float dy25 = dy + (0.25 * div_height_);
302 const float dy50 = dy + (0.50 * div_height_);
303 const float dy75 = dy + (0.75 * div_height_);
304 p.drawLine(QLineF(left, y - dy25, right, y - dy25));
305 p.drawLine(QLineF(left, y - dy50, right, y - dy50));
306 p.drawLine(QLineF(left, y - dy75, right, y - dy75));
307 }
37b9fed4
SA
308 }
309
459db2c5
SA
310 if (neg_vdivs_ > 0) {
311 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
312 for (int i = 1; i <= neg_vdivs_; i++) {
313 const float dy = i * div_height_;
314 p.drawLine(QLineF(left, y + dy, right, y + dy));
315 }
8ad61f40 316 }
459db2c5 317
8ad61f40 318 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
459db2c5
SA
319 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
320 for (int i = 0; i < neg_vdivs_; i++) {
321 const float dy = i * div_height_;
322 const float dy25 = dy + (0.25 * div_height_);
323 const float dy50 = dy + (0.50 * div_height_);
324 const float dy75 = dy + (0.75 * div_height_);
325 p.drawLine(QLineF(left, y + dy25, right, y + dy25));
326 p.drawLine(QLineF(left, y + dy50, right, y + dy50));
327 p.drawLine(QLineF(left, y + dy75, right, y + dy75));
328 }
37b9fed4 329 }
46a0cadc
SA
330
331 p.setRenderHint(QPainter::Antialiasing, true);
37b9fed4
SA
332}
333
7c68ddae 334void AnalogSignal::paint_trace(QPainter &p,
f3d66e52 335 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
336 int y, int left, const int64_t start, const int64_t end,
337 const double pixels_offset, const double samples_per_pixel)
338{
fdfd5b3e
SA
339 if (end <= start)
340 return;
341
342 // Calculate and paint the sampling points if enabled and useful
343 GlobalSettings settings;
344 const bool show_sampling_points =
345 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
346 (samples_per_pixel < 0.25);
347
73a25a6e 348 p.setPen(base_->colour());
7c68ddae 349
76ce6c7a
UH
350 const int64_t points_count = end - start;
351
352 QPointF *points = new QPointF[points_count];
a8acb46e
JH
353 QPointF *point = points;
354
fdfd5b3e
SA
355 QRectF *sampling_points = nullptr;
356 if (show_sampling_points)
357 sampling_points = new QRectF[points_count];
8de1e1b2
UH
358 QRectF *sampling_point = sampling_points;
359
fdfd5b3e
SA
360 int64_t sample_count = min(points_count, TracePaintBlockSize);
361 int64_t block_sample = 0;
b82243f7
SA
362 float *sample_block = new float[TracePaintBlockSize];
363 segment->get_samples(start, start + sample_count, sample_block);
26a883ed 364
8de1e1b2 365 const int w = 2;
fdfd5b3e
SA
366 for (int64_t sample = start; sample != end; sample++, block_sample++) {
367
368 if (block_sample == TracePaintBlockSize) {
369 block_sample = 0;
fdfd5b3e 370 sample_count = min(points_count - sample, TracePaintBlockSize);
b82243f7 371 segment->get_samples(sample, sample + sample_count, sample_block);
fdfd5b3e
SA
372 }
373
a8acb46e 374 const float x = (sample / samples_per_pixel -
2658961b 375 pixels_offset) + left;
26a883ed 376
fdfd5b3e 377 *point++ = QPointF(x, y - sample_block[block_sample] * scale_);
8de1e1b2 378
fdfd5b3e
SA
379 if (show_sampling_points)
380 *sampling_point++ =
381 QRectF(x - (w / 2), y - sample_block[block_sample] * scale_ - (w / 2), w, w);
a8acb46e 382 }
fdfd5b3e 383 delete[] sample_block;
a8acb46e 384
76ce6c7a 385 p.drawPolyline(points, points_count);
a8acb46e 386
fdfd5b3e 387 if (show_sampling_points) {
8de1e1b2
UH
388 p.setPen(SamplingPointColour);
389 p.drawRects(sampling_points, points_count);
fdfd5b3e 390 delete[] sampling_points;
8de1e1b2
UH
391 }
392
a8acb46e 393 delete[] points;
aba1dd16
JH
394}
395
7c68ddae 396void AnalogSignal::paint_envelope(QPainter &p,
f3d66e52 397 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
398 int y, int left, const int64_t start, const int64_t end,
399 const double pixels_offset, const double samples_per_pixel)
400{
f3d66e52 401 using pv::data::AnalogSegment;
7c68ddae 402
f3d66e52
JH
403 AnalogSegment::EnvelopeSection e;
404 segment->get_envelope_section(e, start, end, samples_per_pixel);
7c68ddae
JH
405
406 if (e.length < 2)
407 return;
408
819f4c25 409 p.setPen(QPen(Qt::NoPen));
73a25a6e 410 p.setBrush(base_->colour());
7c68ddae
JH
411
412 QRectF *const rects = new QRectF[e.length];
413 QRectF *rect = rects;
414
c063290a 415 for (uint64_t sample = 0; sample < e.length - 1; sample++) {
7c68ddae
JH
416 const float x = ((e.scale * sample + e.start) /
417 samples_per_pixel - pixels_offset) + left;
f3d66e52 418 const AnalogSegment::EnvelopeSample *const s =
7c68ddae
JH
419 e.samples + sample;
420
421 // We overlap this sample with the next so that vertical
422 // gaps do not appear during steep rising or falling edges
c063290a
UH
423 const float b = y - max(s->max, (s + 1)->min) * scale_;
424 const float t = y - min(s->min, (s + 1)->max) * scale_;
7c68ddae
JH
425
426 float h = b - t;
f3290553 427 if (h >= 0.0f && h <= 1.0f)
7c68ddae 428 h = 1.0f;
f3290553 429 if (h <= 0.0f && h >= -1.0f)
7c68ddae
JH
430 h = -1.0f;
431
432 *rect++ = QRectF(x, t, 1.0f, h);
433 }
434
435 p.drawRects(rects, e.length);
436
437 delete[] rects;
438 delete[] e.samples;
439}
440
4433246b
SA
441void AnalogSignal::paint_conversion_thresholds(QPainter &p,
442 ViewItemPaintParams &pp)
443{
444 if (!base_->enabled() || !base_->logic_data())
445 return;
446
447 // TODO Register a change handler instead of querying this with every repaint
448 GlobalSettings settings;
449 const bool show_conversion_thresholds =
450 settings.value(GlobalSettings::Key_View_ShowConversionThresholds).toBool();
451
452 if (!show_conversion_thresholds)
453 return;
454
455 const vector<double> thresholds = base_->get_conversion_thresholds();
456 const int y = get_visual_y();
457
458 p.setRenderHint(QPainter::Antialiasing, false);
459
460 p.setPen(ThresholdColor);
461
462 if (thresholds.size() == 2) {
463 // Draw as hatched block because two thresholds denote lower/upper level
464 const double thr_y0 = y - thresholds[0] * scale_;
465 const double thr_y1 = y - thresholds[1] * scale_;
466 p.fillRect(QRect(pp.left(), thr_y0, pp.right(), thr_y1 - thr_y0),
467 QBrush(ThresholdColor, Qt::BDiagPattern));
468 } else {
469 // Draw as individual lines
470 for (const double thr : thresholds) {
471 const double thr_y = y - thr * scale_;
472 p.drawLine(QPointF(pp.left(), thr_y), QPointF(pp.right(), thr_y));
473 }
474 }
475
476 p.setRenderHint(QPainter::Antialiasing, true);
477}
478
60938e04 479void AnalogSignal::paint_logic_mid(QPainter &p, ViewItemPaintParams &pp)
a8fd2759
SA
480{
481 QLineF *line;
482
483 vector< pair<int64_t, bool> > edges;
484
485 assert(base_);
486
487 const int y = get_visual_y();
488
6c0df7c4 489 if (!base_->enabled() || !base_->logic_data())
a8fd2759
SA
490 return;
491
492 const int signal_margin =
493 QFontMetrics(QApplication::font()).height() / 2;
494
495 const int ph = min(pos_vdivs_, 1) * div_height_;
496 const int nh = min(neg_vdivs_, 1) * div_height_;
497 const float high_offset = y - ph + signal_margin + 0.5f;
498 const float low_offset = y + nh - signal_margin - 0.5f;
499
500 const deque< shared_ptr<pv::data::LogicSegment> > &segments =
501 base_->logic_data()->logic_segments();
6c0df7c4 502
a8fd2759
SA
503 if (segments.empty())
504 return;
505
506 const shared_ptr<pv::data::LogicSegment> &segment =
507 segments.front();
508
509 double samplerate = segment->samplerate();
510
511 // Show sample rate as 1Hz when it is unknown
512 if (samplerate == 0.0)
513 samplerate = 1.0;
514
515 const double pixels_offset = pp.pixels_offset();
516 const pv::util::Timestamp& start_time = segment->start_time();
517 const int64_t last_sample = segment->get_sample_count() - 1;
518 const double samples_per_pixel = samplerate * pp.scale();
124be547 519 const double pixels_per_sample = 1 / samples_per_pixel;
a8fd2759
SA
520 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
521 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
522
523 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
524 (int64_t)0), last_sample);
525 const uint64_t end_sample = min(max(ceil(end).convert_to<int64_t>(),
526 (int64_t)0), last_sample);
527
528 segment->get_subsampled_edges(edges, start_sample, end_sample,
529 samples_per_pixel / LogicSignal::Oversampling, 0);
530 assert(edges.size() >= 2);
531
124be547
SA
532 // Check whether we need to paint the sampling points
533 GlobalSettings settings;
534 const bool show_sampling_points =
535 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
536 (samples_per_pixel < 0.25);
537
538 vector<QRectF> sampling_points;
539 float sampling_point_x = 0.0f;
540 int64_t sampling_point_sample = start_sample;
541 const int w = 2;
542
543 if (show_sampling_points) {
544 sampling_points.reserve(end_sample - start_sample + 1);
545 sampling_point_x = (edges.cbegin()->first / samples_per_pixel - pixels_offset) + pp.left();
546 }
547
a8fd2759
SA
548 // Paint the edges
549 const unsigned int edge_count = edges.size() - 2;
550 QLineF *const edge_lines = new QLineF[edge_count];
551 line = edge_lines;
552
553 for (auto i = edges.cbegin() + 1; i != edges.cend() - 1; i++) {
554 const float x = ((*i).first / samples_per_pixel -
555 pixels_offset) + pp.left();
556 *line++ = QLineF(x, high_offset, x, low_offset);
124be547
SA
557
558 if (show_sampling_points)
559 while (sampling_point_sample < (*i).first) {
560 const float y = (*i).second ? low_offset : high_offset;
561 sampling_points.emplace_back(
562 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
563 sampling_point_sample++;
564 sampling_point_x += pixels_per_sample;
565 };
a8fd2759
SA
566 }
567
124be547
SA
568 // Calculate the sample points from the last edge to the end of the trace
569 if (show_sampling_points)
570 while ((uint64_t)sampling_point_sample <= end_sample) {
571 // Signal changed after the last edge, so the level is inverted
572 const float y = (edges.cend() - 1)->second ? high_offset : low_offset;
573 sampling_points.emplace_back(
574 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
575 sampling_point_sample++;
576 sampling_point_x += pixels_per_sample;
577 };
578
a8fd2759
SA
579 p.setPen(LogicSignal::EdgeColour);
580 p.drawLines(edge_lines, edge_count);
581 delete[] edge_lines;
582
583 // Paint the caps
584 const unsigned int max_cap_line_count = edges.size();
585 QLineF *const cap_lines = new QLineF[max_cap_line_count];
586
587 p.setPen(LogicSignal::HighColour);
588 paint_logic_caps(p, cap_lines, edges, true, samples_per_pixel,
589 pixels_offset, pp.left(), high_offset);
590 p.setPen(LogicSignal::LowColour);
591 paint_logic_caps(p, cap_lines, edges, false, samples_per_pixel,
592 pixels_offset, pp.left(), low_offset);
593
594 delete[] cap_lines;
595
a8fd2759 596 // Paint the sampling points
124be547
SA
597 if (show_sampling_points) {
598 p.setPen(SamplingPointColour);
599 p.drawRects(sampling_points.data(), sampling_points.size());
a8fd2759 600 }
a8fd2759
SA
601}
602
603void AnalogSignal::paint_logic_caps(QPainter &p, QLineF *const lines,
604 vector< pair<int64_t, bool> > &edges, bool level,
605 double samples_per_pixel, double pixels_offset, float x_offset,
606 float y_offset)
607{
608 QLineF *line = lines;
609
610 for (auto i = edges.begin(); i != (edges.end() - 1); i++)
611 if ((*i).second == level) {
612 *line++ = QLineF(
613 ((*i).first / samples_per_pixel -
614 pixels_offset) + x_offset, y_offset,
615 ((*(i+1)).first / samples_per_pixel -
616 pixels_offset) + x_offset, y_offset);
617 }
618
619 p.drawLines(lines, line - lines);
620}
621
368a37c2 622float AnalogSignal::get_resolution(int scale_index)
8a2fafcc
JH
623{
624 const float seq[] = {1.0f, 2.0f, 5.0f};
834a4f1b 625
6f925ba9
UH
626 const int offset = numeric_limits<int>::max() / (2 * countof(seq));
627 const div_t d = div((int)(scale_index + countof(seq) * offset),
8a2fafcc 628 countof(seq));
834a4f1b 629
368a37c2
SA
630 return powf(10.0f, d.quot - offset) * seq[d.rem];
631}
632
633void AnalogSignal::update_scale()
634{
635 resolution_ = get_resolution(scale_index_);
834a4f1b 636 scale_ = div_height_ / resolution_;
8a2fafcc
JH
637}
638
52c900ac
SA
639void AnalogSignal::update_conversion_widgets()
640{
2b6e7a72 641 SignalBase::ConversionType conv_type = base_->get_conversion_type();
52c900ac
SA
642
643 // Enable or disable widgets depending on conversion state
2b6e7a72
SA
644 conv_threshold_cb_->setEnabled(conv_type != SignalBase::NoConversion);
645 display_type_cb_->setEnabled(conv_type != SignalBase::NoConversion);
52c900ac
SA
646
647 conv_threshold_cb_->clear();
648
649 vector < pair<QString, int> > presets = base_->get_conversion_presets();
650
651 // Prevent the combo box from firing the "edit text changed" signal
652 // as that would involuntarily select the first entry
653 conv_threshold_cb_->blockSignals(true);
654
655 // Set available options depending on chosen conversion
656 for (pair<QString, int> preset : presets)
657 conv_threshold_cb_->addItem(preset.first, preset.second);
658
659 map < QString, QVariant > options = base_->get_conversion_options();
660
b9cdbe03 661 if (conv_type == SignalBase::A2LConversionByThreshold) {
52c900ac 662 const vector<double> thresholds = base_->get_conversion_thresholds(
b9cdbe03 663 SignalBase::A2LConversionByThreshold, true);
52c900ac
SA
664 conv_threshold_cb_->addItem(
665 QString("%1V").arg(QString::number(thresholds[0], 'f', 1)), -1);
666 }
667
2b6e7a72 668 if (conv_type == SignalBase::A2LConversionBySchmittTrigger) {
52c900ac 669 const vector<double> thresholds = base_->get_conversion_thresholds(
2b6e7a72 670 SignalBase::A2LConversionBySchmittTrigger, true);
52c900ac
SA
671 conv_threshold_cb_->addItem(QString("%1V/%2V").arg(
672 QString::number(thresholds[0], 'f', 1),
673 QString::number(thresholds[1], 'f', 1)), -1);
674 }
675
676 int preset_id = base_->get_current_conversion_preset();
677 conv_threshold_cb_->setCurrentIndex(
678 conv_threshold_cb_->findData(preset_id));
679
680 conv_threshold_cb_->blockSignals(false);
681}
682
430b94aa 683void AnalogSignal::perform_autoranging(bool keep_divs, bool force_update)
73e377fe
SA
684{
685 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
686 base_->analog_data()->analog_segments();
687
688 if (segments.empty())
689 return;
690
691 static double prev_min = 0, prev_max = 0;
692 double min = 0, max = 0;
693
694 for (shared_ptr<pv::data::AnalogSegment> segment : segments) {
6f925ba9 695 pair<double, double> mm = segment->get_min_max();
73e377fe
SA
696 min = std::min(min, mm.first);
697 max = std::max(max, mm.second);
698 }
699
700 if ((min == prev_min) && (max == prev_max) && !force_update)
701 return;
702
703 prev_min = min;
704 prev_max = max;
705
430b94aa
SA
706 // If we're allowed to alter the div assignment...
707 if (!keep_divs) {
708 // Use all divs for the positive range if there are no negative values
709 if ((min == 0) && (neg_vdivs_ > 0)) {
710 pos_vdivs_ += neg_vdivs_;
711 neg_vdivs_ = 0;
712 }
73e377fe 713
430b94aa
SA
714 // Split up the divs if there are negative values but no negative divs
715 if ((min < 0) && (neg_vdivs_ == 0)) {
716 neg_vdivs_ = pos_vdivs_ / 2;
717 pos_vdivs_ -= neg_vdivs_;
718 }
681b6d5a
SA
719 }
720
430b94aa
SA
721 // If there is still no positive div when we need it, add one
722 // (this can happen when pos_vdivs==neg_vdivs==0)
17c7f31c 723 if ((max > 0) && (pos_vdivs_ == 0)) {
430b94aa 724 pos_vdivs_ = 1;
17c7f31c
SA
725 owner_->extents_changed(false, true);
726 }
430b94aa
SA
727
728 // If there is still no negative div when we need it, add one
729 // (this can happen when pos_vdivs was 0 or 1 when trying to split)
17c7f31c 730 if ((min < 0) && (neg_vdivs_ == 0)) {
430b94aa 731 neg_vdivs_ = 1;
17c7f31c
SA
732 owner_->extents_changed(false, true);
733 }
430b94aa 734
73e377fe
SA
735 double min_value_per_div;
736 if ((pos_vdivs_ > 0) && (neg_vdivs_ > 0))
737 min_value_per_div = std::max(max / pos_vdivs_, -min / neg_vdivs_);
738 else if (pos_vdivs_ > 0)
739 min_value_per_div = max / pos_vdivs_;
740 else
741 min_value_per_div = -min / neg_vdivs_;
742
743 // Find first scale value that is bigger than the value we need
744 for (int i = MinScaleIndex; i < MaxScaleIndex; i++)
745 if (get_resolution(i) > min_value_per_div) {
746 scale_index_ = i;
747 break;
748 }
749
750 update_scale();
751}
752
4cffac16
SA
753void AnalogSignal::populate_popup_form(QWidget *parent, QFormLayout *form)
754{
755 // Add the standard options
756 Signal::populate_popup_form(parent, form);
757
368a37c2
SA
758 QFormLayout *const layout = new QFormLayout;
759
cbb50547 760 // Add div-related settings
430b94aa
SA
761 pvdiv_sb_ = new QSpinBox(parent);
762 pvdiv_sb_->setRange(0, MaximumVDivs);
763 pvdiv_sb_->setValue(pos_vdivs_);
764 connect(pvdiv_sb_, SIGNAL(valueChanged(int)),
459db2c5 765 this, SLOT(on_pos_vdivs_changed(int)));
430b94aa 766 layout->addRow(tr("Number of pos vertical divs"), pvdiv_sb_);
459db2c5 767
430b94aa
SA
768 nvdiv_sb_ = new QSpinBox(parent);
769 nvdiv_sb_->setRange(0, MaximumVDivs);
770 nvdiv_sb_->setValue(neg_vdivs_);
771 connect(nvdiv_sb_, SIGNAL(valueChanged(int)),
459db2c5 772 this, SLOT(on_neg_vdivs_changed(int)));
430b94aa 773 layout->addRow(tr("Number of neg vertical divs"), nvdiv_sb_);
368a37c2 774
cbb50547
SA
775 div_height_sb_ = new QSpinBox(parent);
776 div_height_sb_->setRange(20, 1000);
777 div_height_sb_->setSingleStep(5);
778 div_height_sb_->setSuffix(tr(" pixels"));
779 div_height_sb_->setValue(div_height_);
780 connect(div_height_sb_, SIGNAL(valueChanged(int)),
781 this, SLOT(on_div_height_changed(int)));
782 layout->addRow(tr("Div height"), div_height_sb_);
783
368a37c2
SA
784 // Add the vertical resolution
785 resolution_cb_ = new QComboBox(parent);
786
787 for (int i = MinScaleIndex; i < MaxScaleIndex; i++) {
788 const QString label = QString("%1").arg(get_resolution(i));
789 resolution_cb_->insertItem(0, label, QVariant(i));
790 }
791
a970015f 792 int cur_idx = resolution_cb_->findData(QVariant(scale_index_));
368a37c2
SA
793 resolution_cb_->setCurrentIndex(cur_idx);
794
795 connect(resolution_cb_, SIGNAL(currentIndexChanged(int)),
796 this, SLOT(on_resolution_changed(int)));
797
798 QGridLayout *const vdiv_layout = new QGridLayout;
799 QLabel *const vdiv_unit = new QLabel(tr("V/div"));
800 vdiv_layout->addWidget(resolution_cb_, 0, 0);
801 vdiv_layout->addWidget(vdiv_unit, 0, 1);
802
803 layout->addRow(tr("Vertical resolution"), vdiv_layout);
804
73e377fe
SA
805 // Add the autoranging checkbox
806 QCheckBox* autoranging_cb = new QCheckBox();
807 autoranging_cb->setCheckState(autoranging_ ? Qt::Checked : Qt::Unchecked);
808
809 connect(autoranging_cb, SIGNAL(stateChanged(int)),
810 this, SLOT(on_autoranging_changed(int)));
811
812 layout->addRow(tr("Autoranging"), autoranging_cb);
813
a970015f
SA
814 // Add the conversion type dropdown
815 conversion_cb_ = new QComboBox();
816
2b6e7a72
SA
817 conversion_cb_->addItem(tr("none"),
818 SignalBase::NoConversion);
819 conversion_cb_->addItem(tr("to logic via threshold"),
b9cdbe03 820 SignalBase::A2LConversionByThreshold);
2b6e7a72
SA
821 conversion_cb_->addItem(tr("to logic via schmitt-trigger"),
822 SignalBase::A2LConversionBySchmittTrigger);
a970015f 823
06b6ce26 824 cur_idx = conversion_cb_->findData(QVariant(base_->get_conversion_type()));
a970015f
SA
825 conversion_cb_->setCurrentIndex(cur_idx);
826
7c84c074 827 layout->addRow(tr("Conversion"), conversion_cb_);
a970015f
SA
828
829 connect(conversion_cb_, SIGNAL(currentIndexChanged(int)),
830 this, SLOT(on_conversion_changed(int)));
831
52c900ac
SA
832 // Add the conversion threshold settings
833 conv_threshold_cb_ = new QComboBox();
834 conv_threshold_cb_->setEditable(true);
835
836 layout->addRow(tr("Conversion threshold(s)"), conv_threshold_cb_);
837
838 connect(conv_threshold_cb_, SIGNAL(currentIndexChanged(int)),
839 this, SLOT(on_conv_threshold_changed(int)));
840 connect(conv_threshold_cb_, SIGNAL(editTextChanged(const QString)),
841 this, SLOT(on_conv_threshold_changed())); // index will be -1
842
a970015f
SA
843 // Add the display type dropdown
844 display_type_cb_ = new QComboBox();
845
c6b017fb
SA
846 display_type_cb_->addItem(tr("analog"), DisplayAnalog);
847 display_type_cb_->addItem(tr("converted"), DisplayConverted);
848 display_type_cb_->addItem(tr("analog+converted"), DisplayBoth);
a970015f
SA
849
850 cur_idx = display_type_cb_->findData(QVariant(display_type_));
851 display_type_cb_->setCurrentIndex(cur_idx);
852
c6b017fb 853 layout->addRow(tr("Show traces for"), display_type_cb_);
a970015f 854
b8c4a95b
SA
855 connect(display_type_cb_, SIGNAL(currentIndexChanged(int)),
856 this, SLOT(on_display_type_changed(int)));
857
52c900ac
SA
858 // Update the conversion widget contents and states
859 update_conversion_widgets();
860
368a37c2 861 form->addRow(layout);
4cffac16
SA
862}
863
85715407
SA
864void AnalogSignal::on_samples_added()
865{
430b94aa 866 perform_autoranging(false, false);
85715407
SA
867}
868
459db2c5
SA
869void AnalogSignal::on_pos_vdivs_changed(int vdivs)
870{
430b94aa
SA
871 if (vdivs == pos_vdivs_)
872 return;
873
459db2c5
SA
874 pos_vdivs_ = vdivs;
875
80067e49
SA
876 // There has to be at least one div, positive or negative
877 if ((neg_vdivs_ == 0) && (pos_vdivs_ == 0)) {
878 pos_vdivs_ = 1;
879 if (pvdiv_sb_)
880 pvdiv_sb_->setValue(pos_vdivs_);
881 }
882
430b94aa
SA
883 if (autoranging_) {
884 perform_autoranging(true, true);
885
886 // It could be that a positive or negative div was added, so update
887 if (pvdiv_sb_) {
888 pvdiv_sb_->setValue(pos_vdivs_);
889 nvdiv_sb_->setValue(neg_vdivs_);
890 }
891 }
73e377fe 892
459db2c5
SA
893 if (owner_) {
894 // Call order is important, otherwise the lazy event handler won't work
895 owner_->extents_changed(false, true);
896 owner_->row_item_appearance_changed(false, true);
897 }
898}
899
900void AnalogSignal::on_neg_vdivs_changed(int vdivs)
4cffac16 901{
430b94aa
SA
902 if (vdivs == neg_vdivs_)
903 return;
904
459db2c5 905 neg_vdivs_ = vdivs;
4cffac16 906
80067e49
SA
907 // There has to be at least one div, positive or negative
908 if ((neg_vdivs_ == 0) && (pos_vdivs_ == 0)) {
909 pos_vdivs_ = 1;
910 if (pvdiv_sb_)
911 pvdiv_sb_->setValue(pos_vdivs_);
912 }
913
430b94aa
SA
914 if (autoranging_) {
915 perform_autoranging(true, true);
916
917 // It could be that a positive or negative div was added, so update
918 if (pvdiv_sb_) {
919 pvdiv_sb_->setValue(pos_vdivs_);
920 nvdiv_sb_->setValue(neg_vdivs_);
921 }
922 }
73e377fe 923
75d0779e
SA
924 if (owner_) {
925 // Call order is important, otherwise the lazy event handler won't work
4cffac16 926 owner_->extents_changed(false, true);
75d0779e
SA
927 owner_->row_item_appearance_changed(false, true);
928 }
4cffac16
SA
929}
930
cbb50547
SA
931void AnalogSignal::on_div_height_changed(int height)
932{
933 div_height_ = height;
934 update_scale();
935
936 if (owner_) {
937 // Call order is important, otherwise the lazy event handler won't work
938 owner_->extents_changed(false, true);
939 owner_->row_item_appearance_changed(false, true);
940 }
941}
942
368a37c2
SA
943void AnalogSignal::on_resolution_changed(int index)
944{
945 scale_index_ = resolution_cb_->itemData(index).toInt();
946 update_scale();
947
948 if (owner_)
949 owner_->row_item_appearance_changed(false, true);
950}
4cffac16 951
73e377fe
SA
952void AnalogSignal::on_autoranging_changed(int state)
953{
954 autoranging_ = (state == Qt::Checked);
955
956 if (autoranging_)
430b94aa 957 perform_autoranging(false, true);
73e377fe 958
85715407
SA
959 if (owner_) {
960 // Call order is important, otherwise the lazy event handler won't work
961 owner_->extents_changed(false, true);
73e377fe 962 owner_->row_item_appearance_changed(false, true);
85715407 963 }
73e377fe
SA
964}
965
a970015f
SA
966void AnalogSignal::on_conversion_changed(int index)
967{
2b6e7a72 968 SignalBase::ConversionType old_conv_type = base_->get_conversion_type();
a8fd2759 969
2b6e7a72
SA
970 SignalBase::ConversionType conv_type =
971 (SignalBase::ConversionType)(conversion_cb_->itemData(index).toInt());
a8fd2759 972
06b6ce26
SA
973 if (conv_type != old_conv_type) {
974 base_->set_conversion_type(conv_type);
52c900ac 975 update_conversion_widgets();
06b6ce26
SA
976
977 if (owner_)
978 owner_->row_item_appearance_changed(false, true);
a8fd2759 979 }
a970015f
SA
980}
981
52c900ac
SA
982void AnalogSignal::on_conv_threshold_changed(int index)
983{
2b6e7a72 984 SignalBase::ConversionType conv_type = base_->get_conversion_type();
52c900ac
SA
985
986 // Note: index is set to -1 if the text in the combo box matches none of
987 // the entries in the combo box
988
989 if ((index == -1) && (conv_threshold_cb_->currentText().length() == 0))
990 return;
991
992 // The combo box entry with the custom value has user_data set to -1
993 const int user_data = conv_threshold_cb_->findText(
994 conv_threshold_cb_->currentText());
995
996 const bool use_custom_thr = (index == -1) || (user_data == -1);
997
b9cdbe03 998 if (conv_type == SignalBase::A2LConversionByThreshold && use_custom_thr) {
52c900ac
SA
999 // Not one of the preset values, try to parse the combo box text
1000 // Note: Regex loosely based on
1001 // https://txt2re.com/index-c++.php3?s=0.1V&1&-13
1002 QString re1 = "([+-]?\\d*[\\.,]?\\d*)"; // Float value
1003 QString re2 = "([a-zA-Z]*)"; // SI unit
1004 QRegExp regex(re1 + re2);
1005
1006 const QString text = conv_threshold_cb_->currentText();
1007 if (!regex.exactMatch(text))
1008 return; // String doesn't match the regex
1009
1010 QStringList tokens = regex.capturedTexts();
1011
1012 // For now, we simply assume that the unit is volt without modifiers
1013 const double thr = tokens.at(1).toDouble();
1014
932bc246
SA
1015 // Only restart the conversion if the threshold was updated.
1016 // We're starting a delayed conversion because the user may still be
1017 // typing and the UI would lag if we kept on restarting it immediately
52c900ac 1018 if (base_->set_conversion_option("threshold_value", thr))
932bc246 1019 base_->start_conversion(true);
52c900ac
SA
1020 }
1021
2b6e7a72 1022 if (conv_type == SignalBase::A2LConversionBySchmittTrigger && use_custom_thr) {
52c900ac
SA
1023 // Not one of the preset values, try to parse the combo box text
1024 // Note: Regex loosely based on
1025 // https://txt2re.com/index-c++.php3?s=0.1V/0.2V&2&14&-22&3&15
1026 QString re1 = "([+-]?\\d*[\\.,]?\\d*)"; // Float value
1027 QString re2 = "([a-zA-Z]*)"; // SI unit
1028 QString re3 = "\\/"; // Forward slash, not captured
1029 QString re4 = "([+-]?\\d*[\\.,]?\\d*)"; // Float value
1030 QString re5 = "([a-zA-Z]*)"; // SI unit
1031 QRegExp regex(re1 + re2 + re3 + re4 + re5);
1032
1033 const QString text = conv_threshold_cb_->currentText();
1034 if (!regex.exactMatch(text))
1035 return; // String doesn't match the regex
1036
1037 QStringList tokens = regex.capturedTexts();
1038
1039 // For now, we simply assume that the unit is volt without modifiers
1040 const double low_thr = tokens.at(1).toDouble();
1041 const double high_thr = tokens.at(3).toDouble();
1042
932bc246
SA
1043 // Only restart the conversion if one of the options was updated.
1044 // We're starting a delayed conversion because the user may still be
1045 // typing and the UI would lag if we kept on restarting it immediately
52c900ac
SA
1046 bool o1 = base_->set_conversion_option("threshold_value_low", low_thr);
1047 bool o2 = base_->set_conversion_option("threshold_value_high", high_thr);
1048 if (o1 || o2)
932bc246 1049 base_->start_conversion(true); // Start delayed conversion
52c900ac
SA
1050 }
1051
f0f9c856 1052 base_->set_conversion_preset((SignalBase::ConversionPreset)index);
52c900ac 1053
932bc246
SA
1054 // Immediately start the conversion if we're not using custom values
1055 // (i.e. we're using one of the presets)
1056 if (!use_custom_thr)
52c900ac
SA
1057 base_->start_conversion();
1058}
1059
1060void AnalogSignal::on_delayed_conversion_starter()
1061{
1062 base_->start_conversion();
1063}
1064
b8c4a95b
SA
1065void AnalogSignal::on_display_type_changed(int index)
1066{
1067 display_type_ = (DisplayType)(display_type_cb_->itemData(index).toInt());
1068
1069 if (owner_)
1070 owner_->row_item_appearance_changed(false, true);
1071}
1072
1573bf16 1073} // namespace trace
f4e57597 1074} // namespace views
aba1dd16 1075} // namespace pv