diff options
author | Marvin Borner | 2021-04-21 00:05:04 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-21 00:05:04 +0200 |
commit | c219c38e854fe15bc47519d2df0d6cbd7bab2ab7 (patch) | |
tree | 239b84c05371b4e853b40ebb52b1ad744fe0fc53 /src/syntax.c | |
parent | f31fc8b66eee149bd78603996f34264be8fad411 (diff) |
Started syntax highlighting
doesn't work but don't want to fix lel.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c new file mode 100644 index 0000000..d01496e --- /dev/null +++ b/src/syntax.c @@ -0,0 +1,60 @@ +#include <def.h> +#include <gui.h> +#include <lexer.h> +#include <stdio.h> +#include <syntax.h> + +struct pos { + u32 x; + u32 y; +}; + +static void syntax_highlight_line(struct pos *pos, char *str, u32 size) +{ + while (1) { + /* printf("%d:%d\n", pos->y, pos->x); */ + struct token tok = token_resolve(str + pos->x, size - pos->x); + + if (tok.type == NEWLINE) { + pos->x = 0; + pos->y++; + return; + } + + if (tok.type == UNKNOWN) + return; + + if (tok.type == SPACE) { + pos->x += tok.length; + continue; + } + + token_print(&tok); + + /* if (tok.type > INSTR_START && tok.type < INSTR_END) */ + /* gui_highlight(pos->x, pos->y, tok.length, "instr"); */ + /* else if (tok.type > REGS_START && tok.type < REGS_END) { */ + /* gui_highlight(pos->x, pos->y, tok.length, "regs"); */ + /* } */ + + pos->x += tok.length; + } +} + +void syntax_highlight(char *buf, u32 size) +{ + return; // TODO: Fix some stuff + struct pos pos = { 0 }; + + char *start = buf; + for (u32 i = 0; i < size; i++) { + if (buf[i] == '\0') + break; + + if (buf[i] == '\n') { + pos.x = 0; + syntax_highlight_line(&pos, start, i); + start += i; + } + } +} |