InputManager.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace COM3D2.MeidoPhotoStudio.Plugin
  6. {
  7. internal class InputManager
  8. {
  9. private static InputListener inputListener;
  10. public static KeyCode CurrentKeyCode { get; private set; }
  11. public static bool Listening { get; private set; }
  12. public static event EventHandler KeyChange;
  13. public static bool Control => Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.RightControl);
  14. public static bool Alt => Input.GetKey(KeyCode.LeftAlt) || Input.GetKey(KeyCode.RightAlt);
  15. public static bool Shift => Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift);
  16. private static readonly Dictionary<MpsKey, KeyCode> Actions = new Dictionary<MpsKey, KeyCode>();
  17. public static void Register(MpsKey action, KeyCode key) => Actions[action] = key;
  18. public static void StartListening()
  19. {
  20. if (inputListener == null) inputListener = new GameObject().AddComponent<InputListener>();
  21. else if (inputListener.gameObject.activeSelf) StopListening();
  22. inputListener.gameObject.SetActive(true);
  23. inputListener.KeyChange += OnKeyChange;
  24. CurrentKeyCode = KeyCode.None;
  25. Listening = true;
  26. }
  27. public static void StopListening()
  28. {
  29. if (inputListener == null || !inputListener.gameObject.activeSelf) return;
  30. inputListener.gameObject.SetActive(false);
  31. inputListener.KeyChange -= OnKeyChange;
  32. CurrentKeyCode = KeyCode.None;
  33. }
  34. public static bool GetKey(MpsKey action)
  35. {
  36. return (Listening || !Actions.ContainsKey(action)) ? false : Input.GetKey(Actions[action]);
  37. }
  38. public static bool GetKeyDown(MpsKey action)
  39. {
  40. return (Listening || !Actions.ContainsKey(action)) ? false : Input.GetKeyDown(Actions[action]);
  41. }
  42. public static void Deactivate()
  43. {
  44. StopListening();
  45. GameObject.Destroy(inputListener?.gameObject);
  46. inputListener = null;
  47. }
  48. private static void OnKeyChange(object sender, KeyChangeEventArgs args)
  49. {
  50. CurrentKeyCode = args.Key;
  51. KeyChange?.Invoke(null, EventArgs.Empty);
  52. StopListening();
  53. }
  54. /* Listener taken from https://forum.unity.com/threads/find-out-which-key-was-pressed.385250/ */
  55. private class InputListener : MonoBehaviour
  56. {
  57. private static readonly KeyCode[] keyCodes;
  58. public event EventHandler<KeyChangeEventArgs> KeyChange;
  59. static InputListener()
  60. {
  61. keyCodes = Enum.GetValues(typeof(KeyCode))
  62. .Cast<KeyCode>()
  63. .Where(keyCode => keyCode < KeyCode.Numlock)
  64. .ToArray();
  65. }
  66. private void Awake() => DontDestroyOnLoad(this);
  67. private void Update()
  68. {
  69. if (Input.anyKeyDown)
  70. {
  71. foreach (KeyCode key in keyCodes)
  72. {
  73. if (Input.GetKeyDown(key))
  74. {
  75. KeyChange?.Invoke(this, new KeyChangeEventArgs(key));
  76. break;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. private class KeyChangeEventArgs : EventArgs
  83. {
  84. public KeyCode Key { get; }
  85. public KeyChangeEventArgs(KeyCode key) => this.Key = key;
  86. }
  87. }
  88. internal enum MpsKey
  89. {
  90. // MeidoPhotoStudio
  91. Activate, Screenshot, ToggleUI, ToggleMessage,
  92. // MeidoManager
  93. MeidoUndressing,
  94. // Camera
  95. CameraLayer, CameraReset, CameraSave, CameraLoad,
  96. // Dragpoint
  97. DragSelect, DragDelete, DragMove, DragRotate, DragScale,
  98. DragFinger,
  99. // Scene management
  100. SaveScene, LoadScene, OpenSceneManager
  101. }
  102. }