mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-02-15 20:54:46 +00:00
122 lines
3.0 KiB
C#
122 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Core.JsonToSimpl
|
|
{
|
|
/// <summary>
|
|
/// Constants for Simpl modules
|
|
/// </summary>
|
|
public class JsonToSimplConstants
|
|
{
|
|
public const ushort JsonIsValidBoolChange = 2;
|
|
|
|
public const ushort BoolValueChange = 1;
|
|
public const ushort UshortValueChange = 101;
|
|
public const ushort StringValueChange = 201;
|
|
}
|
|
|
|
//**************************************************************************************************//
|
|
public delegate void SPlusValuesDelegate();
|
|
|
|
public class SPlusValueWrapper
|
|
{
|
|
public SPlusType ValueType { get; private set; }
|
|
public ushort Index { get; private set; }
|
|
public ushort BoolUShortValue { get; set; }
|
|
public string StringValue { get; set; }
|
|
|
|
public SPlusValueWrapper() { }
|
|
|
|
public SPlusValueWrapper(SPlusType type, ushort index)
|
|
{
|
|
ValueType = type;
|
|
Index = index;
|
|
}
|
|
}
|
|
|
|
public enum SPlusType
|
|
{
|
|
Digital, Analog, String
|
|
}
|
|
|
|
|
|
//**************************************************************************************************//
|
|
public class BoolChangeEventArgs : EventArgs
|
|
{
|
|
public bool State { get; set; }
|
|
public ushort IntValue { get { return (ushort)(State ? 1 : 0); } }
|
|
public ushort Type { get; set; }
|
|
public ushort Index { get; set; }
|
|
|
|
public BoolChangeEventArgs()
|
|
{
|
|
}
|
|
|
|
public BoolChangeEventArgs(bool state, ushort type)
|
|
{
|
|
State = state;
|
|
Type = type;
|
|
}
|
|
|
|
public BoolChangeEventArgs(bool state, ushort type, ushort index)
|
|
{
|
|
State = state;
|
|
Type = type;
|
|
Index = index;
|
|
}
|
|
}
|
|
|
|
//**************************************************************************************************//
|
|
public class UshrtChangeEventArgs : EventArgs
|
|
{
|
|
public ushort IntValue { get; set; }
|
|
public ushort Type { get; set; }
|
|
public ushort Index { get; set; }
|
|
|
|
public UshrtChangeEventArgs()
|
|
{
|
|
}
|
|
|
|
public UshrtChangeEventArgs(ushort intValue, ushort type)
|
|
{
|
|
IntValue = intValue;
|
|
Type = type;
|
|
}
|
|
|
|
public UshrtChangeEventArgs(ushort intValue, ushort type, ushort index)
|
|
{
|
|
IntValue = intValue;
|
|
Type = type;
|
|
Index = index;
|
|
}
|
|
}
|
|
|
|
//**************************************************************************************************//
|
|
public class StringChangeEventArgs : EventArgs
|
|
{
|
|
public string StringValue { get; set; }
|
|
public ushort Type { get; set; }
|
|
public ushort Index { get; set; }
|
|
|
|
public StringChangeEventArgs()
|
|
{
|
|
}
|
|
|
|
public StringChangeEventArgs(string stringValue, ushort type)
|
|
{
|
|
StringValue = stringValue;
|
|
Type = type;
|
|
}
|
|
|
|
public StringChangeEventArgs(string stringValue, ushort type, ushort index)
|
|
{
|
|
StringValue = stringValue;
|
|
Type = type;
|
|
Index = index;
|
|
}
|
|
|
|
}
|
|
} |