#include #include #include #include #include #include #include #include "page.c" #include "point.c" int main(int argc, char *argv[]) { initscr(); cbreak(); noecho(); nonl(); intrflush(stdscr, FALSE); keypad(stdscr, TRUE); struct page *page = new_page(); struct point cursor = {page, 0}; if (argc > 1) { FILE *f = fopen(argv[1], "r"); char c; while ((c = fgetc(f)) != EOF) { insert_at_point(&cursor, c); } cursor.page = page; cursor.index = 0; fclose(f); } int window_height = getmaxy(stdscr); int current_line = 0; while (1) { clear(); int number_of_lines = 0; int x = -1, y = -1; for (struct point i = {page, 0}; !at_eof(&i); move_point_forward(&i)) { if (element(&i) == '\n') number_of_lines++; if (same_location(&i, &cursor)) { getyx(stdscr, y, x); } if (number_of_lines >= current_line && number_of_lines < window_height + current_line) addch(element(&i)); } if (x > -1 && y > -1) { move(y, x); } int input = getch(); switch (input) { case KEY_UP: if (current_line > 0) current_line--; break; case KEY_DOWN: if (current_line < number_of_lines - window_height) current_line++; break; case KEY_LEFT: move_point_backward(&cursor); break; case KEY_RIGHT: move_point_forward(&cursor); break; case KEY_BACKSPACE: delete_at_point(&cursor); break; default: insert_at_point(&cursor, input); } } endwin(); return 0; }