diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-17 18:20:16 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-18 16:53:47 +0100 |
commit | 02e6602baaf36d7c148739eae922fa91ba4818fd (patch) | |
tree | f7adcf1bc006c6c29c60fd646bebf2f822307a07 /src | |
parent | applet: Use std::queue instead of std::vector for storage stack (diff) | |
download | yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar.gz yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar.bz2 yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar.lz yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar.xz yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.tar.zst yuzu-02e6602baaf36d7c148739eae922fa91ba4818fd.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/applets/software_keyboard.cpp | 44 |
1 files changed, 26 insertions, 18 deletions
diff --git a/src/core/hle/service/am/applets/software_keyboard.cpp b/src/core/hle/service/am/applets/software_keyboard.cpp index a5ffa1f31..5661cc98d 100644 --- a/src/core/hle/service/am/applets/software_keyboard.cpp +++ b/src/core/hle/service/am/applets/software_keyboard.cpp @@ -97,8 +97,10 @@ void SoftwareKeyboard::ReceiveInteractiveData(std::shared_ptr<IStorage> storage) void SoftwareKeyboard::Execute(AppletStorageProxyFunction out_data, AppletStorageProxyFunction out_interactive_data, AppletStateProxyFunction state) { - if (complete) + if (complete) { + out_data(IStorage{final_data}); return; + } const auto& frontend{Core::System::GetInstance().GetSoftwareKeyboard()}; @@ -112,32 +114,38 @@ void SoftwareKeyboard::Execute(AppletStorageProxyFunction out_data, } void SoftwareKeyboard::WriteText(std::optional<std::u16string> text) { - std::vector<u8> output(SWKBD_OUTPUT_BUFFER_SIZE); + std::vector<u8> output_main(SWKBD_OUTPUT_BUFFER_SIZE); if (text.has_value()) { + std::vector<u8> output_sub(SWKBD_OUTPUT_BUFFER_SIZE); status = RESULT_SUCCESS; - if (config.text_check) { - const auto size = static_cast<u32>(text->size() * 2 + 4); - std::memcpy(output.data(), &size, sizeof(u32)); + + const u64 size = text->size() * 2 + 8; + std::memcpy(output_sub.data(), &size, sizeof(u64)); + std::memcpy(output_sub.data() + 8, text->data(), + std::min(text->size() * 2, SWKBD_OUTPUT_BUFFER_SIZE - 8)); + + output_main[0] = config.text_check; + std::memcpy(output_main.data() + 4, text->data(), + std::min(text->size() * 2, SWKBD_OUTPUT_BUFFER_SIZE - 4)); + + complete = !config.text_check; + final_data = output_main; + + if (complete) { + out_data(IStorage{output_main}); } else { - output[0] = 1; + out_data(IStorage{output_main}); + out_interactive_data(IStorage{output_sub}); } - const auto size = static_cast<u32>(text->size()); - std::memcpy(output.data() + 4, &size, sizeof(u32)); - std::memcpy(output.data() + 8, text->data(), - std::min(text->size() * 2, SWKBD_OUTPUT_BUFFER_SIZE - 8)); + state(); } else { status = ResultCode(-1); + output_main[0] = 1; complete = true; - out_data(IStorage{output}); - return; + out_data(IStorage{output_main}); + state(); } - - complete = !config.text_check; - - out_data(IStorage{output}); - out_interactive_data(IStorage{output}); - state(); } } // namespace Service::AM::Applets |