X-Git-Url: http://pileus.org/git/?p=lackey;a=blobdiff_plain;f=src%2Fmain.c;h=99816b13fb40f76af822b511ba13130036c85e94;hp=1327a8240a6327882cb237a3800cf8b39224ffc3;hb=d19f3fd4cc08a1aba44aa61f8d657363fbb5d720;hpb=011e995ee05e3fd9a990a39c85d4b279e16fd86e diff --git a/src/main.c b/src/main.c index 1327a82..99816b1 100644 --- a/src/main.c +++ b/src/main.c @@ -1,126 +1,68 @@ /* - * Copyright (C) 2012 Andy Spencer - * + * Copyright (C) 2012-2013 Andy Spencer + * * 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 . */ -#define _POSIX_C_SOURCE 1 -#include #include #include -#include -#include "main.h" -#include "screen.h" +#include "args.h" +#include "util.h" +#include "conf.h" +#include "date.h" +#include "cal.h" +#include "view.h" -/* Static data */ -static FILE *debug_fd = NULL; +/* Config parser */ +static void on_config(const char *group, const char *name, const char *key, const char *value) +{ + view_config(group, name, key, value); + cal_config(group, name, key, value); +} /* Control-C handler, so we don't hose the therminal */ static void on_sigint(int signum) { - endwin(); + view_exit(); exit(0); } -/* Window change */ -static void on_sigwinch(int signum) -{ - endwin(); - refresh(); - screen_resize(); - screen_draw(); -} - -/* Debugging functions */ -int debug(char *fmt, ...) -{ - int rval; - va_list ap; - - /* Open log file */ - if (!debug_fd) - debug_fd = fopen("lackey.log", "w+"); - - /* Log to debug file */ - va_start(ap, fmt); - vfprintf(debug_fd, "debug: ", ap); - rval = vfprintf(debug_fd, fmt, ap); - - /* Log to status bar */ - va_start(ap, fmt); - mvhline(LINES-2, 0, ACS_HLINE, COLS); - move(LINES-1, 0); - attron(COLOR_PAIR(COLOR_ERROR)); - vwprintw(stdscr, fmt, ap); - attroff(COLOR_PAIR(COLOR_ERROR)); - clrtoeol(); - - va_end(ap); - return rval; -} - /* Main */ int main(int argc, char **argv) { /* Misc setup */ - struct sigaction act; - sigemptyset(&act.sa_mask); - act.sa_flags = 0; - act.sa_handler = on_sigint; - sigaction(SIGINT, &act, NULL); - act.sa_handler = on_sigwinch; - sigaction(SIGWINCH, &act, NULL); + signal(SIGINT, on_sigint); + + /* Configuration */ + args_setup(argc, argv); + conf_setup(".lackeyrc", on_config); + + /* Initialize */ + args_init(); + util_init(); + conf_init(); + date_init(); + cal_init(); - /* Curses setup */ - initscr(); - cbreak(); - noecho(); - keypad(stdscr, TRUE); - start_color(); - curs_set(false); - mousemask(ALL_MOUSE_EVENTS, NULL); - init_pair(COLOR_TITLE, COLOR_GREEN, COLOR_BLACK); - init_pair(COLOR_ERROR, COLOR_RED, COLOR_BLACK); - screen_init(); - screen_draw(); + /* Run args main */ + args_main(); - /* Run */ - while (1) { - MEVENT btn; - int chr = getch(); - if (chr == KEY_MOUSE) - if (getmouse(&btn) != OK) - continue; - if (chr == 'q') - break; - if (KEY_MOUSE) - //debug("mouse xyz=%d,%d,%d id=%hd state=%lx\n", - // btn.x, btn.y, btn.z, btn.id, btn.bstate); - switch (chr) { - case 'L': - clear(); - case 'l': - screen_draw(); - break; - default: - screen_run(chr, btn.bstate, btn.y, btn.x); - break; - } - } + /* Run view main */ + view_init(); + view_main(); + view_exit(); - /* Cleanup, see also on_sigint */ - endwin(); return 0; }