mod scope for smooth graphic, tweaks to scope layout
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / scopewindow.C
1 /*
2  * CINELERRA
3  * Copyright (C) 1997-2011 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #include "bcsignals.h"
22 #include "bccolors.h"
23 #include "boxblur.h"
24 #include "clip.h"
25 #include "cursors.h"
26 #include "file.h"
27 #include "filesystem.h"
28 #include "language.h"
29 #include "overlayframe.h"
30 #include "scopewindow.h"
31 #include "theme.h"
32
33 #include <string.h>
34
35 ScopePackage::ScopePackage()
36  : LoadPackage()
37 {
38 }
39
40 ScopeUnit::ScopeUnit(ScopeGUI *gui,
41         ScopeEngine *server)
42  : LoadClient(server)
43 {
44         this->gui = gui;
45 }
46
47
48 #define incr_point(rows,h, iv,comp) { \
49 if(iy >= 0 && iy < h) { \
50   uint8_t *vp = rows[iy] + ix*3 + (comp); \
51   int v = *vp+(iv);  *vp = v>0xff ? 0xff : v; } \
52 }
53 #define incr_points(rows,h, rv,gv,bv, comps) { \
54 if(iy >= 0 && iy < h) { \
55   uint8_t *vp = rows[iy] + ix*comps; \
56   int v = *vp+(rv);  *vp++ = v>0xff ? 0xff : v; \
57   v = *vp+(gv);  *vp++ = v>0xff ? 0xff : v; \
58   v = *vp+(bv);  *vp = v>0xff ? 0xff : v; } \
59 }
60 #define decr_points(rows,h, rv,gv,bv, comps) { \
61 if(iy >= 0 && iy < h) { \
62   uint8_t *vp = rows[iy] + ix*comps; \
63   int v = *vp-(rv);  *vp++ = v<0 ? 0 : v; \
64   v = *vp-(gv);  *vp++ = v<0 ? 0 : v; \
65   v = *vp-(bv);  *vp = v<0 ? 0 : v; } \
66 }
67 #define clip_points(rows,h, rv,gv,bv) { \
68 if(iy >= 0 && iy < h) { \
69   uint8_t *vp = rows[iy] + ix*3; \
70   int v = *vp+(rv);  *vp++ = v>0xff ? 0xff : v<0 ? 0 : v; \
71   v = *vp+(gv);  *vp++ = v>0xff ? 0xff : v<0 ? 0 : v; \
72   v = *vp+(bv);  *vp = v>0xff ? 0xff : v<0 ? 0 : v; } \
73 }
74
75 #define PROCESS_PIXEL(column) { \
76 /* Calculate histogram */ \
77         if(use_hist) { \
78                 int v_i = (intensity - FLOAT_MIN) * (TOTAL_BINS / (FLOAT_MAX - FLOAT_MIN)); \
79                 CLAMP(v_i, 0, TOTAL_BINS - 1); \
80                 bins[3][v_i]++; \
81         } \
82         if(use_hist_parade) { \
83                 int r_i = (r - FLOAT_MIN) * (TOTAL_BINS / (FLOAT_MAX - FLOAT_MIN)); \
84                 int g_i = (g - FLOAT_MIN) * (TOTAL_BINS / (FLOAT_MAX - FLOAT_MIN)); \
85                 int b_i = (b - FLOAT_MIN) * (TOTAL_BINS / (FLOAT_MAX - FLOAT_MIN)); \
86                 CLAMP(r_i, 0, TOTAL_BINS - 1); \
87                 CLAMP(g_i, 0, TOTAL_BINS - 1); \
88                 CLAMP(b_i, 0, TOTAL_BINS - 1); \
89                 bins[0][r_i]++; \
90                 bins[1][g_i]++; \
91                 bins[2][b_i]++; \
92         } \
93 /* Calculate waveform */ \
94         if(use_wave || use_wave_parade) { \
95                 int ix = column * wave_w / dat_w; \
96                 if(ix >= 0 && ix < wave_w-1) { \
97                         if(use_wave_parade > 0) { \
98                                 ix /= 3; \
99                                 int iy = wave_h - ((r - FLOAT_MIN) /  \
100                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
101                                 incr_point(waveform_rows,wave_h, winc,0); \
102                                 ix += wave_w/3; \
103                                 iy = wave_h - ((g - FLOAT_MIN) /  \
104                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
105                                 incr_point(waveform_rows,wave_h, winc,1); \
106                                 ix += wave_w/3; \
107                                 iy = wave_h - ((b - FLOAT_MIN) /  \
108                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
109                                 incr_point(waveform_rows,wave_h, winc,2); \
110                         } \
111                         else if(use_wave_parade < 0) { \
112                                 int iy = wave_h - ((r - FLOAT_MIN) /  \
113                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
114                                 clip_points(waveform_rows,wave_h, winc,-winc,-winc); \
115                                 iy = wave_h - ((g - FLOAT_MIN) /  \
116                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
117                                 clip_points(waveform_rows,wave_h, -winc,winc,-winc); \
118                                 iy = wave_h - ((b - FLOAT_MIN) /  \
119                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
120                                 clip_points(waveform_rows,wave_h, -winc,-winc,winc); \
121                         } \
122                         else { float yinc = 3*winc; \
123                                 float rinc = yinc*(r-FLOAT_MIN) / (FLOAT_MAX-FLOAT_MIN) + 3; \
124                                 float ginc = yinc*(g-FLOAT_MIN) / (FLOAT_MAX-FLOAT_MIN) + 3; \
125                                 float binc = yinc*(b-FLOAT_MIN) / (FLOAT_MAX-FLOAT_MIN) + 3; \
126                                 int iy = wave_h - ((intensity - FLOAT_MIN) /  \
127                                                 (FLOAT_MAX - FLOAT_MIN) * wave_h); \
128                                 incr_points(waveform_rows,wave_h, rinc, ginc, binc, 3); \
129                         } \
130                 } \
131         } \
132 /* Calculate vectorscope */ \
133         if(use_vector > 0) { \
134                 double t = TO_RAD(-h); \
135                 float adjacent = sin(t), opposite = cos(t); \
136                 int ix = vector_cx + adjacent * (s) / (FLOAT_MAX) * radius; \
137                 int iy = vector_cy - opposite * (s) / (FLOAT_MAX) * radius; \
138                 CLAMP(ix, 0, vector_w - 1); \
139                 HSV::hsv_to_rgb(r, g, b, h, s, vincf); \
140                 int rv = r + 3; \
141                 int gv = g + 3; \
142                 int bv = b + 3; \
143                 incr_points(vector_rows,vector_h, rv,gv,bv, 4); \
144         } \
145         else if(use_vector < 0) { \
146                 double t = TO_RAD(-h); \
147                 float adjacent = sin(t), opposite = cos(t); \
148                 int ix = vector_cx + adjacent * (s) / (FLOAT_MAX) * radius; \
149                 int iy = vector_cy - opposite * (s) / (FLOAT_MAX) * radius; \
150                 CLAMP(ix, 0, vector_w - 1); \
151                 decr_points(vector_rows,vector_h, vinc,vinc,vinc, 4); \
152         } \
153 }
154
155 #define PROCESS_RGB_PIXEL(type,max, column) { \
156         type *rp = (type *)row; \
157         r = (float)rp[0] / max; \
158         g = (float)rp[1] / max; \
159         b = (float)rp[2] / max; \
160         HSV::rgb_to_hsv(r, g, b, h, s, v); \
161         intensity = v; \
162         PROCESS_PIXEL(column) \
163 }
164
165 #define PROCESS_BGR_PIXEL(type,max, column) { \
166         type *rp = (type *)row; \
167         b = (float)rp[0] / max; \
168         g = (float)rp[1] / max; \
169         r = (float)rp[2] / max; \
170         HSV::rgb_to_hsv(r, g, b, h, s, v); \
171         intensity = v; \
172         PROCESS_PIXEL(column) \
173 }
174
175 #define PROCESS_YUV_PIXEL(column, y_in, u_in, v_in) { \
176         YUV::yuv.yuv_to_rgb_f(r, g, b, y_in, u_in, v_in); \
177         HSV::rgb_to_hsv(r, g, b, h, s, v); \
178         intensity = v; \
179         PROCESS_PIXEL(column) \
180 }
181
182 void ScopeUnit::process_package(LoadPackage *package)
183 {
184         ScopePackage *pkg = (ScopePackage*)package;
185
186         float r, g, b;
187         float h, s, v;
188         float intensity;
189         int use_hist = gui->use_hist;
190         int use_hist_parade = gui->use_hist_parade;
191         int use_vector = gui->use_vector;
192         int use_wave = gui->use_wave;
193         int use_wave_parade = gui->use_wave_parade;
194         int vector_cx = gui->vector_cx;
195         int vector_cy = gui->vector_cy;
196         int radius = gui->radius;
197         VFrame *waveform_vframe = gui->waveform_vframe;
198         VFrame *vector_vframe = gui->vector_vframe;
199         int wave_h = waveform_vframe->get_h();
200         int wave_w = waveform_vframe->get_w();
201         int vector_h = vector_vframe->get_h();
202         int vector_w = vector_vframe->get_w();
203         int dat_w = gui->data_frame->get_w();
204         int dat_h = gui->data_frame->get_h();
205         int winc = (wave_w * wave_h) / (dat_w * dat_h);
206         if( use_wave_parade ) winc *= 3;
207         winc += 2;  winc = (winc << gui->use_wave_gain) / 4;
208         int vinc = 3*(vector_w * vector_h) / (dat_w * dat_h);
209         vinc += 2;  vinc = (vinc << gui->use_vect_gain) / 4;
210         float vincf = vinc;
211         uint8_t **waveform_rows = waveform_vframe->get_rows();
212         uint8_t **vector_rows = vector_vframe->get_rows();
213         uint8_t **rows = gui->data_frame->get_rows();
214
215         switch( gui->data_frame->get_color_model() ) {
216         case BC_RGB888:
217                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
218                         uint8_t *row = rows[y];
219                         for( int x=0; x<dat_w; ++x ) {
220                                 PROCESS_RGB_PIXEL(uint8_t,0xff, x)
221                                 row += 3*sizeof(uint8_t);
222                         }
223                 }
224                 break;
225         case BC_RGBA8888:
226                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
227                         uint8_t *row = rows[y];
228                         for( int x=0; x<dat_w; ++x ) {
229                                 PROCESS_RGB_PIXEL(uint8_t,0xff, x)
230                                 row += 4*sizeof(uint8_t);
231                         }
232                 }
233                 break;
234         case BC_RGB161616:
235                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
236                         uint8_t *row = rows[y];
237                         for( int x=0; x<dat_w; ++x ) {
238                                 PROCESS_RGB_PIXEL(uint16_t,0xffff, x)
239                                 row += 3*sizeof(uint16_t);
240                         }
241                 }
242                 break;
243         case BC_RGBA16161616:
244                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
245                         uint8_t *row = rows[y];
246                         for( int x=0; x<dat_w; ++x ) {
247                                 PROCESS_RGB_PIXEL(uint16_t,0xffff, x)
248                                 row += 4*sizeof(uint16_t);
249                         }
250                 }
251                 break;
252         case BC_BGR888:
253                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
254                         uint8_t *row = rows[y];
255                         for( int x=0; x<dat_w; ++x ) {
256                                 PROCESS_BGR_PIXEL(uint8_t,0xff, x)
257                                 row += 3*sizeof(uint8_t);
258                         }
259                 }
260                 break;
261         case BC_BGR8888:
262                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
263                         uint8_t *row = rows[y];
264                         for( int x=0; x<dat_w; ++x ) {
265                                 PROCESS_BGR_PIXEL(uint8_t,0xff, x)
266                                 row += 4*sizeof(uint8_t);
267                         }
268                 }
269                 break;
270         case BC_RGB_FLOAT:
271                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
272                         uint8_t *row = rows[y];
273                         for( int x=0; x<dat_w; ++x ) {
274                                 PROCESS_RGB_PIXEL(float,1.f, x)
275                                 row += 3*sizeof(float);
276                         }
277                 }
278                 break;
279         case BC_RGBA_FLOAT:
280                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
281                         uint8_t *row = rows[y];
282                         for( int x=0; x<dat_w; ++x ) {
283                                 PROCESS_RGB_PIXEL(float,1.f, x)
284                                 row += 4*sizeof(float);
285                         }
286                 }
287                 break;
288         case BC_YUV888:
289                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
290                         uint8_t *row = rows[y];
291                         for( int x=0; x<dat_w; ++x ) {
292                                 PROCESS_YUV_PIXEL(x, row[0], row[1], row[2])
293                                 row += 3*sizeof(uint8_t);
294                         }
295                 }
296                 break;
297
298         case BC_YUVA8888:
299                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
300                         uint8_t *row = rows[y];
301                         for( int x=0; x<dat_w; ++x ) {
302                                 PROCESS_YUV_PIXEL(x, row[0], row[1], row[2])
303                                 row += 4*sizeof(uint8_t);
304                         }
305                 }
306                 break;
307         case BC_YUV420P: {
308                 uint8_t *yp = gui->data_frame->get_y();
309                 uint8_t *up = gui->data_frame->get_u();
310                 uint8_t *vp = gui->data_frame->get_v();
311                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
312                         uint8_t *y_row = yp + y * dat_w;
313                         uint8_t *u_row = up + (y / 2) * (dat_w / 2);
314                         uint8_t *v_row = vp + (y / 2) * (dat_w / 2);
315                         for( int x=0; x<dat_w; x+=2 ) {
316                                 PROCESS_YUV_PIXEL(x, *y_row, *u_row, *v_row);
317                                 ++y_row;
318                                 PROCESS_YUV_PIXEL(x + 1, *y_row, *u_row, *v_row);
319                                 ++y_row;  ++u_row;  ++v_row;
320                         }
321                 }
322                 break; }
323         case BC_YUV422:
324                 for( int y=pkg->row1; y<pkg->row2; ++y ) {
325                         uint8_t *row = rows[y];
326                         for( int x=0; x<dat_w; x+=2 ) {
327                                 PROCESS_YUV_PIXEL(x, row[0], row[1], row[3]);
328                                 PROCESS_YUV_PIXEL(x + 1, row[2], row[1], row[3]);
329                                 row += 4*sizeof(uint8_t);
330                         }
331                 }
332                 break;
333
334         default:
335                 printf("ScopeUnit::process_package %d: color_model=%d unrecognized\n",
336                         __LINE__, gui->data_frame->get_color_model());
337                 break;
338         }
339 }
340
341
342 ScopeEngine::ScopeEngine(ScopeGUI *gui, int cpus)
343  : LoadServer(cpus, cpus)
344 {
345 //printf("ScopeEngine::ScopeEngine %d cpus=%d\n", __LINE__, cpus);
346         this->gui = gui;
347 }
348
349 ScopeEngine::~ScopeEngine()
350 {
351 }
352
353 void ScopeEngine::init_packages()
354 {
355         int y = 0, h = gui->data_frame->get_h();
356         for( int i=0,n=LoadServer::get_total_packages(); i<n; ) {
357                 ScopePackage *pkg = (ScopePackage*)get_package(i);
358                 pkg->row1 = y;
359                 pkg->row2 = y = (++i * h) / n;
360         }
361
362         for( int i=0,n=LoadServer::get_total_packages(); i<n; ++i ) {
363                 ScopeUnit *unit = (ScopeUnit*)get_client(i);
364                 for( int j=0; j<HIST_SECTIONS; ++j )
365                         bzero(unit->bins[j], sizeof(int) * TOTAL_BINS);
366         }
367 }
368
369
370 LoadClient* ScopeEngine::new_client()
371 {
372         return new ScopeUnit(gui, this);
373 }
374
375 LoadPackage* ScopeEngine::new_package()
376 {
377         return new ScopePackage;
378 }
379
380 void ScopeEngine::process()
381 {
382         process_packages();
383
384         for(int i = 0; i < HIST_SECTIONS; i++)
385                 bzero(gui->bins[i], sizeof(int) * TOTAL_BINS);
386
387         for(int i=0,n=get_total_clients(); i<n; ++i ) {
388                 ScopeUnit *unit = (ScopeUnit*)get_client(i);
389                 for( int j=0; j<HIST_SECTIONS; ++j ) {
390                         int *bp = gui->bins[j], *up = unit->bins[j];
391                         for( int k=TOTAL_BINS; --k>=0; ++bp,++up ) *bp += *up;
392                 }
393         }
394 }
395
396
397 ScopeGUI::ScopeGUI(Theme *theme,
398         int x, int y, int w, int h, int cpus)
399  : PluginClientWindow(_(PROGRAM_NAME ": Scopes"),
400         x, y, w, h, MIN_SCOPE_W, MIN_SCOPE_H, 1)
401 {
402         this->x = x;
403         this->y = y;
404         this->w = w;
405         this->h = h;
406         this->theme = theme;
407         this->cpus = cpus;
408         reset();
409 }
410
411 ScopeGUI::ScopeGUI(PluginClient *plugin, int w, int h)
412  : PluginClientWindow(plugin, w, h, MIN_SCOPE_W, MIN_SCOPE_H, 1)
413 {
414         this->x = get_x();
415         this->y = get_y();
416         this->w = w;
417         this->h = h;
418         this->theme = plugin->get_theme();
419         this->cpus = plugin->PluginClient::smp + 1;
420         reset();
421 }
422
423 ScopeGUI::~ScopeGUI()
424 {
425         delete waveform_vframe;
426         delete vector_vframe;
427         delete wheel_vframe;
428         delete engine;
429         delete box_blur;
430         delete temp_frame;
431         delete wave_slider;
432         delete vect_slider;
433         delete grat_image;
434         delete overlay;
435 }
436
437 void ScopeGUI::reset()
438 {
439         waveform_vframe = 0;
440         vector_vframe = 0;
441         wheel_vframe = 0;
442         engine = 0;
443         box_blur = 0;
444         temp_frame = 0;
445         wave_slider = 0;
446         vect_slider = 0;
447         grat_image = 0;
448         overlay = 0;
449         grat_idx = 0;
450         vect_grats = 0;
451
452         output_frame = 0;
453         data_frame = 0;
454         frame_w = 1;
455         use_smooth = 1;
456         use_wave_gain = 5;
457         use_vect_gain = 5;
458         use_hist = 0;
459         use_wave = 1;
460         use_vector = 1;
461         use_hist_parade = 0;
462         use_wave_parade = 0;
463         use_graticule = 0;
464         waveform = 0;
465         vectorscope = 0;
466         histogram = 0;
467         wave_w = wave_h = 0;
468         vector_w = vector_h = 0;
469         vector_cx = vector_cy = 0;
470         radius = 0;
471         text_color = GREEN;
472         dark_color = (text_color>>2) & 0x3f3f3f;
473         BC_Resources *resources = BC_WindowBase::get_resources();
474         if( resources->bg_color == 0xffffff )
475                 text_color = dark_color;
476 }
477
478 void ScopeGUI::create_objects()
479 {
480         if( use_hist && use_hist_parade )
481                 use_hist = 0;
482         if( use_wave && use_wave_parade )
483                 use_wave = 0;
484         if( !engine ) engine = new ScopeEngine(this, cpus);
485         grat_idx = use_graticule; // last graticule
486         use_graticule = 0;
487
488         lock_window("ScopeGUI::create_objects");
489         int margin = theme->widget_border;
490         int x = margin;
491         int y = margin;
492         add_subwindow(smooth = new ScopeSmooth(this, x, y));
493         y += smooth->get_h() + margin;
494         add_subwindow(scope_menu = new ScopeMenu(this, x, y));
495         scope_menu->create_objects();
496         y += scope_menu->get_h() + margin;
497
498         create_panels();
499         update_toggles();
500         show_window();
501         update_scope();
502         unlock_window();
503 }
504
505 void ScopeGUI::create_panels()
506 {
507         calculate_sizes(get_w(), get_h());
508         int slider_w = xS(100);
509         int margin = theme->widget_border;
510         if( (use_wave || use_wave_parade) ) {
511                 int px = wave_x + wave_w - slider_w - xS(5);
512                 int py = wave_y - ScopeGain::calculate_h() - yS(5);
513                 if( !waveform ) {
514                         add_subwindow(waveform = new ScopeWaveform(this,
515                                 wave_x, wave_y, wave_w, wave_h));
516                         waveform->create_objects();
517                         wave_slider = new ScopeWaveSlider(this, px, py, slider_w);
518                         wave_slider->create_objects();
519                 }
520                 else {
521                         waveform->reposition_window(
522                                 wave_x, wave_y, wave_w, wave_h);
523                         waveform->clear_box(0, 0, wave_w, wave_h);
524                         wave_slider->reposition_window(px, py);
525                 }
526         }
527         else if( !(use_wave || use_wave_parade) && waveform ) {
528                 delete waveform;     waveform = 0;
529                 delete wave_slider;  wave_slider = 0;
530         }
531
532         if( use_vector ) {
533                 int vx = vector_x + vector_w - slider_w - xS(5);
534                 int vy = vector_y - ScopeGain::calculate_h() - yS(5);
535                 if( !vectorscope ) {
536                         add_subwindow(vectorscope = new ScopeVectorscope(this,
537                                 vector_x, vector_y, vector_w, vector_h));
538                         vectorscope->create_objects();
539                         vect_slider = new ScopeVectSlider(this, vx, vy, slider_w);
540                         vect_slider->create_objects();
541                         if( use_vector < 0 ) {
542                                 vect_grats = new ScopeVectGrats(this, vx, 2*margin);
543                                 add_subwindow(vect_grats);
544                                 vect_grats->create_objects();
545                         }
546                 }
547                 else {
548                         vectorscope->reposition_window(
549                                 vector_x, vector_y, vector_w, vector_h);
550                         vectorscope->clear_box(0, 0, vector_w, vector_h);
551                         vect_slider->reposition_window(vx, vy);
552                         if( use_vector > 0 ) {
553                                 delete vect_grats;  vect_grats = 0;
554                         }
555                         else if( !vect_grats ) {
556                                 vect_grats = new ScopeVectGrats(this, vx, 2*margin);
557                                 add_subwindow(vect_grats);
558                                 vect_grats->create_objects();
559                         }
560                         else
561                                 vect_grats->reposition_window(vx, 2*margin);
562                 }
563         }
564         else if( !use_vector && vectorscope ) {
565                 delete vectorscope;  vectorscope = 0;
566                 delete vect_slider;  vect_slider = 0;
567                 delete vect_grats;   vect_grats = 0;
568         }
569
570         if( (use_hist || use_hist_parade) ) {
571                 if( !histogram ) {
572 // printf("ScopeGUI::create_panels %d %d %d %d %d\n", __LINE__,
573 //  hist_x, hist_y, hist_w, hist_h);
574                         add_subwindow(histogram = new ScopeHistogram(this,
575                                 hist_x, hist_y, hist_w, hist_h));
576                         histogram->create_objects();
577                 }
578                 else {
579                         histogram->reposition_window(
580                                 hist_x, hist_y, hist_w, hist_h);
581                         histogram->clear_box(0, 0, hist_w, hist_h);
582                 }
583         }
584         else if( !(use_hist || use_hist_parade) ) {
585                 delete histogram;  histogram = 0;
586         }
587
588         allocate_vframes();
589         clear_points(0);
590         draw_overlays(1, 1, 0);
591 }
592
593 void ScopeGUI::clear_points(int flash)
594 {
595         if( histogram )
596                 histogram->clear_point();
597         if( waveform )
598                 waveform->clear_point();
599         if( vectorscope )
600                 vectorscope->clear_point();
601         if( histogram && flash )
602                 histogram->flash(0);
603         if( waveform && flash )
604                 waveform->flash(0);
605         if( vectorscope && flash )
606                 vectorscope->flash(0);
607 }
608
609 void ScopeGUI::toggle_event()
610 {
611 }
612
613 void ScopeGUI::calculate_sizes(int w, int h)
614 {
615         int margin = theme->widget_border;
616         int menu_h = smooth->get_h() + scope_menu->get_h() + margin * 3;
617         int text_w = get_text_width(SMALLFONT, "000") + margin * 2;
618         int total_panels = ((use_hist || use_hist_parade) ? 1 : 0) +
619                 ((use_wave || use_wave_parade) ? 1 : 0) +
620                 (use_vector ? 1 : 0);
621         int x = margin;
622
623         int panel_w = (w - margin) / (total_panels > 0 ? total_panels : 1);
624 // Vectorscope determines the size of everything else
625 // Always last panel
626         vector_w = 0;
627         if( use_vector ) {
628                 vector_x = w - panel_w + text_w;
629                 vector_w = w - margin - vector_x;
630                 vector_y = menu_h;
631                 vector_h = h - vector_y - margin;
632
633                 if( vector_w > vector_h ) {
634                         vector_w = vector_h;
635                         vector_x = w - margin - vector_w;
636                 }
637                 --total_panels;
638                 if(total_panels > 0)
639                         panel_w = (vector_x - text_w - margin) / total_panels;
640         }
641         vector_cx = vector_w / 2;
642         vector_cy = vector_h / 2;
643         radius = bmin(vector_cx, vector_cy);
644
645 // Histogram is always 1st panel
646         if( use_hist || use_hist_parade ) {
647                 hist_x = x;
648                 hist_y = menu_h;
649                 hist_w = panel_w - margin;
650                 hist_h = h - hist_y - margin;
651
652                 --total_panels;
653                 x += panel_w;
654         }
655
656         if( use_wave || use_wave_parade ) {
657                 wave_x = x + text_w;
658                 wave_y = menu_h;
659                 wave_w = panel_w - margin - text_w;
660                 wave_h = h - wave_y - margin;
661         }
662
663 }
664
665
666 void ScopeGUI::allocate_vframes()
667 {
668         if(waveform_vframe) delete waveform_vframe;
669         if(vector_vframe) delete vector_vframe;
670         if(wheel_vframe) delete wheel_vframe;
671
672         int w, h;
673 //printf("ScopeGUI::allocate_vframes %d %d %d %d %d\n", __LINE__,
674 // wave_w, wave_h, vector_w, vector_h);
675         int xs16 = xS(16), ys16 = yS(16);
676         w = MAX(wave_w, xs16);
677         h = MAX(wave_h, ys16);
678         waveform_vframe = new VFrame(w, h, BC_RGB888);
679         w = MAX(vector_w, xs16);
680         h = MAX(vector_h, ys16);
681         vector_vframe = new VFrame(w, h, BC_RGBA8888);
682         vector_vframe->set_clear_color(BLACK, 0xff);
683         wheel_vframe = 0;
684 }
685
686
687 int ScopeGUI::resize_event(int w, int h)
688 {
689         clear_box(0, 0, w, h);
690         this->w = w;
691         this->h = h;
692         calculate_sizes(w, h);
693         int margin = theme->widget_border;
694
695         if( waveform ) {
696                 waveform->reposition_window(wave_x, wave_y, wave_w, wave_h);
697                 waveform->clear_box(0, 0, wave_w, wave_h);
698                 int px = wave_x + wave_w - wave_slider->get_w() - margin;
699                 int py = wave_y - wave_slider->get_h() - margin;
700                 wave_slider->reposition_window(px, py);
701         }
702
703         if( histogram ) {
704                 histogram->reposition_window(hist_x, hist_y, hist_w, hist_h);
705                 histogram->clear_box(0, 0, hist_w, hist_h);
706         }
707
708         if( vectorscope ) {
709                 vectorscope->reposition_window(vector_x, vector_y, vector_w, vector_h);
710                 vectorscope->clear_box(0, 0, vector_w, vector_h);
711                 int vx = vector_x + vector_w - vect_slider->get_w() - margin;
712                 int vy = vector_y - vect_slider->get_h() - margin;
713                 vect_slider->reposition_window(vx, vy);
714                 if( vect_grats )
715                         vect_grats->reposition_window(vx, 2*margin);
716         }
717
718         allocate_vframes();
719         clear_points(0);
720         draw_overlays(1, 1, 1);
721         update_scope();
722         return 1;
723 }
724
725 int ScopeGUI::translation_event()
726 {
727         x = get_x();
728         y = get_y();
729         PluginClientWindow::translation_event();
730         return 0;
731 }
732
733
734 void ScopeGUI::draw_overlays(int overlays, int borders, int flush)
735 {
736         int margin = theme->widget_border;
737         if( overlays && borders ) {
738                 clear_box(0, 0, get_w(), get_h());
739         }
740
741         if( overlays ) {
742                 set_line_dashes(1);
743                 set_color(text_color);
744                 set_font(SMALLFONT);
745
746                 if( histogram && (use_hist || use_hist_parade) ) {
747                         histogram->draw_line(hist_w * -FLOAT_MIN / (FLOAT_MAX - FLOAT_MIN), 0,
748                                         hist_w * -FLOAT_MIN / (FLOAT_MAX - FLOAT_MIN), hist_h);
749                         histogram->draw_line(hist_w * (1.0 - FLOAT_MIN) / (FLOAT_MAX - FLOAT_MIN), 0,
750                                         hist_w * (1.0 - FLOAT_MIN) / (FLOAT_MAX - FLOAT_MIN), hist_h);
751                         set_line_dashes(0);
752                         histogram->draw_point();
753                         set_line_dashes(1);
754                         histogram->flash(0);
755                 }
756
757 // Waveform overlay
758                 if( waveform && (use_wave || use_wave_parade) ) {
759                         for( int i=0; i<=WAVEFORM_DIVISIONS; ++i ) {
760                                 int y = wave_h * i / WAVEFORM_DIVISIONS;
761                                 int text_y = y + wave_y + get_text_ascent(SMALLFONT) / 2;
762                                 CLAMP(text_y, waveform->get_y() + get_text_ascent(SMALLFONT), waveform->get_y() + waveform->get_h() - 1);
763                                 char string[BCTEXTLEN];
764                                 sprintf(string, "%d", (int)lround((FLOAT_MAX -
765                                         i * (FLOAT_MAX - FLOAT_MIN) / WAVEFORM_DIVISIONS) * 100));
766                                 int text_x = wave_x - get_text_width(SMALLFONT, string) - margin;
767                                 set_color(text_color);
768                                 draw_text(text_x, text_y, string);
769                                 CLAMP(y, 0, waveform->get_h() - 1);
770                                 set_color(dark_color);
771                                 waveform->draw_line(0, y, wave_w, y);
772                                 waveform->draw_rectangle(0, 0, wave_w, wave_h);
773                         }
774                         set_line_dashes(0);
775                         waveform->draw_point();
776                         set_line_dashes(1);
777                         waveform->flash(0);
778                 }
779 // Vectorscope overlay
780                 if( vectorscope && use_vector ) {
781                         set_color(text_color);
782                         vectorscope->draw_point();
783                         vectorscope->flash(0);
784                         set_line_dashes(1);
785                 }
786
787                 set_font(MEDIUMFONT);
788                 set_line_dashes(0);
789         }
790
791         if( borders ) {
792                 if( use_hist || use_hist_parade ) {
793                         draw_3d_border(hist_x - 2, hist_y - 2, hist_w + 4, hist_h + 4,
794                                 get_bg_color(), BLACK, MDGREY, get_bg_color());
795                 }
796                 if( use_wave || use_wave_parade ) {
797                         draw_3d_border(wave_x - 2, wave_y - 2, wave_w + 4, wave_h + 4,
798                                 get_bg_color(), BLACK, MDGREY, get_bg_color());
799                 }
800                 if( use_vector ) {
801                         draw_3d_border(vector_x - 2, vector_y - 2, vector_w + 4, vector_h + 4,
802                                 get_bg_color(), BLACK, MDGREY, get_bg_color());
803                 }
804         }
805
806         flash(0);
807         if(flush) this->flush();
808 }
809
810 void ScopeGUI::draw_scope()
811 {
812         int graticule = use_vector < 0 ? grat_idx : 0;
813         if( grat_image && use_graticule != graticule ) {
814                 delete grat_image;   grat_image = 0;
815         }
816         if( !grat_image && graticule > 0 )
817                 grat_image = VFramePng::vframe_png(grat_paths[graticule]);
818         if( grat_image ) {
819                 if( !overlay )
820                         overlay = new OverlayFrame(1);
821                 int cx = vector_cx, cy = vector_cy, r = radius;
822                 int iw = grat_image->get_w(), ih = grat_image->get_h();
823                 overlay->overlay(vector_vframe, grat_image,
824                         0,0, iw, ih, cx-r,cy-r, cx+r, cy+r,
825                         1, TRANSFER_NORMAL, CUBIC_CUBIC);
826         }
827         use_graticule = graticule;
828         vectorscope->draw_vframe(vector_vframe);
829         if( use_vector > 0 ) {
830                 int margin = theme->widget_border;
831                 set_line_dashes(1);
832                 for( int i=1; i<=VECTORSCOPE_DIVISIONS; i+=2 ) {
833                         int y = vector_cy - radius * i / VECTORSCOPE_DIVISIONS;
834                         int text_y = y + vector_y + get_text_ascent(SMALLFONT) / 2;
835                         set_color(text_color);
836                         char string[BCTEXTLEN];
837                         sprintf(string, "%d",
838                                 (int)((FLOAT_MAX / VECTORSCOPE_DIVISIONS * i) * 100));
839                         int text_x = vector_x - get_text_width(SMALLFONT, string) - margin;
840                         draw_text(text_x, text_y, string);
841                         int x = vector_cx - radius * i / VECTORSCOPE_DIVISIONS;
842                         int w = radius * i / VECTORSCOPE_DIVISIONS * 2;
843                         int h = radius * i / VECTORSCOPE_DIVISIONS * 2;
844                         if( i+2 > VECTORSCOPE_DIVISIONS )
845                                 set_line_dashes(0);
846                         set_color(dark_color);
847                         vectorscope->draw_circle(x, y, w, h);
848                 }
849                 float th = TO_RAD(90 + 32.875);
850                 vectorscope->draw_radient(th, 0.1f, .75f, dark_color);
851         }
852 }
853
854
855 void ScopeGUI::update_graticule(int idx)
856 {
857         grat_idx = idx;
858         update_scope();
859         toggle_event();
860 }
861
862 void ScopeGUI::draw_colorwheel(VFrame *dst, int bg_color)
863 {
864 // downfactor radius to prevent extreme edge from showing behind graticule
865         float cx = vector_cx, cy = vector_cy, rad = radius * 0.99;
866         int color_model = dst->get_color_model();
867         int bpp = BC_CModels::calculate_pixelsize(color_model);
868         int bg_r = (bg_color>>16) & 0xff;
869         int bg_g = (bg_color>> 8) & 0xff;
870         int bg_b = (bg_color>> 0) & 0xff;
871         int w = dst->get_w(), h = dst->get_h();
872         unsigned char **rows = dst->get_rows();
873         for( int y=0; y<h; ++y ) {
874                 unsigned char *row = rows[y];
875                 for( int x=0; x<w; ++x,row+=bpp ) {
876                         int dx = cx-x, dy = cy-y;
877                         float d = sqrt(dx*dx + dy*dy);
878                         float r, g, b;
879                         if( d < rad ) {
880                                 float h = TO_DEG(atan2(cx-x, cy-y));
881                                 if( h < 0 ) h += 360;
882                                 float s = d / rad, v = 255;
883                                 HSV::hsv_to_rgb(r, g, b, h, s, v);
884                         }
885                         else {
886                                  r = bg_r; g = bg_g; b = bg_b;
887                         }
888                         row[0] = r; row[1] = g; row[2] = b;  row[3] = 0xff;
889                 }
890         }
891 }
892
893
894 void ScopeGUI::process(VFrame *output_frame)
895 {
896         lock_window("ScopeGUI::process");
897         this->output_frame = output_frame;
898         int ow = output_frame->get_w(), oh = output_frame->get_h();
899         if( use_smooth ) {
900                 VFrame::get_temp(temp_frame, ow, oh, BC_RGB161616);
901                 temp_frame->transfer_from(output_frame);
902                 if( !box_blur ) box_blur = new BoxBlur(cpus);
903                 box_blur->blur(temp_frame, temp_frame, 2, 2);
904                 data_frame = temp_frame;
905         }
906         else
907                 data_frame = output_frame;
908         frame_w = data_frame->get_w();
909         bzero(waveform_vframe->get_data(), waveform_vframe->get_data_size());
910         if( use_vector > 0 )
911                 vector_vframe->clear_frame();
912         else if( use_vector < 0 ) {
913                 if( wheel_vframe && (
914                      wheel_vframe->get_w() != vector_w ||
915                      wheel_vframe->get_h() != vector_h ) ) {
916                         delete wheel_vframe;  wheel_vframe = 0;
917                 }
918                 if( !wheel_vframe ) {
919                         wheel_vframe = new VFrame(vector_w, vector_h, BC_RGBA8888);
920                         draw_colorwheel(wheel_vframe, BLACK);
921                 }
922                 vector_vframe->copy_from(wheel_vframe);
923         }
924         engine->process();
925
926         if( histogram )
927                 histogram->draw(0, 0);
928         if( waveform )
929                 waveform->draw_vframe(waveform_vframe);
930         if( vectorscope )
931                 draw_scope();
932
933         draw_overlays(1, 0, 1);
934         unlock_window();
935 }
936
937 void ScopeGUI::update_toggles()
938 {
939         scope_menu->update_toggles();
940 }
941
942 ScopePanel::ScopePanel(ScopeGUI *gui, int x, int y, int w, int h)
943  : BC_SubWindow(x, y, w, h, BLACK)
944 {
945         this->gui = gui;
946         is_dragging = 0;
947 }
948
949 void ScopePanel::create_objects()
950 {
951         set_cursor(CROSS_CURSOR, 0, 0);
952         clear_box(0, 0, get_w(), get_h());
953 }
954
955 void ScopePanel::update_point(int x, int y)
956 {
957 }
958
959 void ScopePanel::draw_point()
960 {
961 }
962
963 void ScopePanel::clear_point()
964 {
965 }
966
967 int ScopePanel::button_press_event()
968 {
969         if( is_event_win() && cursor_inside() ) {
970                 gui->clear_points(1);
971                 is_dragging = 1;
972                 int x = get_cursor_x();
973                 int y = get_cursor_y();
974                 CLAMP(x, 0, get_w() - 1);
975                 CLAMP(y, 0, get_h() - 1);
976                 update_point(x, y);
977                 return 1;
978         }
979         return 0;
980 }
981
982
983 int ScopePanel::cursor_motion_event()
984 {
985         if( is_dragging ) {
986                 int x = get_cursor_x();
987                 int y = get_cursor_y();
988                 CLAMP(x, 0, get_w() - 1);
989                 CLAMP(y, 0, get_h() - 1);
990                 update_point(x, y);
991                 return 1;
992         }
993         return 0;
994 }
995
996
997 int ScopePanel::button_release_event()
998 {
999         if( is_dragging ) {
1000                 is_dragging = 0;
1001                 hide_tooltip();
1002                 return 1;
1003         }
1004         return 0;
1005 }
1006
1007
1008 ScopeWaveform::ScopeWaveform(ScopeGUI *gui,
1009                 int x, int y, int w, int h)
1010  : ScopePanel(gui, x, y, w, h)
1011 {
1012         drag_x = -1;
1013         drag_y = -1;
1014 }
1015
1016 void ScopeWaveform::update_point(int x, int y)
1017 {
1018         draw_point();
1019         drag_x = x;
1020         drag_y = y;
1021         int frame_x = x * gui->frame_w / get_w();
1022
1023         if( gui->use_wave_parade ) {
1024                 if( x > get_w() / 3 * 2 )
1025                         frame_x = (x - get_w() / 3 * 2) * gui->frame_w / (get_w() / 3);
1026                 else if( x > get_w() / 3 )
1027                         frame_x = (x - get_w() / 3) * gui->frame_w / (get_w() / 3);
1028                 else
1029                         frame_x = x * gui->frame_w / (get_w() / 3);
1030         }
1031
1032         float value = ((float)get_h() - y) / get_h() * (FLOAT_MAX - FLOAT_MIN) + FLOAT_MIN;
1033         char string[BCTEXTLEN];
1034         sprintf(string, "X: %d Value: %.3f", frame_x, value);
1035         show_tooltip(string);
1036
1037         draw_point();
1038         flash(1);
1039 }
1040
1041 void ScopeWaveform::draw_point()
1042 {
1043         if( drag_x >= 0 ) {
1044                 set_inverse();
1045                 set_color(0xffffff);
1046                 set_line_width(2);
1047                 draw_line(0, drag_y, get_w(), drag_y);
1048                 draw_line(drag_x, 0, drag_x, get_h());
1049                 set_line_width(1);
1050                 set_opaque();
1051         }
1052 }
1053
1054 void ScopeWaveform::clear_point()
1055 {
1056         draw_point();
1057         drag_x = -1;
1058         drag_y = -1;
1059 }
1060
1061 ScopeVectorscope::ScopeVectorscope(ScopeGUI *gui,
1062                 int x, int y, int w, int h)
1063  : ScopePanel(gui, x, y, w, h)
1064 {
1065         drag_radius = 0;
1066         drag_angle = 0;
1067 }
1068
1069 void ScopeVectorscope::clear_point()
1070 {
1071 // Hide it
1072         draw_point();
1073         drag_radius = 0;
1074         drag_angle = 0;
1075 }
1076
1077 void ScopeVectorscope::update_point(int x, int y)
1078 {
1079 // Hide it
1080         draw_point();
1081         int dx = x - gui->vector_cx, dy = y - gui->vector_cy;
1082         drag_radius = sqrt(dx*dx + dy*dy);
1083         if( drag_radius > gui->radius ) drag_radius = gui->radius;
1084         float saturation = (float)drag_radius / gui->radius * FLOAT_MAX;
1085         drag_angle = atan2(-dy, dx);
1086         float hue = TO_DEG(drag_angle) - 90;
1087         if( hue < 0 ) hue += 360;
1088
1089         char string[BCTEXTLEN];
1090         sprintf(string, "Hue: %.3f Sat: %.3f", hue, saturation);
1091         show_tooltip(string);
1092
1093 // Show it
1094         draw_point();
1095         flash(1);
1096 }
1097
1098 void ScopeVectorscope::draw_point()
1099 {
1100         set_inverse();
1101         draw_point(drag_angle, drag_radius, RED);
1102         set_opaque();
1103 }
1104
1105 void ScopeVectorscope::draw_point(float th, float r, int color)
1106 {
1107         if( r > 0 ) {
1108                 set_color(color);
1109                 set_line_width(2);
1110                 int cx = gui->vector_cx, cy = gui->vector_cy;
1111                 draw_circle(cx-r, cy-r, r*2, r*2);
1112                 set_line_width(1);
1113                 float radius = gui->radius;
1114                 draw_radient(th, 0.f, drag_radius/radius, color);
1115         }
1116 }
1117
1118 void ScopeVectorscope::draw_radient(float th, float r1, float r2, int color)
1119 {
1120         if( r2 > 0 && r2 >= r1 ) {
1121                 set_color(color);
1122                 set_line_width(2);
1123                 int r = gui->radius;
1124                 double cth = r*cos(th), sth = -r*sin(th);
1125                 int cx = gui->vector_cx, cy = gui->vector_cy;
1126                 draw_line(cx+r1*cth, cy+r1*sth, cx+r2*cth, cy+r2*sth);
1127                 set_line_width(1);
1128         }
1129 }
1130
1131
1132 ScopeHistogram::ScopeHistogram(ScopeGUI *gui,
1133                 int x, int y, int w, int h)
1134  : ScopePanel(gui, x, y, w, h)
1135 {
1136         drag_x = -1;
1137 }
1138
1139 void ScopeHistogram::clear_point()
1140 {
1141 // Hide it
1142         draw_point();
1143         drag_x = -1;
1144 }
1145
1146 void ScopeHistogram::draw_point()
1147 {
1148         if( drag_x >= 0 ) {
1149                 set_inverse();
1150                 set_color(0xffffff);
1151                 set_line_width(2);
1152                 draw_line(drag_x, 0, drag_x, get_h());
1153                 set_line_width(1);
1154                 set_opaque();
1155         }
1156 }
1157
1158 void ScopeHistogram::update_point(int x, int y)
1159 {
1160         draw_point();
1161         drag_x = x;
1162         float value = (float)x / get_w() * (FLOAT_MAX - FLOAT_MIN) + FLOAT_MIN;
1163
1164         char string[BCTEXTLEN];
1165         sprintf(string, "Value: %.3f", value);
1166         show_tooltip(string);
1167
1168         draw_point();
1169         flash(1);
1170 }
1171
1172
1173
1174 void ScopeHistogram::draw_mode(int mode, int color, int y, int h)
1175 {
1176 // Highest of all bins
1177         int normalize = 1, w = get_w();
1178         int *bin = gui->bins[mode], v;
1179         for( int i=0; i<TOTAL_BINS; ++i )
1180                 if( (v=bin[i]) > normalize ) normalize = v;
1181         double norm = normalize>1 ? log(normalize) : 1e-4;
1182         double vnorm = h / norm;
1183         set_color(color);
1184         for( int x=0; x<w; ++x ) {
1185                 int accum_start = (int)(x * TOTAL_BINS / w);
1186                 int accum_end = (int)((x + 1) * TOTAL_BINS / w);
1187                 CLAMP(accum_start, 0, TOTAL_BINS);
1188                 CLAMP(accum_end, 0, TOTAL_BINS);
1189                 int max = 0;
1190                 for(int i=accum_start; i<accum_end; ++i )
1191                         if( (v=bin[i]) > max ) max = v;
1192 //              max = max * h / normalize;
1193                 max = log(max) * vnorm;
1194                 draw_line(x,y+h - max, x,y+h);
1195         }
1196 }
1197 void ScopeHistogram::draw(int flash, int flush)
1198 {
1199         clear_box(0, 0, get_w(), get_h());
1200         if( gui->use_hist_parade ) {
1201                 draw_mode(0, 0xff0000, 0, get_h() / 3);
1202                 draw_mode(1, 0x00ff00, get_h() / 3, get_h() / 3);
1203                 draw_mode(2, 0x0000ff, get_h() / 3 * 2, get_h() / 3);
1204         }
1205         else {
1206                 draw_mode(3, LTGREY, 0, get_h());
1207         }
1208
1209         if(flash) this->flash(0);
1210         if(flush) this->flush();
1211 }
1212
1213
1214 ScopeScopesOn::ScopeScopesOn(ScopeMenu *scope_menu, const char *text, int id)
1215  : BC_MenuItem(text)
1216 {
1217         this->scope_menu = scope_menu;
1218         this->id = id;
1219 }
1220
1221 int ScopeScopesOn::handle_event()
1222 {
1223         int v = get_checked() ? 0 : 1;
1224         set_checked(v);
1225         ScopeGUI *gui = scope_menu->gui;
1226         switch( id ) {
1227         case SCOPE_HISTOGRAM:
1228                 gui->use_hist = v;
1229                 if( v ) gui->use_hist_parade = 0;
1230                 break;
1231         case SCOPE_HISTOGRAM_RGB:
1232                 gui->use_hist_parade = v;
1233                 if( v ) gui->use_hist = 0;
1234                 break;
1235         case SCOPE_WAVEFORM:
1236                 gui->use_wave = v;
1237                 if( v ) gui->use_wave_parade = 0;
1238                 break;
1239         case SCOPE_WAVEFORM_RGB:
1240                 gui->use_wave_parade = v;
1241                 if( v ) gui->use_wave = 0;
1242                 break;
1243         case SCOPE_WAVEFORM_PLY:
1244                 gui->use_wave_parade = -v;
1245                 if( v ) gui->use_wave = 0;
1246                 break;
1247         case SCOPE_VECTORSCOPE:
1248                 gui->use_vector = v;
1249                 break;
1250         case SCOPE_VECTORWHEEL:
1251                 gui->use_vector = -v;
1252                 break;
1253         }
1254         gui->toggle_event();
1255         gui->update_toggles();
1256         gui->create_panels();
1257         gui->update_scope();
1258         gui->show_window();
1259         return 1;
1260 }
1261
1262 ScopeMenu::ScopeMenu(ScopeGUI *gui, int x, int y)
1263  : BC_PopupMenu(x, y, xS(100), _("Scopes"))
1264 {
1265         this->gui = gui;
1266 }
1267
1268 void ScopeMenu::create_objects()
1269 {
1270         add_item(hist_on =
1271                 new ScopeScopesOn(this, _("Histogram"), SCOPE_HISTOGRAM));
1272         add_item(hist_rgb_on =
1273                 new ScopeScopesOn(this, _("Histogram RGB"), SCOPE_HISTOGRAM_RGB));
1274         add_item(new BC_MenuItem("-"));
1275         add_item(wave_on =
1276                 new ScopeScopesOn(this, _("Waveform"), SCOPE_WAVEFORM));
1277         add_item(wave_rgb_on =
1278                 new ScopeScopesOn(this, _("Waveform RGB"), SCOPE_WAVEFORM_RGB));
1279         add_item(wave_ply_on =
1280                 new ScopeScopesOn(this, _("Waveform ply"), SCOPE_WAVEFORM_PLY));
1281         add_item(new BC_MenuItem("-"));
1282         add_item(vect_on =
1283                 new ScopeScopesOn(this, _("Vectorscope"), SCOPE_VECTORSCOPE));
1284         add_item(vect_wheel =
1285                 new ScopeScopesOn(this, _("VectorWheel"), SCOPE_VECTORWHEEL));
1286 }
1287
1288 void ScopeMenu::update_toggles()
1289 {
1290         hist_on->set_checked(gui->use_hist);
1291         hist_rgb_on->set_checked(gui->use_hist_parade);
1292         wave_on->set_checked(gui->use_wave);
1293         wave_rgb_on->set_checked(gui->use_wave_parade>0);
1294         wave_ply_on->set_checked(gui->use_wave_parade<0);
1295         vect_on->set_checked(gui->use_vector>0);
1296         vect_wheel->set_checked(gui->use_vector<0);
1297 }
1298
1299
1300 ScopeVectGrats::ScopeVectGrats(ScopeGUI *gui, int x, int y)
1301  : BC_PopupMenu(x, y, _("Overlay"))
1302 {
1303         this->gui = gui;
1304 }
1305
1306 #define SCOPE_SEARCHPATH "/scopes"
1307 void ScopeVectGrats::create_objects()
1308 {
1309         gui->grat_paths.remove_all_objects();
1310         ScopeGratItem *item;
1311         add_item(item = new ScopeGratItem(this, _("none"), 0));
1312         if( item->idx == gui->grat_idx ) item->set_checked(1);
1313         gui->grat_paths.append(0);
1314         FileSystem fs;
1315         fs.set_filter("[*.png]");
1316         char scope_path[BCTEXTLEN];
1317         sprintf(scope_path, "%s%s", File::get_plugin_path(), SCOPE_SEARCHPATH);
1318         fs.update(scope_path);
1319         for( int i=0; i<fs.total_files(); ++i ) {
1320                 FileItem *file_item = fs.get_entry(i);
1321                 if( file_item->get_is_dir() ) continue;
1322                 strcpy(scope_path, file_item->get_name());
1323                 char *cp = strrchr(scope_path, '.');
1324                 if( cp ) *cp = 0;
1325                 add_item(item = new ScopeGratItem(this, scope_path, gui->grat_paths.size()));
1326                 if( item->idx == gui->grat_idx ) item->set_checked(1);
1327                 gui->grat_paths.append(cstrdup(file_item->get_path()));
1328         }
1329 }
1330
1331 ScopeGratItem::ScopeGratItem(ScopeVectGrats *vect_grats, const char *text, int idx)
1332  : BC_MenuItem(text)
1333 {
1334         this->vect_grats = vect_grats;
1335         this->idx = idx;
1336 }
1337
1338 int ScopeGratItem::handle_event()
1339 {
1340         for( int i=0,n=vect_grats->total_items(); i<n; ++i ) {
1341                 ScopeGratItem *item = (ScopeGratItem *)vect_grats->get_item(i);
1342                 item->set_checked(item->idx == idx);
1343         }       
1344         vect_grats->gui->update_graticule(idx);
1345         return 1;
1346 }
1347
1348
1349 ScopeGainReset::ScopeGainReset(ScopeGain *gain, int x, int y)
1350  : BC_Button(x, y, gain->gui->theme->get_image_set("reset_button"))
1351 {
1352         this->gain = gain;
1353 }
1354
1355 int ScopeGainReset::calculate_w(BC_Theme *theme)
1356 {
1357         VFrame *vfrm = *theme->get_image_set("reset_button");
1358         return vfrm->get_w();
1359 }
1360
1361 int ScopeGainReset::handle_event()
1362 {
1363         gain->slider->update(5);
1364         return gain->handle_event();
1365 }
1366
1367 ScopeGainSlider::ScopeGainSlider(ScopeGain *gain, int x, int y, int w)
1368  : BC_ISlider(x, y, 0, w, w, 1, 9, *gain->value)
1369 {
1370         this->gain = gain;
1371 }
1372
1373 int ScopeGainSlider::handle_event()
1374 {
1375         return gain->handle_event();
1376 }
1377
1378 ScopeGain::ScopeGain(ScopeGUI *gui, int x, int y, int w, int *value)
1379 {
1380         this->gui = gui;
1381         this->x = x;
1382         this->y = y;
1383         this->w = w;
1384         this->value = value;
1385
1386         slider = 0;
1387         reset = 0;
1388 }
1389 ScopeGain::~ScopeGain()
1390 {
1391         delete reset;
1392         delete slider;
1393 }
1394
1395 int ScopeGain::calculate_h()
1396 {
1397         return BC_ISlider::get_span(0);
1398 }
1399
1400 void ScopeGain::create_objects()
1401 {
1402         reset_w = ScopeGainReset::calculate_w(gui->theme);
1403         gui->add_subwindow(slider = new ScopeGainSlider(this, x, y, w-reset_w-xS(5)));
1404         gui->add_subwindow(reset = new ScopeGainReset(this, x+w-reset_w, y));
1405 }
1406
1407 int ScopeGain::handle_event()
1408 {
1409         *value = slider->get_value();
1410         gui->update_scope();
1411         gui->toggle_event();
1412         return 1;
1413 }
1414
1415 void ScopeGain::reposition_window(int x, int y)
1416 {
1417         this->x = x;  this->y = y;
1418         slider->reposition_window(x, y);
1419         reset->reposition_window(x+w-reset_w, y);
1420 }
1421
1422 ScopeWaveSlider::ScopeWaveSlider(ScopeGUI *gui, int x, int y, int w)
1423  : ScopeGain(gui, x, y, w, &gui->use_wave_gain)
1424 {
1425 }
1426
1427 ScopeVectSlider::ScopeVectSlider(ScopeGUI *gui, int x, int y, int w)
1428  : ScopeGain(gui, x, y, w, &gui->use_vect_gain)
1429 {
1430 }
1431
1432 ScopeSmooth::ScopeSmooth(ScopeGUI *gui, int x, int y)
1433  : BC_CheckBox(x, y, gui->use_smooth, _("Smooth"))
1434 {
1435         this->gui = gui;
1436 }
1437
1438 int ScopeSmooth::handle_event()
1439 {
1440         gui->use_smooth = get_value();
1441         gui->update_scope();
1442         gui->toggle_event();
1443         return 1;
1444 }
1445