/* * libcucul Canvas for ultrafast compositing of Unicode letters * Copyright (c) 2002-2006 Sam Hocevar * All Rights Reserved * * $Id$ * * 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. */ /* * This file contains the main functions used by \e libcucul applications * to initialise a drawing context. */ #include "config.h" #if !defined(__KERNEL__) # include # include # include #endif #include "cucul.h" #include "cucul_internals.h" /** \brief Initialise a \e libcucul canvas. * * This function initialises internal \e libcucul structures and the backend * that will be used for subsequent graphical operations. It must be the * first \e libcucul function to be called in a function. cucul_free() should * be called at the end of the program to free all allocated resources. * * If one of the desired canvas coordinates is zero, a default canvas size * of 80x32 is used instead. * * \param width The desired canvas width * \param height The desired canvas height * \return A libcucul canvas handle upon success, NULL if an error occurred. */ cucul_t * cucul_create(unsigned int width, unsigned int height) { cucul_t *qq = malloc(sizeof(cucul_t)); qq->refcount = 0; qq->fgcolor = CUCUL_COLOR_LIGHTGRAY; qq->bgcolor = CUCUL_COLOR_BLACK; qq->width = qq->height = 0; qq->chars = NULL; qq->attr = NULL; qq->empty_line = qq->scratch_line = NULL; /* Initialise to a default size. 80x32 is arbitrary but matches AAlib's * default X11 window. When a graphic driver attaches to us, it can set * a different size. */ if(width && height) _cucul_set_size(qq, width, height); else _cucul_set_size(qq, 80, 32); if(_cucul_init_dither()) { free(qq); return NULL; } return qq; } /** \brief Load a memory area into a canvas. * * This function loads a memory area containing an exported canvas into * a new \e libcucul canvas. * * \param data The memory area to be loaded into a canvas. * \param size The length of the memory area. * \return A libcucul canvas, or NULL in case of error. */ cucul_t *cucul_load(void *data, unsigned int size) { cucul_t *qq; uint8_t *buf = (uint8_t *)data; unsigned int width, height, n; if(size < 12) return NULL; if(buf[0] != 'C' || buf[1] != 'A' || buf[2] != 'C' || buf[3] != 'A') return NULL; width = ((uint32_t)buf[4] << 24) | ((uint32_t)buf[5] << 16) | ((uint32_t)buf[6] << 8) | (uint32_t)buf[7]; height = ((uint32_t)buf[8] << 24) | ((uint32_t)buf[9] << 16) | ((uint32_t)buf[10] << 8) | (uint32_t)buf[11]; if(!width || !height) return NULL; if(size != 12 + width * height * 8 + 4) return NULL; if(buf[size - 4] != 'A' || buf[size - 3] != 'C' || buf[size - 2] != 'A' || buf[size - 1] != 'C') return NULL; qq = cucul_create(width, height); if(!qq) return NULL; for(n = height * width; n--; ) { qq->chars[n] = ((uint32_t)buf[12 + 8 * n] << 24) | ((uint32_t)buf[13 + 8 * n] << 16) | ((uint32_t)buf[14 + 8 * n] << 8) | (uint32_t)buf[15 + 8 * n]; qq->attr[n] = ((uint32_t)buf[16 + 8 * n] << 24) | ((uint32_t)buf[17 + 8 * n] << 16) | ((uint32_t)buf[18 + 8 * n] << 8) | (uint32_t)buf[19 + 8 * n]; } return qq; } /** \brief Resize a canvas. * * This function sets the canvas width and height, in character cells. * * The contents of the canvas are preserved to the extent of the new * canvas size. Newly allocated character cells at the right and/or at * the bottom of the canvas are filled with spaces. * * It is an error to try to resize the canvas if an output driver has * been attached to the canvas using caca_attach(). You need to remove * the output driver using caca_detach() before you can change the * canvas size again. However, the caca output driver can cause a canvas * resize through user interaction. See the caca_event() documentation * for more about this. * * \param qq A libcucul canvas * \param width The desired canvas width * \param height The desired canvas height */ void cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height) { if(qq->refcount) return; _cucul_set_size(qq, width, height); } /** \brief Get the canvas width. * * This function returns the current canvas width, in character cells. * * \param qq A libcucul canvas * \return The canvas width. */ unsigned int cucul_get_width(cucul_t *qq) { return qq->width; } /** \brief Get the canvas height. * * This function returns the current canvas height, in character cells. * * \param qq A libcucul canvas * \return The canvas height. */ unsigned int cucul_get_height(cucul_t *qq) { return qq->height; } /** \brief Translate a colour index into the colour's name. * * This function translates a cucul_color enum into a human-readable * description string of the associated colour. * * \param color The colour value. * \return A static string containing the colour's name. */ char const *cucul_get_color_name(unsigned int color) { static char const *color_names[] = { "black", "blue", "green", "cyan", "red", "magenta", "brown", "light gray", "dark gray", "light blue", "light green", "light cyan", "light red", "light magenta", "yellow", "white", }; if(color < 0 || color > 15) return "unknown"; return color_names[color]; } /** \brief Uninitialise \e libcucul. * * This function frees all resources allocated by cucul_create(). After * cucul_free() has been called, no other \e libcucul functions may be used * unless a new call to cucul_create() is done. * * \param qq A libcucul canvas */ void cucul_free(cucul_t *qq) { _cucul_end_dither(); free(qq->empty_line); free(qq->scratch_line); free(qq->chars); free(qq->attr); free(qq); } /** \brief Export a canvas into a foreign format. * * This function exports a libcucul canvas into various foreign formats such * as ANSI art, HTML, IRC colours, etc. One should use cucul_get_buffer_data() * and cucul_get_buffer_size() to access the buffer contents. The allocated * data is valid until cucul_free_buffer() is called. * * Valid values for \e format are: * * \li \e "ansi": export ANSI art (CP437 charset with ANSI colour codes). * * \li \e "html": export an HTML page with CSS information. * * \li \e "html3": export an HTML table that should be compatible with * most navigators, including textmode ones. * * \li \e "irc": export UTF-8 text with mIRC colour codes. * * \li \e "ps": export a PostScript document. * * \li \e "svg": export an SVG vector image. * * \li \e "tga": export a TGA image. * * \param qq A libcucul canvas * \param format A string describing the requested output format. */ cucul_buffer_t * cucul_create_export(cucul_t *qq, char const *format) { cucul_buffer_t *ex; ex = malloc(sizeof(cucul_buffer_t)); ex->size = 0; ex->data = NULL; if(!strcasecmp("ansi", format)) _cucul_get_ansi(qq, ex); else if(!strcasecmp("html", format)) _cucul_get_html(qq, ex); else if(!strcasecmp("html3", format)) _cucul_get_html3(qq, ex); else if(!strcasecmp("irc", format)) _cucul_get_irc(qq, ex); else if(!strcasecmp("ps", format)) _cucul_get_ps(qq, ex); else if(!strcasecmp("svg", format)) _cucul_get_svg(qq, ex); else if(!strcasecmp("tga", format)) _cucul_get_tga(qq, ex); if(ex->size == 0) { free(ex); return NULL; } return ex; } /** \brief Get available export formats * * Return a list of available export formats. The list is a NULL-terminated * array of strings, interleaving a string containing the internal value for * the export format, to be used with \e cucul_create_export(), and a string * containing the natural language description for that export format. * * \return An array of strings. */ char const * const * cucul_get_export_list(void) { static char const * const list[] = { "ansi", "ANSI", "html", "HTML", "html3", "backwards-compatible HTML", "irc", "IRC with mIRC colours", "ps", "PostScript document", "svg", "SVG vector image", "tga", "TGA image", NULL, NULL }; return list; } /** \brief Get the buffer size. * * This function returns the length (in bytes) of the memory area stored * in the given \e libcucul buffer. * * \param buf A \e libcucul buffer * \return The buffer data length. */ unsigned long int cucul_get_buffer_size(cucul_buffer_t *buf) { return buf->size; } /** \brief Get the buffer data. * * This function returns a pointer to the memory area stored in the given * \e libcucul buffer. * * \param buf A \e libcucul buffer * \return A pointer to the buffer memory area. */ void * cucul_get_buffer_data(cucul_buffer_t *buf) { return buf->data; } /** \brief Free a buffer. * * This function frees the structures associated with the given * \e libcucul buffer. * * \param buf A \e libcucul buffer */ void cucul_free_buffer(cucul_buffer_t *buf) { free(buf->data); free(buf); } /* * XXX: The following functions are local. */ void _cucul_set_size(cucul_t *qq, unsigned int width, unsigned int height) { unsigned int x, y, old_width, old_height, new_size, old_size; old_width = qq->width; old_height = qq->height; old_size = old_width * old_height; qq->width = width; qq->height = height; new_size = width * height; /* Step 1: if new area is bigger, resize the memory area now. */ if(new_size > old_size) { qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t)); qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t)); } /* Step 2: move line data if necessary. */ if(width == old_width) { /* Width did not change, which means we do not need to move data. */ ; } else if(width > old_width) { /* New width is bigger than old width, which means we need to * copy lines starting from the bottom of the screen otherwise * we will overwrite information. */ for(y = height < old_height ? height : old_height; y--; ) { for(x = old_width; x--; ) { qq->chars[y * width + x] = qq->chars[y * old_width + x]; qq->attr[y * width + x] = qq->attr[y * old_width + x]; } /* Zero the end of the line */ for(x = width - old_width; x--; ) qq->chars[y * width + old_width + x] = (uint32_t)' '; memset(qq->attr + y * width + old_width, 0, (width - old_width) * 4); } } else { /* New width is smaller. Copy as many lines as possible. Ignore * the first line, it is already in place. */ unsigned int lines = height < old_height ? height : old_height; for(y = 1; y < lines; y++) { for(x = 0; x < width; x++) { qq->chars[y * width + x] = qq->chars[y * old_width + x]; qq->attr[y * width + x] = qq->attr[y * old_width + x]; } } } /* Step 3: fill the bottom of the new screen if necessary. */ if(height > old_height) { /* Zero the bottom of the screen */ for(x = (height - old_height) * width; x--; ) qq->chars[old_height * width + x] = (uint32_t)' '; memset(qq->attr + old_height * width, 0, (height - old_height) * width * 4); } /* Step 4: if new area is smaller, resize memory area now. */ if(new_size <= old_size) { qq->chars = realloc(qq->chars, new_size * sizeof(uint32_t)); qq->attr = realloc(qq->attr, new_size * sizeof(uint32_t)); } /* Recompute the scratch line and the empty line */ if(width != old_width) { qq->empty_line = realloc(qq->empty_line, width + 1); memset(qq->empty_line, ' ', width); qq->empty_line[width] = '\0'; qq->scratch_line = realloc(qq->scratch_line, width + 1); } }