2023-09-21 01:12:01 -04:00
|
|
|
/*
|
2023-10-29 11:21:16 -04:00
|
|
|
Copyright (c) 2023 : Ognjen 'xolatile' Milan Robovic
|
|
|
|
|
|
|
|
Xource is free software! You will redistribute it or modify it under the terms of the GNU General Public License by Free Software Foundation.
|
|
|
|
And when you do redistribute it or modify it, it will use either version 3 of the License, or (at yours truly opinion) any later version.
|
|
|
|
It is distributed in the hope that it will be useful or harmful, it really depends... But no warranty what so ever, seriously. See GNU/GPLv3.
|
|
|
|
*/
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
#include <xolatile/xtandard.c>
|
2023-09-21 01:12:01 -04:00
|
|
|
#include <xolatile/xyntax.c>
|
|
|
|
#include <xolatile/xurses.c>
|
|
|
|
|
2023-10-31 07:08:09 -04:00
|
|
|
#define CONTROL (0X1F)
|
|
|
|
#define ESCAPE (0X1B)
|
|
|
|
#define ARROW_UP (0X415B1B)
|
|
|
|
#define ARROW_DOWN (0X425B1B)
|
|
|
|
#define ARROW_RIGHT (0X435B1B)
|
|
|
|
#define ARROW_LEFT (0X445B1B)
|
|
|
|
#define BACKSPACE (0X7F)
|
2023-10-29 11:49:59 -04:00
|
|
|
|
2023-09-21 01:12:01 -04:00
|
|
|
int main (int argc, char * * argv) {
|
2023-10-28 17:29:10 -04:00
|
|
|
char * keywords [] = {
|
|
|
|
"register", "volatile", "auto", "const", "static", "extern", "if", "else",
|
|
|
|
"do", "while", "for", "continue", "switch", "case", "default", "break",
|
|
|
|
"enum", "union", "struct", "typedef", "goto", "void", "return", "sizeof",
|
|
|
|
"char", "short", "int", "long", "signed", "unsigned", "float", "double"
|
|
|
|
};
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-31 07:08:09 -04:00
|
|
|
int cursor = 0;
|
|
|
|
int cursor_x = 0;
|
|
|
|
int cursor_y = 0;
|
|
|
|
|
2023-09-21 01:12:01 -04:00
|
|
|
if (argc == 2) {
|
|
|
|
file_list_import (argv [1]);
|
|
|
|
} else {
|
|
|
|
out ("ARGUMENTS\n", 10);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2023-10-31 09:40:50 -04:00
|
|
|
syntax_define_separators (".,:;<=>+-*/%!&~^?|()[]{}'\" \t\r\n");
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
syntax_define_range ("/*", "*/", '\0', COLOUR_GREY, EFFECT_BOLD);
|
|
|
|
syntax_define_range ("//", "\n", '\0', COLOUR_GREY, EFFECT_BOLD);
|
|
|
|
syntax_define_range ("#", "\n", '\\', COLOUR_PINK, EFFECT_NORMAL);
|
|
|
|
syntax_define_range ("'", "'", '\\', COLOUR_PINK, EFFECT_BOLD);
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-29 06:59:20 -04:00
|
|
|
syntax_define_operators (".,:;<=>+*-/%!&~^?|()[]{}", COLOUR_YELLOW, EFFECT_NORMAL);
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-29 06:59:20 -04:00
|
|
|
syntax_define_words (keywords, sizeof (keywords) / sizeof (keywords [0]), COLOUR_YELLOW, EFFECT_BOLD);
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
syntax_define_default (1, COLOUR_RED, EFFECT_NORMAL, COLOUR_CYAN, EFFECT_BOLD);
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
curses_configure ();
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
do {
|
2023-10-31 07:08:09 -04:00
|
|
|
int offset, select, length;
|
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
curses_render_background (' ', COLOUR_WHITE, EFFECT_NORMAL);
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-31 09:40:50 -04:00
|
|
|
length = 0;
|
|
|
|
curses_render_string (file_list_name [file_list_active], COLOUR_WHITE, EFFECT_REVERSE, length, 0);
|
|
|
|
length += string_length (file_list_name [file_list_active]);
|
|
|
|
curses_render_string (" -- ", COLOUR_WHITE, EFFECT_REVERSE, length, 0);
|
|
|
|
length += 4;
|
|
|
|
curses_render_string (number_to_string (file_list_size [file_list_active]), COLOUR_WHITE, EFFECT_REVERSE, length, 0);
|
|
|
|
length += string_length (number_to_string (file_list_size [file_list_active]));
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-31 09:40:50 -04:00
|
|
|
for (offset = length; offset != curses_screen_width; ++offset) {
|
2023-10-31 07:08:09 -04:00
|
|
|
curses_render_string (" ", COLOUR_WHITE, EFFECT_REVERSE, offset, 0);
|
|
|
|
}
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-31 07:08:09 -04:00
|
|
|
for (offset = 1; offset != curses_screen_height; ++offset) {
|
|
|
|
curses_render_string (string_realign (number_to_string (offset), 4, ' '), COLOUR_WHITE, EFFECT_REVERSE, 0, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor_x = curses_realign_x = 5;
|
|
|
|
cursor_y = curses_realign_y = 1;
|
|
|
|
|
|
|
|
for (offset = 0; file_list_data [file_list_active] [offset] != '\0'; offset += length) {
|
|
|
|
if (cursor_y > curses_screen_height - 2) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
select = syntax_select (& file_list_data [file_list_active] [offset], & length);
|
|
|
|
|
|
|
|
if (select >= syntax_count) {
|
|
|
|
curses_render_string_point (& file_list_data [file_list_active] [offset], length, COLOUR_WHITE, EFFECT_NORMAL, & cursor_x, & cursor_y);
|
|
|
|
} else {
|
|
|
|
curses_render_string_point (& file_list_data [file_list_active] [offset], length, syntax_colour [select], syntax_effect [select], & cursor_x, & cursor_y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cursor_y < curses_screen_height) {
|
|
|
|
for (offset = ++cursor_y; offset != curses_screen_height; ++offset) {
|
|
|
|
curses_render_string (" ~", COLOUR_WHITE, EFFECT_REVERSE, 0, offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor_y = character_count (file_list_data [file_list_active], 0, cursor, '\n', '\0');
|
|
|
|
cursor_x = character_count (file_list_data [file_list_active], cursor, 0, '\0', '\n');
|
2023-10-29 14:14:13 -04:00
|
|
|
/*
|
2023-10-31 07:08:09 -04:00
|
|
|
dump ("a.log", " xx ");
|
|
|
|
dump ("a.log", number_to_string (cursor_x));
|
|
|
|
dump ("a.log", " yy ");
|
|
|
|
dump ("a.log", number_to_string (cursor_y));
|
2023-10-29 14:14:13 -04:00
|
|
|
dump ("a.log", "\n");
|
|
|
|
*/
|
2023-10-31 07:08:09 -04:00
|
|
|
curses_render_cursor (cursor_x + curses_realign_x + 1, cursor_y + curses_realign_y + 1);
|
|
|
|
|
|
|
|
curses_synchronize ();
|
|
|
|
|
|
|
|
if (curses_character == ('Q' & CONTROL)) {
|
2023-09-21 01:12:01 -04:00
|
|
|
curses_active = 0;
|
2023-10-29 14:14:13 -04:00
|
|
|
} else if (curses_character == '\r') {
|
2023-10-31 07:08:09 -04:00
|
|
|
file_list_insert_character ('\n', cursor);
|
|
|
|
++cursor;
|
|
|
|
} else if (curses_character == ('S' & CONTROL)) {
|
2023-09-21 01:12:01 -04:00
|
|
|
file_list_export (file_list_name [file_list_active]);
|
2023-10-31 07:08:09 -04:00
|
|
|
} else if (curses_character == BACKSPACE) {
|
|
|
|
file_list_remove_character (cursor);
|
|
|
|
--cursor;
|
|
|
|
} else if (curses_character == ARROW_UP) {
|
2023-10-29 14:14:13 -04:00
|
|
|
do {
|
|
|
|
--cursor;
|
|
|
|
} while ((cursor >= 0) && (file_list_data [file_list_active] [cursor] != '\n') && (file_list_data [file_list_active] [cursor] != '\0'));
|
|
|
|
--cursor;
|
2023-10-31 07:08:09 -04:00
|
|
|
} else if (curses_character == ARROW_DOWN) {
|
2023-10-29 14:14:13 -04:00
|
|
|
do {
|
|
|
|
++cursor;
|
|
|
|
} while ((cursor <= file_list_size [file_list_active] - 1) && (file_list_data [file_list_active] [cursor] != '\n') && (file_list_data [file_list_active] [cursor] != '\0'));
|
|
|
|
++cursor;
|
2023-10-31 07:08:09 -04:00
|
|
|
} else if (curses_character == ARROW_RIGHT) {
|
2023-10-29 14:14:13 -04:00
|
|
|
++cursor;
|
2023-10-31 07:08:09 -04:00
|
|
|
} else if (curses_character == ARROW_LEFT) {
|
2023-10-29 14:14:13 -04:00
|
|
|
--cursor;
|
2023-10-31 09:40:50 -04:00
|
|
|
} else if (character_is_visible (curses_character)) {
|
2023-10-31 07:08:09 -04:00
|
|
|
file_list_insert_character (curses_character, cursor);
|
|
|
|
++cursor;
|
2023-09-21 01:12:01 -04:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2023-10-31 07:08:09 -04:00
|
|
|
|
|
|
|
limit (& cursor, 0, file_list_size [file_list_active] - 1);
|
2023-09-21 01:12:01 -04:00
|
|
|
} while (curses_active != 0);
|
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
file_list_delete ();
|
2023-09-21 01:12:01 -04:00
|
|
|
|
2023-10-28 17:29:10 -04:00
|
|
|
syntax_delete ();
|
2023-09-21 01:12:01 -04:00
|
|
|
|
|
|
|
return (EXIT_SUCCESS);
|
|
|
|
}
|