2023-08-22 21:32:16 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.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-23 23:27:25 +00:00
|
|
|
void enable_raw_mode();
|
|
|
|
void disable_raw_mode();
|
2023-08-24 11:09:03 +00:00
|
|
|
int get_window_size(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();
|
|
|
|
void editor_draw_rows();
|
|
|
|
void editor_process_key();
|
|
|
|
|
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-24 11:09:03 +00:00
|
|
|
struct {
|
|
|
|
struct termios orig_termios;
|
|
|
|
int rows;
|
|
|
|
int cols;
|
|
|
|
} E;
|
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
|
|
|
enable_raw_mode();
|
2023-08-24 11:09:03 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) != -1 && ws.ws_col != 0) {
|
|
|
|
*rows = ws.ws_row;
|
|
|
|
*cols = ws.ws_col;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void editor_init() {
|
|
|
|
if (!isatty(STDIN_FILENO)) {
|
|
|
|
printf("kilo only supports a terminal at standard in. Exiting.");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_window_size(&E.rows, &E.cols) == -1) die("get_window_size");
|
|
|
|
}
|
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
void editor_redraw_screen() {
|
|
|
|
editor_clear_screen();
|
2023-08-22 21:32:16 +00:00
|
|
|
|
2023-08-23 23:27:25 +00:00
|
|
|
editor_draw_rows();
|
|
|
|
|
|
|
|
write(STDIN_FILENO, "\x1b[H", 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
void editor_clear_screen() {
|
|
|
|
write(STDIN_FILENO, "\x1b[2J", 4);
|
|
|
|
write(STDIN_FILENO, "\x1b[H", 3);
|
2023-08-23 16:36:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void editor_draw_rows() {
|
2023-08-24 11:09:03 +00:00
|
|
|
for (int y = 0; y < E.rows - 1; y++)
|
2023-08-23 16:36:42 +00:00
|
|
|
write(STDIN_FILENO, "~\r\n", 3);
|
|
|
|
write(STDIN_FILENO, "~", 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void editor_process_key() {
|
|
|
|
char c;
|
|
|
|
read(STDIN_FILENO, &c, 1);
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case CTRL_KEY('Q'):
|
|
|
|
editor_clear_screen();
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
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-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
|
|
|
}
|