X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=visor;a=blobdiff_plain;f=visor%2Fsrc%2Fmain_unix.c;h=9db4e36315f408f5609529bbfa843609f485724a;hp=37406a0d3206d802c1502e659220cde9be4a0eb2;hb=24f7b6535c6c25040f4a2f2c655a913c177531eb;hpb=05b4673efbeb372387b0a9359af5046afb87c8cf diff --git a/visor/src/main_unix.c b/visor/src/main_unix.c index 37406a0..9db4e36 100644 --- a/visor/src/main_unix.c +++ b/visor/src/main_unix.c @@ -1,95 +1,70 @@ #include -#include -#include -#include -#include -#include -#include +#include "term.h" +static int parse_args(int argc, char **argv); static int init(void); static void cleanup(void); -static void sighandler(int s); -int term_width, term_height; -int ttyfd; -struct termios saved_term; +static int num_fpaths; +static char **fpaths; int main(int argc, char **argv) { - int res; - char c; - + if(parse_args(argc, argv) == -1) { + return 1; + } if(init() == -1) { return 1; } for(;;) { - if((res = read(ttyfd, &c, 1)) == 0 || (res < 0 && errno != EINTR)) { - break; + int c = term_getchar(); + + switch(c) { + case 27: + case 'q': + goto end; } - /* proc input */ } +end: cleanup(); return 0; } +static int parse_args(int argc, char **argv) +{ + int i; + + fpaths = argv + 1; + num_fpaths = 0; + for(i=1; i