]> sigrok.org Git - pulseview.git/blame - pv/view/analogsignal.cpp
DecodeTrace: Let annotation labels be pushed aside by the row title
[pulseview.git] / pv / view / 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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <extdef.h>
22
3b68d03d
JH
23#include <cassert>
24#include <cmath>
8a2fafcc
JH
25#include <cstdlib>
26#include <limits>
aba1dd16 27
2acdb232
JH
28#include "analogsignal.hpp"
29#include "pv/data/analog.hpp"
f3d66e52 30#include "pv/data/analogsegment.hpp"
2acdb232 31#include "pv/view/view.hpp"
aba1dd16 32
fe3a1c21 33#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 34
819f4c25 35using std::max;
a5d93c27 36using std::make_pair;
819f4c25 37using std::min;
f9abf97e 38using std::shared_ptr;
819f4c25 39using std::deque;
aba1dd16 40
e8d00928
ML
41using sigrok::Channel;
42
aba1dd16
JH
43namespace pv {
44namespace view {
45
a5d93c27
JH
46const int AnalogSignal::NominalHeight = 80;
47
568b90d4
JH
48const QColor AnalogSignal::SignalColours[4] = {
49 QColor(0xC4, 0xA0, 0x00), // Yellow
50 QColor(0x87, 0x20, 0x7A), // Magenta
51 QColor(0x20, 0x4A, 0x87), // Blue
52 QColor(0x4E, 0x9A, 0x06) // Green
53};
54
7c68ddae
JH
55const float AnalogSignal::EnvelopeThreshold = 256.0f;
56
b86aa8f4 57AnalogSignal::AnalogSignal(
2b81ae46 58 pv::Session &session,
b86aa8f4 59 shared_ptr<Channel> channel,
e8d00928 60 shared_ptr<data::Analog> data) :
b86aa8f4 61 Signal(session, channel),
8dbbc7f0 62 data_(data),
8a2fafcc
JH
63 scale_index_(0),
64 scale_index_drag_offset_(0)
aba1dd16 65{
99af6802 66 set_colour(SignalColours[channel_->index() % countof(SignalColours)]);
aba1dd16
JH
67}
68
f459c540
JH
69AnalogSignal::~AnalogSignal()
70{
71}
72
3009b5b3
JH
73shared_ptr<pv::data::SignalData> AnalogSignal::data() const
74{
8dbbc7f0 75 return data_;
3009b5b3
JH
76}
77
78shared_ptr<pv::data::Analog> AnalogSignal::analog_data() const
9a0cd293 79{
8dbbc7f0 80 return data_;
9a0cd293
JH
81}
82
a5d93c27
JH
83std::pair<int, int> AnalogSignal::v_extents() const
84{
8a2fafcc
JH
85 const int h = NominalHeight / 2;
86 return make_pair(-h, h);
a5d93c27
JH
87}
88
214470fc
JH
89int AnalogSignal::scale_handle_offset() const
90{
8a2fafcc
JH
91 return ((scale_index_drag_offset_ - scale_index_) *
92 NominalHeight / 4) - NominalHeight / 2;
214470fc
JH
93}
94
95void AnalogSignal::scale_handle_dragged(int offset)
96{
8a2fafcc
JH
97 scale_index_ = scale_index_drag_offset_ -
98 (offset + NominalHeight / 2) / (NominalHeight / 4);
99}
100
101void AnalogSignal::scale_handle_drag_release()
102{
103 scale_index_drag_offset_ = scale_index_;
214470fc
JH
104}
105
5b5fa4da 106void AnalogSignal::paint_back(QPainter &p, const ViewItemPaintParams &pp)
fe08b6e8 107{
99af6802
SA
108 if (channel_->enabled()) {
109 Trace::paint_back(p, pp);
97904bf7 110 paint_axis(p, pp, get_visual_y());
99af6802 111 }
fe08b6e8
JH
112}
113
5b5fa4da 114void AnalogSignal::paint_mid(QPainter &p, const ViewItemPaintParams &pp)
aba1dd16 115{
8dbbc7f0 116 assert(data_);
8dbbc7f0 117 assert(owner_);
a8acb46e 118
be9e7b4b 119 const int y = get_visual_y();
01fd3263 120
8dbbc7f0 121 if (!channel_->enabled())
cec48d16
JH
122 return;
123
f3d66e52
JH
124 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
125 data_->analog_segments();
126 if (segments.empty())
a8acb46e
JH
127 return;
128
f3d66e52
JH
129 const shared_ptr<pv::data::AnalogSegment> &segment =
130 segments.front();
a8acb46e 131
4c8a6a6d 132 const double pixels_offset = pp.pixels_offset();
69e33a1b 133 const double samplerate = max(1.0, segment->samplerate());
60d9b99a 134 const pv::util::Timestamp& start_time = segment->start_time();
f3d66e52 135 const int64_t last_sample = segment->get_sample_count() - 1;
4c8a6a6d 136 const double samples_per_pixel = samplerate * pp.scale();
60d9b99a
JS
137 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
138 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
a8acb46e 139
60d9b99a 140 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
a8acb46e 141 (int64_t)0), last_sample);
60d9b99a 142 const int64_t end_sample = min(max((ceil(end) + 1).convert_to<int64_t>(),
a8acb46e
JH
143 (int64_t)0), last_sample);
144
7c68ddae 145 if (samples_per_pixel < EnvelopeThreshold)
f3d66e52 146 paint_trace(p, segment, y, pp.left(),
7c68ddae
JH
147 start_sample, end_sample,
148 pixels_offset, samples_per_pixel);
149 else
f3d66e52 150 paint_envelope(p, segment, y, pp.left(),
7c68ddae
JH
151 start_sample, end_sample,
152 pixels_offset, samples_per_pixel);
153}
154
155void AnalogSignal::paint_trace(QPainter &p,
f3d66e52 156 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
157 int y, int left, const int64_t start, const int64_t end,
158 const double pixels_offset, const double samples_per_pixel)
159{
8a2fafcc 160 const float scale = this->scale();
7c68ddae
JH
161 const int64_t sample_count = end - start;
162
f3d66e52 163 const float *const samples = segment->get_samples(start, end);
a8acb46e
JH
164 assert(samples);
165
8dbbc7f0 166 p.setPen(colour_);
7c68ddae 167
d3758367 168 QPointF *points = new QPointF[sample_count];
a8acb46e
JH
169 QPointF *point = points;
170
7c68ddae 171 for (int64_t sample = start; sample != end; sample++) {
a8acb46e 172 const float x = (sample / samples_per_pixel -
2658961b 173 pixels_offset) + left;
d3758367 174 *point++ = QPointF(x,
8a2fafcc 175 y - samples[sample - start] * scale);
a8acb46e
JH
176 }
177
306d43a7 178 p.drawPolyline(points, point - points);
a8acb46e 179
7c68ddae 180 delete[] samples;
a8acb46e 181 delete[] points;
aba1dd16
JH
182}
183
7c68ddae 184void AnalogSignal::paint_envelope(QPainter &p,
f3d66e52 185 const shared_ptr<pv::data::AnalogSegment> &segment,
7c68ddae
JH
186 int y, int left, const int64_t start, const int64_t end,
187 const double pixels_offset, const double samples_per_pixel)
188{
f3d66e52 189 using pv::data::AnalogSegment;
7c68ddae 190
8a2fafcc
JH
191 const float scale = this->scale();
192
f3d66e52
JH
193 AnalogSegment::EnvelopeSection e;
194 segment->get_envelope_section(e, start, end, samples_per_pixel);
7c68ddae
JH
195
196 if (e.length < 2)
197 return;
198
819f4c25 199 p.setPen(QPen(Qt::NoPen));
8dbbc7f0 200 p.setBrush(colour_);
7c68ddae
JH
201
202 QRectF *const rects = new QRectF[e.length];
203 QRectF *rect = rects;
204
f3290553 205 for (uint64_t sample = 0; sample < e.length-1; sample++) {
7c68ddae
JH
206 const float x = ((e.scale * sample + e.start) /
207 samples_per_pixel - pixels_offset) + left;
f3d66e52 208 const AnalogSegment::EnvelopeSample *const s =
7c68ddae
JH
209 e.samples + sample;
210
211 // We overlap this sample with the next so that vertical
212 // gaps do not appear during steep rising or falling edges
8a2fafcc
JH
213 const float b = y - max(s->max, (s+1)->min) * scale;
214 const float t = y - min(s->min, (s+1)->max) * scale;
7c68ddae
JH
215
216 float h = b - t;
f3290553 217 if (h >= 0.0f && h <= 1.0f)
7c68ddae 218 h = 1.0f;
f3290553 219 if (h <= 0.0f && h >= -1.0f)
7c68ddae
JH
220 h = -1.0f;
221
222 *rect++ = QRectF(x, t, 1.0f, h);
223 }
224
225 p.drawRects(rects, e.length);
226
227 delete[] rects;
228 delete[] e.samples;
229}
230
8a2fafcc
JH
231float AnalogSignal::scale() const
232{
233 const float seq[] = {1.0f, 2.0f, 5.0f};
234 const int offset = std::numeric_limits<int>::max() / (2 * countof(seq));
235 const std::div_t d = std::div(
236 (int)(scale_index_ + countof(seq) * offset),
237 countof(seq));
238 return powf(10.0f, d.quot - offset) * seq[d.rem];
239}
240
aba1dd16
JH
241} // namespace view
242} // namespace pv