1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*
* Start up graphics processing. Anything that needs to be assigned, set up,
* started-up, or otherwise initialized happens here. This is called only at
* the startup of the graphics driver.
*
* The external variables define the pixle limits of the graphics surface. The
* coordinate system used by the applications programs has the (0,0) origin
* in the upper left-hand corner. Hence,
* screen_left < screen_right
* screen_top < screen_bottom
*
*/
#include <string.h>
#include <stdlib.h>
#include <grass/gis.h>
#include <grass/glocale.h>
#include "driverlib.h"
#include "driver.h"
#include "htmlmap.h"
struct html_state html;
int HTML_Graph_set(void)
{
char *file_name;
char *p;
G_gisinit("HTMLMAP driver");
/*
* set the minimum bounding box dimensions
*/
if (NULL != (p = getenv("GRASS_RENDER_HTMLMINBBOX"))) {
html.BBOX_MINIMUM = atoi(p);
if (html.BBOX_MINIMUM <= 0) {
html.BBOX_MINIMUM = DEF_MINBBOX;
}
}
else {
html.BBOX_MINIMUM = DEF_MINBBOX;
}
/*
* set the maximum number of points
*/
if (NULL != (p = getenv("GRASS_RENDER_HTMLMAXPOINTS"))) {
html.MAX_POINTS = atoi(p);
if (html.MAX_POINTS <= 0) {
html.MAX_POINTS = DEF_MAXPTS;
}
}
else {
html.MAX_POINTS = DEF_MAXPTS;
}
/*
* set the minimum difference to keep a point
*/
if (NULL != (p = getenv("GRASS_RENDER_HTMLMINDIST"))) {
html.MINIMUM_DIST = atoi(p);
if (html.MINIMUM_DIST <= 0) {
html.MINIMUM_DIST = DEF_MINDIST;
}
}
else {
html.MINIMUM_DIST = DEF_MINDIST;
}
/*
* open the output file
*/
if (NULL != (p = getenv("GRASS_RENDER_FILE"))) {
if (strlen(p) == 0) {
p = FILE_NAME;
}
}
else {
p = FILE_NAME;
}
file_name = p;
html.output = fopen(file_name, "w");
if (html.output == NULL) {
G_fatal_error("HTMLMAP: couldn't open output file %s", file_name);
exit(EXIT_FAILURE);
}
G_verbose_message(_("html: collecting to file '%s'"), file_name);
G_verbose_message(_("html: image size %dx%d"), screen_width, screen_height);
/*
* check type of map wanted
*/
if (NULL == (p = getenv("GRASS_RENDER_HTMLTYPE"))) {
p = "CLIENT";
}
if (strcmp(p, "APACHE") == 0) {
html.type = APACHE;
G_verbose_message(_("html: type '%s'"), "apache");
}
else if (strcmp(p, "RAW") == 0) {
html.type = RAW;
G_verbose_message(_("html: type '%s'"), "raw");
}
else {
html.type = CLIENT;
G_verbose_message(_("html: type '%s'"), "client");
}
/*
* initialize text memory and list pointers
*/
html.last_text = (char *)G_malloc(INITIAL_TEXT + 1);
html.last_text[0] = '\0';
html.last_text_len = INITIAL_TEXT;
html.head = NULL;
html.tail = &html.head;
return 0;
}
|