2023-08-25 22:49:55 +00:00
|
|
|
#define _DEFAULT_SOURCE
|
2023-08-26 07:54:48 +00:00
|
|
|
#define KILO_VERSION "0.0.1"
|
2023-08-25 22:49:55 +00:00
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
#include <ctype.h>
|
2023-08-24 16:16:36 +00:00
|
|
|
#include <errno.h>
|
2023-08-26 04:47:07 +00:00
|
|
|
#include <limits.h>
|
2023-08-24 12:57:25 +00:00
|
|
|
#include <stdbool.h>
|
2023-08-25 22:49:55 +00:00
|
|
|
#include <stdint.h>
|
2023-08-22 21:32:16 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-08-24 16:16:36 +00:00
|
|
|
#include <string.h>
|
2023-08-24 11:09:03 +00:00
|
|
|
#include <sys/ioctl.h>
|
2023-08-22 21:32:16 +00:00
|
|
|
#include <termios.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
#define CTRL_KEY(key) ((key) & 0x1f)
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
2023-08-26 07:54:48 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
/*****************************************************************************/
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct render_buf;
|
2023-08-25 22:49:55 +00:00
|
|
|
struct input_buf;
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct EROW {
|
2023-08-26 04:47:07 +00:00
|
|
|
char *s;
|
2023-08-26 18:00:18 +00:00
|
|
|
int size;
|
2023-08-26 04:47:07 +00:00
|
|
|
};
|
2023-08-25 22:49:55 +00:00
|
|
|
|
2023-08-24 16:16:36 +00:00
|
|
|
struct {
|
2023-08-25 22:49:55 +00:00
|
|
|
int cx, cy;
|
2023-08-26 04:47:07 +00:00
|
|
|
int screenrows, screencols;
|
2023-08-26 07:54:48 +00:00
|
|
|
int row_off, col_off;
|
2023-08-26 18:00:18 +00:00
|
|
|
bool running;
|
2023-08-26 07:54:48 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct EROW *rows;
|
2023-08-26 07:54:48 +00:00
|
|
|
int n_rows;
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct render_buf *rb;
|
2023-08-26 04:47:07 +00:00
|
|
|
struct input_buf *ib;
|
2023-08-26 18:00:18 +00:00
|
|
|
struct termios orig_termios;
|
2023-08-25 18:13:33 +00:00
|
|
|
} E;
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
enum KEYS {
|
|
|
|
HOME = 0x100,
|
2023-08-25 18:13:33 +00:00
|
|
|
DEL,
|
|
|
|
PG_UP,
|
|
|
|
PG_DOWN,
|
|
|
|
END,
|
|
|
|
ARROW_UP,
|
2023-08-24 16:16:36 +00:00
|
|
|
ARROW_DOWN,
|
|
|
|
ARROW_LEFT,
|
2023-08-25 18:13:33 +00:00
|
|
|
ARROW_RIGHT,
|
|
|
|
NOP
|
2023-08-24 16:16:36 +00:00
|
|
|
};
|
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
typedef uint16_t KEY;
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
/*****************************************************************************/
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
void editor_init();
|
2023-08-26 07:54:48 +00:00
|
|
|
void editor_open(char *);
|
|
|
|
void editor_append_row(const char *, int);
|
2023-08-23 23:27:25 +00:00
|
|
|
void editor_redraw_screen();
|
2023-08-26 18:00:18 +00:00
|
|
|
void editor_draw_rows();
|
2023-08-23 23:27:25 +00:00
|
|
|
void editor_process_key();
|
2023-08-25 22:49:55 +00:00
|
|
|
void editor_free();
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct render_buf *rb_init();
|
|
|
|
void rb_append(struct render_buf *, const char *, int);
|
|
|
|
void rb_write(struct render_buf *);
|
|
|
|
void rb_clear(struct render_buf *);
|
|
|
|
void rb_free(struct render_buf *);
|
2023-08-25 22:49:55 +00:00
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
struct input_buf *ib_init(int);
|
2023-08-25 22:49:55 +00:00
|
|
|
KEY ib_read(struct input_buf *);
|
|
|
|
void ib_write(struct input_buf *, KEY);
|
|
|
|
bool ib_empty(struct input_buf *);
|
|
|
|
void ib_free(struct input_buf *);
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
int term_enable_raw();
|
|
|
|
void term_disable_raw();
|
|
|
|
int term_clear();
|
|
|
|
int term_cursor_hidden(bool);
|
|
|
|
int term_get_win_size(int *, int *);
|
|
|
|
int term_get_cursor_pos(int *, int *);
|
|
|
|
int term_set_cursor_pos(int, int);
|
2023-08-25 22:49:55 +00:00
|
|
|
KEY term_read_key();
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
void die(const char *);
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
/*****************************************************************************/
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-26 07:54:48 +00:00
|
|
|
int main(int argc, char **argv) {
|
2023-08-24 11:09:03 +00:00
|
|
|
editor_init();
|
2023-08-26 07:54:48 +00:00
|
|
|
|
|
|
|
if (argc >= 2)
|
|
|
|
editor_open(argv[1]);
|
2023-08-24 11:09:03 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
while (E.running) {
|
2023-08-23 23:27:25 +00:00
|
|
|
editor_redraw_screen();
|
|
|
|
editor_process_key();
|
|
|
|
}
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
editor_free();
|
2023-08-23 23:27:25 +00:00
|
|
|
return 0;
|
2023-08-22 21:32:16 +00:00
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
void editor_init() {
|
|
|
|
if (!isatty(STDIN_FILENO)) {
|
|
|
|
printf("kilo only supports a terminal at standard in. Exiting.");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
if (term_enable_raw() == -1) die("term_enable_raw");
|
2023-08-26 18:00:18 +00:00
|
|
|
if (term_get_win_size(&E.screenrows, &E.screencols) == -1)
|
|
|
|
die("term_get_win_size");
|
2023-08-25 18:13:33 +00:00
|
|
|
|
|
|
|
E.cx = E.cy = 0;
|
2023-08-26 07:54:48 +00:00
|
|
|
E.row_off = E.col_off = 0;
|
|
|
|
E.n_rows = 0;
|
2023-08-25 22:49:55 +00:00
|
|
|
E.running = true;
|
2023-08-26 18:00:18 +00:00
|
|
|
|
|
|
|
E.rb = rb_init();
|
2023-08-26 04:47:07 +00:00
|
|
|
E.ib = ib_init(128);
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:54:48 +00:00
|
|
|
void editor_open(char *filename) {
|
|
|
|
FILE *file = fopen(filename, "r");
|
|
|
|
if (!file) die("fopen");
|
|
|
|
|
|
|
|
char *line = NULL;
|
|
|
|
size_t linecap = 0;
|
|
|
|
int linelen = -1;
|
|
|
|
|
|
|
|
while ((linelen = getline(&line, &linecap, file)) != -1) {
|
|
|
|
while (linelen > 0 && (line[linelen-1] == '\n' || line[linelen-1] == '\r'))
|
|
|
|
linelen--;
|
|
|
|
|
|
|
|
editor_append_row(line, linelen);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(line);
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
void editor_append_row(const char *s, int len) {
|
2023-08-26 18:00:18 +00:00
|
|
|
E.rows = realloc(E.rows, sizeof(struct EROW) * (E.n_rows + 1));
|
2023-08-26 04:47:07 +00:00
|
|
|
|
2023-08-26 07:54:48 +00:00
|
|
|
E.rows[E.n_rows].s = malloc(len);
|
|
|
|
memcpy(E.rows[E.n_rows].s, s, len);
|
|
|
|
|
|
|
|
E.rows[E.n_rows++].size = len;
|
2023-08-25 18:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void editor_redraw_screen() {
|
|
|
|
if (term_cursor_hidden(true) == -1) die("term_cursor_hidden");
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
editor_draw_rows(E.rb);
|
|
|
|
rb_write(E.rb);
|
|
|
|
rb_clear(E.rb);
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
int row_pos = E.cy - E.row_off + 1;
|
|
|
|
int col_pos = E.cx - E.col_off + 1;
|
|
|
|
if (term_set_cursor_pos(row_pos, col_pos) == -1)
|
|
|
|
die("term_set_cursor_pos");
|
|
|
|
|
|
|
|
if (term_cursor_hidden(false) == -1)
|
|
|
|
die("term_cursor_hidden");
|
2023-08-25 18:13:33 +00:00
|
|
|
}
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
void editor_draw_rows() {
|
2023-08-25 18:13:33 +00:00
|
|
|
term_set_cursor_pos(1, 1);
|
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
for (int y = 0; y < E.screenrows; y++) {
|
2023-08-26 18:00:18 +00:00
|
|
|
bool in_file = y < E.n_rows - E.row_off;
|
|
|
|
bool no_file = E.n_rows == 0;
|
|
|
|
|
|
|
|
if (in_file) {
|
|
|
|
struct EROW curr_row = E.rows[y + E.row_off];
|
2023-08-26 18:19:09 +00:00
|
|
|
int max_len = MIN(curr_row.size, E.screencols);
|
2023-08-26 18:00:18 +00:00
|
|
|
|
|
|
|
rb_append(E.rb, curr_row.s, max_len);
|
|
|
|
} else if (no_file && y == E.screenrows / 2) {
|
2023-08-26 07:54:48 +00:00
|
|
|
char welcome[64];
|
2023-08-26 18:00:18 +00:00
|
|
|
int len = snprintf(welcome, sizeof(welcome),
|
|
|
|
"Welcome to kilo! -- v%s", KILO_VERSION);
|
2023-08-26 07:54:48 +00:00
|
|
|
|
|
|
|
int padding = (E.screencols - len) / 2;
|
2023-08-26 18:00:18 +00:00
|
|
|
for (int i = 0; i < padding; i++)
|
|
|
|
rb_append(E.rb, (i == 0 ? "~" : " "), 1);
|
2023-08-26 07:54:48 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
rb_append(E.rb, welcome, len);
|
|
|
|
} else rb_append(E.rb, "~", 1);
|
2023-08-26 07:54:48 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
rb_append(E.rb, "\x1b[K", 3); // Delete line to right of cursor
|
|
|
|
if (y < E.screenrows - 1)
|
|
|
|
rb_append(E.rb, "\r\n", 2);
|
2023-08-25 18:13:33 +00:00
|
|
|
}
|
2023-08-24 12:57:25 +00:00
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
void editor_process_key() {
|
2023-08-25 22:49:55 +00:00
|
|
|
KEY c = ib_read(E.ib);
|
2023-08-25 18:13:33 +00:00
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case ARROW_LEFT:
|
|
|
|
if (E.cx > 0) E.cx--;
|
|
|
|
break;
|
|
|
|
case ARROW_DOWN:
|
2023-08-26 07:54:48 +00:00
|
|
|
if (E.cy < E.n_rows - 1) E.cy++;
|
|
|
|
if (E.cy > E.row_off + E.screenrows - 1) E.row_off = E.cy - E.screenrows + 1;
|
2023-08-25 18:13:33 +00:00
|
|
|
break;
|
|
|
|
case ARROW_UP:
|
|
|
|
if (E.cy > 0) E.cy--;
|
2023-08-26 07:54:48 +00:00
|
|
|
if (E.row_off > E.cy) E.row_off = E.cy;
|
2023-08-25 18:13:33 +00:00
|
|
|
break;
|
|
|
|
case ARROW_RIGHT:
|
2023-08-25 22:49:55 +00:00
|
|
|
if (E.cx < E.screencols - 1) E.cx++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HOME:
|
|
|
|
E.cx = 0;
|
|
|
|
break;
|
|
|
|
case END:
|
|
|
|
E.cx = E.screencols - 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PG_UP:
|
|
|
|
case PG_DOWN:
|
|
|
|
for (int i = 0; i < E.screenrows; i++)
|
2023-08-26 07:54:48 +00:00
|
|
|
ib_write(E.ib, (c == PG_UP ? ARROW_UP : ARROW_DOWN));
|
2023-08-25 22:49:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CTRL_KEY('Q'):
|
|
|
|
E.running = false;
|
2023-08-25 18:13:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
void editor_free() {
|
|
|
|
term_clear();
|
|
|
|
ib_free(E.ib);
|
|
|
|
}
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
/*****************************************************************************/
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct render_buf {
|
2023-08-25 22:49:55 +00:00
|
|
|
char *s;
|
2023-08-26 18:00:18 +00:00
|
|
|
int size;
|
|
|
|
int capacity;
|
2023-08-25 22:49:55 +00:00
|
|
|
};
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
struct render_buf *rb_init() {
|
|
|
|
size_t buf_size = sizeof(struct render_buf);
|
|
|
|
struct render_buf *rb = (struct render_buf *) malloc(buf_size);
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
rb->s = NULL;
|
|
|
|
rb->size = 0;
|
|
|
|
rb->capacity = 0;
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
return rb;
|
2023-08-25 22:49:55 +00:00
|
|
|
}
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
void rb_append(struct render_buf *rb, const char *s, int size) {
|
|
|
|
if (rb->size + size > rb->capacity) {
|
|
|
|
rb->s = realloc(rb->s, rb->size + size);
|
|
|
|
rb->capacity = rb->size + size;
|
|
|
|
}
|
2023-08-25 22:49:55 +00:00
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
memcpy(rb->s + rb->size, s, size);
|
|
|
|
rb->size += size;
|
2023-08-25 22:49:55 +00:00
|
|
|
}
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
void rb_write(struct render_buf *rb) {
|
|
|
|
write(STDOUT_FILENO, rb->s, rb->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rb_clear(struct render_buf *rb) {
|
|
|
|
rb->capacity = rb->size;
|
|
|
|
rb->s = realloc(rb->s, rb->capacity);
|
|
|
|
|
|
|
|
rb->size = 0;
|
2023-08-25 22:49:55 +00:00
|
|
|
}
|
|
|
|
|
2023-08-26 18:00:18 +00:00
|
|
|
void rb_free(struct render_buf *rb) {
|
|
|
|
free(rb->s);
|
|
|
|
free(rb);
|
2023-08-25 22:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct input_buf {
|
|
|
|
KEY *carr; // Circular array
|
|
|
|
int read_i;
|
|
|
|
int write_i;
|
2023-08-26 04:47:07 +00:00
|
|
|
int capacity; // Actual capacity is one less
|
2023-08-25 22:49:55 +00:00
|
|
|
};
|
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
struct input_buf *ib_init(int capacity) {
|
|
|
|
struct input_buf *ib = malloc(sizeof(struct input_buf));
|
2023-08-25 18:13:33 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
ib->carr = (KEY *) malloc(sizeof(KEY) * capacity);
|
|
|
|
ib->write_i = 0;
|
|
|
|
ib->read_i = 0;
|
|
|
|
ib->capacity = capacity;
|
|
|
|
|
|
|
|
return ib;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ib_write(struct input_buf *ib, KEY key) {
|
|
|
|
if ((ib->write_i + 1) % (int) ib->capacity == ib->read_i) // Buffer full
|
|
|
|
die("ib_write");
|
|
|
|
|
|
|
|
ib->carr[ib->write_i] = key;
|
|
|
|
ib->write_i = (ib->write_i + 1) % ib->capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
KEY ib_read(struct input_buf *ib) {
|
|
|
|
if (ib_empty(ib)) ib_write(ib, term_read_key());
|
|
|
|
|
|
|
|
KEY key = ib->carr[ib->read_i];
|
|
|
|
ib->read_i = (ib->read_i + 1) % ib->capacity;
|
|
|
|
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ib_empty(struct input_buf *ib) {
|
|
|
|
return ib->write_i == ib->read_i;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ib_free(struct input_buf *ib) {
|
|
|
|
free(ib->carr);
|
|
|
|
free(ib);
|
2023-08-25 18:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
int term_enable_raw() {
|
|
|
|
if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) return -1;
|
|
|
|
atexit(term_disable_raw);
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
struct termios raw = E.orig_termios;
|
2023-08-23 16:36:42 +00:00
|
|
|
cfmakeraw(&raw);
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
raw.c_cc[VMIN] = 0;
|
2023-08-25 22:49:55 +00:00
|
|
|
raw.c_cc[VTIME] = 10;
|
2023-08-24 12:57:25 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) return -1;
|
|
|
|
|
|
|
|
return 0;
|
2023-08-22 21:32:16 +00:00
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
void term_disable_raw() {
|
2023-08-24 11:09:03 +00:00
|
|
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1)
|
2023-08-25 18:13:33 +00:00
|
|
|
die ("term_disable_raw");
|
2023-08-23 23:27:25 +00:00
|
|
|
}
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
int term_clear() {
|
|
|
|
if (write(STDOUT_FILENO, "\x1b[2J", 4) != 4) return -1;
|
|
|
|
if (write(STDOUT_FILENO, "\x1b[H", 3) != 3) return -1;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int term_cursor_hidden(bool hidden) {
|
|
|
|
if (write(STDOUT_FILENO, (hidden ? "\x1b[?25l" : "\x1b[?25h"), 6) != 6)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int term_get_win_size(int *row, int *col) {
|
2023-08-24 11:09:03 +00:00
|
|
|
struct winsize ws;
|
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) != -1 && ws.ws_col != 0) {
|
2023-08-25 18:13:33 +00:00
|
|
|
*row = ws.ws_row;
|
|
|
|
*col = ws.ws_col;
|
2023-08-24 11:09:03 +00:00
|
|
|
|
|
|
|
return 0;
|
2023-08-24 12:57:25 +00:00
|
|
|
} else {
|
|
|
|
if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) return -1;
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
return term_get_cursor_pos(row, col);
|
2023-08-24 11:09:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
int term_get_cursor_pos(int *row, int *col) {
|
2023-08-24 12:57:25 +00:00
|
|
|
char buf[32];
|
2023-08-24 11:09:03 +00:00
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) return -1;
|
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
for (int i = 0; i < (int) sizeof(buf); i++) {
|
2023-08-25 18:13:33 +00:00
|
|
|
if (read(STDIN_FILENO, buf+i, 1) == 0 || buf[i] == 'R') {
|
|
|
|
buf[i] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-08-24 12:57:25 +00:00
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
if (sscanf(buf, "\x1b[%d;%d", row, col) == EOF)
|
|
|
|
return -1;
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
return 0;
|
2023-08-24 11:09:03 +00:00
|
|
|
}
|
|
|
|
|
2023-08-25 18:13:33 +00:00
|
|
|
int term_set_cursor_pos(int row, int col) {
|
|
|
|
char buf[16];
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
int len = snprintf(buf, sizeof(buf), "\x1b[%d;%dH", row, col);
|
|
|
|
len = (len >= (int) sizeof(buf) ? (int) sizeof(buf) - 1 : len);
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
if ((int) write(STDOUT_FILENO, buf, len) != len) return -1;
|
2023-08-25 18:13:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
KEY term_read_key() {
|
|
|
|
char c;
|
|
|
|
while (read(STDIN_FILENO, &c, 1) == 0);
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
if (c == '\x1b') {
|
|
|
|
char buf[8] = { '\0' };
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-26 04:47:07 +00:00
|
|
|
for (int i = 0; i < (int) sizeof(buf); i++) {
|
2023-08-25 22:49:55 +00:00
|
|
|
if (read(STDIN_FILENO, buf+i, 1) == 0) break;
|
|
|
|
|
|
|
|
char escape_char;
|
|
|
|
if (sscanf(buf, "[%c~", &escape_char) != EOF) {
|
|
|
|
switch (escape_char) {
|
|
|
|
case 'A': return ARROW_UP;
|
|
|
|
case 'B': return ARROW_DOWN;
|
|
|
|
case 'C': return ARROW_RIGHT;
|
|
|
|
case 'D': return ARROW_LEFT;
|
|
|
|
case 'H': return HOME;
|
|
|
|
case 'F': return END;
|
|
|
|
}
|
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
int escape_int;
|
|
|
|
if (sscanf(buf, "[%d~", &escape_int) != EOF) {
|
|
|
|
switch (escape_int) {
|
|
|
|
case 1:
|
|
|
|
case 7:
|
|
|
|
return HOME;
|
|
|
|
case 3:
|
|
|
|
return DEL;
|
|
|
|
case 4:
|
|
|
|
case 8:
|
|
|
|
return END;
|
|
|
|
case 5:
|
|
|
|
return PG_UP;
|
|
|
|
case 6:
|
|
|
|
return PG_DOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
return NOP;
|
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-25 22:49:55 +00:00
|
|
|
return (KEY) c;
|
2023-08-24 16:16:36 +00:00
|
|
|
}
|
2023-08-25 18:13:33 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
void die(const char *s) {
|
|
|
|
term_clear();
|
|
|
|
|
|
|
|
perror(s);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|