using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Essentials.Core.Config;
namespace PepperDash.Essentials.Core
{
public static class JoinMapHelper
{
///
/// Attempts to get the serialized join map from config
///
///
///
public static string GetJoinMapForDevice(string joinMapKey)
{
if (string.IsNullOrEmpty(joinMapKey))
return null;
var joinMap = ConfigReader.ConfigObject.JoinMaps[joinMapKey];
if (joinMap != null)
{
return joinMap;
}
else
return null;
}
}
///
/// Base class for join maps
///
public abstract class JoinMapBase
{
///
/// Modifies all the join numbers by adding the offset. This should never be called twice
///
///
public abstract void OffsetJoinNumbers(uint joinStart);
}
}