diff options
author | Hüseyin ASLITÜRK <asliturk@hotmail.com> | 2020-06-13 13:51:20 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-16 13:15:17 +0200 |
commit | 25e14911c5ff0b22ac933528a919e9434433b551 (patch) | |
tree | e4670e188027f49cecf08d6e4d3262a86fa20349 /Libraries/LibKeyboard/CharacterMapFile.cpp | |
parent | cfaed044640e2a8ef81023197b42a0a6b46cc721 (diff) | |
download | serenity-25e14911c5ff0b22ac933528a919e9434433b551.zip |
LibKeyboard: Replace char data type to u32 for code point
Diffstat (limited to 'Libraries/LibKeyboard/CharacterMapFile.cpp')
-rw-r--r-- | Libraries/LibKeyboard/CharacterMapFile.cpp | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/Libraries/LibKeyboard/CharacterMapFile.cpp b/Libraries/LibKeyboard/CharacterMapFile.cpp index eb50e7f876..f9ff37a8fc 100644 --- a/Libraries/LibKeyboard/CharacterMapFile.cpp +++ b/Libraries/LibKeyboard/CharacterMapFile.cpp @@ -25,6 +25,7 @@ */ #include "CharacterMapFile.h" +#include <AK/Utf8View.h> #include <LibCore/File.h> namespace Keyboard { @@ -52,34 +53,34 @@ Optional<CharacterMapData> CharacterMapFile::load_from_file(const String& file_n ASSERT(json_result.has_value()); auto json = json_result.value().as_object(); - ByteBuffer map = read_map(json, "map"); - ByteBuffer shift_map = read_map(json, "shift_map"); - ByteBuffer alt_map = read_map(json, "alt_map"); - ByteBuffer altgr_map = read_map(json, "altgr_map"); + Vector<u32> map = read_map(json, "map"); + Vector<u32> shift_map = read_map(json, "shift_map"); + Vector<u32> alt_map = read_map(json, "alt_map"); + Vector<u32> altgr_map = read_map(json, "altgr_map"); CharacterMapData character_map; for (int i = 0; i < CHAR_MAP_SIZE; i++) { - character_map.map[i] = map[i]; - character_map.shift_map[i] = shift_map[i]; - character_map.alt_map[i] = alt_map[i]; - if (altgr_map) { - character_map.altgr_map[i] = altgr_map[i]; - } else { + character_map.map[i] = map.at(i); + character_map.shift_map[i] = shift_map.at(i); + character_map.alt_map[i] = alt_map.at(i); + if (altgr_map.is_empty()) { // AltGr map was not found, using Alt map as fallback. - character_map.altgr_map[i] = alt_map[i]; + character_map.altgr_map[i] = alt_map.at(i); + } else { + character_map.altgr_map[i] = altgr_map.at(i); } } return character_map; } -ByteBuffer CharacterMapFile::read_map(const JsonObject& json, const String& name) +Vector<u32> CharacterMapFile::read_map(const JsonObject& json, const String& name) { if (!json.has(name)) - return nullptr; + return {}; - ByteBuffer buffer; - buffer.grow(CHAR_MAP_SIZE); + Vector<u32> buffer; + buffer.resize(CHAR_MAP_SIZE); auto map_arr = json.get(name).as_array(); for (int i = 0; i < map_arr.size(); i++) { @@ -89,8 +90,8 @@ ByteBuffer CharacterMapFile::read_map(const JsonObject& json, const String& name } else if (key_value.length() == 1) { buffer[i] = key_value.characters()[0]; } else { - dbg() << "Unknown character in " << name.characters() << "[" << i << "] = " << key_value.characters() << "."; - ASSERT_NOT_REACHED(); + Utf8View m_utf8_view(key_value.characters()); + buffer[i] = *m_utf8_view.begin(); } } |