2023-08-24 12:57:25 +00:00
|
|
|
#include <ctype.h>
|
2023-08-24 16:16:36 +00:00
|
|
|
#include <errno.h>
|
2023-08-24 12:57:25 +00:00
|
|
|
#include <stdbool.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-24 16:16:36 +00:00
|
|
|
struct abuf {
|
|
|
|
char *p;
|
|
|
|
int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct {
|
|
|
|
struct termios orig_termios;
|
|
|
|
int rows;
|
|
|
|
int cols;
|
|
|
|
int cx, cy;
|
|
|
|
} E = { .cx = 0, .cy = 0 };
|
|
|
|
|
|
|
|
enum keys {
|
|
|
|
ARROW_UP = 0x100 + 1,
|
|
|
|
ARROW_DOWN,
|
|
|
|
ARROW_LEFT,
|
|
|
|
ARROW_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ABUF_INIT {NULL, 0}
|
|
|
|
|
|
|
|
void ab_append(struct abuf *, const char *);
|
|
|
|
void ab_free(struct abuf *);
|
|
|
|
void ab_write(struct abuf *);
|
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
void enable_raw_mode();
|
|
|
|
void disable_raw_mode();
|
2023-08-24 12:57:25 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
int get_window_size(int *, int *);
|
2023-08-24 12:57:25 +00:00
|
|
|
int read_cursor_position(int *, int *);
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
void editor_init();
|
2023-08-23 23:27:25 +00:00
|
|
|
void editor_redraw_screen();
|
|
|
|
void editor_clear_screen();
|
2023-08-24 16:16:36 +00:00
|
|
|
void editor_draw_rows(struct abuf *);
|
2023-08-23 23:27:25 +00:00
|
|
|
void editor_process_key();
|
2023-08-24 16:16:36 +00:00
|
|
|
int editor_read_key();
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
void die(const char *);
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-23 16:36:42 +00:00
|
|
|
#define CTRL_KEY(key) ((key) & 0x1f)
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
int main() {
|
2023-08-24 11:09:03 +00:00
|
|
|
editor_init();
|
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
while (1) {
|
|
|
|
editor_redraw_screen();
|
|
|
|
editor_process_key();
|
|
|
|
}
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
return 0;
|
2023-08-22 21:32:16 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
enable_raw_mode();
|
|
|
|
|
|
|
|
if (get_window_size(&E.rows, &E.cols) == -1) die("get_window_size");
|
|
|
|
}
|
|
|
|
|
2023-08-22 21:32:16 +00:00
|
|
|
void enable_raw_mode() {
|
2023-08-24 11:09:03 +00:00
|
|
|
if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) die("tcgetattr");
|
2023-08-22 21:32:16 +00:00
|
|
|
atexit(disable_raw_mode);
|
|
|
|
|
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;
|
|
|
|
raw.c_cc[VTIME] = 1;
|
|
|
|
|
2023-08-22 21:32:16 +00:00
|
|
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) die("tcsetattr");
|
|
|
|
}
|
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
void disable_raw_mode() {
|
2023-08-24 11:09:03 +00:00
|
|
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1)
|
2023-08-23 23:27:25 +00:00
|
|
|
die("tcsetattr");
|
|
|
|
}
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
int get_window_size(int *rows, int *cols) {
|
|
|
|
struct winsize ws;
|
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) != -1 && ws.ws_col != 0) {
|
2023-08-24 11:09:03 +00:00
|
|
|
*rows = ws.ws_row;
|
|
|
|
*cols = ws.ws_col;
|
|
|
|
|
|
|
|
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-24 12:57:25 +00:00
|
|
|
return read_cursor_position(rows, cols);
|
2023-08-24 11:09:03 +00:00
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
2023-08-24 11:09:03 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2023-08-24 12:57:25 +00:00
|
|
|
int read_cursor_position(int *rows, int *cols) {
|
|
|
|
char buf[32];
|
2023-08-24 16:16:36 +00:00
|
|
|
int i = 0;
|
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;
|
|
|
|
|
|
|
|
if (read(STDIN_FILENO, buf, 1) != 1 && *buf != '\x1b') return -1;
|
|
|
|
if (read(STDIN_FILENO, buf, 1) != 1 && *buf != '[') return -1;
|
|
|
|
|
|
|
|
do {
|
2023-08-24 16:16:36 +00:00
|
|
|
if (i == (int) sizeof(buf)) return -1;
|
2023-08-24 12:57:25 +00:00
|
|
|
if (read(STDIN_FILENO, buf+i, 1) == 0) break;
|
|
|
|
} while(buf[i++] != 'R');
|
|
|
|
buf[i-1] = '\0';
|
|
|
|
|
|
|
|
if (sscanf(buf, "%d;%d", rows, cols) != 2) 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-23 23:27:25 +00:00
|
|
|
void editor_redraw_screen() {
|
2023-08-24 16:16:36 +00:00
|
|
|
struct abuf ab = ABUF_INIT;
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-24 16:16:36 +00:00
|
|
|
ab_append(&ab, "\x1b[?25l");
|
|
|
|
ab_append(&ab, "\x1b[H");
|
2023-08-23 23:27:25 +00:00
|
|
|
|
2023-08-24 16:16:36 +00:00
|
|
|
editor_draw_rows(&ab);
|
|
|
|
|
|
|
|
char buf[32];
|
|
|
|
snprintf(buf, sizeof(buf), "\x1b[%d;%dH", E.cy + 1, E.cx + 1);
|
|
|
|
ab_append(&ab, buf);
|
|
|
|
|
|
|
|
ab_append(&ab, "\x1b[?25h");
|
|
|
|
|
|
|
|
ab_write(&ab);
|
|
|
|
ab_free(&ab);
|
2023-08-23 23:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void editor_clear_screen() {
|
2023-08-24 12:57:25 +00:00
|
|
|
write(STDOUT_FILENO, "\x1b[2J", 4);
|
|
|
|
write(STDOUT_FILENO, "\x1b[H", 3);
|
2023-08-23 16:36:42 +00:00
|
|
|
}
|
|
|
|
|
2023-08-24 16:16:36 +00:00
|
|
|
void editor_draw_rows(struct abuf *ab) {
|
|
|
|
for (int y = 0; y < E.rows; y++) {
|
|
|
|
ab_append(ab, "~");
|
|
|
|
|
|
|
|
ab_append(ab, "\x1b[K");
|
|
|
|
if (y < E.rows - 1) ab_append(ab, "\r\n");
|
|
|
|
}
|
2023-08-23 16:36:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void editor_process_key() {
|
2023-08-24 16:16:36 +00:00
|
|
|
int c = editor_read_key();
|
|
|
|
|
2023-08-23 16:36:42 +00:00
|
|
|
switch (c) {
|
|
|
|
case CTRL_KEY('Q'):
|
|
|
|
editor_clear_screen();
|
|
|
|
exit(0);
|
|
|
|
break;
|
2023-08-24 16:16:36 +00:00
|
|
|
|
|
|
|
case ARROW_LEFT:
|
|
|
|
if (E.cx > 0) E.cx--;
|
|
|
|
break;
|
|
|
|
case ARROW_DOWN:
|
|
|
|
if (E.cy < E.rows - 1) E.cy++;
|
|
|
|
break;
|
|
|
|
case ARROW_UP:
|
|
|
|
if (E.cy > 0) E.cy--;
|
|
|
|
break;
|
|
|
|
case ARROW_RIGHT:
|
|
|
|
if (E.cx < E.cols - 1) E.cx++;
|
|
|
|
break;
|
2023-08-23 16:36:42 +00:00
|
|
|
default:
|
2023-08-22 21:32:16 +00:00
|
|
|
printf("%d\r\n", c);
|
2023-08-23 16:36:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-24 16:16:36 +00:00
|
|
|
int editor_read_key() {
|
2023-08-24 12:57:25 +00:00
|
|
|
char c;
|
|
|
|
while (read(STDIN_FILENO, &c, 1) == 0);
|
2023-08-24 16:16:36 +00:00
|
|
|
|
|
|
|
if (c == '\x1b') {
|
|
|
|
char buf[2];
|
|
|
|
|
|
|
|
if (read(STDIN_FILENO, buf+0, 1) != 1) return c;
|
|
|
|
if (read(STDIN_FILENO, buf+1, 1) != 1) return c;
|
|
|
|
|
|
|
|
if (buf[0] == '[') {
|
|
|
|
switch (buf[1]) {
|
|
|
|
case 'A':
|
|
|
|
return ARROW_UP;
|
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
return ARROW_DOWN;
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
return ARROW_RIGHT;
|
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
return ARROW_LEFT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int) c;
|
2023-08-24 12:57:25 +00:00
|
|
|
}
|
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
void die(const char *s) {
|
|
|
|
editor_clear_screen();
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
perror(s);
|
|
|
|
exit(1);
|
2023-08-22 21:32:16 +00:00
|
|
|
}
|
2023-08-24 16:16:36 +00:00
|
|
|
|
|
|
|
void ab_append(struct abuf *ab, const char *s) {
|
|
|
|
int len = strlen(s);
|
|
|
|
|
|
|
|
ab->p = realloc(ab->p, ab->len + len);
|
|
|
|
memcpy(ab->p + ab->len, s, len);
|
|
|
|
|
|
|
|
ab->len += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ab_write(struct abuf *ab) {
|
|
|
|
write(STDOUT_FILENO, ab->p, ab->len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ab_free(struct abuf *ab) {
|
|
|
|
free(ab->p);
|
|
|
|
}
|