Change formatting rules
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 2m7s
Build documentation / build-and-deploy (push) Successful in 39s

This commit is contained in:
2026-04-24 01:54:48 +02:00
parent 34f7809a2d
commit c8fb575bdd
208 changed files with 6310 additions and 6339 deletions

View File

@@ -12,19 +12,19 @@
#include <tcursor.h>
#include <tscreen.h>
static void* in_wmalloc (void* ctx, size_t size) {
static void* in_wmalloc(void* ctx, size_t size) {
(void)ctx;
return malloc (size);
return malloc(size);
}
static void in_wfree (void* ctx, void* mem) {
static void in_wfree(void* ctx, void* mem) {
(void)ctx;
free (mem);
free(mem);
}
static void* in_wrealloc (void* ctx, void* mem, size_t old, size_t new) {
static void* in_wrealloc(void* ctx, void* mem, size_t old, size_t new) {
(void)ctx, (void)old;
return realloc (mem, new);
return realloc(mem, new);
}
struct edit_line {
@@ -32,95 +32,95 @@ struct edit_line {
size_t cursor;
};
void in_stream_read_line (const char* prompt, char* buffer, size_t max) {
memset (buffer, 0, max);
void in_stream_read_line(const char* prompt, char* buffer, size_t max) {
memset(buffer, 0, max);
struct edit_line edit_line;
memset (&edit_line, 0, sizeof (edit_line));
memset(&edit_line, 0, sizeof(edit_line));
const char* render = NULL;
in_gb_init (&in_wmalloc, NULL, &edit_line.gb, max);
in_gb_init(&in_wmalloc, NULL, &edit_line.gb, max);
edit_line.cursor = 0;
mprintf ("%s", prompt);
mprintf("%s", prompt);
for (;;) {
uint8_t ch;
if (stream_read (process_get_pgid (), STREAM_IN, &ch, 1) <= 0) {
sched ();
if (stream_read(process_get_pgid(), STREAM_IN, &ch, 1) <= 0) {
sched();
continue;
}
if (ch == '\n')
break;
in_gb_move (&edit_line.gb, edit_line.cursor);
in_gb_move(&edit_line.gb, edit_line.cursor);
switch (ch) {
case '\b':
if (edit_line.cursor > 0) {
edit_line.cursor--;
in_gb_backspace (&edit_line.gb);
in_gb_backspace(&edit_line.gb);
mprintf (ANSIQ_CUR_LEFT (1));
mprintf(ANSIQ_CUR_LEFT(1));
char* tail = in_gb_string_at (&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor);
mprintf ("%s" ANSIQ_SCR_CLR2LEND, tail);
char* tail = in_gb_string_at(&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor);
mprintf("%s" ANSIQ_SCR_CLR2LEND, tail);
int move_back = strlen (tail);
int move_back = strlen(tail);
if (move_back > 0)
mprintf (ANSIQ_DYN_CUR_LEFT, move_back);
mprintf(ANSIQ_DYN_CUR_LEFT, move_back);
}
break;
case KB_DELETE:
if (edit_line.cursor < in_gb_length (&edit_line.gb)) {
if (edit_line.cursor < in_gb_length(&edit_line.gb)) {
edit_line.gb.gap_end++;
char* tail = in_gb_string_at (&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor);
mprintf ("%s" ANSIQ_SCR_CLR2LEND, tail);
char* tail = in_gb_string_at(&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor);
mprintf("%s" ANSIQ_SCR_CLR2LEND, tail);
int move_back = strlen (tail);
int move_back = strlen(tail);
if (move_back > 0)
mprintf (ANSIQ_DYN_CUR_LEFT, move_back);
mprintf(ANSIQ_DYN_CUR_LEFT, move_back);
}
break;
case KB_LEFT:
if (edit_line.cursor > 0) {
edit_line.cursor--;
mprintf (ANSIQ_CUR_LEFT (1));
mprintf(ANSIQ_CUR_LEFT(1));
}
break;
case KB_RIGHT:
if (edit_line.cursor < in_gb_length (&edit_line.gb)) {
if (edit_line.cursor < in_gb_length(&edit_line.gb)) {
edit_line.cursor++;
mprintf (ANSIQ_CUR_RIGHT (1));
mprintf(ANSIQ_CUR_RIGHT(1));
}
break;
default:
if (isprint (ch)) {
in_gb_insert (&in_wrealloc, NULL, &edit_line.gb, ch);
if (isprint(ch)) {
in_gb_insert(&in_wrealloc, NULL, &edit_line.gb, ch);
edit_line.cursor++;
if (edit_line.cursor == in_gb_length (&edit_line.gb)) {
mprintf ("%c", ch);
if (edit_line.cursor == in_gb_length(&edit_line.gb)) {
mprintf("%c", ch);
} else {
char* tail = in_gb_string_at (&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor - 1);
size_t move_back = strlen (tail) - 1;
mprintf ("%s" ANSIQ_DYN_CUR_LEFT, tail, move_back);
char* tail = in_gb_string_at(&in_wmalloc, NULL, &edit_line.gb, edit_line.cursor - 1);
size_t move_back = strlen(tail) - 1;
mprintf("%s" ANSIQ_DYN_CUR_LEFT, tail, move_back);
}
}
break;
}
}
mprintf ("\n");
mprintf("\n");
render = in_gb_string_at (&in_wmalloc, NULL, &edit_line.gb, 0);
render = in_gb_string_at(&in_wmalloc, NULL, &edit_line.gb, 0);
if (render != NULL) {
size_t len_render = strlen (render);
memcpy (buffer, render, min (len_render, max));
size_t len_render = strlen(render);
memcpy(buffer, render, min(len_render, max));
}
in_gb_fini (&in_wfree, NULL, &edit_line.gb);
in_gb_fini(&in_wfree, NULL, &edit_line.gb);
}