color coded keyframe curves, keyframe popups, cwin scrollbar fixes
[goodguy/history.git] / cinelerra-5.1 / cinelerra / autos.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "autos.h"
23 #include "clip.h"
24 #include "edl.h"
25 #include "edlsession.h"
26 #include "floatauto.h"
27 #include "localsession.h"
28 #include "filexml.h"
29 #include "track.h"
30 #include "transportque.inc"
31
32
33 Autos::Autos(EDL *edl, Track *track)
34  : List<Auto>()
35 {
36         this->edl = edl;
37         this->track = track;
38         type = -1;
39         autoidx = -1;
40         autogrouptype = -1;
41 }
42
43
44
45 Autos::~Autos()
46 {
47         while(last) delete last;
48         delete default_auto;
49 }
50
51 void Autos::create_objects()
52 {
53 // Default
54         default_auto = new_auto();
55         default_auto->is_default = 1;
56 }
57
58 int Autos::get_type()
59 {
60         return type;
61 }
62
63 Auto* Autos::append_auto()
64 {
65         return append(new_auto());
66 }
67
68
69 Auto* Autos::new_auto()
70 {
71         return new Auto(edl, this);
72 }
73
74 void Autos::resample(double old_rate, double new_rate)
75 {
76         for(Auto *current = first; current; current = NEXT)
77         {
78                 current->position = (int64_t)((double)current->position *
79                         new_rate /
80                         old_rate +
81                         0.5);
82         }
83 }
84
85 void Autos::equivalent_output(Autos *autos, int64_t startproject, int64_t *result)
86 {
87 // Default keyframe differs
88         if(!total() && !(*default_auto == *autos->default_auto))
89         {
90                 if(*result < 0 || *result > startproject) *result = startproject;
91         }
92         else
93 // Search for difference
94         {
95                 for(Auto *current = first, *that_current = autos->first;
96                         current || that_current;
97                         current = NEXT,
98                         that_current = that_current->next)
99                 {
100 // Total differs
101                         if(current && !that_current)
102                         {
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);
107                                 break;
108                         }
109                         else
110                         if(!current && that_current)
111                         {
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);
116                                 break;
117                         }
118                         else
119 // Keyframes differ
120                         if(!(*current == *that_current) ||
121                                 current->position != that_current->position)
122                         {
123                                 int64_t position1 = (current->previous ?
124                                         current->previous->position :
125                                         startproject);
126                                 int64_t position2 = (that_current->previous ?
127                                         that_current->previous->position :
128                                         startproject);
129                                 if(*result < 0 || *result > MIN(position1, position2))
130                                         *result = MIN(position1, position2);
131                                 break;
132                         }
133                 }
134         }
135 }
136
137 void Autos::copy_from(Autos *autos)
138 {
139         Auto *current = autos->first, *this_current = first;
140
141         default_auto->copy_from(autos->default_auto);
142
143 // Detect common memory leak bug
144         if(autos->first && !autos->last)
145         {
146                 printf("Autos::copy_from inconsistent pointers\n");
147                 exit(1);
148         }
149
150         for(current = autos->first; current; current = NEXT)
151         {
152 //printf("Autos::copy_from 1 %p\n", current);
153 //sleep(1);
154                 if(!this_current)
155                 {
156                         append(this_current = new_auto());
157                 }
158                 this_current->copy_from(current);
159                 this_current = this_current->next;
160         }
161
162         for( ; this_current; )
163         {
164                 Auto *next_current = this_current->next;
165                 delete this_current;
166                 this_current = next_current;
167         }
168 }
169
170
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,
175         int64_t start_unit,
176         int64_t length_units,
177         int replace_default)
178 {
179 // Insert silence
180         insert(start_unit, start_unit + length_units);
181
182         if(replace_default) default_auto->copy_from(automation->default_auto);
183         for(Auto *current = automation->first; current; current = NEXT)
184         {
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;
189         }
190 }
191
192 Auto* Autos::get_prev_auto(int64_t position,
193         int direction,
194         Auto* &current,
195         int use_default)
196 {
197 // Get on or before position
198         if(direction == PLAY_FORWARD)
199         {
200 // Try existing result
201                 if(current)
202                 {
203                         while(current && current->position < position) current = NEXT;
204                         while(current && current->position > position) current = PREVIOUS;
205                 }
206
207                 if(!current)
208                 {
209                         for(current = last;
210                                 current && current->position > position;
211                                 current = PREVIOUS) ;
212                 }
213                 if(!current && use_default) current = (first ? first : default_auto);
214         }
215         else
216 // Get on or after position
217         if(direction == PLAY_REVERSE)
218         {
219                 if(current)
220                 {
221                         while(current && current->position > position) current = PREVIOUS;
222                         while(current && current->position < position) current = NEXT;
223                 }
224
225                 if(!current)
226                 {
227                         for(current = first;
228                                 current && current->position < position;
229                                 current = NEXT) ;
230                 }
231
232                 if(!current && use_default) current = (last ? last : default_auto);
233         }
234
235         return current;
236 }
237
238 Auto* Autos::get_prev_auto(int direction, Auto* &current)
239 {
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);
243
244         return get_prev_auto(position, direction, current);
245 }
246
247 int Autos::auto_exists_for_editing(double position)
248 {
249         int result = 0;
250
251         if(edl->session->auto_keyframes)
252         {
253                 double unit_position = position;
254                 unit_position = edl->align_to_frame(unit_position, 0);
255                 if (get_auto_at_position(unit_position))
256                         result = 1;
257         }
258         else
259         {
260                 result = 1;
261         }
262
263         return result;
264 }
265
266 Auto* Autos::get_auto_at_position(double position)
267 {
268         int64_t unit_position = track->to_units(position, 0);
269
270         for(Auto *current = first;
271                 current;
272                 current = NEXT)
273         {
274                 if(edl->equivalent(current->position, unit_position))
275                 {
276                         return current;
277                 }
278         }
279         return 0;
280 }
281
282
283 Auto* Autos::get_auto_for_editing(double position)
284 {
285         if(position < 0) {
286                 position = edl->local_session->get_selectionstart(1);
287         }
288
289         Auto *result = 0;
290         position = edl->align_to_frame(position, 0);
291 //printf("Autos::get_auto_for_editing %p %p\n", first, default_auto);
292
293         result = edl->session->auto_keyframes ?
294                 insert_auto(track->to_units(position, 0)) :
295                 get_prev_auto(track->to_units(position, 0), PLAY_FORWARD, result);
296
297 //printf("Autos::get_auto_for_editing %p %p %p\n", default_auto, first, result);
298         return result;
299 }
300
301
302 Auto* Autos::get_next_auto(int64_t position, int direction, Auto* &current, int use_default)
303 {
304         if(direction == PLAY_FORWARD)
305         {
306                 if(current)
307                 {
308                         while(current && current->position > position) current = PREVIOUS;
309                         while(current && current->position < position) current = NEXT;
310                 }
311
312                 if(!current)
313                 {
314                         for(current = first;
315                                 current && current->position <= position;
316                                 current = NEXT)
317                                 ;
318                 }
319
320                 if(!current && use_default) current = (last ? last : default_auto);
321         }
322         else
323         if(direction == PLAY_REVERSE)
324         {
325                 if(current)
326                 {
327                         while(current && current->position < position) current = NEXT;
328                         while(current && current->position > position) current = PREVIOUS;
329                 }
330
331                 if(!current)
332                 {
333                         for(current = last;
334                                 current && current->position > position;
335                                 current = PREVIOUS)
336                                 ;
337                 }
338
339                 if(!current && use_default) current = (first ? first : default_auto);
340         }
341
342         return current;
343 }
344 Auto* Autos::insert_auto(int64_t position, Auto *templ)
345 {
346         Auto *current, *result;
347
348 // Test for existence
349         for(current = first;
350                 current && !edl->equivalent(current->position, position);
351                 current = NEXT)
352         {
353                 ;
354         }
355
356 // Insert new
357         if(!current)
358         {
359 // Get first one on or before as a template
360                 for(current = last;
361                         current && current->position > position;
362                         current = PREVIOUS)
363                 {
364                         ;
365                 }
366
367                 if(current)
368                 {
369                         insert_after(current, result = new_auto());
370                 }
371                 else
372                 {
373                         current = first;
374                         if(!current) current = default_auto;
375
376                         insert_before(first, result = new_auto());
377                 }
378
379 // interpolate if possible, else copy from template
380                 result->interpolate_from(0, 0, position, templ);
381 // Set curve mode
382                 if( !templ && result->is_floatauto() ) {
383                         FloatAuto *floatauto = (FloatAuto *)result;
384                         floatauto->curve_mode =
385                                 edl->local_session->playback_start >= 0 &&
386                                 edl->local_session->playback_end < 0 ? FloatAuto::SMOOTH :
387                                         (FloatAuto::t_mode) edl->local_session->floatauto_type;
388                 }
389         }
390         else
391         {
392                 result = current;
393         }
394
395         return result;
396 }
397
398 int Autos::clear_all()
399 {
400         Auto *current_, *current;
401
402         for(current = first; current; current = current_)
403         {
404                 current_ = NEXT;
405                 remove(current);
406         }
407         append_auto();
408         return 0;
409 }
410
411 int Autos::insert(int64_t start, int64_t end)
412 {
413         int64_t length;
414         Auto *current = first;
415
416         for( ; current && current->position < start; current = NEXT)
417                 ;
418
419         length = end - start;
420
421         for(; current; current = NEXT)
422         {
423                 current->position += length;
424         }
425         return 0;
426 }
427
428 void Autos::paste(int64_t start,
429         int64_t length,
430         double scale,
431         FileXML *file,
432         int default_only,
433         int active_only)
434 {
435         int total = 0;
436         int result = 0;
437
438 //printf("Autos::paste %d start=%jd\n", __LINE__, start);
439         do{
440                 result = file->read_tag();
441
442                 if(!result && !file->tag.title_is("/AUTO"))
443                 {
444 // End of list
445                         if(file->tag.get_title()[0] == '/')
446                         {
447                                 result = 1;
448                         }
449                         else
450                         if(!strcmp(file->tag.get_title(), "AUTO"))
451                         {
452                                 Auto *current = 0;
453
454 // Paste first auto into default
455                                 if(default_only && total == 0)
456                                 {
457                                         current = default_auto;
458                                 }
459                                 else
460 // Paste default auto into default
461                                 if(!default_only)
462                                 {
463                                         int64_t position = Units::to_int64(
464                                                 (double)file->tag.get_property("POSITION", 0) *
465                                                         scale +
466                                                         start);
467 // Paste active auto into track
468                                         current = insert_auto(position);
469                                 }
470
471                                 if(current)
472                                 {
473                                         current->load(file);
474                                 }
475                                 total++;
476                         }
477                 }
478         } while( !result );
479 }
480
481
482 int Autos::paste_silence(int64_t start, int64_t end)
483 {
484         insert(start, end);
485         return 0;
486 }
487
488 int Autos::copy(int64_t start,
489         int64_t end,
490         FileXML *file,
491         int default_only,
492         int active_only)
493 {
494 // First auto always loaded with default
495 //printf("Autos::copy %d %d %d\n", __LINE__, default_only, active_only);
496         if(default_only || (!active_only && !default_only))
497         {
498                 default_auto->copy(0, 0, file, default_only);
499         }
500
501 //printf("Autos::copy 10 %d %d %p\n", default_only, start, autoof(start));
502         if(active_only || (!default_only && !active_only))
503         {
504                 for(Auto* current = autoof(start);
505                         current && current->position <= end;
506                         current = NEXT)
507                 {
508 // Want to copy single keyframes by putting the cursor on them
509                         if(current->position >= start && current->position <= end)
510                         {
511                                 current->copy(start, end, file, default_only);
512                         }
513                 }
514         }
515 // Copy default auto again to make it the active auto on the clipboard
516 //      else
517 //      {
518 // Need to force position to 0 for the case of plugins
519 // and default status to 0.
520 //              default_auto->copy(0, 0, file, default_only);
521 //      }
522 //printf("Autos::copy 20\n");
523
524         return 0;
525 }
526
527 // Remove 3 consecutive autos with the same value
528 // Remove autos which are out of order
529 void Autos::optimize()
530 {
531         int done = 0;
532
533
534 // Default auto should always be at 0
535         default_auto->position = 0;
536         while(!done)
537         {
538                 int consecutive = 0;
539                 done = 1;
540
541
542                 for(Auto *current = first; current; current = NEXT)
543                 {
544 // Get 3rd consecutive auto of equal value
545                         if(current != first)
546                         {
547                                 if(*current == *PREVIOUS)
548                                 {
549                                         consecutive++;
550                                         if(consecutive >= 3)
551                                         {
552                                                 delete PREVIOUS;
553                                                 break;
554                                         }
555                                 }
556                                 else
557                                         consecutive = 0;
558
559                                 if(done && current->position <= PREVIOUS->position)
560                                 {
561                                         delete current;
562                                         break;
563                                 }
564                         }
565                 }
566         }
567 }
568
569
570 void Autos::remove_nonsequential(Auto *keyframe)
571 {
572         if((keyframe->next && keyframe->next->position <= keyframe->position) ||
573                 (keyframe->previous && keyframe->previous->position >= keyframe->position))
574         {
575                 delete keyframe;
576         }
577 }
578
579
580 void Autos::set_automation_mode(int64_t start, int64_t end, int mode)
581 {
582 }
583
584 void Autos::clear(int64_t start,
585         int64_t end,
586         int shift_autos)
587 {
588         int64_t length;
589         Auto *next, *current;
590         length = end - start;
591
592
593         current = autoof(start);
594
595 // If a range is selected don't delete the ending keyframe but do delete
596 // the beginning keyframe because shifting end handle forward shouldn't
597 // delete the first keyframe of the next edit.
598
599         while(current &&
600                 ((end != start && current->position < end) ||
601                 (end == start && current->position <= end)))
602         {
603                 next = NEXT;
604                 remove(current);
605                 current = next;
606         }
607
608         while(current && shift_autos)
609         {
610                 current->position -= length;
611                 current = NEXT;
612         }
613 }
614
615 int Autos::clear_auto(int64_t position)
616 {
617         Auto *current;
618         current = autoof(position);
619         return current->position==position ? (remove(current), 1) : 0;
620 }
621
622
623 int Autos::load(FileXML *file)
624 {
625         while(last)
626                 remove(last);    // remove any existing autos
627
628         int result = 0, first_auto = 1;
629         Auto *current;
630
631         do{
632                 result = file->read_tag();
633
634                 if(!result && !file->tag.title_is("/AUTO"))
635                 {
636 // First tag with leading / is taken as end of autos
637                         if(/* strstr(file->tag.get_title(), "AUTOS") && */
638
639                                 file->tag.get_title()[0] == '/')
640                         {
641                                 result = 1;
642                         }
643                         else
644                         if(!strcmp(file->tag.get_title(), "AUTO"))
645                         {
646                                 if(first_auto)
647                                 {
648                                         default_auto->load(file);
649                                         default_auto->position = 0;
650                                         first_auto = 0;
651                                 }
652                                 else
653                                 {
654                                         current = append(new_auto());
655                                         current->position = file->tag.get_property("POSITION", (int64_t)0);
656                                         current->load(file);
657                                 }
658                         }
659                 }
660         } while( !result );
661         return 0;
662 }
663
664
665
666
667
668
669 int Autos::slope_adjustment(int64_t ax, double slope)
670 {
671         return (int)(ax * slope);
672 }
673
674
675 int Autos::scale_time(float rate_scale, int scale_edits, int scale_autos, int64_t start, int64_t end)
676 {
677         Auto *current;
678
679         for(current = first; current && scale_autos; current = NEXT)
680         {
681 //              if(current->position >= start && current->position <= end)
682 //              {
683                         current->position = (int64_t)((current->position - start) * rate_scale + start + 0.5);
684 //              }
685         }
686         return 0;
687 }
688
689 Auto* Autos::autoof(int64_t position)
690 {
691         Auto *current;
692
693         for(current = first;
694                 current && current->position < position;
695                 current = NEXT)
696         {
697                 ;
698         }
699         return current;     // return 0 on failure
700 }
701
702 Auto* Autos::nearest_before(int64_t position)
703 {
704         Auto *current;
705
706         for(current = last; current && current->position >= position; current = PREVIOUS)
707         { ; }
708
709
710         return current;     // return 0 on failure
711 }
712
713 Auto* Autos::nearest_after(int64_t position)
714 {
715         Auto *current;
716
717         for(current = first; current && current->position <= position; current = NEXT)
718         { ; }
719
720
721         return current;     // return 0 on failure
722 }
723
724 int Autos::get_neighbors(int64_t start, int64_t end, Auto **before, Auto **after)
725 {
726         if(*before == 0) *before = first;
727         if(*after == 0) *after = last;
728
729         while(*before && (*before)->next && (*before)->next->position <= start)
730                 *before = (*before)->next;
731
732         while(*after && (*after)->previous && (*after)->previous->position >= end)
733                 *after = (*after)->previous;
734
735         while(*before && (*before)->position > start) *before = (*before)->previous;
736
737         while(*after && (*after)->position < end) *after = (*after)->next;
738         return 0;
739 }
740
741 int Autos::automation_is_constant(int64_t start, int64_t end)
742 {
743         return 0;
744 }
745
746 double Autos::get_automation_constant(int64_t start, int64_t end)
747 {
748         return 0;
749 }
750
751
752 int Autos::init_automation(int64_t &buffer_position,
753                                 int64_t &input_start,
754                                 int64_t &input_end,
755                                 int &automate,
756                                 double &constant,
757                                 int64_t input_position,
758                                 int64_t buffer_len,
759                                 Auto **before,
760                                 Auto **after,
761                                 int reverse)
762 {
763         buffer_position = 0;
764
765 // set start and end boundaries for automation info
766         input_start = reverse ? input_position - buffer_len : input_position;
767         input_end = reverse ? input_position : input_position + buffer_len;
768
769 // test automation for constant value
770 // and set up *before and *after
771         if(automate)
772         {
773                 if(automation_is_constant(input_start, input_end))
774                 {
775                         constant += get_automation_constant(input_start, input_end);
776                         automate = 0;
777                 }
778         }
779         return automate;
780 }
781
782
783 int Autos::init_slope(Auto **current_auto,
784                                 double &slope_start,
785                                 double &slope_value,
786                                 double &slope_position,
787                                 int64_t &input_start,
788                                 int64_t &input_end,
789                                 Auto **before,
790                                 Auto **after,
791                                 int reverse)
792 {
793 // apply automation
794         *current_auto = reverse ? *after : *before;
795 // no auto before start so use first auto in range
796 // already know there is an auto since automation isn't constant
797         if(!*current_auto)
798         {
799                 *current_auto = reverse ? last : first;
800 //              slope_value = (*current_auto)->value;
801                 slope_start = input_start;
802                 slope_position = 0;
803         }
804         else
805         {
806 // otherwise get the first slope point and advance auto
807 //              slope_value = (*current_auto)->value;
808                 slope_start = (*current_auto)->position;
809                 slope_position = reverse ? slope_start - input_end : input_start - slope_start;
810                 (*current_auto) = reverse ? (*current_auto)->previous : (*current_auto)->next;
811         }
812         return 0;
813 }
814
815
816 int Autos::get_slope(Auto **current_auto,
817                                 double &slope_start,
818                                 double &slope_end,
819                                 double &slope_value,
820                                 double &slope,
821                                 int64_t buffer_len,
822                                 int64_t buffer_position,
823                                 int reverse)
824 {
825 // get the slope
826         if(*current_auto)
827         {
828                 slope_end = reverse ? slope_start - (*current_auto)->position : (*current_auto)->position - slope_start;
829                 if(slope_end)
830 //                      slope = ((*current_auto)->value - slope_value) / slope_end;
831 //              else
832                         slope = 0;
833         }
834         else
835         {
836                 slope = 0;
837                 slope_end = buffer_len - buffer_position;
838         }
839         return 0;
840 }
841
842 int Autos::advance_slope(Auto **current_auto,
843                                 double &slope_start,
844                                 double &slope_value,
845                                 double &slope_position,
846                                 int reverse)
847 {
848         if(*current_auto)
849         {
850                 slope_start = (*current_auto)->position;
851 //              slope_value = (*current_auto)->value;
852                 (*current_auto) = reverse ? (*current_auto)->previous : (*current_auto)->next;
853                 slope_position = 0;
854         }
855         return 0;
856 }
857
858 int64_t Autos::get_length()
859 {
860         if(last)
861                 return last->position + 1;
862         else
863                 return 0;
864 }
865
866 void Autos::get_extents(float *min,
867         float *max,
868         int *coords_undefined,
869         int64_t unit_start,
870         int64_t unit_end)
871 {
872
873 }
874
875
876 void Autos::dump(FILE *fp)
877 {
878 }
879
880
881
882
883
884
885
886
887
888