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
25 #include "edlsession.h"
26 #include "floatauto.h"
27 #include "localsession.h"
30 #include "transportque.inc"
33 Autos::Autos(EDL *edl, Track *track)
47 while(last) delete last;
51 void Autos::create_objects()
54 default_auto = new_auto();
55 default_auto->is_default = 1;
63 Auto* Autos::append_auto()
65 return append(new_auto());
69 Auto* Autos::new_auto()
71 return new Auto(edl, this);
74 void Autos::resample(double old_rate, double new_rate)
76 for(Auto *current = first; current; current = NEXT)
78 current->position = (int64_t)((double)current->position *
85 void Autos::equivalent_output(Autos *autos, int64_t startproject, int64_t *result)
87 // Default keyframe differs
88 if(!total() && !(*default_auto == *autos->default_auto))
90 if(*result < 0 || *result > startproject) *result = startproject;
93 // Search for difference
95 for(Auto *current = first, *that_current = autos->first;
96 current || that_current;
98 that_current = that_current->next)
101 if(current && !that_current)
103 int64_t position1 = (autos->last ? autos->last->position : startproject);
104 int64_t position2 = current->position;
105 if(*result < 0 || *result > MIN(position1, position2))
106 *result = MIN(position1, position2);
110 if(!current && that_current)
112 int64_t position1 = (last ? last->position : startproject);
113 int64_t position2 = that_current->position;
114 if(*result < 0 || *result > MIN(position1, position2))
115 *result = MIN(position1, position2);
120 if(!(*current == *that_current) ||
121 current->position != that_current->position)
123 int64_t position1 = (current->previous ?
124 current->previous->position :
126 int64_t position2 = (that_current->previous ?
127 that_current->previous->position :
129 if(*result < 0 || *result > MIN(position1, position2))
130 *result = MIN(position1, position2);
137 void Autos::copy_from(Autos *autos)
139 Auto *current = autos->first, *this_current = first;
141 default_auto->copy_from(autos->default_auto);
143 // Detect common memory leak bug
144 if(autos->first && !autos->last)
146 printf("Autos::copy_from inconsistent pointers\n");
150 for(current = autos->first; current; current = NEXT)
152 //printf("Autos::copy_from 1 %p\n", current);
156 append(this_current = new_auto());
158 this_current->copy_from(current);
159 this_current = this_current->next;
162 for( ; this_current; )
164 Auto *next_current = this_current->next;
166 this_current = next_current;
171 // We don't replace it in pasting but
172 // when inserting the first EDL of a load operation we need to replace
173 // the default keyframe.
174 void Autos::insert_track(Autos *automation,
176 int64_t length_units,
180 insert(start_unit, start_unit + length_units);
182 if(replace_default) default_auto->copy_from(automation->default_auto);
183 for(Auto *current = automation->first; current; current = NEXT)
185 // fill new auto with values from current (template), interpolate values if possible
186 Auto *new_auto = insert_auto(start_unit + current->position, current);
187 // Override copy_from
188 new_auto->position = current->position + start_unit;
192 Auto* Autos::get_prev_auto(int64_t position,
197 // Get on or before position
198 if(direction == PLAY_FORWARD)
200 // Try existing result
203 while(current && current->position < position) current = NEXT;
204 while(current && current->position > position) current = PREVIOUS;
207 if(!current && first && first->position <= position)
210 current && current->position > position;
211 current = PREVIOUS) ;
213 if(!current && use_default) current = (first ? first : default_auto);
216 // Get on or after position
217 if(direction == PLAY_REVERSE)
221 while(current && current->position > position) current = PREVIOUS;
222 while(current && current->position < position) current = NEXT;
225 if(!current && last && last->position >= position)
228 current && current->position < position;
232 if(!current && use_default) current = (last ? last : default_auto);
238 Auto* Autos::get_prev_auto(int direction, Auto* ¤t)
240 double position_double = edl->local_session->get_selectionstart(1);
241 position_double = edl->align_to_frame(position_double, 0);
242 int64_t position = track->to_units(position_double, 0);
244 return get_prev_auto(position, direction, current);
247 int Autos::auto_exists_for_editing(double position)
251 if(edl->session->auto_keyframes)
253 double unit_position = position;
254 unit_position = edl->align_to_frame(unit_position, 0);
255 if (get_auto_at_position(unit_position))
266 Auto* Autos::get_auto_at_position(double position)
268 int64_t unit_position = track->to_units(position, 0);
270 for(Auto *current = first;
274 if(edl->equivalent(current->position, unit_position))
283 Auto* Autos::get_auto_for_editing(double position)
286 position = edl->local_session->get_selectionstart(1);
290 get_prev_auto(track->to_units(position, 0), PLAY_FORWARD, result);
291 if( edl->session->auto_keyframes && (!result || result->is_default ||
292 !EQUIV(track->from_units(result->position), position)) ) {
293 //printf("Autos::get_auto_for_editing %p %p %p\n", default_auto, first, result);
294 position = edl->align_to_frame(position, 0);
295 result = insert_auto(track->to_units(position, 0));
297 //printf("Autos::get_auto_for_editing %p %p\n", first, default_auto);
303 Auto* Autos::get_next_auto(int64_t position, int direction, Auto* ¤t, int use_default)
305 if(direction == PLAY_FORWARD)
309 while(current && current->position > position) current = PREVIOUS;
310 while(current && current->position < position) current = NEXT;
313 if(!current && last && last->position > position)
316 current && current->position <= position;
321 if(!current && use_default) current = (last ? last : default_auto);
324 if(direction == PLAY_REVERSE)
328 while(current && current->position < position) current = NEXT;
329 while(current && current->position > position) current = PREVIOUS;
332 if(!current && first && first->position <= position)
335 current && current->position > position;
340 if(!current && use_default) current = (first ? first : default_auto);
345 Auto* Autos::insert_auto(int64_t position, Auto *templ)
347 Auto *current, *result;
349 // Test for existence
351 current && !edl->equivalent(current->position, position);
360 // Get first one on or before as a template
362 current && current->position > position;
370 insert_after(current, result = new_auto());
375 if(!current) current = default_auto;
377 insert_before(first, result = new_auto());
380 // interpolate if possible, else copy from template
381 result->interpolate_from(0, 0, position, templ);
383 if( !templ && result->is_floatauto() ) {
384 FloatAuto *floatauto = (FloatAuto *)result;
385 floatauto->curve_mode =
386 edl->local_session->playback_start >= 0 &&
387 edl->local_session->playback_end < 0 ? FloatAuto::SMOOTH :
388 (FloatAuto::t_mode) edl->local_session->floatauto_type;
399 int Autos::clear_all()
401 Auto *current_, *current;
403 for(current = first; current; current = current_)
412 int Autos::insert(int64_t start, int64_t end)
415 Auto *current = first;
417 for( ; current && current->position < start; current = NEXT)
420 length = end - start;
422 for(; current; current = NEXT)
424 current->position += length;
429 void Autos::paste(int64_t start,
439 //printf("Autos::paste %d start=%jd\n", __LINE__, start);
441 result = file->read_tag();
443 if(!result && !file->tag.title_is("/AUTO"))
446 if(file->tag.get_title()[0] == '/')
451 if(!strcmp(file->tag.get_title(), "AUTO"))
455 // Paste first auto into default
456 if(default_only && total == 0)
458 current = default_auto;
461 // Paste default auto into default
464 int64_t position = Units::to_int64(
465 (double)file->tag.get_property("POSITION", 0) *
468 // Paste active auto into track
469 current = insert_auto(position);
483 int Autos::paste_silence(int64_t start, int64_t end)
489 int Autos::copy(int64_t start,
495 // First auto always loaded with default
496 //printf("Autos::copy %d %d %d\n", __LINE__, default_only, active_only);
497 if(default_only || (!active_only && !default_only))
499 default_auto->copy(0, 0, file, default_only);
502 //printf("Autos::copy 10 %d %d %p\n", default_only, start, autoof(start));
503 if(active_only || (!default_only && !active_only))
505 Auto *current = autoof(start);
506 // need the last one if past the end
507 if( !current && last )
508 last->copy(start, end, file, default_only);
510 while( current && current->position <= end ) {
511 // Want to copy single keyframes by putting the cursor on them
512 if( current->position >= start && current->position <= end ) {
513 current->copy(start, end, file, default_only);
518 // Copy default auto again to make it the active auto on the clipboard
521 // Need to force position to 0 for the case of plugins
522 // and default status to 0.
523 // default_auto->copy(0, 0, file, default_only);
525 //printf("Autos::copy 20\n");
530 // Remove 3 consecutive autos with the same value
531 // Remove autos which are out of order
532 void Autos::optimize()
537 // Default auto should always be at 0
538 default_auto->position = 0;
545 for(Auto *current = first; current; current = NEXT)
547 // Get 3rd consecutive auto of equal value
550 if(*current == *PREVIOUS)
562 if(done && current->position <= PREVIOUS->position)
573 void Autos::remove_nonsequential(Auto *keyframe)
575 if((keyframe->next && keyframe->next->position <= keyframe->position) ||
576 (keyframe->previous && keyframe->previous->position >= keyframe->position))
583 void Autos::set_automation_mode(int64_t start, int64_t end, int mode)
587 void Autos::clear(int64_t start,
592 Auto *next, *current;
593 length = end - start;
596 current = autoof(start);
598 // If a range is selected don't delete the ending keyframe but do delete
599 // the beginning keyframe because shifting end handle forward shouldn't
600 // delete the first keyframe of the next edit.
603 ((end != start && current->position < end) ||
604 (end == start && current->position <= end)))
611 while(current && shift_autos)
613 current->position -= length;
618 int Autos::clear_auto(int64_t position)
621 current = autoof(position);
622 return current->position==position ? (remove(current), 1) : 0;
626 int Autos::load(FileXML *file)
629 remove(last); // remove any existing autos
631 int result = 0, first_auto = 1;
635 result = file->read_tag();
637 if(!result && !file->tag.title_is("/AUTO"))
639 // First tag with leading / is taken as end of autos
640 if(/* strstr(file->tag.get_title(), "AUTOS") && */
642 file->tag.get_title()[0] == '/')
647 if(!strcmp(file->tag.get_title(), "AUTO"))
651 default_auto->load(file);
652 default_auto->position = 0;
657 current = append(new_auto());
658 current->position = file->tag.get_property("POSITION", (int64_t)0);
672 int Autos::slope_adjustment(int64_t ax, double slope)
674 return (int)(ax * slope);
678 int Autos::scale_time(float rate_scale, int scale_edits, int scale_autos, int64_t start, int64_t end)
682 for(current = first; current && scale_autos; current = NEXT)
684 // if(current->position >= start && current->position <= end)
686 current->position = (int64_t)((current->position - start) * rate_scale + start + 0.5);
692 Auto* Autos::autoof(int64_t position)
697 current && current->position < position;
702 return current; // return 0 on failure
705 Auto* Autos::nearest_before(int64_t position)
708 for(current = last; current && current->position >= position; current = PREVIOUS);
709 return current; // return 0 on failure
712 Auto* Autos::nearest_after(int64_t position)
715 for(current = first; current && current->position <= position; current = NEXT);
716 return current; // return 0 on failure
719 int Autos::get_neighbors(int64_t start, int64_t end, Auto **before, Auto **after)
721 if(*before == 0) *before = first;
722 if(*after == 0) *after = last;
724 while(*before && (*before)->next && (*before)->next->position <= start)
725 *before = (*before)->next;
727 while(*after && (*after)->previous && (*after)->previous->position >= end)
728 *after = (*after)->previous;
730 while(*before && (*before)->position > start) *before = (*before)->previous;
732 while(*after && (*after)->position < end) *after = (*after)->next;
736 int Autos::automation_is_constant(int64_t start, int64_t end)
741 double Autos::get_automation_constant(int64_t start, int64_t end)
747 int Autos::init_automation(int64_t &buffer_position,
748 int64_t &input_start,
752 int64_t input_position,
760 // set start and end boundaries for automation info
761 input_start = reverse ? input_position - buffer_len : input_position;
762 input_end = reverse ? input_position : input_position + buffer_len;
764 // test automation for constant value
765 // and set up *before and *after
768 if(automation_is_constant(input_start, input_end))
770 constant += get_automation_constant(input_start, input_end);
778 int Autos::init_slope(Auto **current_auto,
781 double &slope_position,
782 int64_t &input_start,
789 *current_auto = reverse ? *after : *before;
790 // no auto before start so use first auto in range
791 // already know there is an auto since automation isn't constant
794 *current_auto = reverse ? last : first;
795 // slope_value = (*current_auto)->value;
796 slope_start = input_start;
801 // otherwise get the first slope point and advance auto
802 // slope_value = (*current_auto)->value;
803 slope_start = (*current_auto)->position;
804 slope_position = reverse ? slope_start - input_end : input_start - slope_start;
805 (*current_auto) = reverse ? (*current_auto)->previous : (*current_auto)->next;
811 int Autos::get_slope(Auto **current_auto,
817 int64_t buffer_position,
823 slope_end = reverse ? slope_start - (*current_auto)->position : (*current_auto)->position - slope_start;
825 // slope = ((*current_auto)->value - slope_value) / slope_end;
832 slope_end = buffer_len - buffer_position;
837 int Autos::advance_slope(Auto **current_auto,
840 double &slope_position,
845 slope_start = (*current_auto)->position;
846 // slope_value = (*current_auto)->value;
847 (*current_auto) = reverse ? (*current_auto)->previous : (*current_auto)->next;
853 int64_t Autos::get_length()
856 return last->position + 1;
861 void Autos::get_extents(float *min,
863 int *coords_undefined,
871 void Autos::dump(FILE *fp)