]> Pileus Git - lackey/blobdiff - views/day.c
Rename stuff
[lackey] / views / day.c
diff --git a/views/day.c b/views/day.c
new file mode 100644 (file)
index 0000000..4c21c67
--- /dev/null
@@ -0,0 +1,171 @@
+/*
+ * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#define _XOPEN_SOURCE_EXTENDED
+
+#include <string.h>
+#include <ncurses.h>
+
+#include "util.h"
+#include "date.h"
+#include "cal.h"
+#include "view.h"
+
+/* Static data */
+static int     line;
+static WINDOW *win;
+static WINDOW *head;
+static WINDOW *times;
+static WINDOW *body;
+
+/* Box packing helpers */
+static void clear_old(event_t **list, int n, event_t *cur)
+{
+       for (int i = 0; i < n; i++)
+               if (list[i] && compare(&list[i]->end, &cur->start) < 0)
+                       list[i] = NULL;
+}
+
+static int next_free(event_t **list, int n)
+{
+       for (int i = 0; i < n; i++)
+               if (!list[i])
+                       return i;
+       return n-1;
+}
+
+static int count_busy(event_t **list, int n)
+{
+       int sum = 0;
+       for (int i = 0; i < n; i++)
+               if (list[i])
+                       sum++;
+       return sum;
+}
+
+static int get_ncols(event_t *event, int n)
+{
+       int ncols = 0;
+       event_t *preview[n];
+       memset(preview, 0, sizeof(preview));
+       for (event_t *cur = event; cur; cur = cur->next) {
+               int col = next_free(preview, n);
+               preview[col] = cur;
+               ncols = MAX(ncols, col+1);
+               if (cur->next)
+                       clear_old(preview, n, cur->next);
+               if (count_busy(preview, n) == 0)
+                       break;
+       }
+       return ncols;
+}
+
+static int get_col(event_t **list, int n, event_t *event, int *ncols)
+{
+       clear_old(list, n, event);
+
+       /* If there are current events, then recalculate
+        * ncols for the next series of events */
+       if (count_busy(list, n) == 0)
+               *ncols = get_ncols(event, n);
+
+       /* Find next open slot */
+       int col = next_free(list, n);
+       list[col] = event;
+       return col;
+}
+
+/* Day init */
+void day_init(WINDOW *_win)
+{
+       win   = _win; //  lines  cols  y  x
+       head  = derwin(win,         1, COLS,   0, 0);
+       times = derwin(win, LINES-2-2,      5, 2, 0);
+       body  = derwin(win, LINES-2-2, COLS-6, 2, 6);
+       line  = 10*4; // 10:00
+}
+
+/* Day size */
+void day_size(int rows, int cols)
+{
+       wresize(head,       1, cols  );
+       wresize(times, rows-2,      5);
+       wresize(body,  rows-2, cols-6);
+}
+
+/* Day draw */
+void day_draw(void)
+{
+       const char *mstr = month_to_string(MONTH);
+       const char *dstr = day_to_string(day_of_week(YEAR, MONTH, DAY));
+
+       /* Print Header */
+       mvwprintw(head, 0, 0, "%s, %s %d", dstr, mstr, DAY+1);
+       mvwprintw(head, 0, COLS-10, "%d-%02d-%02d", YEAR, MONTH, DAY+1);
+
+       /* Print times */
+       mvwprintw(times, 0, 0, "%02d:%02d", ((line/4)-1)%12+1, (line*15)%60);
+       for (int h = 0; h < 24; h++)
+               mvwprintw(times, h*4-line, 0, "%02d:%02d", (h-1)%12+1, 0);
+
+       /* Print events */
+       event_t *event = EVENTS;
+       event_t *active[10] = {};
+       int ncols = 0;
+       for (int h = 0; h < 24; h++)
+       for (int m = 0; m < 60; m+=15)
+       while (event && before(&event->start,
+                       YEAR, MONTH, DAY, h+(m+15)/60, (m+15)%60)) {
+               if (!before(&event->start, YEAR, MONTH, DAY, h, m)) {
+                       int col    = get_col(active, N_ELEMENTS(active), event, &ncols);
+                       int left   = ROUND((col+0.0)*(COLS-6)/ncols);
+                       int right  = ROUND((col+1.0)*(COLS-6)/ncols);
+                       int row    = h*4 + m/15 - line;
+                       int height = (get_mins(&event->start, &event->end)-1)/15+1;
+                       event_box(body, event, row, left, height, right-left);
+               }
+               event = event->next;
+       }
+
+       /* Print lines */
+       mvwhline(win, 1, 0, ACS_HLINE, COLS);
+       mvwvline(win, 2, 5, ACS_VLINE, LINES-4);
+}
+
+/* Day run */
+int day_run(int key, mmask_t btn, int row, int col)
+{
+       int days = 0, ref = 0;
+       switch (key)
+       {
+               case 'h': ref = 1; days = -1; break;
+               case 'l': ref = 1; days =  1; break;
+               case 'i': ref = 1; days = -7; break;
+               case 'o': ref = 1; days =  7; break;
+               case 'k': ref = 1; line--;    break;
+               case 'j': ref = 1; line++;    break;
+       }
+       line = CLAMP(line, 0, 24*4);
+       if (days)
+               add_days(&YEAR, &MONTH, &DAY, days);
+       if (ref) {
+               werase(win);
+               day_draw();
+               wrefresh(win);
+       }
+       return 0;
+}