]> Pileus Git - lackey/blob - src/main.c
7d8d517d5f9772a9d0179563bda550b50e7d5ba2
[lackey] / src / main.c
1 /*
2  * Copyright (C) 2012-2013 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 #define _XOPEN_SOURCE
19
20 #include <stdlib.h>
21 #include <signal.h>
22 #include <locale.h>
23 #include <ncurses.h>
24
25 #include "util.h"
26 #include "conf.h"
27 #include "date.h"
28 #include "cal.h"
29 #include "view.h"
30
31 /* Config parser */
32 static void on_config(const char *group, const char *name, const char *key, const char *value)
33 {
34         view_config(group, name, key, value);
35         cal_config(group, name, key, value);
36 }
37
38 /* Control-C handler, so we don't hose the therminal */
39 static void on_sigint(int signum)
40 {
41         endwin();
42         exit(0);
43 }
44
45 /* Main */
46 int main(int argc, char **argv)
47 {
48         /* Misc setup */
49         signal(SIGINT, on_sigint);
50
51         /* Set default escape timeout */
52         if (!getenv("ESCDELAY"))
53                 putenv("ESCDELAY=25");
54
55         /* Setup Curses */
56         setlocale(LC_ALL, "");
57         initscr();
58         cbreak();
59         noecho();
60         keypad(stdscr, TRUE);
61         start_color();
62         curs_set(false);
63         timeout(100);
64         use_default_colors();
65         mousemask(ALL_MOUSE_EVENTS, NULL);
66
67         init_pair(COLOR_TITLE, COLOR_GREEN,   -1);
68         init_pair(COLOR_ERROR, COLOR_RED,     -1);
69
70         init_pair(COLOR_NEW,   COLOR_RED,     -1);
71         init_pair(COLOR_WIP,   COLOR_YELLOW,  -1);
72         init_pair(COLOR_DONE,  COLOR_GREEN,   -1);
73
74         init_pair(COLOR_CLASS, COLOR_BLUE,    -1);
75         init_pair(COLOR_EC,    COLOR_GREEN,   -1);
76         init_pair(COLOR_WORK,  COLOR_MAGENTA, -1);
77         init_pair(COLOR_OTHER, COLOR_RED,     -1);
78
79         /* Configuration */
80         conf_setup(argc, argv, ".lackeyrc", on_config);
81
82         /* Initialize */
83         util_init();
84         conf_init();
85         date_init();
86         cal_init();
87         view_init();
88
89         /* Draw initial view */
90         date_sync();
91         view_draw();
92
93         /* Run */
94         while (1) {
95                 MEVENT btn;
96                 conf_sync();
97                 int chr = getch();
98                 date_sync();
99                 if (chr == 'q')
100                         break;
101                 if (chr == KEY_MOUSE)
102                         if (getmouse(&btn) != OK)
103                                 continue;
104                 switch (chr) {
105                         case KEY_RESIZE:
106                                 endwin();
107                                 refresh();
108                                 view_resize();
109                                 view_draw();
110                                 continue;
111                         case '\14': // Ctrl-L
112                                 clear();
113                         case '\7':  // Ctrl-G
114                                 view_resize();
115                                 view_draw();
116                                 continue;
117                 }
118                 if (view_run(chr, btn.bstate, btn.y, btn.x))
119                         continue;
120                 if (chr == ERR) // timeout
121                         continue;
122                 debug("main: Unhandled key - Dec %3d,  Hex %02x,  Oct %03o,  Chr <%c>",
123                                 chr, chr, chr, chr);
124         }
125
126         /* Cleanup, see also on_sigint, error */
127         endwin();
128         return 0;
129 }