mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
refactor: HdPsXxxOutputAudioController & HdPsXxxAnalogAuxMixerController
- Updated audio controllers to implement `Volume(Feedback).ShortValue` per documentation for set and get - Changed `VolumeLevel` set to private set - Removed `VolumeLevel` and `IsMuted` set from constructors
This commit is contained in:
@@ -7,39 +7,47 @@ using PepperDash.Essentials.Core;
|
|||||||
namespace PepperDash_Essentials_DM.Chassis
|
namespace PepperDash_Essentials_DM.Chassis
|
||||||
{
|
{
|
||||||
public class HdPsXxxAnalogAuxMixerController : IKeyed,
|
public class HdPsXxxAnalogAuxMixerController : IKeyed,
|
||||||
IHasVolumeControlWithFeedback, IHasMuteControlWithFeedback // || IBasicVolumeWithFeedback
|
IHasVolumeControlWithFeedback, IHasMuteControlWithFeedback
|
||||||
{
|
{
|
||||||
public string Key { get; private set; }
|
public string Key { get; private set; }
|
||||||
|
|
||||||
public HdPsXxxAnalogAuxMixer Mixer { get; private set; }
|
private readonly HdPsXxxAnalogAuxMixer _mixer;
|
||||||
|
|
||||||
public HdPsXxxAnalogAuxMixerController(string parent, uint mixer, HdPsXxx chassis)
|
public HdPsXxxAnalogAuxMixerController(string parent, uint mixer, HdPsXxx chassis)
|
||||||
{
|
{
|
||||||
Key = string.Format("{0}-analogMixer{1}", parent, mixer);
|
Key = string.Format("{0}-analogMixer{1}", parent, mixer);
|
||||||
|
|
||||||
Mixer = chassis.AnalogAuxiliaryMixer[mixer];
|
_mixer = chassis.AnalogAuxiliaryMixer[mixer];
|
||||||
|
|
||||||
Mixer.AuxMixerPropertyChange += OnAuxMixerPropertyChange;
|
_mixer.AuxMixerPropertyChange += OnAuxMixerPropertyChange;
|
||||||
Mixer.AuxiliaryMuteControl.MuteAndVolumeControlPropertyChange += OnMuteAndVolumeControlPropertyChange;
|
_mixer.AuxiliaryMuteControl.MuteAndVolumeControlPropertyChange += OnMuteAndVolumeControlPropertyChange;
|
||||||
|
|
||||||
VolumeLevelFeedback = new IntFeedback(() => VolumeLevel);
|
VolumeLevelFeedback = new IntFeedback(() => VolumeLevel);
|
||||||
MuteFeedback = new BoolFeedback(() => IsMuted);
|
MuteFeedback = new BoolFeedback(() => IsMuted);
|
||||||
|
|
||||||
VolumeLevel = Mixer.VolumeFeedback.ShortValue;
|
|
||||||
IsMuted = Mixer.AuxiliaryMuteControl.MuteOnFeedback.BoolValue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Volume
|
#region Volume
|
||||||
|
|
||||||
private void OnAuxMixerPropertyChange(object sender, GenericEventArgs args)
|
private void OnAuxMixerPropertyChange(object sender, GenericEventArgs args)
|
||||||
{
|
{
|
||||||
Debug.Console(2, this, "AuxMixerPropertyChange: {0} > Index-{1}, EventId-{2}", sender.GetType().ToString(), args.Index, args.EventId);
|
Debug.Console(2, this, "OnAuxMixerPropertyChange: {0} > Index-{1}, EventId-{2}", sender.ToString(), args.Index, args.EventId);
|
||||||
|
|
||||||
switch (args.EventId)
|
switch (args.EventId)
|
||||||
{
|
{
|
||||||
case (3):
|
case MuteAndVolumeContorlEventIds.VolumeFeedbackEventId:
|
||||||
{
|
{
|
||||||
VolumeLevel = Mixer.VolumeFeedback.ShortValue;
|
VolumeLevel = _mixer.VolumeFeedback.ShortValue;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case MuteAndVolumeContorlEventIds.MuteOnEventId:
|
||||||
|
case MuteAndVolumeContorlEventIds.MuteOffEventId:
|
||||||
|
{
|
||||||
|
IsMuted = _mixer.AuxiliaryMuteControl.MuteOnFeedback.BoolValue;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
Debug.Console(1, this, "OnAuxMixerPropertyChange: {0} > Index-{1}, EventId-{2} - unhandled eventId", sender.ToString(), args.Index, args.EventId);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -58,13 +66,12 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
public int VolumeLevel
|
public int VolumeLevel
|
||||||
{
|
{
|
||||||
get { return _volumeLevel; }
|
get { return _volumeLevel; }
|
||||||
set
|
private set
|
||||||
{
|
{
|
||||||
var level = value;
|
var level = value;
|
||||||
|
|
||||||
// ScaleWithLimits(inputValue, InputUpperBound, InputLowerBound, OutputUpperBound, OutputLowerBound)
|
|
||||||
_volumeLevel = CrestronEnvironment.ScaleWithLimits(level, DeviceLevelMax, DeviceLevelMin, CrestronLevelMax, CrestronLevelMin);
|
_volumeLevel = CrestronEnvironment.ScaleWithLimits(level, DeviceLevelMax, DeviceLevelMin, CrestronLevelMax, CrestronLevelMin);
|
||||||
|
|
||||||
Debug.Console(1, this, "VolumeFeedback: level-'{0}', scaled-'{1}'", level, _volumeLevel);
|
Debug.Console(1, this, "VolumeFeedback: level-'{0}', scaled-'{1}'", level, _volumeLevel);
|
||||||
|
|
||||||
VolumeLevelFeedback.FireUpdate();
|
VolumeLevelFeedback.FireUpdate();
|
||||||
@@ -72,26 +79,25 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
}
|
}
|
||||||
|
|
||||||
public IntFeedback VolumeLevelFeedback { get; private set; }
|
public IntFeedback VolumeLevelFeedback { get; private set; }
|
||||||
|
|
||||||
public void SetVolume(ushort level)
|
public void SetVolume(ushort level)
|
||||||
{
|
{
|
||||||
// ScaleWithLimits(inputValue, InputUpperBound, InputLowerBound, OutputUpperBound, OutputLowerBound)
|
var levelScaled = CrestronEnvironment.ScaleWithLimits(level, CrestronLevelMax, CrestronLevelMin, DeviceLevelMax, DeviceLevelMin);
|
||||||
var scaled = CrestronEnvironment.ScaleWithLimits(level, CrestronLevelMax, CrestronLevelMin, DeviceLevelMax, DeviceLevelMin);
|
|
||||||
|
|
||||||
Debug.Console(1, this, "SetVolume: level-'{0}', scaled-'{1}'", level, scaled);
|
Debug.Console(1, this, "SetVolume: level-'{0}', levelScaled-'{1}'", level, levelScaled);
|
||||||
|
|
||||||
Mixer.Volume.ShortValue = (short)scaled;
|
_mixer.Volume.ShortValue = (short)levelScaled;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void VolumeUp(bool pressRelease)
|
public void VolumeUp(bool pressRelease)
|
||||||
{
|
{
|
||||||
if (pressRelease)
|
if (pressRelease)
|
||||||
{
|
{
|
||||||
Mixer.Volume.CreateSignedRamp(DeviceLevelMax, RampTime);
|
_mixer.Volume.CreateSignedRamp(DeviceLevelMax, RampTime);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Mixer.Volume.StopRamp();
|
_mixer.Volume.StopRamp();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,14 +105,11 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
{
|
{
|
||||||
if (pressRelease)
|
if (pressRelease)
|
||||||
{
|
{
|
||||||
//var remainingRatio = Mixer.Volume.UShortValue/CrestronLevelMax;
|
_mixer.Volume.CreateSignedRamp(DeviceLevelMin, RampTime);
|
||||||
//Mixer.Volume.CreateRamp(CrestronLevelMin, (uint)(RampTime * remainingRatio));
|
|
||||||
|
|
||||||
Mixer.Volume.CreateSignedRamp(DeviceLevelMin, RampTime);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Mixer.Volume.StopRamp();
|
_mixer.Volume.StopRamp();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -123,12 +126,22 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
|
|
||||||
switch (args.EventId)
|
switch (args.EventId)
|
||||||
{
|
{
|
||||||
case (1):
|
case MuteAndVolumeContorlEventIds.VolumeFeedbackEventId:
|
||||||
case (2):
|
|
||||||
{
|
{
|
||||||
IsMuted = Mixer.AuxiliaryMuteControl.MuteOnFeedback.BoolValue;
|
VolumeLevel = _mixer.VolumeFeedback.ShortValue;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case MuteAndVolumeContorlEventIds.MuteOnEventId:
|
||||||
|
case MuteAndVolumeContorlEventIds.MuteOffEventId:
|
||||||
|
{
|
||||||
|
IsMuted = _mixer.AuxiliaryMuteControl.MuteOnFeedback.BoolValue;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
Debug.Console(1, this, "OnMuteAndVolumeControlPropertyChange: {0} > Index-{1}, EventId-{2} - unhandled eventId", device.ToString(), args.Index, args.EventId);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,12 +164,12 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
|
|
||||||
public void MuteOn()
|
public void MuteOn()
|
||||||
{
|
{
|
||||||
Mixer.AuxiliaryMuteControl.MuteOn();
|
_mixer.AuxiliaryMuteControl.MuteOn();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void MuteOff()
|
public void MuteOff()
|
||||||
{
|
{
|
||||||
Mixer.AuxiliaryMuteControl.MuteOff();
|
_mixer.AuxiliaryMuteControl.MuteOff();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void MuteToggle()
|
public void MuteToggle()
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
var audioDevice = new HdPsXxxOutputAudioController(Key, item.Number, _chassis);
|
var audioDevice = new HdPsXxxOutputAudioController(Key, item.Number, _chassis);
|
||||||
Debug.Console(2, this, "Adding HdPsXxxOutputAudioController '{0}' for output '{1}'", audioDevice.Key, item.Number);
|
Debug.Console(2, this, "Adding HdPsXxxOutputAudioController '{0}' for output '{1}'", audioDevice.Key, item.Number);
|
||||||
DeviceManager.AddDevice(audioDevice);
|
DeviceManager.AddDevice(audioDevice);
|
||||||
}
|
}
|
||||||
foreach (var item in _chassis.AnalogAuxiliaryMixer)
|
foreach (var item in _chassis.AnalogAuxiliaryMixer)
|
||||||
{
|
{
|
||||||
var audioDevice = new HdPsXxxAnalogAuxMixerController(Key, item.MixerNumber, _chassis);
|
var audioDevice = new HdPsXxxAnalogAuxMixerController(Key, item.MixerNumber, _chassis);
|
||||||
|
|||||||
@@ -6,25 +6,56 @@ using PepperDash.Essentials.Core;
|
|||||||
namespace PepperDash_Essentials_DM.Chassis
|
namespace PepperDash_Essentials_DM.Chassis
|
||||||
{
|
{
|
||||||
public class HdPsXxxOutputAudioController : IKeyed,
|
public class HdPsXxxOutputAudioController : IKeyed,
|
||||||
IHasVolumeControlWithFeedback, IHasMuteControlWithFeedback // || IBasicVolumeWithFeedback
|
IHasVolumeControlWithFeedback, IHasMuteControlWithFeedback
|
||||||
{
|
{
|
||||||
public string Key { get; private set; }
|
public string Key { get; private set; }
|
||||||
|
|
||||||
public HdPsXxxOutputPort Port { get; private set; }
|
private readonly HdPsXxxHdmiDmLiteOutputMixer _mixer; // volume/volumeFeedback
|
||||||
|
private readonly HdPsXxxOutputPort _port; // mute/muteFeedback
|
||||||
|
|
||||||
public HdPsXxxOutputAudioController(string parent, uint output, HdPsXxx chassis)
|
public HdPsXxxOutputAudioController(string parent, uint output, HdPsXxx chassis)
|
||||||
{
|
{
|
||||||
Key = string.Format("{0}-audioOut{1}", parent, output);
|
Key = string.Format("{0}-audioOut{1}", parent, output);
|
||||||
|
|
||||||
Port = chassis.HdmiDmLiteOutputs[output].OutputPort;
|
_port = chassis.HdmiDmLiteOutputs[output].OutputPort;
|
||||||
|
_mixer = chassis.HdmiDmLiteOutputs[output].Mixer;
|
||||||
|
|
||||||
|
chassis.DMOutputChange += ChassisOnDmOutputChange;
|
||||||
|
|
||||||
VolumeLevelFeedback = new IntFeedback(() => VolumeLevel);
|
VolumeLevelFeedback = new IntFeedback(() => VolumeLevel);
|
||||||
MuteFeedback = new BoolFeedback(() => IsMuted);
|
MuteFeedback = new BoolFeedback(() => IsMuted);
|
||||||
|
}
|
||||||
|
|
||||||
//if(Port.AudioOutput.Volume != null)
|
private void ChassisOnDmOutputChange(Switch device, DMOutputEventArgs args)
|
||||||
// VolumeLevel = Port.AudioOutput.VolumeFeedback.UShortValue;
|
{
|
||||||
|
switch (args.EventId)
|
||||||
|
{
|
||||||
|
case (DMOutputEventIds.VolumeEventId):
|
||||||
|
{
|
||||||
|
Debug.Console(2, this, "HdPsXxxOutputAudioController: {0} > Index-{1}, Number-{3}, EventId-{2} - AudioMute/UnmuteEventId",
|
||||||
|
device.ToString(), args.Index, args.EventId, args.Number);
|
||||||
|
|
||||||
IsMuted = Port.MuteOnFeedback.BoolValue;
|
VolumeLevel = _mixer.VolumeFeedback.ShortValue;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case DMOutputEventIds.MuteOnEventId:
|
||||||
|
case DMOutputEventIds.MuteOffEventId:
|
||||||
|
{
|
||||||
|
Debug.Console(2, this, "HdPsXxxOutputAudioController: {0} > Index-{1}, Number-{3}, EventId-{2} - MuteOnEventId/MuteOffEventId",
|
||||||
|
device.ToString(), args.Index, args.EventId, args.Number);
|
||||||
|
|
||||||
|
IsMuted = _port.MuteOnFeedback.BoolValue;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
Debug.Console(1, this, "HdPsXxxOutputAudioController: {0} > Index-{1}, Number-{3}, EventId-{2} - unhandled eventId",
|
||||||
|
device.ToString(), args.Index, args.EventId, args.Number);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Volume
|
#region Volume
|
||||||
@@ -42,11 +73,10 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
public int VolumeLevel
|
public int VolumeLevel
|
||||||
{
|
{
|
||||||
get { return _volumeLevel; }
|
get { return _volumeLevel; }
|
||||||
set
|
private set
|
||||||
{
|
{
|
||||||
var level = value;
|
var level = value;
|
||||||
|
|
||||||
// ScaleWithLimits(inputValue, InputUpperBound, InputLowerBound, OutputUpperBound, OutputLowerBound)
|
|
||||||
_volumeLevel = CrestronEnvironment.ScaleWithLimits(level, DeviceLevelMax, DeviceLevelMin, CrestronLevelMax, CrestronLevelMin);
|
_volumeLevel = CrestronEnvironment.ScaleWithLimits(level, DeviceLevelMax, DeviceLevelMin, CrestronLevelMax, CrestronLevelMin);
|
||||||
|
|
||||||
Debug.Console(2, this, "VolumeFeedback: level-'{0}', scaled-'{1}'", level, _volumeLevel);
|
Debug.Console(2, this, "VolumeFeedback: level-'{0}', scaled-'{1}'", level, _volumeLevel);
|
||||||
@@ -59,23 +89,22 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
|
|
||||||
public void SetVolume(ushort level)
|
public void SetVolume(ushort level)
|
||||||
{
|
{
|
||||||
// ScaleWithLimits(inputValue, InputUpperBound, InputLowerBound, OutputUpperBound, OutputLowerBound)
|
var levelScaled = CrestronEnvironment.ScaleWithLimits(level, CrestronLevelMax, CrestronLevelMin, DeviceLevelMax, DeviceLevelMin);
|
||||||
var scaled = CrestronEnvironment.ScaleWithLimits(level, CrestronLevelMax, CrestronLevelMin, DeviceLevelMax, DeviceLevelMin);
|
|
||||||
|
|
||||||
Debug.Console(1, this, "SetVolume: level-'{0}', scaled-'{1}'", level, scaled);
|
Debug.Console(1, this, "SetVolume: level-'{0}', levelScaled-'{1}'", level, levelScaled);
|
||||||
|
|
||||||
Port.AudioOutput.Volume.ShortValue = (short)scaled;
|
_mixer.Volume.ShortValue = (short)levelScaled;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void VolumeUp(bool pressRelease)
|
public void VolumeUp(bool pressRelease)
|
||||||
{
|
{
|
||||||
if (pressRelease)
|
if (pressRelease)
|
||||||
{
|
{
|
||||||
Port.AudioOutput.Volume.CreateSignedRamp(DeviceLevelMax, RampTime);
|
_mixer.Volume.CreateSignedRamp(DeviceLevelMax, RampTime);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Port.AudioOutput.Volume.StopRamp();
|
_mixer.Volume.StopRamp();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,11 +112,11 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
{
|
{
|
||||||
if (pressRelease)
|
if (pressRelease)
|
||||||
{
|
{
|
||||||
Port.AudioOutput.Volume.CreateSignedRamp(DeviceLevelMin, RampTime);
|
_mixer.Volume.CreateSignedRamp(DeviceLevelMin, RampTime);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Port.AudioOutput.Volume.StopRamp();
|
_mixer.Volume.StopRamp();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -117,12 +146,12 @@ namespace PepperDash_Essentials_DM.Chassis
|
|||||||
|
|
||||||
public void MuteOn()
|
public void MuteOn()
|
||||||
{
|
{
|
||||||
Port.MuteOn();
|
_port.MuteOn();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void MuteOff()
|
public void MuteOff()
|
||||||
{
|
{
|
||||||
Port.MuteOff();
|
_port.MuteOff();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void MuteToggle()
|
public void MuteToggle()
|
||||||
|
|||||||
Reference in New Issue
Block a user