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
24 #include "bcsignals.h"
29 #include "edlsession.h"
31 #include "filesystem.h"
32 #include "localsession.h"
34 #include "mainsession.h"
36 #include "trackcanvas.h"
38 #include "transition.h"
47 Edit::Edit(EDL *edl, Track *track)
52 if(track) this->edits = track->edits;
56 Edit::Edit(EDL *edl, Edits *edits)
61 if(edits) this->track = edits->track;
67 //printf("Edit::~Edit 1\n");
68 if(transition) delete transition;
69 //printf("Edit::~Edit 2\n");
90 Indexable* Edit::get_source()
92 if(asset) return asset;
93 if(nested_edl) return nested_edl;
97 int Edit::copy(int64_t start,
100 const char *output_path)
103 //printf("Edit::copy 1\n");
105 int64_t endproject = startproject + length;
108 if((startproject >= start && startproject <= end) || // startproject in range
109 (endproject <= end && endproject >= start) || // endproject in range
110 (startproject <= start && endproject >= end)) // range in project
113 int64_t startproject_in_selection = startproject; // start of edit in selection in project
114 int64_t startsource_in_selection = startsource; // start of source in selection in source
115 //int64_t endsource_in_selection = startsource + length; // end of source in selection
116 int64_t length_in_selection = length; // length of edit in selection
117 //printf("Edit::copy 2\n");
119 if(startproject < start)
120 { // start is after start of edit in project
121 int64_t length_difference = start - startproject;
123 startsource_in_selection += length_difference;
124 startproject_in_selection += length_difference;
125 length_in_selection -= length_difference;
127 //printf("Edit::copy 3\n");
130 { // end is before end of edit in project
131 length_in_selection = end - startproject_in_selection;
134 //printf("Edit::copy 4\n");
135 if(file) // only if not counting
137 file->tag.set_title("EDIT");
138 file->tag.set_property("STARTSOURCE", startsource_in_selection);
139 file->tag.set_property("CHANNEL", (int64_t)channel);
140 file->tag.set_property("LENGTH", length_in_selection);
141 file->tag.set_property("HARD_LEFT", hard_left);
142 file->tag.set_property("HARD_RIGHT", hard_right);
143 if(user_title[0]) file->tag.set_property("USER_TITLE", user_title);
144 //printf("Edit::copy 5\n");
146 copy_properties_derived(file, length_in_selection);
149 // file->append_newline();
150 //printf("Edit::copy 6\n");
154 file->tag.set_title("NESTED_EDL");
155 file->tag.set_property("SRC", nested_edl->path);
157 file->tag.set_title("/NESTED_EDL");
159 file->append_newline();
164 //printf("Edit::copy 6 %s\n", asset->path);
165 char stored_path[BCTEXTLEN];
166 char asset_directory[BCTEXTLEN];
167 char output_directory[BCTEXTLEN];
170 //printf("Edit::copy %d %s\n", __LINE__, asset->path);
171 fs.extract_dir(asset_directory, asset->path);
172 //printf("Edit::copy %d %s\n", __LINE__, asset->path);
175 fs.extract_dir(output_directory, output_path);
177 output_directory[0] = 0;
178 //printf("Edit::copy %s, %s %s, %s\n", asset->path, asset_directory, output_path, output_directory);
180 if(output_path && !strcmp(asset_directory, output_directory))
181 fs.extract_name(stored_path, asset->path);
183 strcpy(stored_path, asset->path);
185 file->tag.set_title("FILE");
186 file->tag.set_property("SRC", stored_path);
188 file->tag.set_title("/FILE");
194 transition->save_xml(file);
197 //printf("Edit::copy 7\n");
198 file->tag.set_title("/EDIT");
200 file->append_newline();
201 //printf("Edit::copy 8\n");
203 //printf("Edit::copy 9\n");
210 //printf("Edit::copy 10\n");
215 int64_t Edit::get_source_end(int64_t default_)
220 void Edit::insert_transition(char *title)
222 //printf("Edit::insert_transition this=%p title=%p title=%s\n", this, title, title);
224 transition = new Transition(edl, this, title,
225 track->to_units(edl->session->default_transition_length, 1));
228 void Edit::detach_transition()
230 if(transition) delete transition;
236 return (track->data_type != TRACK_SUBTITLE ?
237 asset || nested_edl :
238 *((SEdit *)this)->get_text()) ? 0 : 1;
242 void Edit::copy_from(Edit *edit)
244 this->nested_edl = edl->nested_edls.get_nested(edit->nested_edl);
245 this->asset = edl->assets->update(edit->asset);
246 this->startsource = edit->startsource;
247 this->startproject = edit->startproject;
248 this->length = edit->length;
249 this->hard_left = edit->hard_left;
250 this->hard_right = edit->hard_right;
251 strcpy (this->user_title, edit->user_title);
255 if(!transition) transition = new Transition(edl,
257 edit->transition->title,
258 edit->transition->length);
259 *this->transition = *edit->transition;
261 this->channel = edit->channel;
264 void Edit::equivalent_output(Edit *edit, int64_t *result)
266 // End of edit changed
267 if(startproject + length != edit->startproject + edit->length)
269 int64_t new_length = MIN(startproject + length,
270 edit->startproject + edit->length);
271 if(*result < 0 || new_length < *result)
272 *result = new_length;
276 // Different nested EDLs
277 (edit->nested_edl && !nested_edl) ||
278 (!edit->nested_edl && nested_edl) ||
280 (edit->asset == 0 && asset != 0) ||
281 (edit->asset != 0 && asset == 0) ||
282 // different transitions
283 (edit->transition == 0 && transition != 0) ||
284 (edit->transition != 0 && transition == 0) ||
286 (startproject != edit->startproject) ||
287 (startsource != edit->startsource) ||
288 // Transition changed
289 (transition && edit->transition &&
290 !transition->identical(edit->transition)) ||
292 (asset && edit->asset &&
293 !asset->equivalent(*edit->asset, 1, 1, edl)) ||
294 // Nested EDL changed
295 (nested_edl && edit->nested_edl &&
296 strcmp(nested_edl->path, edit->nested_edl->path))
299 // Start of edit changed
300 if(*result < 0 || startproject < *result) *result = startproject;
305 Edit& Edit::operator=(Edit& edit)
307 //printf("Edit::operator= called\n");
312 void Edit::synchronize_params(Edit *edit)
318 // Comparison for ResourcePixmap drawing
319 int Edit::identical(Edit &edit)
321 int result = (this->nested_edl == edit.nested_edl &&
322 this->asset == edit.asset &&
323 this->startsource == edit.startsource &&
324 this->startproject == edit.startproject &&
325 this->length == edit.length &&
326 this->hard_left == edit.hard_left &&
327 this->hard_right == edit.hard_right &&
328 this->transition == edit.transition &&
329 this->channel == edit.channel);
333 int Edit::operator==(Edit &edit)
335 return identical(edit);
338 double Edit::frames_per_picon()
340 return Units::round(picon_w()) / frame_w();
343 double Edit::frame_w()
345 return track->from_units(1) *
346 edl->session->sample_rate /
347 edl->local_session->zoom_sample;
350 double Edit::picon_w()
357 else if(nested_edl) {
358 w = nested_edl->session->output_w;
359 h = nested_edl->session->output_h;
361 return w>0 && h>0 ? ((double)edl->local_session->zoom_track*w)/h : 0;
366 return edl->local_session->zoom_track;
370 int Edit::dump(FILE *fp)
372 fprintf(fp," EDIT %p\n", this); fflush(fp);
373 fprintf(fp," nested_edl=%p %s asset=%p %s\n",
375 nested_edl ? nested_edl->path : "",
377 asset ? asset->path : "");
379 fprintf(fp," channel %d\n", channel);
382 fprintf(fp," TRANSITION %p\n", transition);
383 transition->dump(fp);
385 fprintf(fp," startsource %jd startproject %jd hard lt/rt %d/%d length %jd\n",
386 startsource, startproject, hard_left, hard_right, length); fflush(fp);
390 int Edit::load_properties(FileXML *file, int64_t &startproject)
392 startsource = file->tag.get_property("STARTSOURCE", (int64_t)0);
393 length = file->tag.get_property("LENGTH", (int64_t)0);
394 hard_left = file->tag.get_property("HARD_LEFT", (int64_t)0);
395 hard_right = file->tag.get_property("HARD_RIGHT", (int64_t)0);
397 file->tag.get_property("USER_TITLE", user_title);
398 this->startproject = startproject;
399 load_properties_derived(file);
403 void Edit::shift(int64_t difference)
405 //printf("Edit::shift 1 %p %jd %jd\n", this, startproject, difference);
406 startproject += difference;
407 //printf("Edit::shift 2 %jd %jd\n", startproject, difference);
410 int Edit::shift_start_in(int edit_mode,
419 int64_t cut_length = newposition - oldposition;
420 int64_t end_previous_source, end_source;
422 if(edit_mode == MOVE_ALL_EDITS)
424 if(cut_length < length)
426 edits->clear_recursive(oldposition,
436 edits->clear_recursive(oldposition,
437 startproject + length,
446 if(edit_mode == MOVE_ONE_EDIT)
448 // Paste silence and cut
449 //printf("Edit::shift_start_in 1\n");
452 Edit *new_edit = edits->create_edit();
453 new_edit->startproject = this->startproject;
454 new_edit->length = 0;
455 edits->insert_before(this,
458 //printf("Edit::shift_start_in 2 %p\n", previous);
460 end_previous_source = previous->get_source_end(previous->startsource + previous->length + cut_length);
461 if(end_previous_source > 0 &&
462 previous->startsource + previous->length + cut_length > end_previous_source)
463 cut_length = end_previous_source - previous->startsource - previous->length;
465 if(cut_length < length)
467 startproject += cut_length;
468 startsource += cut_length;
469 length -= cut_length;
470 previous->length += cut_length;
471 //printf("Edit::shift_start_in 2\n");
474 { // Clear entire edit
476 previous->length += cut_length;
477 for(Edit* current_edit = this; current_edit; current_edit = current_edit->next)
479 current_edit->startproject += cut_length;
481 edits->clear_recursive(oldposition + cut_length,
482 startproject + cut_length,
489 //printf("Edit::shift_start_in 3\n");
492 if(edit_mode == MOVE_NO_EDITS)
494 end_source = get_source_end(startsource + length + cut_length);
495 if(end_source > 0 && startsource + length + cut_length > end_source)
496 cut_length = end_source - startsource - length;
498 startsource += cut_length;
503 int Edit::shift_start_out(int edit_mode,
512 int64_t cut_length = oldposition - newposition;
515 if(asset || nested_edl)
517 int64_t end_source = get_source_end(1);
519 //printf("Edit::shift_start_out 1 %jd %jd\n", startsource, cut_length);
520 if(end_source > 0 && startsource < cut_length)
522 cut_length = startsource;
526 if(edit_mode == MOVE_ALL_EDITS)
528 //printf("Edit::shift_start_out 10 %jd\n", cut_length);
529 startsource -= cut_length;
530 length += cut_length;
533 edits->shift_keyframes_recursive(startproject,
536 edits->shift_effects_recursive(startproject,
540 for(Edit* current_edit = next; current_edit; current_edit = current_edit->next)
542 current_edit->startproject += cut_length;
546 if(edit_mode == MOVE_ONE_EDIT)
550 if(cut_length < previous->length)
551 { // Cut into previous edit
552 previous->length -= cut_length;
553 startproject -= cut_length;
554 startsource -= cut_length;
555 length += cut_length;
556 printf("Edit::shift_start_out 2\n");
559 { // Clear entire previous edit
560 cut_length = previous->length;
561 previous->length = 0;
562 length += cut_length;
563 startsource -= cut_length;
564 startproject -= cut_length;
569 if(edit_mode == MOVE_NO_EDITS)
571 startsource -= cut_length;
574 // Fix infinite length files
575 if(startsource < 0) startsource = 0;
579 int Edit::shift_end_in(int edit_mode,
588 int64_t cut_length = oldposition - newposition;
590 if(edit_mode == MOVE_ALL_EDITS)
592 //printf("Edit::shift_end_in 1\n");
593 if(newposition > startproject)
594 { // clear partial edit
595 //printf("Edit::shift_end_in %p %p\n", track->edits, edits);
596 edits->clear_recursive(newposition,
605 { // clear entire edit
606 edits->clear_recursive(startproject,
616 if(edit_mode == MOVE_ONE_EDIT)
622 int64_t end_source = next->get_source_end(1);
624 if(end_source > 0 && next->startsource - cut_length < 0)
626 cut_length = next->startsource;
630 if(cut_length < length)
632 length -= cut_length;
633 next->startproject -= cut_length;
634 next->startsource -= cut_length;
635 next->length += cut_length;
636 //printf("Edit::shift_end_in 2 %d\n", cut_length);
641 next->length += cut_length;
642 next->startsource -= cut_length;
643 next->startproject -= cut_length;
644 length -= cut_length;
649 if(cut_length < length)
651 length -= cut_length;
656 edits->clear_recursive(startproject,
667 // Does nothing for plugins
668 if(edit_mode == MOVE_NO_EDITS)
670 //printf("Edit::shift_end_in 3\n");
671 int64_t end_source = get_source_end(1);
672 if(end_source > 0 && startsource < cut_length)
674 cut_length = startsource;
676 startsource -= cut_length;
681 int Edit::shift_end_out(int edit_mode,
690 int64_t cut_length = newposition - oldposition;
691 int64_t endsource = get_source_end(startsource + length + cut_length);
693 // check end of edit against end of source file
694 if(endsource > 0 && startsource + length + cut_length > endsource)
695 cut_length = endsource - startsource - length;
697 //printf("Edit::shift_end_out 1 %jd %d %d %d\n", oldposition, newposition, this->length, cut_length);
698 if(edit_mode == MOVE_ALL_EDITS)
701 this->length += cut_length;
703 // Effects are shifted in length extension
705 edits->shift_effects_recursive(oldposition /* startproject */,
709 edits->shift_keyframes_recursive(oldposition /* startproject */,
712 for(Edit* current_edit = next; current_edit; current_edit = current_edit->next)
714 current_edit->startproject += cut_length;
718 if(edit_mode == MOVE_ONE_EDIT)
722 if(cut_length < next->length)
724 length += cut_length;
725 next->startproject += cut_length;
726 next->startsource += cut_length;
727 next->length -= cut_length;
728 //printf("Edit::shift_end_out %d cut_length=%d\n", __LINE__, cut_length);
732 //printf("Edit::shift_end_out %d cut_length=%d next->length=%d\n", __LINE__, cut_length, next->length);
733 cut_length = next->length;
734 next->startproject += next->length;
735 next->startsource += next->length;
737 length += cut_length;
743 length += cut_length;
747 if(edit_mode == MOVE_NO_EDITS)
749 startsource += cut_length;
782 int Edit::popup_transition(float view_start, float zoom_units, int cursor_x, int cursor_y)
784 int64_t left, right, left_unit, right_unit;
785 if(!transition) return 0;
786 get_handle_parameters(left, right, left_unit, right_unit, view_start, zoom_units);
788 if(cursor_x > left && cursor_x < right)
790 // transition->popup_transition(cursor_x, cursor_y);
796 int Edit::select_handle(float view_start, float zoom_units, int cursor_x, int cursor_y, int64_t &selection)
798 int64_t left, right, left_unit, right_unit;
799 get_handle_parameters(left, right, left_unit, right_unit, view_start, zoom_units);
801 int64_t pixel1, pixel2;
803 pixel2 = pixel1 + 10;
806 // cursor_x is faked in acanvas
807 if(cursor_x >= pixel1 && cursor_x <= pixel2)
809 selection = left_unit;
810 return 1; // left handle
813 //int64_t endproject = startproject + length;
815 pixel1 = pixel2 - 10;
818 if(cursor_x >= pixel1 && cursor_x <= pixel2)
820 selection = right_unit;
821 return 2; // right handle
826 void Edit::get_title(char *title)
828 if( user_title[0] ) {
829 strcpy(title, user_title);
832 Indexable *idxbl = asset ? (Indexable*)asset : (Indexable*)nested_edl;
838 fs.extract_name(title, idxbl->path);
839 if( asset || track->data_type == TRACK_AUDIO ) {
840 char number[BCSTRLEN];
841 sprintf(number, " #%d", channel + 1);
842 strcat(title, number);