started working on scrolling, enter key works now
This commit is contained in:
+144
-52
@@ -5,104 +5,196 @@
|
||||
|
||||
typedef struct {
|
||||
uint32_t lines;
|
||||
uint32_t screen_line;
|
||||
uint32_t screen_col;
|
||||
uint32_t buffer_line;
|
||||
uint32_t buffer_col;
|
||||
uint32_t y_offset;
|
||||
uint32_t x_offset;
|
||||
bool editmode;
|
||||
String_t* buffer;
|
||||
} Editor;
|
||||
|
||||
Editor editor_from(char* input_string) {
|
||||
Editor e;
|
||||
e.lines = 0;
|
||||
e.screen_line = 0;
|
||||
e.screen_col = 0;
|
||||
e.editmode = false;
|
||||
void add_toolbar(Editor* self) {
|
||||
int max_x, max_y;
|
||||
getmaxyx(stdscr, max_y, max_x);
|
||||
|
||||
int linenum = 0;
|
||||
String_t lines = str_from_chars(input_string);
|
||||
e.buffer = str_lines(&lines, &linenum);
|
||||
e.lines = (size_t)linenum;
|
||||
str_dealloc(&lines);
|
||||
|
||||
for (size_t i = 0; i < e.lines; i++) {
|
||||
move(max_y - 1, 0);
|
||||
char mode[8];
|
||||
snprintf(mode, 9, "[%6s]", self->editmode ? "Insert" : "Normal");
|
||||
addstr(mode);
|
||||
}
|
||||
|
||||
void refresh_buffer(Editor* self) {
|
||||
|
||||
move(0, 0);
|
||||
|
||||
clear();
|
||||
|
||||
// get the screen size so we can figure out where to place characters
|
||||
int max_x, max_y;
|
||||
getmaxyx(stdscr, max_y, max_x);
|
||||
|
||||
for (size_t i = self->y_offset; i < self->lines && i < self->y_offset + max_y; i++) {
|
||||
// for (size_t i = 0; i < self->lines; i++) {
|
||||
// adding the line number
|
||||
char line_no[5];
|
||||
snprintf(line_no, 5, "%-5d", i + 1);
|
||||
// adding the line of text to the buffer
|
||||
addstr(line_no);
|
||||
addch(' ');
|
||||
addstr(to_chars(&e.buffer[i]));
|
||||
addstr(to_chars(&self->buffer[i]));
|
||||
addstr("\n");
|
||||
}
|
||||
|
||||
add_toolbar(self);
|
||||
|
||||
move(self->buffer_line, self->buffer_col + 5);
|
||||
}
|
||||
|
||||
void move_cursor_on_screen(Editor* editor, int x, int y) {
|
||||
int newx = x + 5; // account for the line number
|
||||
|
||||
move(y, newx);
|
||||
}
|
||||
|
||||
void switch_mode(Editor* self) {
|
||||
self->editmode = !self->editmode;
|
||||
refresh_buffer(self);
|
||||
}
|
||||
|
||||
void newline(Editor* self) {
|
||||
move(self->buffer_line, 0);
|
||||
char line_no[5];
|
||||
snprintf(line_no, 5, "%-5d", self->buffer_line + 1);
|
||||
// adding the line of text to the buffer
|
||||
addstr(line_no);
|
||||
addch(' ');
|
||||
move(self->buffer_line, self->buffer_col + 5);
|
||||
}
|
||||
|
||||
Editor editor_from(String_t input_string) {
|
||||
Editor e;
|
||||
e.lines = 0;
|
||||
e.buffer_line = 0;
|
||||
e.buffer_col = 0;
|
||||
e.y_offset = 0;
|
||||
e.x_offset = 0;
|
||||
e.editmode = false;
|
||||
|
||||
int linenum = 0;
|
||||
e.buffer = str_lines(&input_string, &linenum);
|
||||
e.lines = (size_t)linenum;
|
||||
str_dealloc(&input_string);
|
||||
|
||||
refresh_buffer(&e);
|
||||
return e;
|
||||
}
|
||||
|
||||
Editor new_editor() {
|
||||
return editor_from("");
|
||||
return editor_from(str_new());
|
||||
}
|
||||
|
||||
void move_cursor(Editor* self, int x, int y) {
|
||||
if (y != 0
|
||||
&& (int)(self->screen_line) + y >= 0
|
||||
&& self->screen_line + y <= self->lines)
|
||||
&& (int)(self->buffer_line) + y >= 0
|
||||
&& self->buffer_line + y <= self->lines)
|
||||
{
|
||||
self->screen_line += y;
|
||||
int line_width = str_len(&self->buffer[self->screen_line]);
|
||||
if (self->screen_col > line_width) {
|
||||
self->screen_col = line_width;
|
||||
// move the cursor up or down
|
||||
self->buffer_line += y;
|
||||
int line_width = str_len(&self->buffer[self->buffer_line]);
|
||||
if (self->buffer_col > line_width) {
|
||||
self->buffer_col = line_width;
|
||||
}
|
||||
} else if ((int)(self->screen_col) + x < 0) {
|
||||
if ((int)self->screen_line - 1 >= 0) {
|
||||
self->screen_line -= 1;
|
||||
self->screen_col = str_len(&self->buffer[self->screen_line]);
|
||||
} else if ((int)(self->buffer_col) + x < 0) {
|
||||
// moving the cursor off the left hand side of the line
|
||||
if ((int)self->buffer_line > 0) {
|
||||
self->buffer_line -= 1;
|
||||
self->buffer_col = str_len(&self->buffer[self->buffer_line]);
|
||||
}
|
||||
} else if (self->screen_col + x > str_len(&self->buffer[self->screen_line])) {
|
||||
if (self->screen_line + 1 <= self->lines) {
|
||||
self->screen_col = 0;
|
||||
self->screen_line += 1;
|
||||
} else if (self->buffer_col + x > str_len(&self->buffer[self->buffer_line])) {
|
||||
// moving the cursor off the right hand side of the line
|
||||
if (self->buffer_line < self->lines) {
|
||||
self->buffer_col = 0;
|
||||
self->buffer_line += 1;
|
||||
}
|
||||
} else if (x != 0) {
|
||||
self->screen_col += x;
|
||||
// moving the cursor left or right in any other case
|
||||
self->buffer_col += x;
|
||||
}
|
||||
move(self->screen_line, self->screen_col + 5);
|
||||
move_cursor_on_screen(self, self->buffer_col, self->buffer_line);
|
||||
}
|
||||
|
||||
void delchar(Editor* self) {
|
||||
str_remove(&self->buffer[self->screen_line], self->screen_col);
|
||||
delch();
|
||||
if (self->buffer_col == str_len(&self->buffer[self->buffer_line])) {
|
||||
|
||||
if (self->buffer_line +1 == self->lines) {
|
||||
return;
|
||||
}
|
||||
|
||||
self->buffer[self->buffer_line] = str_merge(&self->buffer[self->buffer_line], &self->buffer[self->buffer_line + 1]);
|
||||
|
||||
for (size_t i = self->buffer_line + 2; i < self->lines; i++) {
|
||||
self->buffer[i - 1] = self->buffer[i];
|
||||
}
|
||||
|
||||
self->buffer[self->lines - 1] = str_new();
|
||||
self->lines--;
|
||||
refresh_buffer(self);
|
||||
} else {
|
||||
// removes the character from the current line
|
||||
str_remove(&self->buffer[self->buffer_line], self->buffer_col);
|
||||
delch();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void pressed_enter(Editor* self) {
|
||||
// allocate memory immediately since we know a new line is being added
|
||||
self->lines++;
|
||||
self->buffer = realloc(self->buffer, sizeof(String_t) * (self->lines));
|
||||
|
||||
if (self->buffer_line == self->lines -1) {
|
||||
// if at end of file add an empty line
|
||||
self->buffer[self->lines - 1] = str_new();
|
||||
} else {
|
||||
// else shift each line downwards including everything past the cursor on the current line
|
||||
for (size_t i = self->lines - 1; i > self->buffer_line + 1; i--) {
|
||||
self->buffer[i] = self->buffer[i - 1];
|
||||
}
|
||||
|
||||
self->buffer[self->buffer_line + 1] = str_slice(
|
||||
&self->buffer[self->buffer_line],
|
||||
self->buffer_col,
|
||||
str_len(&self->buffer[self->buffer_line])
|
||||
);
|
||||
|
||||
self->buffer[self->buffer_line] = str_slice(
|
||||
&self->buffer[self->buffer_line],
|
||||
0,
|
||||
self->buffer_col
|
||||
);
|
||||
}
|
||||
// refresh the screen with the new data
|
||||
refresh_buffer(self);
|
||||
move_cursor(self, 1, 0);
|
||||
}
|
||||
|
||||
// inserts a character at the cursor
|
||||
void addchar(Editor* self, char c) {
|
||||
if (self->screen_line == self->lines) {
|
||||
move(self->screen_line, 0);
|
||||
char line_no[5];
|
||||
snprintf(line_no, 5, "%-5d", self->screen_line + 1);
|
||||
// adding the line of text to the buffer
|
||||
addstr(line_no);
|
||||
addch(' ');
|
||||
move(self->screen_line, self->screen_col + 5);
|
||||
if (self->buffer_line == self->lines) {
|
||||
// if we are at the end of the file then we need to add a new line
|
||||
newline(self);
|
||||
|
||||
fprintf(stderr, "buffer full\n");
|
||||
// reallocate self->buffer to be 1 larger
|
||||
self->lines++;
|
||||
self->buffer = realloc(self->buffer, sizeof(String_t) * (self->lines + 1));
|
||||
self->buffer = realloc(self->buffer, sizeof(String_t) * (self->lines));
|
||||
|
||||
// allocate the memory space for the new line and add it to the buffer
|
||||
self->buffer[self->screen_line] = str_new();
|
||||
for (size_t i = 0; i < self->lines; i++) {
|
||||
fprintf(stderr, "size: %d\n", (&self->buffer[i])->size);
|
||||
}
|
||||
|
||||
fprintf(stderr, "ok!");
|
||||
self->buffer[self->buffer_line] = str_new();
|
||||
}
|
||||
|
||||
insch(c);
|
||||
// insert the character into the string at the given index
|
||||
str_insert(&self->buffer[self->screen_line], self->screen_col, c);
|
||||
str_insert(&self->buffer[self->buffer_line], self->buffer_col, c);
|
||||
move_cursor(self, 1, 0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user