]> Pileus Git - lackey/blob - view/year.c
Add size function, update ical/week
[lackey] / view / year.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <string.h>
19 #include <ncurses.h>
20
21 #include "util.h"
22 #include "date.h"
23
24 /* Constants */
25 #define MW (2*7+6)
26
27 /* Static data */
28 static WINDOW *win;
29
30 /* Helper functions */
31 static void print_month(month_t month, int y, int x)
32 {
33         const char *name  = month_to_string(month);
34         const int   start = start_of_month(YEAR, month);
35         const char  days  = days_in_month(YEAR, month);
36         mvwprintw(win, y, x+MW/2-strlen(name)/2, "%s", name);
37         wmove(win, y+1, x);
38         for (int d = 0; d < 7; d++)
39                 wprintw(win, "%-3s", day_to_st(d));
40         for (int d = 0; d < days; d++) {
41                 int row = (start + d) / 7;
42                 int col = (start + d) % 7;
43                 if (month == MONTH && d == DAY) wattron(win, A_REVERSE);
44                 mvwprintw(win, y+2+row, x+col*3, "%2d", d+1);
45                 if (month == MONTH && d == DAY) wattroff(win, A_REVERSE);
46         }
47 }
48
49 /* Year init */
50 void year_init(WINDOW *_win)
51 {
52         win = _win;
53 }
54
55 /* Year size */
56 void year_size(int rows, int cols)
57 {
58 }
59
60 /* Year draw */
61 void year_draw(void)
62 {
63         int w = MW*3 + 2*3;
64         int x = COLS/2 - w/2;
65         int y = 0;
66         int h[4] = {};
67
68         /* Clear */
69         werase(win);
70
71         /* Determine heights */
72         for (int m = 0; m < 12; m++) {
73                 int weeks = weeks_in_month(YEAR, m);
74                 h[m/3] = MAX(h[m/3], weeks+2);
75         }
76         int sum = h[0]+h[1]+h[2]+h[3];
77
78         /* Print Header */
79         mvwprintw(win, y++, COLS/2-2, "%d", YEAR);
80
81         /* Print Months */
82         for (int m = 0; m < 12; m++) {
83                 print_month(m, y, x);
84                 if (m % 3 == 2) {
85                         x  = COLS/2 - w/2;
86                         y += h[m/3]+1;
87                 } else {
88                         x += 3+MW;
89                 }
90         }
91
92         /* Print Lines */
93         y = 1;
94         mvwvline(win, y, x+(MW+3)*1-2, ACS_VLINE, sum+3);
95         mvwvline(win, y, x+(MW+3)*2-2, ACS_VLINE, sum+3);
96         for (int i = 0; i < 3; i++) {
97                 y += h[i];
98                 mvwhline(win, y, x,        ACS_HLINE, w);
99                 mvwaddch(win, y, x+(MW+3)*1-2, ACS_PLUS);
100                 mvwaddch(win, y, x+(MW+3)*2-2, ACS_PLUS);
101                 y++;
102         }
103 }
104
105 /* Year run */
106 int year_run(int key, mmask_t btn, int row, int col)
107 {
108         day_t d = DAY;
109         month_t m = MONTH;
110         year_t y = YEAR;
111         wday_t day = day_of_week(YEAR, MONTH, DAY);
112         int week = (start_of_month(y, m) + d) / 7;
113         int dir = 0;
114
115         /* Step years */
116         if (key == 'i')
117                 YEAR--;
118         if (key == 'o')
119                 YEAR++;
120
121         /* Get direction */
122         if (key == 'h' || key == 'k')
123                 dir = -1;
124         if (key == 'j' || key == 'l')
125                 dir =  1;
126
127         /* Step up/down */
128         if (key == 'j' || key == 'k') {
129                 for (int i = 0; i < 90/7; i++) {
130                         add_days(&y, &m, &d, dir*7);
131                         if (day_of_week(y, m, d) == day &&
132                             y == YEAR && m%3 == MONTH%3) {
133                                 MONTH = m;
134                                 DAY = d;
135                                 break;
136                         }
137                 }
138         }
139
140         /* Step left/right */
141         if (key == 'h' || key == 'l') {
142                 for (int i = 0; i < 90; i++) {
143                         add_days(&y, &m, &d, dir);
144                         if ((start_of_month(y, m) + d) / 7 == week &&
145                             y == YEAR && m/3 == MONTH/3) {
146                                 MONTH = m;
147                                 DAY = d;
148                                 break;
149                         }
150                 }
151         }
152
153         /* Refresh */
154         year_draw();
155         wrefresh(win);
156         return 0;
157 }