]> Pileus Git - lackey/blob - src/util.c
Move drawing code to screen.c, work on day view
[lackey] / src / util.c
1 /*
2 #include <string.h>
3  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
4  * 
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <ncurses.h>
23
24 #include "date.h"
25 #include "event.h"
26 #include "screen.h"
27
28 /* Static data */
29 static FILE *debug_fd = NULL;
30
31 /* Initialize */
32 void util_init(void)
33 {
34         debug_fd = fopen("/tmp/lackey.log", "w+");
35 }
36
37 /* Debugging functions */
38 int debug(char *fmt, ...)
39 {
40         int rval;
41         va_list ap;
42
43         /* Log to debug file */
44         if (debug_fd) {
45                 va_start(ap, fmt);
46                 vfprintf(debug_fd, "debug: ", ap);
47                 rval = vfprintf(debug_fd, fmt, ap);
48         }
49
50         /* Log to status bar */
51         if (stdscr) {
52                 va_start(ap, fmt);
53                 mvhline(LINES-2, 0, ACS_HLINE, COLS);
54                 move(LINES-1, 0);
55                 attron(COLOR_PAIR(COLOR_ERROR));
56                 vwprintw(stdscr, fmt, ap);
57                 attroff(COLOR_PAIR(COLOR_ERROR));
58                 clrtoeol();
59         }
60
61         va_end(ap);
62         return rval;
63 }