summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/software_keyboard.h
blob: 9629f64085167e52324c77b676a5010bb8dcfc9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_funcs.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/am/applets/applets.h"

namespace Service::AM::Applets {

enum class KeysetDisable : u32 {
    Space = 0x02,
    Address = 0x04,
    Percent = 0x08,
    Slashes = 0x10,
    Numbers = 0x40,
    DownloadCode = 0x80,
};

struct KeyboardConfig {
    INSERT_PADDING_BYTES(4);
    std::array<char16_t, 9> submit_text;
    u16_le left_symbol_key;
    u16_le right_symbol_key;
    INSERT_PADDING_BYTES(1);
    KeysetDisable keyset_disable_bitmask;
    u32_le initial_cursor_position;
    std::array<char16_t, 65> header_text;
    std::array<char16_t, 129> sub_text;
    std::array<char16_t, 257> guide_text;
    u32_le length_limit;
    INSERT_PADDING_BYTES(4);
    u32_le is_password;
    INSERT_PADDING_BYTES(6);
    bool draw_background;
    u32_le initial_string_offset;
    u32_le initial_string_size;
    u32_le user_dictionary_offset;
    u32_le user_dictionary_size;
    bool text_check;
    u64_le text_check_callback;
};
static_assert(sizeof(KeyboardConfig) == 0x3E0, "KeyboardConfig has incorrect size.");

class SoftwareKeyboard final : public Applet {
public:
    SoftwareKeyboard();
    ~SoftwareKeyboard() override;

    void Initialize(std::vector<std::shared_ptr<IStorage>> storage) override;

    bool TransactionComplete() const override;
    ResultCode GetStatus() const override;
    void ReceiveInteractiveData(std::shared_ptr<IStorage> storage) override;
    void Execute(AppletStorageProxyFunction out_data,
                 AppletStorageProxyFunction out_interactive_data,
                 AppletStateProxyFunction state) override;

    void WriteText(std::optional<std::u16string> text);

private:
    KeyboardConfig config;
    std::u16string initial_text;
    bool complete = false;
    std::vector<u8> final_data;
    ResultCode status = ResultCode(-1);

    AppletStorageProxyFunction out_data;
    AppletStorageProxyFunction out_interactive_data;
    AppletStateProxyFunction state;
};

} // namespace Service::AM::Applets