summaryrefslogtreecommitdiff
path: root/jet.c
blob: 290b95e2c89d0251203bee535b8f913e509a5400 (plain)
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
#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();
	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);
		}
		fclose(f);
	}

	int window_height = getmaxy(stdscr);
	int current_line = 0;
	int old_line = -1;

	int number_of_lines = 0;
	for (struct point i = {page, 0}; !at_eof(&i); move_point_forward(&i)) {
		if (element(&i) == '\n') number_of_lines++;
	}

	while (1) {
		if (old_line != current_line) {
			clear();

			int iter_line = 0;
			for (struct point i = {page, 0}; !at_eof(&i) && iter_line < window_height + current_line; move_point_forward(&i)) {
				if (iter_line >= current_line) addch(element(&i));
				if (element(&i) == '\n') iter_line++;
			}
		}

		old_line = current_line;
		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++;
		}
	}

	endwin();
	return 0;
}