/* * libcaca ASCII-Art library * Copyright (c) 2002-2006 Sam Hocevar * All Rights Reserved * * This library is free software; you can redistribute it and/or * modify it under the terms of the Do What The Fuck You Want To * Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /** \file driver_ncurses.c * \version \$Id$ * \author Sam Hocevar * \brief Ncurses driver * * This file contains the libcaca Ncurses input and output driver */ #include "config.h" #if defined(USE_NCURSES) #if defined(HAVE_NCURSES_H) # include #else # include #endif #include #include #if defined(HAVE_SIGNAL_H) # include #endif #if defined(HAVE_SYS_IOCTL_H) # include #endif #include "caca.h" #include "caca_internals.h" #include "cucul.h" #include "cucul_internals.h" /* * Local functions */ #if defined(HAVE_SIGNAL) static RETSIGTYPE sigwinch_handler(int); static caca_t *sigwinch_kk; /* FIXME: we ought to get rid of this */ #endif #if defined(HAVE_GETENV) && defined(HAVE_PUTENV) static void ncurses_check_terminal(void); #endif struct driver_private { int attr[16*16]; mmask_t oldmask; }; static int ncurses_init_graphics(caca_t *kk) { static int curses_colors[] = { /* Standard curses colours */ COLOR_BLACK, COLOR_BLUE, COLOR_GREEN, COLOR_CYAN, COLOR_RED, COLOR_MAGENTA, COLOR_YELLOW, COLOR_WHITE, /* Extra values for xterm-16color */ COLOR_BLACK + 8, COLOR_BLUE + 8, COLOR_GREEN + 8, COLOR_CYAN + 8, COLOR_RED + 8, COLOR_MAGENTA + 8, COLOR_YELLOW + 8, COLOR_WHITE + 8 }; mmask_t newmask; int fg, bg, max; kk->drv.p = malloc(sizeof(struct driver_private)); #if defined(HAVE_GETENV) && defined(HAVE_PUTENV) ncurses_check_terminal(); #endif #if defined(HAVE_SIGNAL) sigwinch_kk = kk; signal(SIGWINCH, sigwinch_handler); #endif initscr(); keypad(stdscr, TRUE); nonl(); raw(); noecho(); nodelay(stdscr, TRUE); curs_set(0); /* Activate mouse */ newmask = REPORT_MOUSE_POSITION | ALL_MOUSE_EVENTS; mousemask(newmask, &kk->drv.p->oldmask); mouseinterval(-1); /* No click emulation */ /* Set the escape delay to a ridiculously low value */ ESCDELAY = 10; /* Activate colour */ start_color(); /* If COLORS == 16, it means the terminal supports full bright colours * using setab and setaf (will use \e[90m \e[91m etc. for colours >= 8), * we can build 16*16 colour pairs. * If COLORS == 8, it means the terminal does not know about bright * colours and we need to get them through A_BOLD and A_BLINK (\e[1m * and \e[5m). We can only build 8*8 colour pairs. */ max = COLORS >= 16 ? 16 : 8; for(bg = 0; bg < max; bg++) for(fg = 0; fg < max; fg++) { /* Use ((max + 7 - fg) % max) instead of fg so that colour 0 * is light gray on black. Some terminals don't like this * colour pair to be redefined. */ int col = ((max + 7 - fg) % max) + max * bg; init_pair(col, curses_colors[fg], curses_colors[bg]); kk->drv.p->attr[fg + 16 * bg] = COLOR_PAIR(col); if(max == 8) { /* Bright fg on simple bg */ kk->drv.p->attr[fg + 8 + 16 * bg] = A_BOLD | COLOR_PAIR(col); /* Simple fg on bright bg */ kk->drv.p->attr[fg + 16 * (bg + 8)] = A_BLINK | COLOR_PAIR(col); /* Bright fg on bright bg */ kk->drv.p->attr[fg + 8 + 16 * (bg + 8)] = A_BLINK | A_BOLD | COLOR_PAIR(col); } } _cucul_set_size(kk->qq, COLS, LINES); return 0; } static int ncurses_end_graphics(caca_t *kk) { mousemask(kk->drv.p->oldmask, NULL); curs_set(1); noraw(); endwin(); free(kk->drv.p); return 0; } static int ncurses_set_window_title(caca_t *kk, char const *title) { return 0; } static unsigned int ncurses_get_window_width(caca_t *kk) { /* Fallback to a 6x10 font */ return kk->qq->width * 6; } static unsigned int ncurses_get_window_height(caca_t *kk) { /* Fallback to a 6x10 font */ return kk->qq->height * 10; } static void ncurses_display(caca_t *kk) { int x, y; uint8_t *attr = kk->qq->attr; uint32_t *chars = kk->qq->chars; for(y = 0; y < (int)kk->qq->height; y++) { move(y, 0); for(x = kk->qq->width; x--; ) { uint32_t c = *chars++; attrset(kk->drv.p->attr[*attr++]); if(c > 0x00000020 && c < 0x00000080) addch((char)c); else addch(' '); } } refresh(); } static void ncurses_handle_resize(caca_t *kk) { struct winsize size; if(ioctl(fileno(stdout), TIOCGWINSZ, &size) == 0) { kk->resize.w = size.ws_col; kk->resize.h = size.ws_row; #if defined(HAVE_RESIZE_TERM) resize_term(kk->resize.h, kk->resize.w); #else resizeterm(*kk->resize.h, *kk->resize.w); #endif wrefresh(curscr); return; } /* Fallback */ kk->resize.w = kk->qq->width; kk->resize.h = kk->qq->height; } static unsigned int ncurses_get_event(caca_t *kk) { unsigned int event; int intkey; intkey = getch(); if(intkey == ERR) return CACA_EVENT_NONE; if(intkey < 0x100) { return CACA_EVENT_KEY_PRESS | intkey; } if(intkey == KEY_MOUSE) { MEVENT mevent; getmouse(&mevent); switch(mevent.bstate) { case BUTTON1_PRESSED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); break; case BUTTON1_RELEASED: _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); break; case BUTTON1_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); break; case BUTTON1_DOUBLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); break; case BUTTON1_TRIPLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 1); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 1); break; case BUTTON1_RESERVED_EVENT: break; case BUTTON2_PRESSED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); break; case BUTTON2_RELEASED: _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); break; case BUTTON2_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); break; case BUTTON2_DOUBLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); break; case BUTTON2_TRIPLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 2); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 2); break; case BUTTON2_RESERVED_EVENT: break; case BUTTON3_PRESSED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); break; case BUTTON3_RELEASED: _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); break; case BUTTON3_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); break; case BUTTON3_DOUBLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); break; case BUTTON3_TRIPLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 3); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 3); break; case BUTTON3_RESERVED_EVENT: break; case BUTTON4_PRESSED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); break; case BUTTON4_RELEASED: _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); break; case BUTTON4_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); break; case BUTTON4_DOUBLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); break; case BUTTON4_TRIPLE_CLICKED: _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); _push_event(kk, CACA_EVENT_MOUSE_PRESS | 4); _push_event(kk, CACA_EVENT_MOUSE_RELEASE | 4); break; case BUTTON4_RESERVED_EVENT: break; default: break; } if(kk->mouse.x == (unsigned int)mevent.x && kk->mouse.y == (unsigned int)mevent.y) return _pop_event(kk); kk->mouse.x = mevent.x; kk->mouse.y = mevent.y; return CACA_EVENT_MOUSE_MOTION | (kk->mouse.x << 12) | kk->mouse.y; } event = CACA_EVENT_KEY_PRESS; switch(intkey) { case KEY_UP: return event | CACA_KEY_UP; case KEY_DOWN: return event | CACA_KEY_DOWN; case KEY_LEFT: return event | CACA_KEY_LEFT; case KEY_RIGHT: return event | CACA_KEY_RIGHT; case KEY_IC: return event | CACA_KEY_INSERT; case KEY_DC: return event | CACA_KEY_DELETE; case KEY_HOME: return event | CACA_KEY_HOME; case KEY_END: return event | CACA_KEY_END; case KEY_PPAGE: return event | CACA_KEY_PAGEUP; case KEY_NPAGE: return event | CACA_KEY_PAGEDOWN; case KEY_F(1): return event | CACA_KEY_F1; case KEY_F(2): return event | CACA_KEY_F2; case KEY_F(3): return event | CACA_KEY_F3; case KEY_F(4): return event | CACA_KEY_F4; case KEY_F(5): return event | CACA_KEY_F5; case KEY_F(6): return event | CACA_KEY_F6; case KEY_F(7): return event | CACA_KEY_F7; case KEY_F(8): return event | CACA_KEY_F8; case KEY_F(9): return event | CACA_KEY_F9; case KEY_F(10): return event | CACA_KEY_F10; case KEY_F(11): return event | CACA_KEY_F11; case KEY_F(12): return event | CACA_KEY_F12; } return CACA_EVENT_NONE; } /* * XXX: following functions are local */ #if defined(HAVE_SIGNAL) static RETSIGTYPE sigwinch_handler(int sig) { sigwinch_kk->resize.resized = 1; signal(SIGWINCH, sigwinch_handler);; } #endif #if defined(HAVE_GETENV) && defined(HAVE_PUTENV) static void ncurses_check_terminal(void) { char *term, *colorterm, *other; term = getenv("TERM"); colorterm = getenv("COLORTERM"); if(term && !strcmp(term, "xterm")) { /* If we are using gnome-terminal, it's really a 16 colour terminal */ if(colorterm && !strcmp(colorterm, "gnome-terminal")) { SCREEN *screen; screen = newterm("xterm-16color", stdout, stdin); if(screen == NULL) return; endwin(); (void)putenv("TERM=xterm-16color"); return; } /* Ditto if we are using Konsole */ other = getenv("KONSOLE_DCOP_SESSION"); if(other) { SCREEN *screen; screen = newterm("xterm-16color", stdout, stdin); if(screen == NULL) return; endwin(); (void)putenv("TERM=xterm-16color"); return; } } } #endif /* * Driver initialisation */ void ncurses_init_driver(caca_t *kk) { kk->drv.driver = CACA_DRIVER_NCURSES; kk->drv.init_graphics = ncurses_init_graphics; kk->drv.end_graphics = ncurses_end_graphics; kk->drv.set_window_title = ncurses_set_window_title; kk->drv.get_window_width = ncurses_get_window_width; kk->drv.get_window_height = ncurses_get_window_height; kk->drv.display = ncurses_display; kk->drv.handle_resize = ncurses_handle_resize; kk->drv.get_event = ncurses_get_event; } #endif /* USE_NCURSES */