|
- /*
- * unicode libcaca Unicode rendering test program
- * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
- * 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 "common.h"
- #if !defined(__KERNEL__)
- # if defined(HAVE_INTTYPES_H)
- # include <inttypes.h>
- # endif
- # include <stdio.h>
- #endif
-
- #include "cucul.h"
- #include "caca.h"
-
- static char const *pig[] =
- {
- ",--. ,--.",
- "\\ /-~-\\ /",
- " )' o O `(",
- "( ,---. )",
- " `(_o_o_)'",
- " )`-'(",
- NULL
- };
-
- static char const *duck[] =
- {
- " ,~~.",
- " __ , ( O )>",
- "___( o)> )`~~' (",
- "\\ <_. ) ( .__) )",
- " `---' `-.____,'",
- NULL
- };
-
- int main(int argc, char *argv[])
- {
- cucul_canvas_t *cv, *normal, *flip, *flop, *rotate;
- caca_display_t *dp;
- int i;
-
- cv = cucul_create_canvas(0, 0);
- dp = caca_create_display(cv);
-
- normal = cucul_create_canvas(70, 6);
- flip = cucul_create_canvas(70, 6);
- flop = cucul_create_canvas(70, 6);
- rotate = cucul_create_canvas(70, 6);
-
- cucul_set_color_ansi(normal, CUCUL_LIGHTMAGENTA, CUCUL_BLACK);
- for(i = 0; pig[i]; i++)
- cucul_putstr(normal, 55, i, pig[i]);
-
- cucul_set_color_ansi(normal, CUCUL_LIGHTGREEN, CUCUL_BLACK);
- for(i = 0; duck[i]; i++)
- cucul_putstr(normal, 30, 1 + i, duck[i]);
-
- cucul_set_color_ansi(normal, CUCUL_LIGHTCYAN, CUCUL_BLACK);
- cucul_putstr(normal, 1, 1, "hahaha mais vieux porc immonde !! [⽼ ⾗]");
- cucul_set_color_ansi(normal, CUCUL_LIGHTRED, CUCUL_BLACK);
- cucul_putchar(normal, 38, 1, '|');
-
- cucul_set_color_ansi(normal, CUCUL_YELLOW, CUCUL_BLACK);
- cucul_putstr(normal, 4, 2, "\\o\\ \\o| _o/ \\o_ |o/ /o/");
-
- cucul_set_color_ansi(normal, CUCUL_WHITE, CUCUL_LIGHTRED);
- cucul_putstr(normal, 7, 3, "▙▘▌▙▘▞▖▞▖▌ ▞▖▌ ▌▌");
- cucul_putstr(normal, 7, 4, "▛▖▌▛▖▚▘▚▘▚▖▚▘▚▖▖▖");
- cucul_set_color_ansi(normal, CUCUL_BLACK, CUCUL_LIGHTRED);
- cucul_putstr(normal, 4, 3, "▓▒░");
- cucul_putstr(normal, 4, 4, "▓▒░");
- cucul_putstr(normal, 24, 3, "░▒▓");
- cucul_putstr(normal, 24, 4, "░▒▓");
-
- /* Flip, flop and rotate our working canvas */
- cucul_blit(flip, 0, 0, normal, NULL);
- cucul_flip(flip);
-
- cucul_blit(flop, 0, 0, normal, NULL);
- cucul_flop(flop);
-
- cucul_blit(rotate, 0, 0, normal, NULL);
- cucul_rotate(rotate);
-
- /* Blit the transformed canvas onto the main canvas */
- cucul_set_color_ansi(cv, CUCUL_WHITE, CUCUL_BLUE);
- cucul_putstr(cv, 0, 0, "normal");
- cucul_blit(cv, 10, 0, normal, NULL);
- cucul_putstr(cv, 0, 6, "flip");
- cucul_blit(cv, 10, 6, flip, NULL);
- cucul_putstr(cv, 0, 12, "flop");
- cucul_blit(cv, 10, 12, flop, NULL);
- cucul_putstr(cv, 0, 18, "rotate");
- cucul_blit(cv, 10, 18, rotate, NULL);
-
- caca_refresh_display(dp);
-
- caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, -1);
-
- caca_free_display(dp);
- cucul_free_canvas(rotate);
- cucul_free_canvas(flop);
- cucul_free_canvas(flip);
- cucul_free_canvas(normal);
- cucul_free_canvas(cv);
-
- return 0;
- }
|