/* * 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" #include "common.h" #if !defined(__KERNEL__) # include # include # include # if defined(HAVE_ERRNO_H) # include # endif #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_canvas() * 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. * * If an error occurs, -1 is returned and \b errno is set accordingly: * - \c ENOMEM Not enough memory for the requested canvas size. * * \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_canvas_t * cucul_create_canvas(unsigned int width, unsigned int height) { cucul_canvas_t *cv = malloc(sizeof(cucul_canvas_t)); int ret; if(!cv) goto nomem; cv->refcount = 0; cv->fgcolor = CUCUL_COLOR_LIGHTGRAY; cv->bgcolor = CUCUL_COLOR_BLACK; cv->width = cv->height = 0; cv->chars = NULL; cv->attr = NULL; cv->frame = 0; cv->framecount = 1; cv->allchars = malloc(sizeof(uint32_t *)); if(!cv->allchars) { free(cv); goto nomem; } cv->allattr = malloc(sizeof(uint32_t *)); if(!cv->allattr) { free(cv->allchars); free(cv); goto nomem; } cv->allchars[0] = NULL; cv->allattr[0] = 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) ret = _cucul_set_canvas_size(cv, width, height); else ret = _cucul_set_canvas_size(cv, 80, 32); if(ret < 0) { #if defined(HAVE_ERRNO_H) int saved_errno = errno; #endif free(cv->allattr); free(cv->allchars); free(cv); #if defined(HAVE_ERRNO_H) errno = saved_errno; #endif return NULL; } /* FIXME: this shouldn't happen here */ _cucul_init_dither(); return cv; nomem: #if defined(HAVE_ERRNO_H) errno = ENOMEM; #endif return NULL; } /** \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_create_display(). You need to * remove the output driver using caca_free_display() 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. * * If an error occurs, -1 is returned and \b errno is set accordingly: * - \c EBUSY The canvas is in use by a display driver and cannot be resized. * - \c ENOMEM Not enough memory for the requested canvas size. If this * happens, the canvas handle becomes invalid and should not be used. * * \param cv A libcucul canvas * \param width The desired canvas width * \param height The desired canvas height * \return 0 in case of success, -1 if an error occurred. */ int cucul_set_canvas_size(cucul_canvas_t *cv, unsigned int width, unsigned int height) { if(cv->refcount) { #if defined(HAVE_ERRNO_H) errno = EBUSY; #endif return -1; } return _cucul_set_canvas_size(cv, width, height); } /** \brief Get the canvas width. * * This function returns the current canvas width, in character cells. * * This function never fails. * * \param cv A libcucul canvas * \return The canvas width. */ unsigned int cucul_get_canvas_width(cucul_canvas_t *cv) { return cv->width; } /** \brief Get the canvas height. * * This function returns the current canvas height, in character cells. * * This function never fails. * * \param cv A libcucul canvas * \return The canvas height. */ unsigned int cucul_get_canvas_height(cucul_canvas_t *cv) { return cv->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. * * This function never fails. * * \param color The colour value. * \return A static string containing the colour's name, or \c "unknown" if * the colour is unknown. */ 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_canvas(). After * cucul_free_canvas() has been called, no other \e libcucul functions may be * used unless a new call to cucul_create_canvas() is done. * * If an error occurs, -1 is returned and \b errno is set accordingly: * - \c EBUSY The canvas is in use by a display driver and cannot be freed. * * \param cv A libcucul canvas * \return 0 in case of success, -1 if an error occurred. */ int cucul_free_canvas(cucul_canvas_t *cv) { unsigned int f; if(cv->refcount) { #if defined(HAVE_ERRNO_H) errno = EBUSY; #endif return -1; } /* FIXME: this shouldn't be here either (see above) */ _cucul_end_dither(); for(f = 0; f < cv->framecount; f++) { free(cv->allchars[f]); free(cv->allattr[f]); } free(cv); return 0; } /** \brief Generate a random integer within a range. * * This function never fails. * * \param min The lower bound of the integer range. * \param max The upper bound of the integer range. * \return A random integer comprised between \p min and \p max - 1 * (inclusive). */ int cucul_rand(int min, int max) { return min + (int)((1.0 * (max - min)) * rand() / (RAND_MAX + 1.0)); } /* * XXX: The following functions are local. */ int _cucul_set_canvas_size(cucul_canvas_t *cv, unsigned int width, unsigned int height) { unsigned int x, y, f, old_width, old_height, new_size, old_size; old_width = cv->width; old_height = cv->height; old_size = old_width * old_height; cv->width = width; cv->height = height; new_size = width * height; /* Step 1: if new area is bigger, resize the memory area now. */ if(new_size > old_size) { for(f = 0; f < cv->framecount; f++) { cv->allchars[f] = realloc(cv->allchars[f], new_size * sizeof(uint32_t)); cv->allattr[f] = realloc(cv->allattr[f], new_size * sizeof(uint32_t)); if(!cv->allchars[f] || !cv->allattr[f]) { #if defined(HAVE_ERRNO_H) errno = ENOMEM; #endif return -1; } } } /* 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(f = 0; f < cv->framecount; f++) { uint32_t *chars = cv->allchars[f]; uint32_t *attr = cv->allattr[f]; for(y = height < old_height ? height : old_height; y--; ) { for(x = old_width; x--; ) { chars[y * width + x] = chars[y * old_width + x]; attr[y * width + x] = attr[y * old_width + x]; } /* Zero the end of the line */ for(x = width - old_width; x--; ) chars[y * width + old_width + x] = (uint32_t)' '; memset(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(f = 0; f < cv->framecount; f++) { uint32_t *chars = cv->allchars[f]; uint32_t *attr = cv->allattr[f]; for(y = 1; y < lines; y++) { for(x = 0; x < width; x++) { chars[y * width + x] = chars[y * old_width + x]; attr[y * width + x] = attr[y * old_width + x]; } } } } /* Step 3: fill the bottom of the new screen if necessary. */ if(height > old_height) { for(f = 0; f < cv->framecount; f++) { uint32_t *chars = cv->allchars[f]; uint32_t *attr = cv->allattr[f]; /* Zero the bottom of the screen */ for(x = (height - old_height) * width; x--; ) chars[old_height * width + x] = (uint32_t)' '; memset(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) { for(f = 0; f < cv->framecount; f++) { cv->allchars[f] = realloc(cv->allchars[f], new_size * sizeof(uint32_t)); cv->allattr[f] = realloc(cv->allattr[f], new_size * sizeof(uint32_t)); if(!cv->allchars[f] || !cv->allattr[f]) { #if defined(HAVE_ERRNO_H) errno = ENOMEM; #endif return -1; } } } /* Reset the current frame shortcut */ cv->chars = cv->allchars[cv->frame]; cv->attr = cv->allattr[cv->frame]; return 0; }