1
0
Fork 0

Update BaseModuleAction.cs

documentation
This commit is contained in:
lightling 2022-07-11 20:38:30 -04:00
parent 34d927e9e8
commit b4554b2faf
Signed by: lightling
GPG key ID: 016F11E0AA296B67

View file

@ -3,13 +3,89 @@ using UnityEngine;
namespace Goldenwere.GWSU.CTRL.CHAR.Core
{
/// <summary>
/// Defines how a module action should be implemented.
/// Notes regarding implementation are ideal and may not represent
/// the final method an input module implements them.
/// </summary>
public enum ModuleActionType : uint
{
/// <summary>
/// <para>
/// Specifies that an input:<br/>
/// - Starts when it is first pressed<br/>
/// - Ends when it is first released<br/>
/// </para><br/>
/// <para>
/// For BaseModuleAction with void type, this means that
/// the listener should be invoked on press and on release.
/// </para>
/// <para>
/// For BaseModuleAction with value type, this means that
/// the listener should be invoked every time the value is updated,
/// including on release.
/// </para>
/// </summary>
Held = 0,
/// <summary>
/// <para>
/// Specifies that an input:<br/>
/// - Is called when it is first pressed<br/>
/// </para><br/>
/// <para>
/// For BaseModuleAction with void type, this means that
/// the listener should be invoked on press.
/// </para>
/// <para>
/// For BaseModuleAction with value type, this means that
/// the listener should be invoked with the value
/// that it was first invoked with. Value types typically don't
/// make sense with pressed inputs.
/// </para>
/// </summary>
Pressed = 1,
/// <summary>
/// <para>
/// Specifies that an input:<br/>
/// - Is called when it is first pressed<br/>
/// - Is called when it is released
/// only if preference given to held inputs<br/>
/// This is useful for actions that can function either toggled or held,
/// and ideally should be used over type Held.
/// For example, actions like crouch and sprint can be HeldOrPressed,
/// whereas traditional first-person movement in most cases only works as Held.
/// </para><br/>
/// <para>
/// For BaseModuleAction with void type, this means that
/// the listener should be invoked on press
/// and on release if allowed by some sort of bool setting.
/// </para>
/// <para>
/// For BaseModuleAction with value type, this means that
/// the listener should be invoked with the value
/// that it was first invoked with,
/// then be invoked with the default/zero value on release.
/// Value types typically don't make sense with HeldOrPressed inputs.
/// </para>
/// </summary>
HeldOrPressed = 2,
}
/// <summary>
/// <para>
/// Class representing a base module action with no association to any value type.
/// </para>
/// <para>
/// At base, a module is a bridge between an emitter and a listener.<br/>
/// - The emitter is some sort of ScriptableObject which emits input
/// from a general input system. E.g. InputActionReference<br/>
/// - The listener is the method on a module that subscribes to the emitter.<br/>
/// </para>
/// <para>
/// Additionally, it defines the action's type,
/// which describes how the controller should implement its emitted input.
/// </para>
/// </summary>
public class BaseModuleAction
{
[SerializeField] private ScriptableObject emitter;
@ -36,6 +112,21 @@ namespace Goldenwere.GWSU.CTRL.CHAR.Core
}
}
/// <summary>
/// <para>
/// Class representing a base module action associated with a value type.
/// </para>
/// <para>
/// At base, a module is a bridge between an emitter and a listener.<br/>
/// - The emitter is some sort of ScriptableObject which emits input
/// from a general input system. E.g. InputActionReference<br/>
/// - The listener is the method on a module that subscribes to the emitter.<br/>
/// </para>
/// <para>
/// Additionally, it defines the action's type,
/// which describes how the controller should implement its emitted input.
/// </para>
/// </summary>
public class BaseModuleAction<T>
where T : struct
{