/* * event event lister for libcaca * Copyright (c) 2004 Sam Hocevar * All Rights Reserved * * $Id$ * * This program 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. */ #include "config.h" #include #include #include #include "cucul.h" #include "caca.h" static cucul_t *qq; static caca_t *kk; static void print_event(int, int, unsigned int); int main(int argc, char **argv) { int *events; int i, h, quit; qq = cucul_init(); if(!qq) return 1; kk = caca_attach(qq); if(!kk) return 1; h = cucul_get_height(qq) - 1; cucul_set_color(qq, CUCUL_COLOR_WHITE, CUCUL_COLOR_BLUE); cucul_draw_line(qq, 0, 0, cucul_get_width(qq) - 1, 0, ' '); cucul_draw_line(qq, 0, h, cucul_get_width(qq) - 1, h, ' '); cucul_putstr(qq, 0, h, "type \"quit\" to exit"); caca_display(kk); events = malloc(h * sizeof(int)); memset(events, 0, h * sizeof(int)); for(quit = 0; quit < 4; ) { static char const * quit_string[] = { "", "q", "qu", "qui", "quit" }; unsigned int event = caca_wait_event(kk, CACA_EVENT_ANY); if(!event) continue; do { /* "quit" quits */ if(event & CACA_EVENT_KEY_PRESS) { int key = event & ~CACA_EVENT_KEY_PRESS; if((key == 'q' && quit == 0) || (key == 'u' && quit == 1) || (key == 'i' && quit == 2) || (key == 't' && quit == 3)) quit++; else if(key == 'q') quit = 1; else quit = 0; } memmove(events + 1, events, (h - 1) * sizeof(int)); events[0] = event; event = caca_get_event(kk, CACA_EVENT_ANY); } while(event); cucul_clear(qq); /* Print current event */ cucul_set_color(qq, CUCUL_COLOR_WHITE, CUCUL_COLOR_BLUE); cucul_draw_line(qq, 0, 0, cucul_get_width(qq) - 1, 0, ' '); print_event(0, 0, events[0]); cucul_draw_line(qq, 0, h, cucul_get_width(qq) - 1, h, ' '); cucul_printf(qq, 0, h, "type \"quit\" to exit: %s", quit_string[quit]); /* Print previous events */ cucul_set_color(qq, CUCUL_COLOR_WHITE, CUCUL_COLOR_BLACK); for(i = 1; i < h && events[i]; i++) print_event(0, i, events[i]); caca_display(kk); } /* Clean up */ caca_detach(kk); cucul_end(qq); return 0; } static void print_event(int x, int y, unsigned int event) { int character; switch(event & 0xff000000) { case CACA_EVENT_NONE: cucul_printf(qq, x, y, "CACA_EVENT_NONE"); break; case CACA_EVENT_KEY_PRESS: character = event & 0x00ffffff; cucul_printf(qq, x, y, "CACA_EVENT_KEY_PRESS 0x%02x (%c)", character, (character > 0x20 && character < 0x80) ? character : '?'); break; case CACA_EVENT_KEY_RELEASE: character = event & 0x00ffffff; cucul_printf(qq, x, y, "CACA_EVENT_KEY_RELEASE 0x%02x (%c)", character, (character > 0x20 && character < 0x80) ? character : '?'); break; case CACA_EVENT_MOUSE_MOTION: cucul_printf(qq, x, y, "CACA_EVENT_MOUSE_MOTION %u %u", (event & 0x00fff000) >> 12, event & 0x00000fff); break; case CACA_EVENT_MOUSE_PRESS: cucul_printf(qq, x, y, "CACA_EVENT_MOUSE_PRESS %u", event & 0x00ffffff); break; case CACA_EVENT_MOUSE_RELEASE: cucul_printf(qq, x, y, "CACA_EVENT_MOUSE_RELEASE %u", event & 0x00ffffff); break; case CACA_EVENT_RESIZE: cucul_printf(qq, x, y, "CACA_EVENT_RESIZE"); break; default: cucul_printf(qq, x, y, "CACA_EVENT_UNKNOWN"); } }