]> Pileus Git - lackey/blob - src/util.c
Some organization
[lackey] / src / util.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 <stdio.h>
19 #include <ncurses.h>
20
21 #include "screen.h"
22
23 /* Static data */
24 static FILE *debug_fd = NULL;
25
26 /* Initialize */
27 void util_init(void)
28 {
29         debug_fd = fopen("/tmp/lackey.log", "w+");
30 }
31
32 /* Debugging functions */
33 int debug(char *fmt, ...)
34 {
35         int rval;
36         va_list ap;
37
38         /* Log to debug file */
39         if (debug_fd) {
40                 va_start(ap, fmt);
41                 vfprintf(debug_fd, "debug: ", ap);
42                 rval = vfprintf(debug_fd, fmt, ap);
43         }
44
45         /* Log to status bar */
46         if (stdscr) {
47                 va_start(ap, fmt);
48                 mvhline(LINES-2, 0, ACS_HLINE, COLS);
49                 move(LINES-1, 0);
50                 attron(COLOR_PAIR(COLOR_ERROR));
51                 vwprintw(stdscr, fmt, ap);
52                 attroff(COLOR_PAIR(COLOR_ERROR));
53                 clrtoeol();
54         }
55
56         va_end(ap);
57         return rval;
58 }