mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 10:45:00 +00:00
294 lines
9.0 KiB
C#
294 lines
9.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Core.Routing;
|
|
using PepperDash.Essentials.Devices.Common.Codec;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
public class MockVC : VideoCodecBase, IRoutingOutputs
|
|
{
|
|
public MockVC(string key, string name)
|
|
: base(key, name)
|
|
{
|
|
// Debug helpers
|
|
//ActiveCallCountFeedback.OutputChange += (o, a) => Debug.Console(1, this, "InCall={0}", ActiveCallCountFeedback.IntValue);
|
|
IncomingCallFeedback.OutputChange += (o, a) => Debug.Console(1, this, "IncomingCall={0}", _IncomingCall);
|
|
MuteFeedback.OutputChange += (o, a) => Debug.Console(1, this, "Mute={0}", _IsMuted);
|
|
PrivacyModeIsOnFeedback.OutputChange += (o, a) => Debug.Console(1, this, "Privacy={0}", _PrivacyModeIsOn);
|
|
SharingSourceFeedback.OutputChange += (o, a) => Debug.Console(1, this, "SharingSource={0}", _SharingSource);
|
|
VolumeLevelFeedback.OutputChange += (o, a) => Debug.Console(1, this, "Volume={0}", _VolumeLevel);
|
|
}
|
|
|
|
protected override Func<bool> IncomingCallFeedbackFunc
|
|
{
|
|
get { return () => _IncomingCall; }
|
|
}
|
|
bool _IncomingCall;
|
|
|
|
protected override Func<bool> MuteFeedbackFunc
|
|
{
|
|
get { return () => _IsMuted; }
|
|
}
|
|
bool _IsMuted;
|
|
|
|
protected override Func<bool> PrivacyModeIsOnFeedbackFunc
|
|
{
|
|
get { return () => _PrivacyModeIsOn; }
|
|
}
|
|
bool _PrivacyModeIsOn;
|
|
|
|
protected override Func<string> SharingSourceFeedbackFunc
|
|
{
|
|
get { return () => _SharingSource; }
|
|
}
|
|
string _SharingSource;
|
|
|
|
protected override Func<int> VolumeLevelFeedbackFunc
|
|
{
|
|
get { return () => _VolumeLevel; }
|
|
}
|
|
int _VolumeLevel;
|
|
|
|
/// <summary>
|
|
/// Dials, yo!
|
|
/// </summary>
|
|
public override void Dial(string s)
|
|
{
|
|
Debug.Console(1, this, "Dial: {0}", s);
|
|
var call = new CodecActiveCallItem() { Name = s, Number = s, Id = s, Status = eCodecCallStatus.Dialing };
|
|
ActiveCalls.Add(call);
|
|
OnCallStatusChange(eCodecCallStatus.Unknown, call.Status, call);
|
|
//ActiveCallCountFeedback.FireUpdate();
|
|
// Simulate 2-second ring, then connecting, then connected
|
|
new CTimer(o =>
|
|
{
|
|
call.Type = eCodecCallType.Video;
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Connecting, call);
|
|
new CTimer(oo => SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Connected, call), 1000);
|
|
}, 2000);
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void EndCall(CodecActiveCallItem call)
|
|
{
|
|
Debug.Console(1, this, "EndCall");
|
|
ActiveCalls.Remove(call);
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Disconnected, call);
|
|
//ActiveCallCountFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void EndAllCalls()
|
|
{
|
|
Debug.Console(1, this, "EndAllCalls");
|
|
for(int i = ActiveCalls.Count - 1; i >= 0; i--)
|
|
{
|
|
var call = ActiveCalls[i];
|
|
ActiveCalls.Remove(call);
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Disconnected, call);
|
|
}
|
|
//ActiveCallCountFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
/// For a call from the test methods below
|
|
/// </summary>
|
|
public override void AcceptCall(CodecActiveCallItem call)
|
|
{
|
|
Debug.Console(1, this, "AcceptCall");
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Connecting, call);
|
|
new CTimer(o => SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Connected, call), 1000);
|
|
// should already be in active list
|
|
}
|
|
|
|
/// <summary>
|
|
/// For a call from the test methods below
|
|
/// </summary>
|
|
public override void RejectCall(CodecActiveCallItem call)
|
|
{
|
|
Debug.Console(1, this, "RejectCall");
|
|
ActiveCalls.Remove(call);
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Disconnected, call);
|
|
//ActiveCallCountFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Makes horrible tones go out on the wire!
|
|
/// </summary>
|
|
/// <param name="s"></param>
|
|
public override void SendDtmf(string s)
|
|
{
|
|
Debug.Console(1, this, "SendDTMF: {0}", s);
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void StartSharing()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void StopSharing()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called by routing to make it happen
|
|
/// </summary>
|
|
/// <param name="selector"></param>
|
|
public override void ExecuteSwitch(object selector)
|
|
{
|
|
Debug.Console(1, this, "ExecuteSwitch");
|
|
_SharingSource = selector.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void MuteOff()
|
|
{
|
|
_IsMuted = false;
|
|
MuteFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void MuteOn()
|
|
{
|
|
_IsMuted = true;
|
|
MuteFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void MuteToggle()
|
|
{
|
|
_IsMuted = !_IsMuted;
|
|
MuteFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="level"></param>
|
|
public override void SetVolume(ushort level)
|
|
{
|
|
_VolumeLevel = level;
|
|
VolumeLevelFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pressRelease"></param>
|
|
public override void VolumeDown(bool pressRelease)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pressRelease"></param>
|
|
public override void VolumeUp(bool pressRelease)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void PrivacyModeOn()
|
|
{
|
|
Debug.Console(1, this, "PrivacyMuteOn");
|
|
if (_PrivacyModeIsOn)
|
|
return;
|
|
_PrivacyModeIsOn = true;
|
|
PrivacyModeIsOnFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void PrivacyModeOff()
|
|
{
|
|
Debug.Console(1, this, "PrivacyMuteOff");
|
|
if (!_PrivacyModeIsOn)
|
|
return;
|
|
_PrivacyModeIsOn = false;
|
|
PrivacyModeIsOnFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public override void PrivacyModeToggle()
|
|
{
|
|
_PrivacyModeIsOn = !_PrivacyModeIsOn;
|
|
Debug.Console(1, this, "PrivacyMuteToggle: {0}", _PrivacyModeIsOn);
|
|
PrivacyModeIsOnFeedback.FireUpdate();
|
|
}
|
|
|
|
//********************************************************
|
|
// SIMULATION METHODS
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
public void TestIncomingVideoCall(string url)
|
|
{
|
|
Debug.Console(1, this, "TestIncomingVideoCall from {0}", url);
|
|
var call = new CodecActiveCallItem() { Name = url, Id = url, Number = url, Type= eCodecCallType.Video };
|
|
ActiveCalls.Add(call);
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Incoming, call);
|
|
_IncomingCall = true;
|
|
IncomingCallFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
public void TestIncomingAudioCall(string url)
|
|
{
|
|
Debug.Console(1, this, "TestIncomingAudioCall from {0}", url);
|
|
var call = new CodecActiveCallItem() { Name = url, Id = url, Number = url, Type = eCodecCallType.Audio };
|
|
ActiveCalls.Add(call);
|
|
SetNewCallStatusAndFireCallStatusChange(eCodecCallStatus.Incoming, call);
|
|
_IncomingCall = true;
|
|
IncomingCallFeedback.FireUpdate();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public void TestFarEndHangup()
|
|
{
|
|
Debug.Console(1, this, "TestFarEndHangup");
|
|
|
|
}
|
|
|
|
#region IRoutingOutputs Members
|
|
|
|
public RoutingPortCollection<RoutingOutputPort> OutputPorts
|
|
{
|
|
get { return new RoutingPortCollection<RoutingOutputPort>(); }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |