|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /*
- * libcaca Colour ASCII-Art library
- * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
- * 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_raw.c
- * \version \$Id$
- * \author Sam Hocevar <sam@zoy.org>
- * \brief raw driver
- *
- * This file contains the libcaca raw input and output driver
- */
-
- #include "config.h"
-
- #if !defined(__KERNEL__)
- # include <stdio.h>
- #endif
-
- #include "caca.h"
- #include "caca_internals.h"
- #include "cucul.h"
- #include "cucul_internals.h"
-
- static int raw_init_graphics(caca_t *kk)
- {
- return 0;
- }
-
- static int raw_end_graphics(caca_t *kk)
- {
- return 0;
- }
-
- static int raw_set_window_title(caca_t *kk, char const *title)
- {
- return 0;
- }
-
- static unsigned int raw_get_window_width(caca_t *kk)
- {
- return 0;
- }
-
- static unsigned int raw_get_window_height(caca_t *kk)
- {
- return 0;
- }
-
- static void raw_display(caca_t *kk)
- {
- uint32_t *attr = kk->qq->attr;
- uint32_t *chars = kk->qq->chars;
- uint32_t w, h;
- unsigned int n;
-
- w = kk->qq->width;
- h = kk->qq->height;
-
- fprintf(stdout, "CACA%c%c%c%c%c%c%c%c",
- (w >> 24), (w >> 16) & 0xff, (w >> 8) & 0xff, w & 0xff,
- (h >> 24), (h >> 16) & 0xff, (h >> 8) & 0xff, h & 0xff);
-
- for(n = kk->qq->height * kk->qq->width; n--; )
- {
- uint32_t c = *chars++;
- uint32_t a = *attr++;
-
- fprintf(stdout, "%c%c%c%c%c%c%c%c",
- (c >> 24), (c >> 16) & 0xff, (c >> 8) & 0xff, c & 0xff,
- (a >> 24), (a >> 16) & 0xff, (a >> 8) & 0xff, a & 0xff);
- }
-
- fprintf(stdout, "ACAC");
- fflush(stdout);
- }
-
- static void raw_handle_resize(caca_t *kk)
- {
- ;
- }
-
- static int raw_get_event(caca_t *kk, struct caca_event *ev)
- {
- ev->type = CACA_EVENT_NONE;
- return 0;
- }
-
- /*
- * Driver initialisation
- */
-
- int raw_install(caca_t *kk)
- {
- kk->drv.driver = CACA_DRIVER_RAW;
-
- kk->drv.init_graphics = raw_init_graphics;
- kk->drv.end_graphics = raw_end_graphics;
- kk->drv.set_window_title = raw_set_window_title;
- kk->drv.get_window_width = raw_get_window_width;
- kk->drv.get_window_height = raw_get_window_height;
- kk->drv.display = raw_display;
- kk->drv.handle_resize = raw_handle_resize;
- kk->drv.get_event = raw_get_event;
- kk->drv.set_mouse = NULL;
-
- return 0;
- }
-
|