123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /*!
- \file lib/display/r_raster.c
- \brief Display Library - Raster graphics subroutines
- (C) 2001-2009, 2011 by the GRASS Development Team
- This program is free software under the GNU General Public License
- (>=v2). Read the file COPYING that comes with GRASS for details.
- \author Original author CERL
- \author Monitors support by Martin Landa <landa.martin gmail.com>
- */
- #include <grass/config.h>
- #include <errno.h>
- #include <signal.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <grass/gis.h>
- #include <grass/glocale.h>
- #include <grass/display.h>
- #include "driver.h"
- extern const struct driver *PNG_Driver(void);
- extern const struct driver *PS_Driver(void);
- extern const struct driver *HTML_Driver(void);
- #ifdef USE_CAIRO
- extern const struct driver *Cairo_Driver(void);
- #endif
- static int read_env_file(const char *);
- static void init(void)
- {
- const char *fenc = getenv("GRASS_ENCODING");
- const char *font = getenv("GRASS_FONT");
- const char *line_width = getenv("GRASS_LINE_WIDTH");
- const char *text_size = getenv("GRASS_TEXT_SIZE");
- const char *frame = getenv("GRASS_FRAME");
- D_font(font ? font : "romans");
- if (fenc)
- D_encoding(fenc);
- if (line_width)
- COM_Line_width(atof(line_width));
- if (text_size) {
- double s = atof(text_size);
- D_text_size(s, s);
- }
- D_text_rotation(0);
- if (frame) {
- double t, b, l, r;
- sscanf(frame, "%lf,%lf,%lf,%lf", &t, &b, &l, &r);
- COM_Set_window(t, b, l, r);
- }
- }
- int read_env_file(const char *path)
- {
- FILE *fd;
- char buf[1024];
- char **token;
-
- fd = fopen(path, "r");
- if (!fd)
- return -1;
- token = NULL;
- while (G_getl2(buf, sizeof(buf) - 1, fd) != 0) {
- token = G_tokenize(buf, "=");
- if (G_number_of_tokens(token) != 2)
- continue;
- G_debug(3, "\tread_env_file(): %s=%s", token[0], token[1]);
- G_putenv(token[0], token[1]);
- G_free_tokens(token);
- token = NULL;
- }
- return 0;
- }
- /*!
- \brief Open display driver
- Default display driver is Cairo, if not available PNG is used.
- \return 0 on success
- \return 1 no monitor defined
- */
- int D_open_driver(void)
- {
- const char *p, *m;
-
- G_debug(1, "D_open_driver():");
- p = getenv("GRASS_RENDER_IMMEDIATE");
- m = G__getenv("MONITOR");
- if (m) {
- char *env;
- const char *v;
-
- if (p)
- G_warning(_("%s variable defined, %s ignored"),
- "MONITOR", "GRASS_RENDER_IMMEDIATE");
- env = NULL;
- G_asprintf(&env, "MONITOR_%s_MAPFILE", m);
- v = G__getenv(env);
- if (G_strncasecmp(m, "wx", 2) == 0)
- p = NULL; /* use default display driver */
- else
- p = m;
-
- if (v) {
- if (p && G_strcasecmp(p, "ps") == 0)
- G_putenv("GRASS_PSFILE", v);
- else
- G_putenv("GRASS_PNGFILE", v);
- }
-
- G_asprintf(&env, "MONITOR_%s_ENVFILE", m);
- v = G__getenv(env);
- if (v)
- read_env_file(v);
- }
-
- const struct driver *drv =
- (p && G_strcasecmp(p, "PNG") == 0) ? PNG_Driver() :
- (p && G_strcasecmp(p, "PS") == 0) ? PS_Driver() :
- (p && G_strcasecmp(p, "HTML") == 0) ? HTML_Driver() :
- #ifdef USE_CAIRO
- (p && G_strcasecmp(p, "cairo") == 0) ? Cairo_Driver() :
- Cairo_Driver();
- #else
- PNG_Driver();
- #endif
-
- if (p && G_strcasecmp(drv->name, p) != 0)
- G_warning(_("Unknown display driver <%s>"), p);
- G_verbose_message(_("Using display driver <%s>..."), drv->name);
- LIB_init(drv);
- init();
- if (!getenv("GRASS_RENDER_IMMEDIATE") && !m)
- return 1;
- return 0;
- }
- /*!
- \brief Close display driver
- If GRASS_NOTIFY is defined, run notifier.
- */
- void D_close_driver(void)
- {
- const char *cmd = getenv("GRASS_NOTIFY");
- COM_Graph_close();
- if (cmd)
- system(cmd);
- }
- /*!
- \brief Append command to the cmd file
- Cmd file is created by d.mon by defining GRASS variable
- \c MONITOR_<name>_CMDFILE, where \c \<name\> is name of the monitor.
- Command string is usually generated by G_recreate_command(), NULL is
- used to clean up list of commands (see d.erase command).
- \param cmd string buffer with command or NULL
- \return 0 no monitor selected
- \return -1 on error
- \return 1 on success
- */
- int D_save_command(const char *cmd)
- {
- const char *mon_name, *mon_cmd;
- char *env, *flag;
- FILE *fd;
- G_debug(1, "D_save_command(): %s", cmd);
- mon_name = G__getenv("MONITOR");
- if (!mon_name)
- return 0;
-
- env = NULL;
- G_asprintf(&env, "MONITOR_%s_CMDFILE", mon_name);
- mon_cmd = G__getenv(env);
- if (!mon_cmd)
- return 0;
- if (cmd)
- flag = "a";
- else
- flag = "w";
- fd = fopen(mon_cmd, flag);
- if (!fd) {
- G_warning(_("Unable to open file '%s'"), mon_cmd);
- return -1;
- }
- if (cmd)
- fprintf(fd, "%s\n", cmd);
-
- fclose(fd);
- return 1;
- }
- /*!
- \brief Erase display (internal use only)
- */
- void D__erase(void)
- {
- COM_Erase();
- }
- /*!
- \brief Set text size (width and height)
-
- \param width text pixel width
- \param height text pixel height
- */
- void D_text_size(double width, double height)
- {
- COM_Text_size(width, height);
- }
- /*!
- \brief Set text rotation
- \param rotation value
- */
- void D_text_rotation(double rotation)
- {
- COM_Text_rotation(rotation);
- }
- /*!
- \brief Get clipping frame
-
- \param[out] t top
- \param[out] b bottom
- \param[out] l left
- \param[out] r right
- */
- void D_get_window(double *t, double *b, double *l, double *r)
- {
- return COM_Get_window(t, b, l, r);
- }
- /*!
- \brief Draw text
-
- Writes <em>text</em> in the current color and font, at the current text
- width and height, starting at the current screen location.
-
- \param text text to be drawn
- */
- void D_text(const char *text)
- {
- COM_Text(text);
- }
- /*!
- \brief Choose font
-
- Set current font to <em>font name</em>.
-
- \param name font name
- */
- void D_font(const char *name)
- {
- COM_Set_font(name);
- }
- /*!
- \brief Set encoding
- \param name encoding name
- */
- void D_encoding(const char *name)
- {
- COM_Set_encoding(name);
- }
- /*!
- \brief Get font list
- \param[out] list list of font names
- \param[out] number of items in the list
- */
- void D_font_list(char ***list, int *count)
- {
- COM_Font_list(list, count);
- }
- /*!
- \brief Get font info
- \param[out] list list of font info
- \param[out] number of items in the list
- */
- void D_font_info(char ***list, int *count)
- {
- COM_Font_info(list, count);
- }
|