Change the feedback alert to a flashing button; works
[ardour.git] / libs / ardour / ardour / types.h
index cae2d5bcf75f2b58192c243bfed2fb72c07674b9..417a9ed54d5f197edfbaa1c031e2bd671b7988ef 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <istream>
 #include <vector>
+#include <map>
 #include <boost/shared_ptr.hpp>
 #include <sys/types.h>
 #include <stdint.h>
 #include <inttypes.h>
 #include <jack/types.h>
 #include <jack/midiport.h>
-#include "control_protocol/timecode.h"
+
+#include "timecode/bbt_time.h"
+#include "timecode/time.h"
+
 #include "pbd/id.h"
 
-#include "ardour/bbt_time.h"
 #include "ardour/chan_count.h"
 
 #include <map>
@@ -46,6 +49,7 @@ namespace ARDOUR {
        class Source;
        class AudioSource;
        class Route;
+       class Region;
 
        typedef jack_default_audio_sample_t Sample;
        typedef float                       pan_t;
@@ -54,26 +58,28 @@ namespace ARDOUR {
        typedef uint64_t                    microseconds_t;
        typedef jack_nframes_t              pframes_t;
 
-        /* Any position measured in audio frames.
-           Assumed to be non-negative but not enforced.
-         */
+       /* Any position measured in audio frames.
+          Assumed to be non-negative but not enforced.
+       */
        typedef int64_t framepos_t;
 
-        /* Any distance from a given framepos_t.
-           Maybe positive or negative.
-        */
+       /* Any distance from a given framepos_t.
+          Maybe positive or negative.
+       */
        typedef int64_t frameoffset_t;
 
-       /* Any count of audio frames. 
-           Assumed to be positive but not enforced.
-        */
+       /* Any count of audio frames.
+          Assumed to be positive but not enforced.
+       */
        typedef int64_t framecnt_t;
 
-        static const framepos_t max_framepos = INT64_MAX;
-        static const framecnt_t max_framecnt = INT64_MAX;
+       static const framepos_t max_framepos = INT64_MAX;
+       static const framecnt_t max_framecnt = INT64_MAX;
 
-        // a set of (time) intervals: first of pair is the offset within the region, second is the length of the interval
-        typedef std::list<std::pair<frameoffset_t,framecnt_t> > AudioIntervalResult;
+       // a set of (time) intervals: first of pair is the offset of the start within the region, second is the offset of the end
+       typedef std::list<std::pair<frameoffset_t, frameoffset_t> > AudioIntervalResult;
+       // associate a set of intervals with regions (e.g. for silence detection)
+       typedef std::map<boost::shared_ptr<ARDOUR::Region>,AudioIntervalResult> AudioIntervalMap;
 
        struct IOChange {
 
@@ -99,41 +105,44 @@ namespace ARDOUR {
                OverlapEnd,       // overlap begins within and covers end
                OverlapExternal   // overlap extends to (at least) begin+end
        };
-        
-        ARDOUR::OverlapType coverage (framepos_t sa, framepos_t ea,
-                                      framepos_t sb, framepos_t eb);
-
-        /* policies for inserting/pasting material where overlaps
-           might be an issue.
-        */
-
-        enum InsertMergePolicy {
-                InsertMergeReject,  // no overlaps allowed
-                InsertMergeRelax,   // we just don't care about overlaps
-                InsertMergeReplace, // replace old with new
-                InsertMergeTruncateExisting, // shorten existing to avoid overlap
-                InsertMergeTruncateAddition, // shorten new to avoid overlap
-                InsertMergeExtend   // extend new (or old) to the range of old+new
-        };
-
-       /** See parameter.h
-        * XXX: I don't think/hope these hex values matter anymore.
+
+       ARDOUR::OverlapType coverage (framepos_t sa, framepos_t ea,
+                                     framepos_t sb, framepos_t eb);
+
+       /* policies for inserting/pasting material where overlaps
+          might be an issue.
+       */
+
+       enum InsertMergePolicy {
+               InsertMergeReject,  // no overlaps allowed
+               InsertMergeRelax,   // we just don't care about overlaps
+               InsertMergeReplace, // replace old with new
+               InsertMergeTruncateExisting, // shorten existing to avoid overlap
+               InsertMergeTruncateAddition, // shorten new to avoid overlap
+               InsertMergeExtend   // extend new (or old) to the range of old+new
+       };
+
+       /** See evoral/Parameter.hpp
         */
        enum AutomationType {
-               NullAutomation = 0x0,
-               GainAutomation = 0x1,
-               PanAutomation = 0x2,
-               PluginAutomation = 0x4,
-               SoloAutomation = 0x8,
-               MuteAutomation = 0x10,
-               MidiCCAutomation = 0x20,
-               MidiPgmChangeAutomation = 0x21,
-               MidiPitchBenderAutomation = 0x22,
-               MidiChannelPressureAutomation = 0x23,
-               MidiSystemExclusiveAutomation = 0x24,
-               FadeInAutomation = 0x40,
-               FadeOutAutomation = 0x80,
-               EnvelopeAutomation = 0x100
+               NullAutomation,
+               GainAutomation,
+               PanAzimuthAutomation,
+               PanElevationAutomation,
+               PanWidthAutomation,
+               PanFrontBackAutomation,
+               PanLFEAutomation,
+               PluginAutomation,
+               SoloAutomation,
+               MuteAutomation,
+               MidiCCAutomation,
+               MidiPgmChangeAutomation,
+               MidiPitchBenderAutomation,
+               MidiChannelPressureAutomation,
+               MidiSystemExclusiveAutomation,
+               FadeInAutomation,
+               FadeOutAutomation,
+               EnvelopeAutomation
        };
 
        enum AutoState {
@@ -159,10 +168,17 @@ namespace ARDOUR {
                ExistingMaterial
        };
 
+       enum AlignChoice {
+               UseCaptureTime,
+               UseExistingMaterial,
+               Automatic
+       };
+
        enum MeterPoint {
                MeterInput,
                MeterPreFader,
                MeterPostFader,
+               MeterOutput,
                MeterCustom
        };
 
@@ -212,8 +228,8 @@ namespace ARDOUR {
 
                Type type;
 
-               Timecode::Time    timecode;
-               BBT_Time       bbt;
+               Timecode::Time     timecode;
+               Timecode::BBT_Time bbt;
 
                union {
                        framecnt_t     frames;
@@ -221,6 +237,41 @@ namespace ARDOUR {
                };
 
                AnyTime() { type = Frames; frames = 0; }
+
+               bool operator== (AnyTime const & other) const {
+                       if (type != other.type) { return false; }
+
+                       switch (type) {
+                         case Timecode:
+                               return timecode == other.timecode;
+                         case BBT:
+                               return bbt == other.bbt;
+                         case Frames:
+                               return frames == other.frames;
+                         case Seconds:
+                               return seconds == other.seconds;
+                       }
+                       return false; // get rid of warning
+               }
+
+               bool not_zero() const
+               {
+                       switch (type) {
+                         case Timecode:
+                               return timecode.hours != 0 || timecode.minutes != 0 ||
+                                      timecode.seconds != 0 || timecode.frames != 0;
+                         case BBT:
+                               return bbt.bars != 0 || bbt.beats != 0 || bbt.ticks != 0;
+                         case Frames:
+                               return frames != 0;
+                         case Seconds:
+                               return seconds != 0;
+                       }
+
+                       /* NOTREACHED */
+                       assert (false);
+                       return false;
+               }
        };
 
        struct AudioRange {
@@ -246,11 +297,11 @@ namespace ARDOUR {
        };
 
        struct MusicRange {
-               BBT_Time start;
-               BBT_Time end;
+               Timecode::BBT_Time start;
+               Timecode::BBT_Time end;
                uint32_t id;
 
-               MusicRange (BBT_Time& s, BBT_Time& e, uint32_t i)
+               MusicRange (Timecode::BBT_Time& s, Timecode::BBT_Time& e, uint32_t i)
                        : start (s), end (e), id (i) {}
 
                bool operator== (const MusicRange& other) const {
@@ -307,6 +358,33 @@ namespace ARDOUR {
                ExternalMonitoring
        };
 
+       enum MonitorChoice {
+               MonitorAuto = 0,
+               MonitorInput = 0x1,
+               MonitorDisk = 0x2,
+               MonitorCue = 0x4,
+       };
+
+       enum MonitorState {
+               MonitoringSilence = 0x1,
+               MonitoringInput = 0x2,
+               MonitoringDisk = 0x4,
+       };
+
+       enum PFLPosition {
+               /** PFL signals come from before pre-fader processors */
+               PFLFromBeforeProcessors,
+               /** PFL signals come pre-fader but after pre-fader processors */
+               PFLFromAfterProcessors
+       };
+
+       enum AFLPosition {
+               /** AFL signals come post-fader and before post-fader processors */
+               AFLFromBeforeProcessors,
+               /** AFL signals come post-fader but after post-fader processors */
+               AFLFromAfterProcessors
+       };
+
        enum DenormalModel {
                DenormalNone,
                DenormalFTZ,
@@ -344,7 +422,7 @@ namespace ARDOUR {
 
        struct InterThreadInfo {
                InterThreadInfo () : done (false), cancel (false), progress (0), thread (0) {}
-                       
+
                volatile bool  done;
                volatile bool  cancel;
                volatile float progress;
@@ -384,7 +462,8 @@ namespace ARDOUR {
                AudioUnit,
                LADSPA,
                LV2,
-               VST
+               VST,
+               LXVST,
        };
 
        enum RunContext {
@@ -434,7 +513,8 @@ namespace ARDOUR {
 
        typedef std::list<framepos_t> AnalysisFeatureList;
 
-       typedef std::list<boost::shared_ptr<Route> >      RouteList;
+       typedef std::list<boost::shared_ptr<Route> > RouteList;
+       typedef std::list<boost::weak_ptr  <Route> > WeakRouteList;
 
        class Bundle;
        typedef std::vector<boost::shared_ptr<Bundle> > BundleList;
@@ -490,13 +570,13 @@ namespace ARDOUR {
                bool meter_visibly_changed;
        };
 
-        struct BusProfile {
-            AutoConnectOption input_ac;      /* override the RC config for input auto-connection */
-            AutoConnectOption output_ac;     /* override the RC config for output auto-connection */
-            uint32_t master_out_channels;    /* how many channels for the master bus */
-            uint32_t requested_physical_in;  /* now many of the available physical inputs to consider usable */
-            uint32_t requested_physical_out; /* now many of the available physical inputs to consider usable */
-        };
+       struct BusProfile {
+               AutoConnectOption input_ac;      /* override the RC config for input auto-connection */
+               AutoConnectOption output_ac;     /* override the RC config for output auto-connection */
+               uint32_t master_out_channels;    /* how many channels for the master bus */
+               uint32_t requested_physical_in;  /* now many of the available physical inputs to consider usable */
+               uint32_t requested_physical_out; /* now many of the available physical inputs to consider usable */
+       };
 
        enum FadeShape {
                FadeLinear,
@@ -518,6 +598,8 @@ std::istream& operator>>(std::istream& o, ARDOUR::HeaderFormat& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::AutoConnectOption& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::EditMode& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::MonitorModel& sf);
+std::istream& operator>>(std::istream& o, ARDOUR::PFLPosition& sf);
+std::istream& operator>>(std::istream& o, ARDOUR::AFLPosition& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::RemoteModel& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::ListenPosition& sf);
 std::istream& operator>>(std::istream& o, ARDOUR::LayerModel& sf);
@@ -537,6 +619,8 @@ std::ostream& operator<<(std::ostream& o, const ARDOUR::HeaderFormat& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::AutoConnectOption& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::EditMode& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::MonitorModel& sf);
+std::ostream& operator<<(std::ostream& o, const ARDOUR::PFLPosition& sf);
+std::ostream& operator<<(std::ostream& o, const ARDOUR::AFLPosition& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::RemoteModel& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::ListenPosition& sf);
 std::ostream& operator<<(std::ostream& o, const ARDOUR::LayerModel& sf);
@@ -554,13 +638,13 @@ std::ostream& operator<<(std::ostream& o, const ARDOUR::PositionLockStyle& sf);
 static inline ARDOUR::framepos_t
 session_frame_to_track_frame (ARDOUR::framepos_t session_frame, double speed)
 {
-       return (ARDOUR::framepos_t)( (double)session_frame * speed );
+       return (ARDOUR::framepos_t) ((long double) session_frame * (long double) speed);
 }
 
 static inline ARDOUR::framepos_t
 track_frame_to_session_frame (ARDOUR::framepos_t track_frame, double speed)
 {
-       return (ARDOUR::framepos_t)( (double)track_frame / speed );
+       return (ARDOUR::framepos_t) ((long double) track_frame / (long double) speed);
 }
 
 /* for now, break the rules and use "using" to make this "global" */