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 // Automation point that takes floating point values
31 #include "floatautos.inc"
33 class FloatAuto : public Auto
35 friend class FloatAutos;
38 FloatAuto(EDL *edl, FloatAutos *autos);
41 bool is_floatauto() { return true; }
42 int operator==(Auto &that);
43 int operator==(FloatAuto &that);
44 int identical(FloatAuto *src);
45 int equals(FloatAuto *src);
46 void copy_from(Auto *that);
47 void copy_from(FloatAuto *that);
48 int interpolate_from(Auto *a1, Auto *a2, int64_t pos, Auto *templ=0); // bezier interpolation
49 void copy(int64_t start, int64_t end, FileXML *file, int default_only);
50 void load(FileXML *xml);
52 // for curves, edge==0: the right value, for bumps, edge!=0: the left value1
53 float get_value(int edge=0) {
54 return curve_mode==BUMP && edge ? this->value1 : this->value;
56 // edge==0: set value, for bumps: edge>0, set value1, edge<0: set both
57 void set_value(float value, int edge=-1);
58 void bump_update(int64_t pos, float dv, int edge, int span);
59 void bump_value(float v, int edge, int span);
61 // Possible policies to handle the tagents for the
62 // bézier curves connecting adjacent automation points
65 SMOOTH, // curves are coupled in order to yield a smooth curve
66 LINEAR, // curves always pointing directly to neighbouring automation points
67 TFREE, // curves on both sides coupled but editable by dragging the handles
68 FREE, // curves on both sides are independent and editable via GUI
69 BUMP, // curves and values both sides are independent and editable via GUI
73 void change_curve_mode(t_mode, int adjust=1); // recalculates curves as well
74 void toggle_curve_mode(); // cycles through all modes (e.g. by ctrl-click)
75 int is_bump() { return curve_mode == BUMP ? 1 : 0; }
77 // Control values (y coords of bézier control point), relative to value
78 float get_control_in_value() {check_pos(); return this->control_in_value;}
79 float get_control_out_value() {check_pos(); return this->control_out_value;}
80 void set_control_in_value(float newval);
81 void set_control_out_value(float newval);
83 // get calculated x-position of control points for drawing,
84 // relative to auto position, in native units of the track.
85 int64_t get_control_in_position() {check_pos(); return this->control_in_position;}
86 int64_t get_control_out_position() {check_pos(); return this->control_out_position;}
88 // define new position and value, re-adjust ctrl point, notify neighbours
89 void adjust_to_new_coordinates(int64_t position, float value);
90 // text name for curve mode
91 static const char *curve_name(int curve_mode);
93 void adjust_curves(); // recalc. ctrk in and out points, if automatic curve mode (SMOOTH or LINEAR)
94 void adjust_ctrl_positions(FloatAuto *p=0, FloatAuto *n=0); // recalc. x location of ctrl points, notify neighbours
95 void set_ctrl_positions(FloatAuto*, FloatAuto*);
96 void calculate_slope(FloatAuto* a1, FloatAuto* a2, float& dvdx, float& dx);
97 void check_pos() { if(position != pos_valid) adjust_ctrl_positions(); }
98 void curve_dirty() { pos_valid=-1; }
99 void handle_automatic_curve_after_copy();
101 // Control values are relative to value
102 float value, control_in_value, control_out_value, value1;
103 // X control positions relative to value position for drawing.
104 // In native units of the track.
105 int64_t control_in_position, control_out_position;
107 int64_t pos_valid; // 'dirty flag' to recalculate ctrl point positions on demand
108 int value_to_str(char *string, float value);