mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 08:16:11 +00:00
216 lines
5.2 KiB
C#
216 lines
5.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
using Crestron.SimplSharpPro.EthernetCommunication;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common.Codec;
|
|
|
|
namespace PepperDash.Essentials.AppServer.Messengers
|
|
{
|
|
public class Ddvc01AtcMessenger : MessengerBase
|
|
{
|
|
BasicTriList EISC;
|
|
|
|
/// <summary>
|
|
/// 221
|
|
/// </summary>
|
|
const uint BDialHangupOnHook = 221;
|
|
|
|
/// <summary>
|
|
/// 251
|
|
/// </summary>
|
|
const uint BIncomingAnswer = 251;
|
|
/// <summary>
|
|
/// 252
|
|
/// </summary>
|
|
const uint BIncomingReject = 252;
|
|
/// <summary>
|
|
/// 241
|
|
/// </summary>
|
|
const uint BSpeedDial1 = 241;
|
|
/// <summary>
|
|
/// 242
|
|
/// </summary>
|
|
const uint BSpeedDial2 = 242;
|
|
/// <summary>
|
|
/// 243
|
|
/// </summary>
|
|
const uint BSpeedDial3 = 243;
|
|
/// <summary>
|
|
/// 244
|
|
/// </summary>
|
|
const uint BSpeedDial4 = 244;
|
|
|
|
/// <summary>
|
|
/// 201
|
|
/// </summary>
|
|
const uint SCurrentDialString = 201;
|
|
/// <summary>
|
|
/// 211
|
|
/// </summary>
|
|
const uint SCurrentCallNumber = 211;
|
|
/// <summary>
|
|
/// 212
|
|
/// </summary>
|
|
const uint SCurrentCallName = 212;
|
|
/// <summary>
|
|
/// 221
|
|
/// </summary>
|
|
const uint SHookState = 221;
|
|
/// <summary>
|
|
/// 222
|
|
/// </summary>
|
|
const uint SCallDirection = 222;
|
|
|
|
/// <summary>
|
|
/// 201-212 0-9*#
|
|
/// </summary>
|
|
Dictionary<string, uint> DTMFMap = new Dictionary<string, uint>
|
|
{
|
|
{ "1", 201 },
|
|
{ "2", 202 },
|
|
{ "3", 203 },
|
|
{ "4", 204 },
|
|
{ "5", 205 },
|
|
{ "6", 206 },
|
|
{ "7", 207 },
|
|
{ "8", 208 },
|
|
{ "9", 209 },
|
|
{ "0", 210 },
|
|
{ "*", 211 },
|
|
{ "#", 212 },
|
|
};
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
CodecActiveCallItem CurrentCallItem;
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="eisc"></param>
|
|
/// <param name="messagePath"></param>
|
|
public Ddvc01AtcMessenger(string key, BasicTriList eisc, string messagePath)
|
|
: base(key, messagePath)
|
|
{
|
|
EISC = eisc;
|
|
|
|
CurrentCallItem = new CodecActiveCallItem();
|
|
CurrentCallItem.Type = eCodecCallType.Audio;
|
|
CurrentCallItem.Id = "-audio-";
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
void SendFullStatus()
|
|
{
|
|
|
|
|
|
this.PostStatusMessage(new
|
|
{
|
|
calls = GetCurrentCallList(),
|
|
currentCallString = EISC.GetString(SCurrentCallNumber),
|
|
currentDialString = EISC.GetString(SCurrentDialString),
|
|
isInCall = EISC.GetString(SHookState) == "Connected"
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="appServerController"></param>
|
|
protected override void CustomRegisterWithAppServer(CotijaSystemController appServerController)
|
|
{
|
|
//EISC.SetStringSigAction(SCurrentDialString, s => PostStatusMessage(new { currentDialString = s }));
|
|
|
|
EISC.SetStringSigAction(SHookState, s =>
|
|
{
|
|
CurrentCallItem.Status = (eCodecCallStatus)Enum.Parse(typeof(eCodecCallStatus), s, true);
|
|
//GetCurrentCallList();
|
|
SendFullStatus();
|
|
});
|
|
|
|
EISC.SetStringSigAction(SCurrentCallNumber, s =>
|
|
{
|
|
CurrentCallItem.Number = s;
|
|
SendCallsList();
|
|
});
|
|
|
|
EISC.SetStringSigAction(SCurrentCallName, s =>
|
|
{
|
|
CurrentCallItem.Name = s;
|
|
SendCallsList();
|
|
});
|
|
|
|
EISC.SetStringSigAction(SCallDirection, s =>
|
|
{
|
|
CurrentCallItem.Direction = (eCodecCallDirection)Enum.Parse(typeof(eCodecCallDirection), s, true);
|
|
SendCallsList();
|
|
});
|
|
|
|
// Add press and holds using helper
|
|
Action<string, uint> addPHAction = (s, u) =>
|
|
AppServerController.AddAction(MessagePath + s, new PressAndHoldAction(b => EISC.SetBool(u, b)));
|
|
|
|
// Add straight pulse calls
|
|
Action<string, uint> addAction = (s, u) =>
|
|
AppServerController.AddAction(MessagePath + s, new Action(() => EISC.PulseBool(u, 100)));
|
|
addAction("/endCallById", BDialHangupOnHook);
|
|
addAction("/endAllCalls", BDialHangupOnHook);
|
|
addAction("/acceptById", BIncomingAnswer);
|
|
addAction("/rejectById", BIncomingReject);
|
|
addAction("/speedDial1", BSpeedDial1);
|
|
addAction("/speedDial2", BSpeedDial2);
|
|
addAction("/speedDial3", BSpeedDial3);
|
|
addAction("/speedDial4", BSpeedDial4);
|
|
|
|
// Get status
|
|
AppServerController.AddAction(MessagePath + "/fullStatus", new Action(SendFullStatus));
|
|
// Dial on string
|
|
AppServerController.AddAction(MessagePath + "/dial", new Action<string>(s => EISC.SetString(SCurrentDialString, s)));
|
|
// Pulse DTMF
|
|
AppServerController.AddAction(MessagePath + "/dtmf", new Action<string>(s =>
|
|
{
|
|
if (DTMFMap.ContainsKey(s))
|
|
{
|
|
EISC.PulseBool(DTMFMap[s], 100);
|
|
}
|
|
}));
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
void SendCallsList()
|
|
{
|
|
PostStatusMessage(new
|
|
{
|
|
calls = GetCurrentCallList(),
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Turns the
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<CodecActiveCallItem> GetCurrentCallList()
|
|
{
|
|
if (CurrentCallItem.Status == eCodecCallStatus.Disconnected)
|
|
{
|
|
return new List<CodecActiveCallItem>();
|
|
}
|
|
else
|
|
{
|
|
return new List<CodecActiveCallItem>() { CurrentCallItem };
|
|
}
|
|
}
|
|
}
|
|
} |