summaryrefslogtreecommitdiff
path: root/src/draw.c
blob: c6fb82c3aa207c578d9c450f47e65de303cffcaa (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <curses.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include "draw.h"
#include "entry.h"
#include "group.h"
#include "tui_text.h"

// main window-related globals
WINDOW *w_main;
Tui_text *main_text = NULL; // keep track of text location - this array will be in order - top to bottom

// hover-related globals
int hover_index; // current hover (as index for Tui_text, usually main_text)
int hover_count; // number of hovers available


// initialize a window
void draw_data(Group **groups, int g_count, Entry **entries, int e_count, WINDOW *w, int start_x, int start_y);

// move hover to a new Tui_text in window w
void hover_move(WINDOW *w, int new_hover_index);

// handle feedback loop
void feedback_loop();


void tui_init(Group **groups, int g_count, Entry **entries, int e_count) {
	int input; // capture user input
	
	// set an interrupt to end cleanly
	signal(SIGINT, tui_end);

	// init and set options
	initscr();
	keypad(stdscr, TRUE); // enable arrow keys and other function keys
	cbreak();             // set for interactive curses applications
	curs_set(0);             // hide cursor

	// set main window
	w_main = newwin(0, 0, 0, 0);
	box(w_main, 0, 0);
	refresh();

	// draw groups and entries
	draw_data(groups, g_count, entries, e_count, w_main, 1, 1);
	wrefresh(w_main);

	// initialize hover
	hover_index = 0;
	hover_move(w_main, 0);
	wrefresh(w_main);

	// feedback loop
	feedback_loop();

	tui_end();
	free(*groups);
	free(*entries);
}

void tui_end() {
	endwin();
}



void draw_data(Group **groups, int g_count, Entry **entries, int e_count, WINDOW *w, int start_x, int start_y) {
	int i;
	int j;
	int mt_index = 0; // separate index to keep track of main_text array
	char buf[BUF_LEN];
	
	// initialize main_text
	if(main_text != NULL) free(main_text);
	main_text = malloc(sizeof(Tui_text) * (e_count + g_count));

	// set hover count
	hover_count = e_count + g_count;

	for(i = 0; i < g_count; ++i) {
		// print group
		mvwprintw(w, start_y, start_x, "%s", group_get_name(&((*groups)[i])));

		// save group in main_text array
		tui_text_set_x(&(main_text[mt_index]), start_x);
		tui_text_set_y(&(main_text[mt_index]), start_y);
		tui_text_set_type(&(main_text[mt_index]), GROUP);
		tui_text_set_data(&(main_text[mt_index]), &((*groups)[i]));
		++mt_index;

		++start_y;
		for(j = 0; j < e_count; ++j) {
			// check if an entry belongs to the group
			if(entry_get_group_id(&((*entries)[j])) == group_get_id(&((*groups)[i]))) {
				// print entry
				mvwprintw(w, start_y, start_x, "  ");
				// print date if there is one
				if(entry_get_due_date(&((*entries)[j])) != NULL) {
					memset(buf, 0, BUF_LEN);
					strftime(buf, BUF_LEN, "%a, %m/%d", entry_get_due_date(&((*entries)[j])));
					wprintw(w, "%s: ", buf);
				}
				// print entry title
				wprintw(w, "%s", entry_get_title(&((*entries)[j])));

				// save entry in main_text array
				tui_text_set_x(&(main_text[mt_index]), start_x+2);
				tui_text_set_y(&(main_text[mt_index]), start_y);
				tui_text_set_type(&(main_text[mt_index]), ENTRY);
				tui_text_set_data(&(main_text[mt_index]), &((*entries)[j]));
				mt_index++;

				++start_y;
			}
		}
		++start_y;
	}
}

void hover_move(WINDOW *w, int new_hover_index) {
	// avoid going out of bounds
	if(new_hover_index < 0) new_hover_index = 0;
	if(new_hover_index >= hover_count) new_hover_index = hover_count-1;

	// unset previous hover
	mvwchgat(w, 
			tui_text_get_y(&(main_text[hover_index])), 
			tui_text_get_x(&(main_text[hover_index])), 
			w->_maxx - tui_text_get_x(&(main_text[hover_index])), 
			A_NORMAL, 0, NULL);

	// set new hover
	hover_index = new_hover_index;
	mvwchgat(w, 
			tui_text_get_y(&(main_text[hover_index])), 
			tui_text_get_x(&(main_text[hover_index])), 
			w->_maxx - tui_text_get_x(&(main_text[hover_index])), 
			A_REVERSE, 0, NULL);
}

void feedback_loop() {
	int input;
	bool finish = false; // turn to true to break out

	while(!finish) {
		input = getch();

		switch(input) {
			case 'q':
				finish = true;
				break;

			case KEY_UP:
				hover_move(w_main, hover_index-1);
				wrefresh(w_main);
				break;

			case KEY_DOWN:
				hover_move(w_main, hover_index+1);
				wrefresh(w_main);
				break;
		}
	}
}