4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "mainsession.h"
28 #include "videowindow.h"
31 #define _(String) gettext(String)
32 #define gettext_noop(String) String
33 #define N_(String) gettext_noop (String)
35 Scale::Scale(MWindow *mwindow)
36 : BC_MenuItem(_("Resize..."))
38 this->mwindow = mwindow;
39 thread = new ScaleThread(mwindow);
47 int Scale::handle_event()
52 ScaleThread::ScaleThread(MWindow *mwindow)
55 this->mwindow = mwindow;
59 ScaleThread::~ScaleThread() {}
61 void ScaleThread::run()
63 if(already_running) return;
65 constrain_ratio = mwindow->defaults->get("SCALECONSTRAIN", 0);
66 scale_data = mwindow->defaults->get("SCALEDATA", 0);
67 auto_aspect = mwindow->defaults->get("AUDIOASPECT", 0);
68 offsets[0] = offsets[1] = offsets[2] = offsets[3] = 0;
70 orig_dimension[0] = dimension[0] = mwindow->session->track_w;
71 orig_dimension[1] = dimension[1] = mwindow->session->track_h;
72 orig_dimension[2] = dimension[2] = mwindow->session->output_w;
73 orig_dimension[3] = dimension[3] = mwindow->session->output_h;
74 ratio[0] = ratio[1] = ratio[2] = ratio[3] = 1;
75 aspect_w = mwindow->session->aspect_w;
76 aspect_h = mwindow->session->aspect_h;
78 window = new ScaleWindow(this);
79 window->create_objects();
80 int result = window->run_window();
84 dummy_offsets[0] = dummy_offsets[1] = dummy_offsets[2] = dummy_offsets[3] = 0;
85 // Fake the offsets if data is scaled.
88 //mwindow->stop_playback(1);
89 // save the before undo
90 mwindow->undo->update_undo_edits(_("Resize"), 0);
91 mwindow->tracks->scale_video(dimension, scale_data ? dummy_offsets : offsets, scale_data);
92 mwindow->session->track_w = dimension[0];
93 mwindow->session->track_h = dimension[1];
94 mwindow->session->output_w = dimension[2];
95 mwindow->session->output_h = dimension[3];
96 mwindow->session->aspect_w = aspect_w;
97 mwindow->session->aspect_h = aspect_h;
98 mwindow->video_window->resize_window();
100 mwindow->undo->update_undo_edits();
101 mwindow->session->changes_made = 1;
102 mwindow->defaults->update("ASPECTW", aspect_w);
103 mwindow->defaults->update("ASPECTH", aspect_h);
104 mwindow->defaults->update("AUTOASPECT", auto_aspect);
108 mwindow->defaults->update("SCALECONSTRAIN", constrain_ratio);
109 mwindow->defaults->update("SCALEDATA", scale_data);
113 int ScaleThread::update_window(int offset_updated)
116 int i, result, modified_item, dimension_modified = 0, ratio_modified = 0;
118 for(i = 0, result = 0; i < 4 && !result; i++)
120 if(i == 2) pair_start = 2;
126 dimension_modified = 1;
139 if(dimension_modified)
140 ratio[modified_item] = (float)dimension[modified_item] / orig_dimension[modified_item];
142 if(ratio_modified && !constrain_ratio)
144 dimension[modified_item] = (int)(orig_dimension[modified_item] * ratio[modified_item]);
145 window->dimension[modified_item]->update((long)dimension[modified_item]);
148 for(i = pair_start; i < pair_start + 2 && constrain_ratio; i++)
150 if(dimension_modified ||
151 (i != modified_item && ratio_modified))
153 ratio[i] = ratio[modified_item];
154 window->ratio[i]->update(ratio[i]);
158 (i != modified_item && dimension_modified))
160 dimension[i] = (int)(orig_dimension[i] * ratio[modified_item]);
161 window->dimension[i]->update((long)dimension[i]);
166 // window->position1->draw();
167 // window->position2->draw();
168 //printf("%d\n", offsets[0]);
169 // if(!offset_updated)
171 // window->offsets[0]->update(offsets[0]);
172 // window->offsets[1]->update(offsets[1]);
173 // window->offsets[2]->update(offsets[2]);
174 // window->offsets[3]->update(offsets[3]);
177 update_aspect(window);
181 int ScaleThread::update_aspect(ScaleWindow *window)
186 mwindow->create_aspect_ratio(aspect_w, aspect_h, dimension[2], dimension[3]);
187 sprintf(string, "%.0f", aspect_w);
188 window->aspect_w->update(string);
189 sprintf(string, "%.0f", aspect_h);
190 window->aspect_h->update(string);
196 ScaleWindow::ScaleWindow(ScaleThread *thread)
197 : BC_Window(_(PROGRAM_NAME ": Scale"), 370, 260, 0, 0)
198 { this->thread = thread; }
200 ScaleWindow::~ScaleWindow()
204 void ScaleWindow::create_objects()
206 lock_window("ScaleWindow::create_objects");
208 add_subwindow(new BC_Title(x, y, _("New camera size:")));
209 add_subwindow(new BC_Title(x + 200, y, _("New projector size:")));
211 add_subwindow(new BC_Title(x, y, _("Width:")));
213 add_subwindow(dimension[0] = new ScaleSizeText(x, y, thread, &(thread->dimension[0])));
215 add_subwindow(new BC_Title(x, y, _("Width:")));
217 add_subwindow(dimension[2] = new ScaleSizeText(x, y, thread, &(thread->dimension[2])));
221 add_subwindow(new BC_Title(x, y, _("Height:")));
223 add_subwindow(dimension[1] = new ScaleSizeText(x, y, thread, &(thread->dimension[1])));
225 add_subwindow(new BC_Title(x, y, _("Height:")));
227 add_subwindow(dimension[3] = new ScaleSizeText(x, y, thread, &(thread->dimension[3])));
231 add_subwindow(new BC_Title(x, y, _("W Ratio:")));
233 add_subwindow(ratio[0] = new ScaleRatioText(x, y, thread, &(thread->ratio[0])));
235 add_subwindow(new BC_Title(x, y, _("W Ratio:")));
237 add_subwindow(ratio[2] = new ScaleRatioText(x, y, thread, &(thread->ratio[2])));
241 add_subwindow(new BC_Title(x, y, _("H Ratio:")));
243 add_subwindow(ratio[1] = new ScaleRatioText(x, y, thread, &(thread->ratio[1])));
245 add_subwindow(new BC_Title(x, y, _("H Ratio:")));
247 add_subwindow(ratio[3] = new ScaleRatioText(x, y, thread, &(thread->ratio[3])));
251 // add_subwindow(new BC_Title(x, y, "X Offset:"));
253 // add_subwindow(offsets[0] = new ScaleOffsetText(x, y, thread, &(thread->offsets[0])));
255 // add_subwindow(new BC_Title(x, y, "X Offset:"));
257 // add_subwindow(offsets[2] = new ScaleOffsetText(x, y, thread, &(thread->offsets[2])));
261 // add_subwindow(new BC_Title(x, y, "Y Offset:"));
263 // add_subwindow(offsets[1] = new ScaleOffsetText(x, y, thread, &(thread->offsets[1])));
265 // add_subwindow(new BC_Title(x, y, "Y Offset:"));
267 // add_subwindow(offsets[3] = new ScaleOffsetText(x, y, thread, &(thread->offsets[3])));
271 add_subwindow(new BC_Title(x, y, _("Aspect ratio:")));
274 sprintf(string, "%.0f", thread->aspect_w);
275 add_subwindow(aspect_w = new ScaleAspectW(x, y, thread, &(thread->aspect_w), string));
277 add_subwindow(new BC_Title(x, y, ":"));
279 sprintf(string, "%.0f", thread->aspect_h);
280 add_subwindow(aspect_h = new ScaleAspectH(x, y, thread, &(thread->aspect_h), string));
282 add_subwindow(new ScaleAspectAuto(x, y + 5, thread));
286 // add_subwindow(new BC_Title(x, y, _("Camera position:")));
288 // add_subwindow(new BC_Title(x, y, _("Projector position:")));
290 // ScalePosition *position;
293 // add_subwindow(position1 = new ScalePosition(x, y, thread, this,
294 // &(thread->orig_dimension[0]), &(thread->dimension[0]), &(thread->offsets[0])));
295 // position1->draw();
298 // add_subwindow(position2 = new ScalePosition(x, y, thread, this,
299 // &(thread->orig_dimension[2]), &(thread->dimension[2]), &(thread->offsets[2])));
300 // position2->draw();
304 add_subwindow(new ScaleConstrain(x, y, thread));
306 add_subwindow(new ScaleData(x, y, thread));
310 add_subwindow(new BC_OKButton(x, y));
312 add_subwindow(new BC_CancelButton(x, y));
316 ScaleSizeText::ScaleSizeText(int x, int y, ScaleThread *thread, int *output)
317 : BC_TextBox(x, y, 100, 1, *output)
319 this->thread = thread;
320 this->output = output;
322 ScaleSizeText::~ScaleSizeText() {}
323 int ScaleSizeText::handle_event()
325 *output = atol(get_text());
328 if(*output <= 0) *output = 2;
329 if(*output > 10000) *output = 10000;
331 thread->update_window();
334 ScaleOffsetText::ScaleOffsetText(int x, int y, ScaleThread *thread, int *output)
335 : BC_TextBox(x, y, 100, 1, *output)
336 { this->thread = thread; this->output = output; }
337 ScaleOffsetText::~ScaleOffsetText() {}
338 int ScaleOffsetText::handle_event()
340 *output = atol(get_text());
341 //if(*output <= 0) *output = 0;
342 if(*output > 10000) *output = 10000;
343 if(*output < -10000) *output = -10000;
344 thread->update_window(1);
347 ScaleRatioText::ScaleRatioText(int x, int y, ScaleThread *thread, float *output)
348 : BC_TextBox(x, y, 100, 1, *output)
349 { this->thread = thread; this->output = output; }
350 ScaleRatioText::~ScaleRatioText() {}
351 int ScaleRatioText::handle_event()
353 *output = atof(get_text());
354 //if(*output <= 0) *output = 1;
355 if(*output > 10000) *output = 10000;
356 if(*output < -10000) *output = -10000;
358 thread->update_window();
364 ScaleConstrain::ScaleConstrain(int x, int y, ScaleThread *thread)
365 : BC_CheckBox(x, y, thread->constrain_ratio, _("Constrain ratio"))
366 { this->thread = thread; }
367 ScaleConstrain::~ScaleConstrain() {}
368 int ScaleConstrain::handle_event()
370 thread->constrain_ratio = get_value();
373 ScaleData::ScaleData(int x, int y, ScaleThread *thread)
374 : BC_CheckBox(x, y, thread->scale_data, _("Scale data"))
375 { this->thread = thread; }
376 ScaleData::~ScaleData() {}
377 int ScaleData::handle_event()
379 thread->scale_data = get_value();
380 thread->update_window();
384 ScaleAspectAuto::ScaleAspectAuto(int x, int y, ScaleThread *thread)
385 : BC_CheckBox(x, y, thread->auto_aspect, _("Auto"))
386 { this->thread = thread; }
388 ScaleAspectAuto::~ScaleAspectAuto()
392 int ScaleAspectAuto::handle_event()
394 thread->auto_aspect = get_value();
395 thread->update_aspect(thread->window);
401 ScaleAspectW::ScaleAspectW(int x, int y, ScaleThread *thread, float *output, char *string)
402 : BC_TextBox(x, y, 50, 1, string)
404 this->output = output;
405 this->thread = thread;
407 ScaleAspectW::~ScaleAspectW()
411 int ScaleAspectW::handle_event()
413 *output = atof(get_text());
417 ScaleAspectH::ScaleAspectH(int x, int y, ScaleThread *thread, float *output, char *string)
418 : BC_TextBox(x, y, 50, 1, string)
420 this->output = output;
421 this->thread = thread;
423 ScaleAspectH::~ScaleAspectH()
427 int ScaleAspectH::handle_event()
429 *output = atof(get_text());