using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Crestron.SimplSharpPro.DeviceSupport; namespace PepperDash.Essentials.Core.Touchpanels.Keyboards { public class HabaneroKeyboardController { public BasicTriList TriList { get; private set; } public StringFeedback OutputFeedback { get; private set; } public bool IsVisible { get; private set; } int ShiftMode; StringBuilder Output; public Action HideAction { get; set; } /// /// /// /// public HabaneroKeyboardController(BasicTriList trilist) { TriList = trilist; Output = new StringBuilder(); OutputFeedback = new StringFeedback(() => Output.ToString()); } /// /// Shows the keyboard and attaches sig handlers in the range of 2901-2969 /// public void Show() { if (IsVisible) return; TriList.SetSigTrueAction(KeyboardClosePress, Hide); TriList.SetSigTrueAction(2921, () => Append(A(ShiftMode))); TriList.SetSigTrueAction(2922, () => Append(B(ShiftMode))); TriList.SetSigTrueAction(2923, () => Append(C(ShiftMode))); TriList.SetSigTrueAction(2924, () => Append(D(ShiftMode))); TriList.SetSigTrueAction(2925, () => Append(E(ShiftMode))); TriList.SetSigTrueAction(2926, () => Append(F(ShiftMode))); TriList.SetSigTrueAction(2927, () => Append(G(ShiftMode))); TriList.SetSigTrueAction(2928, () => Append(H(ShiftMode))); TriList.SetSigTrueAction(2929, () => Append(I(ShiftMode))); TriList.SetSigTrueAction(2930, () => Append(J(ShiftMode))); TriList.SetSigTrueAction(2931, () => Append(K(ShiftMode))); TriList.SetSigTrueAction(2932, () => Append(L(ShiftMode))); TriList.SetSigTrueAction(2933, () => Append(M(ShiftMode))); TriList.SetSigTrueAction(2934, () => Append(N(ShiftMode))); TriList.SetSigTrueAction(2935, () => Append(O(ShiftMode))); TriList.SetSigTrueAction(2936, () => Append(P(ShiftMode))); TriList.SetSigTrueAction(2937, () => Append(Q(ShiftMode))); TriList.SetSigTrueAction(2938, () => Append(R(ShiftMode))); TriList.SetSigTrueAction(2939, () => Append(S(ShiftMode))); TriList.SetSigTrueAction(2940, () => Append(T(ShiftMode))); TriList.SetSigTrueAction(2941, () => Append(U(ShiftMode))); TriList.SetSigTrueAction(2942, () => Append(V(ShiftMode))); TriList.SetSigTrueAction(2943, () => Append(W(ShiftMode))); TriList.SetSigTrueAction(2944, () => Append(X(ShiftMode))); TriList.SetSigTrueAction(2945, () => Append(Y(ShiftMode))); TriList.SetSigTrueAction(2946, () => Append(Z(ShiftMode))); TriList.SetSigTrueAction(2947, () => Append('.')); TriList.SetSigTrueAction(2948, () => Append('@')); TriList.SetSigTrueAction(2949, () => Append(' ')); TriList.SetSigTrueAction(2950, Backspace); TriList.SetSigTrueAction(2951, Clear); TriList.SetSigTrueAction(2952, Shift); TriList.SetSigTrueAction(2953, NumShift); TriList.SetBool(KeyboardVisible, true); IsVisible = true; } /// /// Hides the keyboard and disconnects ALL sig handlers from 2901 - 2969 /// public void Hide() { if (!IsVisible) return; for (uint i = 2901; i < 2970; i++) TriList.ClearBoolSigAction(i); // run attached actions if(HideAction != null) HideAction(); TriList.SetBool(KeyboardVisible, false); IsVisible = false; } /// /// /// /// public void Append(char c) { Output.Append(c); OutputFeedback.FireUpdate(); } /// /// /// /// public void Append(string s) { Output.Append(s); OutputFeedback.FireUpdate(); } char A(int i) { return new char[] { 'a', 'A', '?', '?' }[i]; } char B(int i) { return new char[] { 'b', 'B', ':', ':' }[i]; } char C(int i) { return new char[] { 'c', 'C', '>', '>' }[i]; } char D(int i) { return new char[] { 'd', 'D', '_', '_' }[i]; } char E(int i) { return new char[] { 'e', 'E', '3', '#' }[i]; } char F(int i) { return new char[] { 'f', 'F', '=', '=' }[i]; } char G(int i) { return new char[] { 'g', 'G', '+', '+' }[i]; } char H(int i) { return new char[] { 'h', 'H', '[', '[' }[i]; } char I(int i) { return new char[] { 'i', 'I', '8', '*' }[i]; } char J(int i) { return new char[] { 'j', 'J', ']', ']' }[i]; } char K(int i) { return new char[] { 'k', 'K', '/', '/' }[i]; } char L(int i) { return new char[] { 'l', 'L', '\\', '\\' }[i]; } char M(int i) { return new char[] { 'm', 'M', '"', '"' }[i]; } char N(int i) { return new char[] { 'n', 'N', '\'', '\'' }[i]; } char O(int i) { return new char[] { 'o', 'O', '9', '(' }[i]; } char P(int i) { return new char[] { 'p', 'P', '0', ')' }[i]; } char Q(int i) { return new char[] { 'q', 'Q', '1', '!' }[i]; } char R(int i) { return new char[] { 'r', 'R', '4', '$' }[i]; } char S(int i) { return new char[] { 's', 'S', '-', '-' }[i]; } char T(int i) { return new char[] { 't', 'T', '5', '%' }[i]; } char U(int i) { return new char[] { 'u', 'U', '7', '&' }[i]; } char V(int i) { return new char[] { 'v', 'V', ';', ';' }[i]; } char W(int i) { return new char[] { 'w', 'W', '2', '@' }[i]; } char X(int i) { return new char[] { 'x', 'X', '<', '<' }[i]; } char Y(int i) { return new char[] { 'y', 'Y', '6', '^' }[i]; } char Z(int i) { return new char[] { 'z', 'Z', ',', ',' }[i]; } void Backspace() { if (Output.Length > 0) { Output.Remove(Output.Length - 1, 1); OutputFeedback.FireUpdate(); } } void Clear() { Output.Remove(0, Output.Length); OutputFeedback.FireUpdate(); } void Shift() { if (ShiftMode == 0) ShiftMode = 1; else if (ShiftMode == 1) ShiftMode = 0; else if (ShiftMode == 2) ShiftMode = 3; else ShiftMode = 2; TriList.SetUshort(2951, 0); // 0 = up, 1 = down, 2 = #, 3 = 123 TriList.SetUshort(2952, 0); // 0 = #, 1 = abc } void NumShift() { if (ShiftMode == 0 || ShiftMode == 1) ShiftMode = 2; else if (ShiftMode == 2) ShiftMode = 3; else ShiftMode = 0; } /// /// 2901 /// public const uint KeyboardVisible = 2901; /// /// 2902 /// public const uint KeyboardClosePress = 2902; /// /// 2903 /// public const uint KeyboardButton1Press = 2903; /// /// 2904 /// public const uint KeyboardButton2Press = 2904; /// /// 2910 /// public const uint KeyboardClearPress = 2910; /// /// 2911 /// public const uint KeyboardClearVisible = 2911; } /* When in mode 0 (lowercase): * shift button: up arrow 0 * numShift button: 123/#$@#$ 0 * * - shift --> mode 1 * - double-tap shift --> caps lock * - numShift --> mode 2 * * mode 1 (uppercase) * shift button: down arrow 1 * numShift button: 123/##$# 0 * * - shift --> mode 0 * - numShift --> mode 2 * * - Tapping any key will go back to mode 0 * * mode 2 (numbers-sym) * Shift button: #$#$#$ 2 * numShift: ABC 1 * * - shift --> mode 3 * - double-tap shift --> caps lock * - numShift --> mode 0 * * mode 3 (sym) * Shift button: 123 3 * numShift: ABC 1 * * - shift --> mode 2 * - numShift --> mode 0 * * - Tapping any key will go back to mode 2 */ }