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()
207 add_subwindow(new BC_Title(x, y, _("New camera size:")));
208 add_subwindow(new BC_Title(x + 200, y, _("New projector size:")));
210 add_subwindow(new BC_Title(x, y, _("Width:")));
212 add_subwindow(dimension[0] = new ScaleSizeText(x, y, thread, &(thread->dimension[0])));
214 add_subwindow(new BC_Title(x, y, _("Width:")));
216 add_subwindow(dimension[2] = new ScaleSizeText(x, y, thread, &(thread->dimension[2])));
220 add_subwindow(new BC_Title(x, y, _("Height:")));
222 add_subwindow(dimension[1] = new ScaleSizeText(x, y, thread, &(thread->dimension[1])));
224 add_subwindow(new BC_Title(x, y, _("Height:")));
226 add_subwindow(dimension[3] = new ScaleSizeText(x, y, thread, &(thread->dimension[3])));
230 add_subwindow(new BC_Title(x, y, _("W Ratio:")));
232 add_subwindow(ratio[0] = new ScaleRatioText(x, y, thread, &(thread->ratio[0])));
234 add_subwindow(new BC_Title(x, y, _("W Ratio:")));
236 add_subwindow(ratio[2] = new ScaleRatioText(x, y, thread, &(thread->ratio[2])));
240 add_subwindow(new BC_Title(x, y, _("H Ratio:")));
242 add_subwindow(ratio[1] = new ScaleRatioText(x, y, thread, &(thread->ratio[1])));
244 add_subwindow(new BC_Title(x, y, _("H Ratio:")));
246 add_subwindow(ratio[3] = new ScaleRatioText(x, y, thread, &(thread->ratio[3])));
250 // add_subwindow(new BC_Title(x, y, "X Offset:"));
252 // add_subwindow(offsets[0] = new ScaleOffsetText(x, y, thread, &(thread->offsets[0])));
254 // add_subwindow(new BC_Title(x, y, "X Offset:"));
256 // add_subwindow(offsets[2] = new ScaleOffsetText(x, y, thread, &(thread->offsets[2])));
260 // add_subwindow(new BC_Title(x, y, "Y Offset:"));
262 // add_subwindow(offsets[1] = new ScaleOffsetText(x, y, thread, &(thread->offsets[1])));
264 // add_subwindow(new BC_Title(x, y, "Y Offset:"));
266 // add_subwindow(offsets[3] = new ScaleOffsetText(x, y, thread, &(thread->offsets[3])));
270 add_subwindow(new BC_Title(x, y, _("Aspect ratio:")));
273 sprintf(string, "%.0f", thread->aspect_w);
274 add_subwindow(aspect_w = new ScaleAspectW(x, y, thread, &(thread->aspect_w), string));
276 add_subwindow(new BC_Title(x, y, ":"));
278 sprintf(string, "%.0f", thread->aspect_h);
279 add_subwindow(aspect_h = new ScaleAspectH(x, y, thread, &(thread->aspect_h), string));
281 add_subwindow(new ScaleAspectAuto(x, y + 5, thread));
285 // add_subwindow(new BC_Title(x, y, _("Camera position:")));
287 // add_subwindow(new BC_Title(x, y, _("Projector position:")));
289 // ScalePosition *position;
292 // add_subwindow(position1 = new ScalePosition(x, y, thread, this,
293 // &(thread->orig_dimension[0]), &(thread->dimension[0]), &(thread->offsets[0])));
294 // position1->draw();
297 // add_subwindow(position2 = new ScalePosition(x, y, thread, this,
298 // &(thread->orig_dimension[2]), &(thread->dimension[2]), &(thread->offsets[2])));
299 // position2->draw();
303 add_subwindow(new ScaleConstrain(x, y, thread));
305 add_subwindow(new ScaleData(x, y, thread));
309 add_subwindow(new BC_OKButton(x, y));
311 add_subwindow(new BC_CancelButton(x, y));
314 ScaleSizeText::ScaleSizeText(int x, int y, ScaleThread *thread, int *output)
315 : BC_TextBox(x, y, 100, 1, *output)
317 this->thread = thread;
318 this->output = output;
320 ScaleSizeText::~ScaleSizeText() {}
321 int ScaleSizeText::handle_event()
323 *output = atol(get_text());
326 if(*output <= 0) *output = 2;
327 if(*output > 10000) *output = 10000;
329 thread->update_window();
332 ScaleOffsetText::ScaleOffsetText(int x, int y, ScaleThread *thread, int *output)
333 : BC_TextBox(x, y, 100, 1, *output)
334 { this->thread = thread; this->output = output; }
335 ScaleOffsetText::~ScaleOffsetText() {}
336 int ScaleOffsetText::handle_event()
338 *output = atol(get_text());
339 //if(*output <= 0) *output = 0;
340 if(*output > 10000) *output = 10000;
341 if(*output < -10000) *output = -10000;
342 thread->update_window(1);
345 ScaleRatioText::ScaleRatioText(int x, int y, ScaleThread *thread, float *output)
346 : BC_TextBox(x, y, 100, 1, *output)
347 { this->thread = thread; this->output = output; }
348 ScaleRatioText::~ScaleRatioText() {}
349 int ScaleRatioText::handle_event()
351 *output = atof(get_text());
352 //if(*output <= 0) *output = 1;
353 if(*output > 10000) *output = 10000;
354 if(*output < -10000) *output = -10000;
356 thread->update_window();
362 ScaleConstrain::ScaleConstrain(int x, int y, ScaleThread *thread)
363 : BC_CheckBox(x, y, thread->constrain_ratio, _("Constrain ratio"))
364 { this->thread = thread; }
365 ScaleConstrain::~ScaleConstrain() {}
366 int ScaleConstrain::handle_event()
368 thread->constrain_ratio = get_value();
371 ScaleData::ScaleData(int x, int y, ScaleThread *thread)
372 : BC_CheckBox(x, y, thread->scale_data, _("Scale data"))
373 { this->thread = thread; }
374 ScaleData::~ScaleData() {}
375 int ScaleData::handle_event()
377 thread->scale_data = get_value();
378 thread->update_window();
382 ScaleAspectAuto::ScaleAspectAuto(int x, int y, ScaleThread *thread)
383 : BC_CheckBox(x, y, thread->auto_aspect, _("Auto"))
384 { this->thread = thread; }
386 ScaleAspectAuto::~ScaleAspectAuto()
390 int ScaleAspectAuto::handle_event()
392 thread->auto_aspect = get_value();
393 thread->update_aspect(thread->window);
399 ScaleAspectW::ScaleAspectW(int x, int y, ScaleThread *thread, float *output, char *string)
400 : BC_TextBox(x, y, 50, 1, string)
402 this->output = output;
403 this->thread = thread;
405 ScaleAspectW::~ScaleAspectW()
409 int ScaleAspectW::handle_event()
411 *output = atof(get_text());
415 ScaleAspectH::ScaleAspectH(int x, int y, ScaleThread *thread, float *output, char *string)
416 : BC_TextBox(x, y, 50, 1, string)
418 this->output = output;
419 this->thread = thread;
421 ScaleAspectH::~ScaleAspectH()
425 int ScaleAspectH::handle_event()
427 *output = atof(get_text());