diff --git a/Assets/Goldenwere/GWSU/Controller/Character/InputSystemModule/Runtime/InputModule.cs b/Assets/Goldenwere/GWSU/Controller/Character/InputSystemModule/Runtime/InputModule.cs
index 070bce8..e002dfe 100644
--- a/Assets/Goldenwere/GWSU/Controller/Character/InputSystemModule/Runtime/InputModule.cs
+++ b/Assets/Goldenwere/GWSU/Controller/Character/InputSystemModule/Runtime/InputModule.cs
@@ -6,8 +6,15 @@ using Goldenwere.GWSU.CTRL.CHAR.Core;
namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
{
+ ///
+ /// Input Module that implements the UnityEngine's InputSystem.
+ /// Note: The Input Module assumes the InputSystem sets its inputs to default
+ ///
public class InputModule : BaseInputModule
{
+ ///
+ /// Container for the actions associated with InputActions
+ ///
internal struct Callbacks
{
public Action canceled;
@@ -15,10 +22,13 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
public Action started;
}
- public bool preferToggledInputs;
-
+ // Field backing the RegisteredCallbacks property.
+ // This variable could possibly be null; reference the property instead.
private Dictionary registeredCallbacks;
+ ///
+ /// Callbacks that are currently registered with the Input Module
+ ///
private Dictionary RegisteredCallbacks
{
get
@@ -31,11 +41,16 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
}
}
+ ///
+ /// Whether HeldOrPressed inputs prefer Pressed (true) or Held (false)
+ ///
+ public bool preferToggledInputs;
+
public override void RegisterModuleAction(BaseModuleAction _action)
{
if (TryGetReference(_action.Emitter, out InputActionReference _reference))
{
- Action canceled = (InputAction.CallbackContext ctx) =>
+ void canceled (InputAction.CallbackContext ctx)
{
switch (_action.Type)
{
@@ -51,13 +66,16 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
}
};
- Action performed = (InputAction.CallbackContext ctx) =>
+ void performed (InputAction.CallbackContext ctx)
{
_action.Listener.Invoke();
};
+ // Subscribe to the corresponding events on the InputAction
_reference.action.canceled += canceled;
_reference.action.performed += performed;
+
+ // Register the callbacks with the Input Module
RegisteredCallbacks.Add
(
_action.GUID,
@@ -74,7 +92,7 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
{
if (TryGetReference(_action.Emitter, out InputActionReference _reference))
{
- Action canceled = (InputAction.CallbackContext ctx) =>
+ void canceled (InputAction.CallbackContext ctx)
{
switch (_action.Type)
{
@@ -89,7 +107,8 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
break;
}
};
- Action performed = (InputAction.CallbackContext ctx) =>
+
+ void performed (InputAction.CallbackContext ctx)
{
switch (_action.Type)
{
@@ -98,7 +117,8 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
break;
}
};
- Action started = (InputAction.CallbackContext ctx) =>
+
+ void started (InputAction.CallbackContext ctx)
{
switch (_action.Type)
{
@@ -109,9 +129,12 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
}
};
+ // Subscribe to the corresponding events on the InputAction
_reference.action.canceled += canceled;
_reference.action.performed += performed;
_reference.action.started += started;
+
+ // Register the callbacks with the Input Module
RegisteredCallbacks.Add
(
_action.GUID,
@@ -141,9 +164,14 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
}
}
- private bool CheckForCallback(Guid id)
+ ///
+ /// Checks if the callback is registered
+ ///
+ /// The id to check for
+ /// True if registered, false if not
+ private bool CheckForCallback(Guid _id)
{
- if (RegisteredCallbacks.ContainsKey(id))
+ if (RegisteredCallbacks.ContainsKey(_id))
{
return true;
}
@@ -151,6 +179,12 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
return false;
}
+ ///
+ /// Checks if an emitter can be cast to InputActionReference and returns the result
+ ///
+ /// The emitter to cast to an InputActionReference
+ /// The emitter cast to an InputActionReference
+ /// True if successfully cast, false if not
private bool TryGetReference(ScriptableObject _emitter, out InputActionReference _reference)
{
if (_emitter is InputActionReference reference)
@@ -166,6 +200,11 @@ namespace Goldenwere.GWSU.CTRL.CHAR.InputSystemModule
return false;
}
+ ///
+ /// Generic method to unregister actions from the Input Module
+ ///
+ /// The emitter InputActionReference to unsubscribe from
+ /// The id of the callbacks to unregister with
private void Unregister(InputActionReference _reference, Guid _id)
{
if (CheckForCallback(_id))