1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
use crate::Value;

use super::{sends::TrackSends, SendTrackId, SubTrackId, TrackIndex};

/// Settings for a mixer sub-track.
#[derive(Debug, Clone)]
#[cfg_attr(
	feature = "serde_support",
	derive(serde::Serialize, serde::Deserialize),
	serde(default)
)]
pub struct SubTrackSettings {
	/// The unique identifier for the track.
	pub id: Option<SubTrackId>,
	/// The track that this track's output will be routed to.
	pub parent_track: TrackIndex,
	/// The send tracks that this track will be routed to (in
	/// addition to the parent track).
	pub sends: TrackSends,
	/// The volume of the track.
	pub volume: Value<f64>,
	/// The maximum number of effects this track can hold.
	pub num_effects: usize,
}

impl SubTrackSettings {
	/// Creates a new `TrackSettings` with the default settings.
	pub fn new() -> Self {
		Self::default()
	}

	/// Sets the unique identifier for the track.
	pub fn id(self, id: impl Into<SubTrackId>) -> Self {
		Self {
			id: Some(id.into()),
			..self
		}
	}

	/// Sets the track that this track's output will be routed to.
	pub fn parent_track(self, parent_track: impl Into<TrackIndex>) -> Self {
		Self {
			parent_track: parent_track.into(),
			..self
		}
	}

	/// Sets the send tracks that this track will be routed to (in
	/// addition to the parent track).
	pub fn sends(self, sends: TrackSends) -> Self {
		Self { sends, ..self }
	}

	/// Sets the volume of the track.
	pub fn volume(self, volume: impl Into<Value<f64>>) -> Self {
		Self {
			volume: volume.into(),
			..self
		}
	}

	/// Sets the maximum number of effects this track can hold.
	pub fn num_effects(self, num_effects: usize) -> Self {
		Self {
			num_effects,
			..self
		}
	}
}

impl Default for SubTrackSettings {
	fn default() -> Self {
		Self {
			id: None,
			parent_track: TrackIndex::Main,
			sends: TrackSends::new(),
			volume: Value::Fixed(1.0),
			num_effects: 10,
		}
	}
}

/// Settings for a mixer send-track.
#[derive(Debug, Clone)]
#[cfg_attr(
	feature = "serde_support",
	derive(serde::Serialize, serde::Deserialize),
	serde(default)
)]
pub struct SendTrackSettings {
	/// The unique identifier for the track.
	pub id: Option<SendTrackId>,
	/// The volume of the track.
	pub volume: Value<f64>,
	/// The maximum number of effects this track can hold.
	pub num_effects: usize,
}

impl SendTrackSettings {
	/// Creates a new `TrackSettings` with the default settings.
	pub fn new() -> Self {
		Self::default()
	}

	/// Sets the unique identifier for the track.
	pub fn id(self, id: impl Into<SendTrackId>) -> Self {
		Self {
			id: Some(id.into()),
			..self
		}
	}

	/// Sets the volume of the track.
	pub fn volume(self, volume: impl Into<Value<f64>>) -> Self {
		Self {
			volume: volume.into(),
			..self
		}
	}

	/// Sets the maximum number of effects this track can hold.
	pub fn num_effects(self, num_effects: usize) -> Self {
		Self {
			num_effects,
			..self
		}
	}
}

impl Default for SendTrackSettings {
	fn default() -> Self {
		Self {
			id: None,
			volume: Value::Fixed(1.0),
			num_effects: 10,
		}
	}
}