Start refactoring into multiple lines and make it my own #8
This commit is contained in:
parent
184827cfd1
commit
6b2c3a00a5
6 changed files with 252 additions and 211 deletions
16
Makefile
16
Makefile
|
@ -1,2 +1,14 @@
|
||||||
kilo: kilo.c
|
kilo: fn.c terminal.c
|
||||||
$(CC) kilo.c -o kilo -Wall -Wextra -pedantic -std=c99
|
$(CC) fn.c terminal.c -o fn \
|
||||||
|
-Wall \
|
||||||
|
-Wextra \
|
||||||
|
-Wbad-function-cast \
|
||||||
|
-Wcast-align \
|
||||||
|
-Wcast-qual \
|
||||||
|
-Wmissing-declarations \
|
||||||
|
-Wnested-externs \
|
||||||
|
-Wpointer-arith \
|
||||||
|
-Wwrite-strings \
|
||||||
|
-Wno-discarded-qualifiers \
|
||||||
|
-pedantic \
|
||||||
|
-std=c99
|
||||||
|
|
BIN
fn
Executable file
BIN
fn
Executable file
Binary file not shown.
221
kilo.c → fn.c
221
kilo.c → fn.c
|
@ -17,84 +17,9 @@
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
/*** defines ***/
|
#include "fn.h"
|
||||||
|
#include "terminal.h"
|
||||||
|
|
||||||
#define KILO_VERSION "0.0.1"
|
|
||||||
#define KILO_TAB_STOP 8
|
|
||||||
#define KILO_QUIT_TIMES 3
|
|
||||||
|
|
||||||
#define CTRL_KEY(k) ((k) & 0x1f)
|
|
||||||
|
|
||||||
enum editorKey {
|
|
||||||
BACKSPACE = 127,
|
|
||||||
ARROW_LEFT = 1000,
|
|
||||||
ARROW_RIGHT,
|
|
||||||
ARROW_UP,
|
|
||||||
ARROW_DOWN,
|
|
||||||
DEL_KEY,
|
|
||||||
HOME_KEY,
|
|
||||||
END_KEY,
|
|
||||||
PAGE_UP,
|
|
||||||
PAGE_DOWN
|
|
||||||
};
|
|
||||||
|
|
||||||
enum editorHighlight {
|
|
||||||
HL_NORMAL = 0,
|
|
||||||
HL_COMMENT,
|
|
||||||
HL_MLCOMMENT,
|
|
||||||
HL_KEYWORD1,
|
|
||||||
HL_KEYWORD2,
|
|
||||||
HL_STRING,
|
|
||||||
HL_NUMBER,
|
|
||||||
HL_MATCH
|
|
||||||
};
|
|
||||||
|
|
||||||
#define HL_HIGHLIGHT_NUMBERS (1<<0)
|
|
||||||
#define HL_HIGHLIGHT_STRINGS (1<<1)
|
|
||||||
|
|
||||||
|
|
||||||
/*** data ***/
|
|
||||||
|
|
||||||
struct editorSyntax {
|
|
||||||
char *filetype;
|
|
||||||
char **filematch;
|
|
||||||
char **keywords;
|
|
||||||
char *singleline_comment_start;
|
|
||||||
char *multiline_comment_start;
|
|
||||||
char *multiline_comment_end;
|
|
||||||
int flags;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct erow {
|
|
||||||
int idx;
|
|
||||||
int size;
|
|
||||||
int rsize;
|
|
||||||
char *chars;
|
|
||||||
char *render;
|
|
||||||
unsigned char *hl;
|
|
||||||
int hl_open_comment;
|
|
||||||
} erow;
|
|
||||||
|
|
||||||
struct editorConfig {
|
|
||||||
int cx, cy;
|
|
||||||
int rx; // The x position in the rendered line (for tabs)
|
|
||||||
int rowoff;
|
|
||||||
int coloff;
|
|
||||||
int screenrows;
|
|
||||||
int screencols;
|
|
||||||
int numrows;
|
|
||||||
erow *row;
|
|
||||||
int dirty;
|
|
||||||
char *filename;
|
|
||||||
char statusmsg[80];
|
|
||||||
time_t statusmsg_time;
|
|
||||||
struct editorSyntax *syntax;
|
|
||||||
struct termios orig_termios;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct editorConfig E;
|
|
||||||
|
|
||||||
/*** filetypes ***/
|
|
||||||
|
|
||||||
char *C_HL_extensions[] = { ".c", ".h", ".cpp", NULL };
|
char *C_HL_extensions[] = { ".c", ".h", ".cpp", NULL };
|
||||||
char *C_HL_keywords[] = {
|
char *C_HL_keywords[] = {
|
||||||
|
@ -117,128 +42,6 @@ struct editorSyntax HLDB[] = {
|
||||||
|
|
||||||
#define HLDB_ENTRIES (sizeof(HLDB) / sizeof(HLDB[0]))
|
#define HLDB_ENTRIES (sizeof(HLDB) / sizeof(HLDB[0]))
|
||||||
|
|
||||||
/*** prototypes ***/
|
|
||||||
|
|
||||||
void editorSetStatusMessage(const char *fmt, ...);
|
|
||||||
void editorRefreshScreen();
|
|
||||||
char *editorPrompt(char *prompt, void (*callback)(char *, int));
|
|
||||||
|
|
||||||
/*** terminal ***/
|
|
||||||
|
|
||||||
void die(const char *s) {
|
|
||||||
write(STDOUT_FILENO, "\x1b[2J", 4);
|
|
||||||
write(STDOUT_FILENO, "\x1b[H", 3);
|
|
||||||
perror(s);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void disableRawMode() {
|
|
||||||
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1)
|
|
||||||
die("tcsetattr");
|
|
||||||
}
|
|
||||||
|
|
||||||
void enableRawMode() {
|
|
||||||
if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1)
|
|
||||||
die("tcgetattr");
|
|
||||||
atexit(disableRawMode);
|
|
||||||
|
|
||||||
struct termios raw = E.orig_termios;
|
|
||||||
raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
|
|
||||||
raw.c_oflag &= ~(OPOST);
|
|
||||||
raw.c_cflag |= (CS8);
|
|
||||||
raw.c_lflag &= ~(ECHO | ICANON | ISIG);
|
|
||||||
raw.c_cc[VMIN] = 0;
|
|
||||||
raw.c_cc[VTIME] = 1;
|
|
||||||
|
|
||||||
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1)
|
|
||||||
die("tcsetattr");
|
|
||||||
}
|
|
||||||
|
|
||||||
int editorReadKey() {
|
|
||||||
int nread;
|
|
||||||
char c;
|
|
||||||
while ((nread = read(STDIN_FILENO, &c, 1)) != 1) {
|
|
||||||
if (nread == -1 && errno != EAGAIN) die("read");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Process escape sequences
|
|
||||||
if (c == '\x1b') {
|
|
||||||
char seq[3];
|
|
||||||
|
|
||||||
if (read(STDIN_FILENO, &seq[0], 1) != 1) return '\x1b';
|
|
||||||
if (read(STDIN_FILENO, &seq[1], 1) != 1) return '\x1b';
|
|
||||||
|
|
||||||
if (seq[0] == '[') {
|
|
||||||
if (seq[1] >= '0' && seq[1] <= '9') {
|
|
||||||
if (read(STDIN_FILENO, &seq[2], 1) != 1) return '\x1b';
|
|
||||||
if (seq[2] == '~') {
|
|
||||||
switch (seq[1]) {
|
|
||||||
case '1': return HOME_KEY;
|
|
||||||
case '3': return DEL_KEY;
|
|
||||||
case '4': return END_KEY;
|
|
||||||
case '5': return PAGE_UP;
|
|
||||||
case '6': return PAGE_DOWN;
|
|
||||||
case '7': return HOME_KEY;
|
|
||||||
case '8': return END_KEY;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
switch (seq[1]) {
|
|
||||||
case 'A': return ARROW_UP;
|
|
||||||
case 'B': return ARROW_DOWN;
|
|
||||||
case 'C': return ARROW_RIGHT;
|
|
||||||
case 'D': return ARROW_LEFT;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (seq[0] == '0') {
|
|
||||||
switch (seq[1]) {
|
|
||||||
case 'H': return HOME_KEY;
|
|
||||||
case 'F': return END_KEY;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return '\x1b';
|
|
||||||
} else {
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int getCursorPosition(int *rows, int *cols) {
|
|
||||||
char buf[32];
|
|
||||||
unsigned int i = 0;
|
|
||||||
|
|
||||||
if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) // CPR (custor position report)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
while (i < sizeof(buf) - 1) {
|
|
||||||
if (read(STDIN_FILENO, &buf[i], 1) != 1) break;
|
|
||||||
if (buf[i] == 'R') break;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
buf[i] = '\0';
|
|
||||||
|
|
||||||
if (buf[0] != '\x1b' || buf[1] != '[') return -1;
|
|
||||||
if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) return -1;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int getWindowSize(int *rows, int *cols) {
|
|
||||||
struct winsize ws;
|
|
||||||
|
|
||||||
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) {
|
|
||||||
// Move cursor to the lower right as a fallback if TIOCGWINSZ does
|
|
||||||
// not work. We count the columns and rows then by hand.
|
|
||||||
if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12)
|
|
||||||
return -1;
|
|
||||||
return getCursorPosition(rows, cols);
|
|
||||||
return -1;
|
|
||||||
} else {
|
|
||||||
*cols = ws.ws_col;
|
|
||||||
*rows = ws.ws_row;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** syntax highlighting ***/
|
/*** syntax highlighting ***/
|
||||||
|
|
||||||
|
@ -413,7 +216,7 @@ int editorRowCxToRx(erow *row, int cx) {
|
||||||
int j;
|
int j;
|
||||||
for (j=0; j<cx; j++) {
|
for (j=0; j<cx; j++) {
|
||||||
if (row->chars[j] == '\t') {
|
if (row->chars[j] == '\t') {
|
||||||
rx += (KILO_TAB_STOP - 1) - (rx % KILO_TAB_STOP);
|
rx += (FN_TAB_STOP - 1) - (rx % FN_TAB_STOP);
|
||||||
}
|
}
|
||||||
rx++;
|
rx++;
|
||||||
}
|
}
|
||||||
|
@ -425,7 +228,7 @@ int editorRowRxToCx(erow *row, int rx) {
|
||||||
int cx;
|
int cx;
|
||||||
for (cx=0; cx < row->size; cx++) {
|
for (cx=0; cx < row->size; cx++) {
|
||||||
if (row->chars[cx] == '\t')
|
if (row->chars[cx] == '\t')
|
||||||
cur_rx += (KILO_TAB_STOP - 1) - (cur_rx % KILO_TAB_STOP);
|
cur_rx += (FN_TAB_STOP - 1) - (cur_rx % FN_TAB_STOP);
|
||||||
cur_rx++;
|
cur_rx++;
|
||||||
|
|
||||||
if (cur_rx > rx) return cx;
|
if (cur_rx > rx) return cx;
|
||||||
|
@ -441,13 +244,13 @@ void editorUpdateRow(erow *row) {
|
||||||
}
|
}
|
||||||
|
|
||||||
free(row->render);
|
free(row->render);
|
||||||
row->render = malloc(row->size + tabs*(KILO_TAB_STOP - 1) + 1);
|
row->render = malloc(row->size + tabs*(FN_TAB_STOP - 1) + 1);
|
||||||
|
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
for (j=0; j<row->size; j++) {
|
for (j=0; j<row->size; j++) {
|
||||||
if (row->chars[j] == '\t') {
|
if (row->chars[j] == '\t') {
|
||||||
row->render[idx++] = ' ';
|
row->render[idx++] = ' ';
|
||||||
while (idx % KILO_TAB_STOP != 0) row->render[idx++] = ' ';
|
while (idx % FN_TAB_STOP != 0) row->render[idx++] = ' ';
|
||||||
} else {
|
} else {
|
||||||
row->render[idx++] = row->chars[j];
|
row->render[idx++] = row->chars[j];
|
||||||
}
|
}
|
||||||
|
@ -764,7 +567,7 @@ void editorDrawRows(struct abuf *ab) {
|
||||||
if (E.numrows == 0 && y == E.screenrows / 3) {
|
if (E.numrows == 0 && y == E.screenrows / 3) {
|
||||||
char welcome[80];
|
char welcome[80];
|
||||||
int welcomelen = snprintf(welcome, sizeof(welcome),
|
int welcomelen = snprintf(welcome, sizeof(welcome),
|
||||||
"Kilo editor -- version %s", KILO_VERSION);
|
"FuNote v%s", FN_VERSION);
|
||||||
if (welcomelen > E.screencols) welcomelen = E.screencols;
|
if (welcomelen > E.screencols) welcomelen = E.screencols;
|
||||||
int padding = (E.screencols - welcomelen) / 2;
|
int padding = (E.screencols - welcomelen) / 2;
|
||||||
if (padding) {
|
if (padding) {
|
||||||
|
@ -823,9 +626,9 @@ void editorDrawRows(struct abuf *ab) {
|
||||||
void editorDrawStatusBar(struct abuf *ab) {
|
void editorDrawStatusBar(struct abuf *ab) {
|
||||||
abAppend(ab, "\x1b[7m", 4);
|
abAppend(ab, "\x1b[7m", 4);
|
||||||
char status[80], rstatus[80];
|
char status[80], rstatus[80];
|
||||||
int len = snprintf(status, sizeof(status), "%.20s - %d lines %s",
|
int len = snprintf(status, sizeof(status), "%.20s%s",
|
||||||
E.filename ? E.filename : "[No Name]", E.numrows,
|
E.filename ? E.filename : "[No Name]",
|
||||||
E.dirty ? "(modified)" : "");
|
E.dirty ? "*" : "");
|
||||||
int rlen = snprintf(rstatus, sizeof(rstatus), "%s | %d/%d",
|
int rlen = snprintf(rstatus, sizeof(rstatus), "%s | %d/%d",
|
||||||
E.syntax ? E.syntax->filetype : "no ft", E.cy + 1, E.numrows);
|
E.syntax ? E.syntax->filetype : "no ft", E.cy + 1, E.numrows);
|
||||||
if (len > E.screencols) len = E.screencols;
|
if (len > E.screencols) len = E.screencols;
|
||||||
|
@ -963,7 +766,7 @@ void editorMoveCursor(int key) {
|
||||||
|
|
||||||
|
|
||||||
void editorProcessKeypress() {
|
void editorProcessKeypress() {
|
||||||
static int quit_times = KILO_QUIT_TIMES;
|
static int quit_times = FN_QUIT_TIMES;
|
||||||
|
|
||||||
int c = editorReadKey(); // Blocking!
|
int c = editorReadKey(); // Blocking!
|
||||||
|
|
||||||
|
@ -1039,7 +842,7 @@ void editorProcessKeypress() {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
quit_times = KILO_QUIT_TIMES;
|
quit_times = FN_QUIT_TIMES;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** init ***/
|
/*** init ***/
|
88
fn.h
Normal file
88
fn.h
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
#ifndef _FN_H
|
||||||
|
#define _FN_H
|
||||||
|
|
||||||
|
#define FN_VERSION "0.2"
|
||||||
|
#define FN_TAB_STOP 4
|
||||||
|
#define FN_QUIT_TIMES 2
|
||||||
|
|
||||||
|
#define CTRL_KEY(k) ((k) & 0x1f)
|
||||||
|
|
||||||
|
enum editorKey {
|
||||||
|
BACKSPACE = 127,
|
||||||
|
ARROW_LEFT = 1000,
|
||||||
|
ARROW_RIGHT,
|
||||||
|
ARROW_UP,
|
||||||
|
ARROW_DOWN,
|
||||||
|
DEL_KEY,
|
||||||
|
HOME_KEY,
|
||||||
|
END_KEY,
|
||||||
|
PAGE_UP,
|
||||||
|
PAGE_DOWN
|
||||||
|
};
|
||||||
|
|
||||||
|
enum editorHighlight {
|
||||||
|
HL_NORMAL = 0,
|
||||||
|
HL_COMMENT,
|
||||||
|
HL_MLCOMMENT,
|
||||||
|
HL_KEYWORD1,
|
||||||
|
HL_KEYWORD2,
|
||||||
|
HL_STRING,
|
||||||
|
HL_NUMBER,
|
||||||
|
HL_MATCH
|
||||||
|
};
|
||||||
|
|
||||||
|
#define HL_HIGHLIGHT_NUMBERS (1<<0)
|
||||||
|
#define HL_HIGHLIGHT_STRINGS (1<<1)
|
||||||
|
|
||||||
|
|
||||||
|
/*** data ***/
|
||||||
|
|
||||||
|
struct editorSyntax {
|
||||||
|
char *filetype;
|
||||||
|
char **filematch;
|
||||||
|
char **keywords;
|
||||||
|
char *singleline_comment_start;
|
||||||
|
char *multiline_comment_start;
|
||||||
|
char *multiline_comment_end;
|
||||||
|
int flags;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct erow {
|
||||||
|
int idx;
|
||||||
|
int size;
|
||||||
|
int rsize;
|
||||||
|
char *chars;
|
||||||
|
char *render;
|
||||||
|
unsigned char *hl;
|
||||||
|
int hl_open_comment;
|
||||||
|
} erow;
|
||||||
|
|
||||||
|
struct editorConfig {
|
||||||
|
int cx, cy;
|
||||||
|
int rx; // The x position in the rendered line (for tabs)
|
||||||
|
int rowoff;
|
||||||
|
int coloff;
|
||||||
|
int screenrows;
|
||||||
|
int screencols;
|
||||||
|
int numrows;
|
||||||
|
erow *row;
|
||||||
|
int dirty;
|
||||||
|
char *filename;
|
||||||
|
char statusmsg[80];
|
||||||
|
time_t statusmsg_time;
|
||||||
|
struct editorSyntax *syntax;
|
||||||
|
struct termios orig_termios;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct editorConfig E;
|
||||||
|
|
||||||
|
/*** filetypes ***/
|
||||||
|
|
||||||
|
|
||||||
|
/*** prototypes ***/
|
||||||
|
|
||||||
|
void editorSetStatusMessage(const char *fmt, ...);
|
||||||
|
void editorRefreshScreen();
|
||||||
|
char *editorPrompt(char *prompt, void (*callback)(char *, int));
|
||||||
|
|
||||||
|
#endif
|
125
terminal.c
Normal file
125
terminal.c
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <termios.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
|
#include "fn.h"
|
||||||
|
#include "terminal.h"
|
||||||
|
|
||||||
|
void die(const char *s) {
|
||||||
|
write(STDOUT_FILENO, "\x1b[2J", 4);
|
||||||
|
write(STDOUT_FILENO, "\x1b[H", 3);
|
||||||
|
perror(s);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
void disableRawMode() {
|
||||||
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1)
|
||||||
|
die("tcsetattr");
|
||||||
|
}
|
||||||
|
|
||||||
|
void enableRawMode() {
|
||||||
|
if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1)
|
||||||
|
die("tcgetattr");
|
||||||
|
atexit(disableRawMode);
|
||||||
|
|
||||||
|
struct termios raw = E.orig_termios;
|
||||||
|
raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
|
||||||
|
raw.c_oflag &= ~(OPOST);
|
||||||
|
raw.c_cflag |= (CS8);
|
||||||
|
raw.c_lflag &= ~(ECHO | ICANON | ISIG);
|
||||||
|
raw.c_cc[VMIN] = 0;
|
||||||
|
raw.c_cc[VTIME] = 1;
|
||||||
|
|
||||||
|
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1)
|
||||||
|
die("tcsetattr");
|
||||||
|
}
|
||||||
|
|
||||||
|
int editorReadKey() {
|
||||||
|
int nread;
|
||||||
|
char c;
|
||||||
|
while ((nread = read(STDIN_FILENO, &c, 1)) != 1) {
|
||||||
|
if (nread == -1 && errno != EAGAIN) die("read");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process escape sequences
|
||||||
|
if (c == '\x1b') {
|
||||||
|
char seq[3];
|
||||||
|
|
||||||
|
if (read(STDIN_FILENO, &seq[0], 1) != 1) return '\x1b';
|
||||||
|
if (read(STDIN_FILENO, &seq[1], 1) != 1) return '\x1b';
|
||||||
|
|
||||||
|
if (seq[0] == '[') {
|
||||||
|
if (seq[1] >= '0' && seq[1] <= '9') {
|
||||||
|
if (read(STDIN_FILENO, &seq[2], 1) != 1) return '\x1b';
|
||||||
|
if (seq[2] == '~') {
|
||||||
|
switch (seq[1]) {
|
||||||
|
case '1': return HOME_KEY;
|
||||||
|
case '3': return DEL_KEY;
|
||||||
|
case '4': return END_KEY;
|
||||||
|
case '5': return PAGE_UP;
|
||||||
|
case '6': return PAGE_DOWN;
|
||||||
|
case '7': return HOME_KEY;
|
||||||
|
case '8': return END_KEY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
switch (seq[1]) {
|
||||||
|
case 'A': return ARROW_UP;
|
||||||
|
case 'B': return ARROW_DOWN;
|
||||||
|
case 'C': return ARROW_RIGHT;
|
||||||
|
case 'D': return ARROW_LEFT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (seq[0] == '0') {
|
||||||
|
switch (seq[1]) {
|
||||||
|
case 'H': return HOME_KEY;
|
||||||
|
case 'F': return END_KEY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return '\x1b';
|
||||||
|
} else {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int getCursorPosition(int *rows, int *cols) {
|
||||||
|
char buf[32];
|
||||||
|
unsigned int i = 0;
|
||||||
|
|
||||||
|
if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) // CPR (custor position report)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
while (i < sizeof(buf) - 1) {
|
||||||
|
if (read(STDIN_FILENO, &buf[i], 1) != 1) break;
|
||||||
|
if (buf[i] == 'R') break;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
buf[i] = '\0';
|
||||||
|
|
||||||
|
if (buf[0] != '\x1b' || buf[1] != '[') return -1;
|
||||||
|
if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) return -1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int getWindowSize(int *rows, int *cols) {
|
||||||
|
struct winsize ws;
|
||||||
|
|
||||||
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) {
|
||||||
|
// Move cursor to the lower right as a fallback if TIOCGWINSZ does
|
||||||
|
// not work. We count the columns and rows then by hand.
|
||||||
|
if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12)
|
||||||
|
return -1;
|
||||||
|
return getCursorPosition(rows, cols);
|
||||||
|
return -1;
|
||||||
|
} else {
|
||||||
|
*cols = ws.ws_col;
|
||||||
|
*rows = ws.ws_row;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
13
terminal.h
Normal file
13
terminal.h
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#ifndef _TERMINAL_H
|
||||||
|
#define _TERMINAL_H
|
||||||
|
|
||||||
|
void die(const char *s);
|
||||||
|
|
||||||
|
void disableRawMode();
|
||||||
|
void enableRawMode();
|
||||||
|
|
||||||
|
int editorReadKey();
|
||||||
|
int getCursorPosition(int *rows, int *cols);
|
||||||
|
int getWindowSize(int *rows, int *cols);
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue