diff options
author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-11-18 22:16:26 +1100 |
---|---|---|
committer | Ac_K <Acoustik666@gmail.com> | 2019-11-18 12:16:26 +0100 |
commit | ee81ab547ee35c4f5f3342a6f1e0d6bbc60500e8 (patch) | |
tree | 76c623089ea56e2b27bcb06608434117086fb371 /Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs | |
parent | 79abc6ed9375116a08eda6f8e722df56d029c373 (diff) |
Initial swkbd implementation (#826)
* am: Initial swkbd implementation
Currently only implements the full screen keyboard, inline keyboard will come later.
* Remove unnecessary logging
* Miscellaneous tidy up
* am: Always pop incoming interactive session data
* am: Add a reminder to implement the full config struct
* am: Check for a max length of zero
We should only limit/truncate text when the max length is set to a non-zero value.
* Add documentation
* am: Return IStorage not available when queue is empty
We should be returning the appropriate error code when the FIFO is empty, rather than just throwing an exception and killing the emulator.
* Fix typo
* Code style changes
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs new file mode 100644 index 00000000..42a2831e --- /dev/null +++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs @@ -0,0 +1,25 @@ +namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard +{ + internal enum SoftwareKeyboardState + { + /// <summary> + /// swkbd is uninitialized. + /// </summary> + Uninitialized, + + /// <summary> + /// swkbd is ready to process data. + /// </summary> + Ready, + + /// <summary> + /// swkbd is awaiting an interactive reply with a validation status. + /// </summary> + ValidationPending, + + /// <summary> + /// swkbd has completed. + /// </summary> + Complete + } +}
\ No newline at end of file |