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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*
flame - cosmic recursive fractal flames
Copyright (C) 1992-2008 Spotworks LLC
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "private.h"
typedef struct {
int number;
char name[flam3_name_len];
unsigned char colors[256][3];
} lib_palette;
lib_palette *the_palettes = NULL;
int npalettes;
static void parse_palettes(xmlNode *node) {
xmlAttrPtr attr;
char *val;
lib_palette *pal;
while (node) {
if (node->type == XML_ELEMENT_NODE && !xmlStrcmp(node->name, (const xmlChar *)"palette")) {
attr = node->properties;
pal = &the_palettes[npalettes];
memset(pal, 0, sizeof(lib_palette));
while (attr) {
val = (char *) xmlGetProp(node, attr->name);
if (!xmlStrcmp(attr->name, (const xmlChar *)"data")) {
int count = 256;
int c_idx = 0;
int r,g,b;
int col_count = 0;
int sscanf_ret;
c_idx=0;
col_count = 0;
do {
sscanf_ret = sscanf((char *)&(val[c_idx]),"00%2x%2x%2x",&r,&g,&b);
if (sscanf_ret != 3) {
printf("Error: Problem reading hexadecimal color data.\n");
exit(1);
}
c_idx += 8;
while (isspace( (int)val[c_idx]))
c_idx++;
pal->colors[col_count][0] = r;
pal->colors[col_count][1] = g;
pal->colors[col_count][2] = b;
col_count++;
} while (col_count<count);
} else if (!xmlStrcmp(attr->name, (const xmlChar *)"number")) {
pal->number = atoi(val);
} else if (!xmlStrcmp(attr->name, (const xmlChar *)"name")) {
strncpy(pal->name, val, flam3_name_len);
pal->name[flam3_name_len-1] = 0;
}
xmlFree(val);
attr = attr->next;
}
npalettes++;
the_palettes = realloc(the_palettes, (1 + npalettes) * sizeof(lib_palette));
} else
parse_palettes(node->children);
node = node->next;
}
}
static int init_palettes(char *filename) {
FILE *fp;
xmlDocPtr doc;
xmlNode *rootnode;
int i, c, slen = 5000;
char *s;
fp = fopen(filename, "rb");
if (NULL == fp) {
fprintf(stderr, "flam3: could not open palette file ");
perror(filename);
exit(1);
}
/* Incrementally read XML file into a string */
s = malloc(slen);
i = 0;
do {
c = getc(fp);
if (EOF == c) {
if (ferror(fp)) {
perror(filename);
exit(1);
}
break;
}
s[i++] = c;
if (i == slen-1) {
slen *= 2;
s = realloc(s, slen);
}
} while (1);
fclose(fp);
s[i] = 0;
doc = xmlReadMemory(s, (int)strlen(s), filename, NULL, XML_PARSE_NONET);
if (NULL == doc) {
fprintf(stderr, "error parsing %s (%s).\n", filename, s);
exit(1);
}
rootnode = xmlDocGetRootElement(doc);
the_palettes = malloc(sizeof(lib_palette));
npalettes = 0;
parse_palettes(rootnode);
xmlFreeDoc(doc);
free(s);
return(1);
}
int flam3_get_palette(int n, flam3_palette c, double hue_rotation) {
int cmap_len = 256;
int idx, i, j;
if (NULL == the_palettes) {
char *d = getenv("flam3_palettes");
init_palettes(d ? d : (PACKAGE_DATA_DIR "/flam3-palettes.xml"));
}
if (flam3_palette_random == n)
n = the_palettes[random()%npalettes].number;
for (idx = 0; idx < npalettes; idx++) {
if (n == the_palettes[idx].number) {
for (i = 0; i < cmap_len; i++) {
int ii = (i * 256) / cmap_len;
double rgb[3], hsv[3];
for (j = 0; j < 3; j++)
rgb[j] = the_palettes[idx].colors[ii][j] / 255.0;
rgb2hsv(rgb, hsv);
hsv[0] += hue_rotation * 6.0;
hsv2rgb(hsv, rgb);
for (j = 0; j < 3; j++)
c[i][j] = rgb[j];
}
return n;
}
}
fprintf(stderr, "warning: palette number %d not found, using white.\n", n);
for (i = 0; i < cmap_len; i++) {
for (j = 0; j < 3; j++)
c[i][j] = 1.0;
}
return flam3_palette_random;
}
/* rgb 0 - 1,
h 0 - 6, s 0 - 1, v 0 - 1 */
void rgb2hsv(rgb, hsv)
double *rgb; double *hsv;
{
double rd, gd, bd, h, s, v, max, min, del, rc, gc, bc;
rd = rgb[0];
gd = rgb[1];
bd = rgb[2];
/* compute maximum of rd,gd,bd */
if (rd>=gd) { if (rd>=bd) max = rd; else max = bd; }
else { if (gd>=bd) max = gd; else max = bd; }
/* compute minimum of rd,gd,bd */
if (rd<=gd) { if (rd<=bd) min = rd; else min = bd; }
else { if (gd<=bd) min = gd; else min = bd; }
del = max - min;
v = max;
if (max != 0.0) s = (del) / max;
else s = 0.0;
h = 0;
if (s != 0.0) {
rc = (max - rd) / del;
gc = (max - gd) / del;
bc = (max - bd) / del;
if (rd==max) h = bc - gc;
else if (gd==max) h = 2 + rc - bc;
else if (bd==max) h = 4 + gc - rc;
if (h<0) h += 6;
}
hsv[0] = h;
hsv[1] = s;
hsv[2] = v;
}
/* h 0 - 6, s 0 - 1, v 0 - 1
rgb 0 - 1 */
void hsv2rgb(hsv, rgb)
double *hsv;
double *rgb;
{
double h = hsv[0], s = hsv[1], v = hsv[2];
int j;
double rd, gd, bd;
double f, p, q, t;
while (h >= 6.0) h = h - 6.0;
while (h < 0.0) h = h + 6.0;
j = (int) floor(h);
f = h - j;
p = v * (1-s);
q = v * (1 - (s*f));
t = v * (1 - (s*(1 - f)));
switch (j) {
case 0: rd = v; gd = t; bd = p; break;
case 1: rd = q; gd = v; bd = p; break;
case 2: rd = p; gd = v; bd = t; break;
case 3: rd = p; gd = q; bd = v; break;
case 4: rd = t; gd = p; bd = v; break;
case 5: rd = v; gd = p; bd = q; break;
default: rd = v; gd = t; bd = p; break;
}
rgb[0] = rd;
rgb[1] = gd;
rgb[2] = bd;
}
#if 0
#if 0
void
cmap2image(n, f)
int n;
FILE *f;
{
int i;
fprintf(f, "P3\n16 16\n# cmap %d\n255\n", n);
for (i = 0; i < 256; i++)
fprintf(f, "%d %d %d ",
the_cmaps[n][i][0],
the_cmaps[n][i][1],
the_cmaps[n][i][2]);
fprintf(f, "\n");
}
void
cmap2image2(n, f)
int n;
FILE *f;
{
int i, j;
fprintf(f, "P3\n50 256\n# cmap %d\n255\n", n);
for (i = 0; i < 256; i++)
for (j = 0; j < 50; j++)
fprintf(f, "%d %d %d ",
the_cmaps[n][i][0],
the_cmaps[n][i][1],
the_cmaps[n][i][2]);
fprintf(f, "\n");
}
#endif
main(argc, argv)
int argc;
char **argv;
{
#if 0
int i;
FILE *f;
/* printf("%d\n", vlen(the_cmaps));
exit(0); */
for (i = 0 ; i < vlen(the_cmaps); i++) {
char fname[100];
sprintf(fname, "cmap%04d.ppm", i);
f = fopen(fname, "w");
if (NULL == f) {
perror(fname);
exit(1);
}
cmap2image2(i, f);
fclose(f);
}
#elsif 0
int n = atoi(argv[1]);
if (n >= 0 && n < vlen(the_cmaps))
cmap2image2(n, stdout);
else {
fprintf(stderr, "bad cmap index: %d.\n", n);
exit(1);
}
#else
int i, j;
init_palettes("pal.xml");
printf("<palettes>\n");
for (i = 0; i < npalettes; i++) {
printf("<palette number=\"%d\" data=\"", the_palettes[i].number);
for (j = 0; j < 256; j++) {
printf("00%02x%02x%02x",
the_palettes[i].colors[j][0],
the_palettes[i].colors[j][1],
the_palettes[i].colors[j][2]);
if ((j&7)==7) printf("\n");
}
printf("\"/>\n");
}
printf("</palettes>\n");
#endif
}
#endif
|