From 857c228909603d1a27a40f2714f8b9076fabba6e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 15 Sep 2020 22:30:45 +0200 Subject: Keymaps n stuff --- libtxt/keymap.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 libtxt/keymap.c (limited to 'libtxt/keymap.c') diff --git a/libtxt/keymap.c b/libtxt/keymap.c new file mode 100644 index 0000000..1da4537 --- /dev/null +++ b/libtxt/keymap.c @@ -0,0 +1,61 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#include +#include +#include +#include +#include + +void map(struct keymap *keymap, int line, char ch, int index) +{ + switch (line) { + case 0: + keymap->map[index] = ch; + break; + case 1: + keymap->shift_map[index] = ch; + break; + case 2: + keymap->alt_map[index] = ch; + break; + default: + break; + } +} + +struct keymap *keymap_parse(const char *path) +{ + char *keymap_src = read(path); + if (!keymap_src) + return NULL; + printf("%c\n", keymap_src[0]); + struct keymap *keymap = malloc(sizeof(*keymap)); + + int index = 0; + char ch; + int is_start = 0; + int line = 0; + while ((ch = keymap_src[index]) != '\0') { + if (ch == '"') { + if (keymap_src[index + 1] == '"') + map(keymap, line, '\0', index); + is_start ^= 1; + index++; + continue; + } else if ((ch == ' ' || ch == ',') && !is_start) { + index += 2; + continue; + } + printf("\"%c\"\n", ch); + + if (ch == '\\') { + map(keymap, line, ch, index + 1); + } else if (ch == '\n') { + line++; + } + index++; + } + + loop(); + return NULL; +} -- cgit v1.2.3