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