1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <curses.h>
#include "page.c"
#include "point.c"
int main(int argc, char *argv[]) {
initscr();
cbreak();
noecho();
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 (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 (element(&i) == '\n') number_of_lines++;
}
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;
}
|