Chris@1071
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@1071
|
2
|
Chris@1071
|
3 /*
|
Chris@1071
|
4 Sonic Visualiser
|
Chris@1071
|
5 An audio file viewer and annotation editor.
|
Chris@1071
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@1071
|
7 This file copyright 2006-2016 Chris Cannam and QMUL.
|
Chris@1071
|
8
|
Chris@1071
|
9 This program is free software; you can redistribute it and/or
|
Chris@1071
|
10 modify it under the terms of the GNU General Public License as
|
Chris@1071
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@1071
|
12 License, or (at your option) any later version. See the file
|
Chris@1071
|
13 COPYING included with this distribution for more information.
|
Chris@1071
|
14 */
|
Chris@1071
|
15
|
Chris@1071
|
16 #include "Colour3DPlotRenderer.h"
|
Chris@1074
|
17 #include "RenderTimer.h"
|
Chris@1071
|
18
|
Chris@1075
|
19 #include "data/model/DenseThreeDimensionalModel.h"
|
Chris@1075
|
20 #include "data/model/Dense3DModelPeakCache.h"
|
Chris@1075
|
21 #include "data/model/FFTModel.h"
|
Chris@1075
|
22
|
Chris@1077
|
23 #include "LayerGeometryProvider.h"
|
Chris@1075
|
24
|
Chris@1079
|
25 #include <vector>
|
Chris@1079
|
26
|
Chris@1079
|
27 using namespace std;
|
Chris@1079
|
28
|
Chris@1073
|
29 Colour3DPlotRenderer::RenderResult
|
Chris@1076
|
30 Colour3DPlotRenderer::render(QPainter &paint, QRect rect)
|
Chris@1076
|
31 {
|
Chris@1076
|
32 return render(paint, rect, false);
|
Chris@1076
|
33 }
|
Chris@1076
|
34
|
Chris@1076
|
35 Colour3DPlotRenderer::RenderResult
|
Chris@1076
|
36 Colour3DPlotRenderer::renderTimeConstrained(QPainter &paint, QRect rect)
|
Chris@1076
|
37 {
|
Chris@1076
|
38 return render(paint, rect, true);
|
Chris@1076
|
39 }
|
Chris@1076
|
40
|
Chris@1076
|
41 Colour3DPlotRenderer::RenderResult
|
Chris@1076
|
42 Colour3DPlotRenderer::render(QPainter &paint, QRect rect, bool timeConstrained)
|
Chris@1073
|
43 {
|
Chris@1075
|
44 LayerGeometryProvider *v = m_sources.geometryProvider;
|
Chris@1075
|
45 if (!v) {
|
Chris@1075
|
46 throw std::logic_error("no LayerGeometryProvider provided");
|
Chris@1075
|
47 }
|
Chris@1075
|
48
|
Chris@1079
|
49 sv_frame_t startFrame = v->getStartFrame();
|
Chris@1079
|
50 int zoomLevel = v->getZoomLevel();
|
Chris@1079
|
51
|
Chris@1079
|
52 int x0 = v->getXForViewX(rect.x());
|
Chris@1079
|
53 int x1 = v->getXForViewX(rect.x() + rect.width());
|
Chris@1079
|
54 if (x0 < 0) x0 = 0;
|
Chris@1079
|
55 if (x1 > v->getPaintWidth()) x1 = v->getPaintWidth();
|
Chris@1079
|
56
|
Chris@1079
|
57 m_cache.resize(v->getPaintSize());
|
Chris@1079
|
58 m_cache.setZoomLevel(v->getZoomLevel());
|
Chris@1079
|
59
|
Chris@1079
|
60 if (m_cache.isValid()) { // some part of the cache is valid
|
Chris@1079
|
61
|
Chris@1079
|
62 if (v->getXForFrame(m_cache.getStartFrame()) ==
|
Chris@1079
|
63 v->getXForFrame(startFrame) &&
|
Chris@1079
|
64 m_cache.getValidLeft() <= x0 &&
|
Chris@1079
|
65 m_cache.getValidRight() >= x1) {
|
Chris@1079
|
66
|
Chris@1079
|
67 // cache is valid for the complete requested area
|
Chris@1079
|
68 paint.drawImage(rect, m_cache.getImage(), rect);
|
Chris@1079
|
69 return { rect, {} };
|
Chris@1079
|
70
|
Chris@1079
|
71 } else {
|
Chris@1079
|
72 // cache doesn't begin at the right frame or doesn't
|
Chris@1079
|
73 // contain the complete view, but might be scrollable or
|
Chris@1079
|
74 // partially usable
|
Chris@1079
|
75 m_cache.scrollTo(startFrame);
|
Chris@1079
|
76
|
Chris@1079
|
77 // if we are not time-constrained, then we want to paint
|
Chris@1079
|
78 // the whole area in one go, and we're not going to
|
Chris@1079
|
79 // provide the more complex logic to handle that if there
|
Chris@1079
|
80 // are discontiguous areas involved. So if the only valid
|
Chris@1079
|
81 // part of cache is in the middle, just make the whole
|
Chris@1079
|
82 // thing invalid and start again.
|
Chris@1079
|
83 if (!timeConstrained) {
|
Chris@1079
|
84 if (m_cache.getValidLeft() > x0 &&
|
Chris@1079
|
85 m_cache.getValidRight() < x1) {
|
Chris@1079
|
86 m_cache.invalidate();
|
Chris@1079
|
87 }
|
Chris@1079
|
88 }
|
Chris@1079
|
89 }
|
Chris@1075
|
90 }
|
Chris@1075
|
91
|
Chris@1079
|
92 bool rightToLeft = false;
|
Chris@1079
|
93
|
Chris@1079
|
94 if (!m_cache.isValid() && timeConstrained) {
|
Chris@1079
|
95 // When rendering the whole thing in a context where we
|
Chris@1079
|
96 // might not be able to complete the work, start from
|
Chris@1079
|
97 // somewhere near the middle so that the region of
|
Chris@1079
|
98 // interest appears first
|
Chris@1079
|
99
|
Chris@1079
|
100 //!!! (perhaps we should avoid doing this if past repaints
|
Chris@1079
|
101 //!!! have been fast enough to do the whole in one shot)
|
Chris@1079
|
102 if (x0 == 0 && x1 == v->getPaintWidth()) {
|
Chris@1079
|
103 x0 = int(x1 * 0.3);
|
Chris@1079
|
104 }
|
Chris@1079
|
105 }
|
Chris@1079
|
106
|
Chris@1079
|
107 if (m_cache.isValid()) {
|
Chris@1079
|
108 // When rendering only a part of the cache, we need to make
|
Chris@1079
|
109 // sure that the part we're rendering is adjacent to (or
|
Chris@1079
|
110 // overlapping) a valid area of cache, if we have one. The
|
Chris@1079
|
111 // alternative is to ditch the valid area of cache and render
|
Chris@1079
|
112 // only the requested area, but that's risky because this can
|
Chris@1079
|
113 // happen when just waving the pointer over a small part of
|
Chris@1079
|
114 // the view -- if we lose the partly-built cache every time
|
Chris@1079
|
115 // the user does that, we'll never finish building it.
|
Chris@1079
|
116 int left = x0;
|
Chris@1079
|
117 int width = x1 - x0;
|
Chris@1079
|
118 bool isLeftOfValidArea = false;
|
Chris@1079
|
119 m_cache.adjustToTouchValidArea(left, width, isLeftOfValidArea);
|
Chris@1079
|
120 x0 = left;
|
Chris@1079
|
121 x1 = x0 + width;
|
Chris@1079
|
122
|
Chris@1079
|
123 // That call also told us whether we should be painting
|
Chris@1079
|
124 // sub-regions of our target region in right-to-left order in
|
Chris@1079
|
125 // order to ensure contiguity
|
Chris@1079
|
126 rightToLeft = isLeftOfValidArea;
|
Chris@1079
|
127 }
|
Chris@1075
|
128
|
Chris@1079
|
129 int repaintWidth = x1 - x0;
|
Chris@1079
|
130
|
Chris@1079
|
131 QRect rendered = renderToCache(x0, repaintWidth, timeConstrained);
|
Chris@1079
|
132
|
Chris@1079
|
133 QRect pr = rect & m_cache.getValidArea();
|
Chris@1079
|
134 paint.drawImage(pr.x(), pr.y(), m_cache.getImage(),
|
Chris@1079
|
135 pr.x(), pr.y(), pr.width(), pr.height());
|
Chris@1079
|
136
|
Chris@1079
|
137 if (!timeConstrained && (pr != rect)) {
|
Chris@1079
|
138 //!!! on a first cut, there is a risk that this will happen
|
Chris@1079
|
139 //!!! when we are at start/end of model -- trap, report, and
|
Chris@1079
|
140 //!!! then fix
|
Chris@1079
|
141 throw std::logic_error("internal error: failed to render entire requested rect even when not time-constrained");
|
Chris@1079
|
142 }
|
Chris@1079
|
143
|
Chris@1079
|
144 return { pr, {} };
|
Chris@1079
|
145
|
Chris@1073
|
146 //!!! todo: timing/incomplete paint
|
Chris@1073
|
147
|
Chris@1073
|
148 //!!! todo: peak frequency style
|
Chris@1073
|
149
|
Chris@1073
|
150 //!!! todo: transparent style from Colour3DPlot
|
Chris@1074
|
151
|
Chris@1074
|
152 //!!! todo: bin boundary alignment when in BinResolution
|
Chris@1074
|
153
|
Chris@1079
|
154 //!!! todo: view magnitudes / normalise visible area
|
Chris@1079
|
155
|
Chris@1079
|
156 //!!! todo: alter documentation for view mag stuff (cached paints
|
Chris@1079
|
157 //!!! do not update MagnitudeRange)
|
Chris@1079
|
158
|
Chris@1079
|
159 //!!! todo, here or in caller: illuminateLocalFeatures
|
Chris@1079
|
160
|
Chris@1079
|
161 //!!! fft model scaling?
|
Chris@1079
|
162
|
Chris@1079
|
163 //!!! should we own the Dense3DModelPeakCache here? or should it persist
|
Chris@1073
|
164 }
|
Chris@1073
|
165
|
Chris@1079
|
166 QRect
|
Chris@1079
|
167 Colour3DPlotRenderer::renderToCache(int x0, int repaintWidth, bool timeConstrained)
|
Chris@1079
|
168 {
|
Chris@1079
|
169 // Draw to the draw buffer, and then scale-copy from there.
|
Chris@1079
|
170
|
Chris@1079
|
171 DenseThreeDimensionalModel *model = m_sources.source;
|
Chris@1079
|
172 if (!model || !model->isOK() || !model->isReady()) {
|
Chris@1079
|
173 throw std::logic_error("no source model provided, or model not ready");
|
Chris@1079
|
174 }
|
Chris@1079
|
175
|
Chris@1079
|
176 LayerGeometryProvider *v = m_sources.geometryProvider; // already checked
|
Chris@1079
|
177
|
Chris@1079
|
178 // The draw buffer contains a fragment at either our pixel
|
Chris@1079
|
179 // resolution (if there is more than one time-bin per pixel) or
|
Chris@1079
|
180 // time-bin resolution (if a time-bin spans more than one pixel).
|
Chris@1079
|
181 // We need to ensure that it starts and ends at points where a
|
Chris@1079
|
182 // time-bin boundary occurs at an exact pixel boundary, and with a
|
Chris@1079
|
183 // certain amount of overlap across existing pixels so that we can
|
Chris@1079
|
184 // scale and draw from it without smoothing errors at the edges.
|
Chris@1079
|
185
|
Chris@1079
|
186 // If (getFrameForX(x) / increment) * increment ==
|
Chris@1079
|
187 // getFrameForX(x), then x is a time-bin boundary. We want two
|
Chris@1079
|
188 // such boundaries at either side of the draw buffer -- one which
|
Chris@1079
|
189 // we draw up to, and one which we subsequently crop at.
|
Chris@1079
|
190
|
Chris@1079
|
191 bool bufferIsBinResolution = false;
|
Chris@1079
|
192 int binResolution = model->getResolution();
|
Chris@1079
|
193 int zoomLevel = v->getZoomLevel();
|
Chris@1079
|
194 if (binResolution > zoomLevel) bufferIsBinResolution = true;
|
Chris@1079
|
195
|
Chris@1079
|
196 sv_frame_t leftBoundaryFrame = -1, leftCropFrame = -1;
|
Chris@1079
|
197 sv_frame_t rightBoundaryFrame = -1, rightCropFrame = -1;
|
Chris@1079
|
198
|
Chris@1079
|
199 int drawWidth;
|
Chris@1079
|
200
|
Chris@1079
|
201 if (bufferIsBinResolution) {
|
Chris@1079
|
202 for (int x = x0; ; --x) {
|
Chris@1079
|
203 sv_frame_t f = v->getFrameForX(x);
|
Chris@1079
|
204 if ((f / binResolution) * binResolution == f) {
|
Chris@1079
|
205 if (leftCropFrame == -1) leftCropFrame = f;
|
Chris@1079
|
206 else if (x < x0 - 2) {
|
Chris@1079
|
207 leftBoundaryFrame = f;
|
Chris@1079
|
208 break;
|
Chris@1079
|
209 }
|
Chris@1079
|
210 }
|
Chris@1079
|
211 }
|
Chris@1079
|
212 for (int x = x0 + repaintWidth; ; ++x) {
|
Chris@1079
|
213 sv_frame_t f = v->getFrameForX(x);
|
Chris@1079
|
214 if ((f / binResolution) * binResolution == f) {
|
Chris@1079
|
215 if (rightCropFrame == -1) rightCropFrame = f;
|
Chris@1079
|
216 else if (x > x0 + repaintWidth + 2) {
|
Chris@1079
|
217 rightBoundaryFrame = f;
|
Chris@1079
|
218 break;
|
Chris@1079
|
219 }
|
Chris@1079
|
220 }
|
Chris@1079
|
221 }
|
Chris@1079
|
222 drawWidth = int((rightBoundaryFrame - leftBoundaryFrame) / binResolution);
|
Chris@1079
|
223 } else {
|
Chris@1079
|
224 drawWidth = repaintWidth;
|
Chris@1079
|
225 }
|
Chris@1079
|
226
|
Chris@1079
|
227 // We always paint the full height. Smaller heights can be used
|
Chris@1079
|
228 // when painting direct from cache (outside this function), but we
|
Chris@1079
|
229 // want to ensure the cache is coherent without having to worry
|
Chris@1079
|
230 // about vertical matching of required and valid areas as well as
|
Chris@1079
|
231 // horizontal. That's why this function didn't take any y/height
|
Chris@1079
|
232 // parameters.
|
Chris@1079
|
233 int h = v->getPaintHeight();
|
Chris@1079
|
234
|
Chris@1079
|
235 clearDrawBuffer(drawWidth, h);
|
Chris@1079
|
236
|
Chris@1079
|
237 vector<int> binforx(drawWidth);
|
Chris@1079
|
238 vector<double> binfory(h);
|
Chris@1079
|
239
|
Chris@1079
|
240 bool usePeaksCache = false;
|
Chris@1079
|
241 int binsPerPeak = 1;
|
Chris@1079
|
242
|
Chris@1079
|
243 if (bufferIsBinResolution) {
|
Chris@1079
|
244 for (int x = 0; x < drawWidth; ++x) {
|
Chris@1079
|
245 binforx[x] = int(leftBoundaryFrame / binResolution) + x;
|
Chris@1079
|
246 }
|
Chris@1079
|
247 } else {
|
Chris@1079
|
248 for (int x = 0; x < drawWidth; ++x) {
|
Chris@1079
|
249 sv_frame_t f0 = v->getFrameForX(x);
|
Chris@1079
|
250 double s0 = double(f0 - model->getStartFrame()) / binResolution;
|
Chris@1079
|
251 binforx[x] = int(s0 + 0.0001);
|
Chris@1079
|
252 }
|
Chris@1079
|
253
|
Chris@1079
|
254 if (m_sources.peaks) { // peaks cache exists
|
Chris@1079
|
255
|
Chris@1079
|
256 binsPerPeak = m_sources.peaks->getColumnsPerPeak();
|
Chris@1079
|
257 usePeaksCache = (binResolution * binsPerPeak) < zoomLevel;
|
Chris@1079
|
258
|
Chris@1079
|
259 if (m_params.colourScale.getScale() ==
|
Chris@1079
|
260 ColourScale::PhaseColourScale) {
|
Chris@1079
|
261 usePeaksCache = false;
|
Chris@1079
|
262 }
|
Chris@1079
|
263 }
|
Chris@1079
|
264 }
|
Chris@1079
|
265
|
Chris@1079
|
266 int attainedDrawWidth = drawWidth;
|
Chris@1079
|
267
|
Chris@1079
|
268 //!!! todo: all
|
Chris@1079
|
269
|
Chris@1079
|
270 }
|
Chris@1079
|
271
|
Chris@1079
|
272 void
|
Chris@1079
|
273 Colour3DPlotRenderer::clearDrawBuffer(int w, int h)
|
Chris@1079
|
274 {
|
Chris@1079
|
275 if (m_drawBuffer.width() < w || m_drawBuffer.height() != h) {
|
Chris@1079
|
276
|
Chris@1079
|
277 m_drawBuffer = QImage(w, h, QImage::Format_Indexed8);
|
Chris@1079
|
278
|
Chris@1079
|
279 for (int pixel = 0; pixel < 256; ++pixel) {
|
Chris@1079
|
280 //!!! todo: colour rotation (here 0)
|
Chris@1079
|
281 m_drawBuffer.setColor
|
Chris@1079
|
282 ((unsigned char)pixel,
|
Chris@1079
|
283 m_params.colourScale.getColourForPixel(pixel, 0).rgb());
|
Chris@1079
|
284 }
|
Chris@1079
|
285 }
|
Chris@1079
|
286
|
Chris@1079
|
287 m_drawBuffer.fill(0);
|
Chris@1079
|
288 }
|
Chris@1079
|
289
|
Chris@1079
|
290
|