ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/wrapBSDF.c
(Generate patch)

Comparing ray/src/util/wrapBSDF.c (file contents):
Revision 2.1 by greg, Wed Feb 11 18:08:10 2015 UTC vs.
Revision 2.10 by greg, Fri Feb 20 17:05:40 2015 UTC

# Line 2 | Line 2
2   static const char RCSid[] = "$Id$";
3   #endif
4   /*
5 < * Wrap BSDF data in valid WINDOW XML wrapper
5 > * Wrap BSDF data in valid WINDOW XML file
6   *
7 < *      G. Ward         January 2015
7 > *      G. Ward         February 2015
8   */
9  
10   #include <ctype.h>
# Line 15 | Line 15 | static const char RCSid[] = "$Id$";
15   #include "bsdf_m.h"
16                                          /* XML template file names */
17   const char      def_template[] = "minimalBSDFt.xml";
18 < const char      win6_template[] = "window6BSDFt.xml";
18 > const char      win6_template[] = "WINDOW6BSDFt.xml";
19  
20   const char      stdin_name[] = "<stdin>";
21
21                                          /* input files (can be stdin_name) */
22   const char      *xml_input = NULL;
23                                          /* unit for materials & geometry */
24 < const char      *attr_unit = "millimeter";
24 > const char      *attr_unit = "meter";
25   const char      legal_units[] = "meter|foot|inch|centimeter|millimeter";
26                                          /* system materials & geometry */
27   const char      *mgf_geometry = NULL;
28  
29 <                                        /* angle basis */
29 >                                        /* angle bases */
30   enum { ABdefault=-1, ABklemsFull=0, ABklemsHalf, ABklemsQuarter,
31                  ABtensorTree3, ABtensorTree4, ABend };
32  
33   int             angle_basis = ABdefault;
34  
35 + int             correct_solid_angle = 0;
36 +
37 + const char      *klems_basis_name[] = {
38 +        "LBNL/Klems Full",
39 +        "LBNL/Klems Half",
40 +        "LBNL/Klems Quarter",
41 + };
42                                          /* field IDs and nicknames */
43   struct s_fieldID {
44          char            nickName[4];
45 <        int             has_unit;
45 >        short           has_unit;
46 >        short           win_need;
47          const char      *fullName;
48   } XMLfieldID[] = {
49 <        {"m", 0, "Manufacturer"},
50 <        {"n", 0, "Name"},
51 <        {"c", 0, "ThermalConductivity"},
52 <        {"ef", 0, "EmissivityFront"},
53 <        {"eb", 0, "EmissivityBack"},
54 <        {"tir", 0, "TIR"},
55 <        {"eo", 0, "EffectiveOpennessFraction"},
56 <        {"t", 1, "Thickness"},
57 <        {"h", 1, "Height"},
58 <        {"w", 1, "Width"},
59 <        {"\0", -1, NULL}        /* terminator */
49 >        {"m", 0, 1, "Manufacturer"},
50 >        {"n", 0, 1, "Name"},
51 >        {"c", 0, 0, "ThermalConductivity"},
52 >        {"ef", 0, 0, "EmissivityFront"},
53 >        {"eb", 0, 0, "EmissivityBack"},
54 >        {"tir", 0, 0, "TIR"},
55 >        {"eo", 0, 0, "EffectiveOpennessFraction"},
56 >        {"t", 1, 1, "Thickness"},
57 >        {"h", 1, 0, "Height"},
58 >        {"w", 1, 0, "Width"},
59 >        {"\0", 0, 0, NULL}      /* terminator */
60   };
61                                          /* field assignments */
62   #define MAXASSIGN       12
63   const char      *field_assignment[MAXASSIGN];
64   int             nfield_assign = 0;
65   #define FASEP   ';'
59
66                                          /* data file(s) & spectra */
67   enum { DTtransForward, DTtransBackward, DTreflForward, DTreflBackward };
68  
# Line 76 | Line 82 | const char     *spectr_file[MAXFILES]; /* custom spectral
82  
83   const char      top_level_name[] = "WindowElement";
84  
85 < static char     *basis_definition[] = {
85 > static char     basis_definition[][256] = {
86  
87 +        "\t<DataDefinition>\n"
88          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
89          "\t\t<AngleBasis>\n"
90          "\t\t\t<AngleBasisName>LBNL/Klems Full</AngleBasisName>\n"
91 <        "\t\t</AngleBasis>\n",
91 >        "\t\t\t</AngleBasis>\n"
92 >        "\t</DataDefinition>\n",
93  
94 +        "\t<DataDefinition>\n"
95          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
96          "\t\t<AngleBasis>\n"
97          "\t\t\t<AngleBasisName>LBNL/Klems Half</AngleBasisName>\n"
98 <        "\t\t</AngleBasis>\n",
98 >        "\t\t\t</AngleBasis>\n"
99 >        "\t</DataDefinition>\n",
100  
101 +        "\t<DataDefinition>\n"
102          "\t\t<IncidentDataStructure>Columns</IncidentDataStructure>\n"
103          "\t\t<AngleBasis>\n"
104          "\t\t\t<AngleBasisName>LBNL/Klems Quarter</AngleBasisName>\n"
105 <        "\t\t</AngleBasis>\n",
105 >        "\t\t\t</AngleBasis>\n"
106 >        "\t</DataDefinition>\n",
107  
108 <        "\t\t<IncidentDataStructure>TensorTree3</IncidentDataStructure>\n",
108 >        "\t<DataDefinition>\n"
109 >        "\t\t<IncidentDataStructure>TensorTree3</IncidentDataStructure>\n"
110 >        "\t</DataDefinition>\n",
111  
112 <        "\t\t<IncidentDataStructure>TensorTree4</IncidentDataStructure>\n",
112 >        "\t<DataDefinition>\n"
113 >        "\t\t<IncidentDataStructure>TensorTree4</IncidentDataStructure>\n"
114 >        "\t</DataDefinition>\n",
115   };
116  
117   /* Copy data from file descriptor to stdout and close */
# Line 130 | Line 146 | input2str(const char *inpspec)
146                  return "";
147          if (inpspec == stdin_name) {            /* read from stdin */
148                  fp = stdin;
149 <        } else if (*inpspec == '!') {           /* read from command */
149 >        } else if (inpspec[0] == '!') {         /* read from command */
150                  fp = popen(inpspec+1, "r");
151                  if (fp == NULL) {
152                          fprintf(stderr, "Cannot start process '%s'\n",
153 <                                        inpspec+1);
153 >                                        inpspec);
154                          return "";
155                  }
156          } else {                                /* else load file */
# Line 144 | Line 160 | input2str(const char *inpspec)
160                          return "";
161                  }
162                  len = lseek(fd, 0L, SEEK_END);
163 <                if (len < 0) {
164 <                        fprintf(stderr, "%s: seek error\n", inpspec);
163 >                if (len > 0) {
164 >                        lseek(fd, 0L, SEEK_SET);
165 >                        str = (char *)malloc(len+1);
166 >                        if (str == NULL) {
167 >                                close(fd);
168 >                                goto memerr;
169 >                        }
170 >                        if (read(fd, str, len) != len) {
171 >                                fprintf(stderr, "%s: read error\n", inpspec);
172 >                                free(str);
173 >                                close(fd);
174 >                                return "";
175 >                        }
176 >                        str[len] = '\0';
177                          close(fd);
178 <                        return "";
178 >                        return str;
179                  }
180 <                lseek(fd, 0L, SEEK_SET);
153 <                str = (char *)malloc(len+1);
154 <                if (str == NULL) {
155 <                        close(fd);
156 <                        goto memerr;
157 <                }
158 <                if (read(fd, str, len) != len) {
159 <                        fprintf(stderr, "%s: read error\n", inpspec);
160 <                        free(str);
161 <                        close(fd);
162 <                        return "";
163 <                }
164 <                str[len] = '\0';
165 <                close(fd);
166 <                return str;
180 >                fp = fdopen(fd, "r");           /* not a regular file */
181          }
182                                                  /* reading from stream */
183          str = (char *)malloc((len=8192)+1);
# Line 186 | Line 200 | input2str(const char *inpspec)
200                  if (str == NULL)
201                          goto memerr;
202          }
203 <        if (*inpspec != '!')
203 >        if (inpspec[0] != '!')
204                  fclose(fp);
205          else if (pclose(fp))
206 <                fprintf(stderr, "Error running command '%s'\n", inpspec+1);
206 >                fprintf(stderr, "Error running command '%s'\n", inpspec);
207          return str;
208   memerr:
209          fprintf(stderr, "%s: error allocating memory\n", inpspec);
210          if (fp != NULL)
211 <                (*inpspec == '!') ? pclose(fp) : fclose(fp);
211 >                (inpspec[0] == '!') ? pclose(fp) : fclose(fp);
212          return "";
213   }
214  
# Line 204 | Line 218 | mat_assignments(const char *caller, const char *fn, ez
218   {
219          int     i;
220  
207        if (!nfield_assign)
208                return 1;
221          wtl = ezxml_child(wtl, "Material");
222          if (wtl == NULL) {
223                  fprintf(stderr, "%s: missing <Material> tag\n", fn);
# Line 214 | Line 226 | mat_assignments(const char *caller, const char *fn, ez
226          for (i = 0; i < nfield_assign; i++) {
227                  const char      *fnext = field_assignment[i];
228                  for ( ; ; ) {
229 +                        int     added = 0;
230                          ezxml_t fld;
231                          char    sbuf[512];
232                          int     j;
# Line 222 | Line 235 | mat_assignments(const char *caller, const char *fn, ez
235                                  ++fnext;
236                          if (!*fnext)
237                                  break;
238 <                        for (j = 0; (*fnext != '=') & !isspace(*fnext); ) {
238 >                        for (j = 0; *fnext != '=' && !isspace(*fnext); ) {
239                                  if (!*fnext | (*fnext == FASEP) |
240                                                  (j >= sizeof(sbuf)-1)) {
241                                          fprintf(stderr,
# Line 232 | Line 245 | mat_assignments(const char *caller, const char *fn, ez
245                                  }
246                                  sbuf[j++] = *fnext++;
247                          }
248 <                        sbuf[j] = '\0';         /* check nick-names */
248 >                        sbuf[j] = '\0';         /* check known field */
249                          for (j = 0; XMLfieldID[j].nickName[0]; j++)
250 <                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName)) {
250 >                                if (!strcasecmp(sbuf, XMLfieldID[j].nickName) ||
251 >                                        !strcasecmp(sbuf, XMLfieldID[j].fullName)) {
252                                          strcpy(sbuf, XMLfieldID[j].fullName);
253                                          break;
254                                  }
255                                                  /* check if tag exists */
256                          fld = ezxml_child(wtl, sbuf);
257                          if (fld == NULL) {      /* otherwise, create one */
258 <                                fprintf(stderr, "%s: warning - adding tag <%s>\n",
259 <                                        fn, sbuf);
258 >                                if (!XMLfieldID[j].nickName[0])
259 >                                        fprintf(stderr,
260 >                                                "%s: warning - adding tag <%s>\n",
261 >                                                        fn, sbuf);
262 >                                ezxml_add_txt(wtl, "\t");
263                                  fld = ezxml_add_child_d(wtl, sbuf, strlen(wtl->txt));
264 +                                ++added;
265                          }
266                          if (XMLfieldID[j].has_unit)
267                                  ezxml_set_attr(fld, "unit", attr_unit);
268 +                        XMLfieldID[j].win_need = 0;
269                          while (isspace(*fnext))
270                                  ++fnext;
271                          if (*fnext++ != '=') {
# Line 255 | Line 274 | mat_assignments(const char *caller, const char *fn, ez
274                                                  caller, field_assignment[i]);
275                                  return 0;
276                          }
277 <                        for (j = 0; *fnext & (*fnext != FASEP); ) {
277 >                        for (j = 0; *fnext && *fnext != FASEP; ) {
278                                  if (j >= sizeof(sbuf)-1) {
279                                          fprintf(stderr,
280                                          "%s: field too long in '%s'\n",
# Line 266 | Line 285 | mat_assignments(const char *caller, const char *fn, ez
285                          }
286                          sbuf[j] = '\0';
287                          ezxml_set_txt_d(fld, sbuf);
288 +                        if (added)
289 +                                ezxml_add_txt(wtl, "\n\t");
290                          fnext += (*fnext == FASEP);
291                  }
292          }
293 <        return 1;               /* no errors */
293 >                                        /* check required WINDOW settings */
294 >        if (xml_input == win6_template)
295 >            for (i = 0; XMLfieldID[i].nickName[0]; i++)
296 >                if (XMLfieldID[i].win_need &&
297 >                        !ezxml_txt(ezxml_child(wtl,XMLfieldID[i].fullName))[0])
298 >                        fprintf(stderr,
299 >                        "%s: warning - missing '%s' assignment for WINDOW <%s>\n",
300 >                                        caller, XMLfieldID[i].nickName,
301 >                                        XMLfieldID[i].fullName);
302 >        return 1;
303   }
304  
305   /* Complete angle basis specification */
# Line 297 | Line 327 | finish_angle_basis(ezxml_t ab)
327                  sprintf(buf, "%g", i ?
328                  .5*(abase_list[n].lat[i].tmin + abase_list[n].lat[i+1].tmin) :
329                                  .0);
330 +                ezxml_add_txt(abb, "\n\t\t\t\t");
331                  ezxml_set_txt_d(ezxml_add_child(abb,"Theta",strlen(abb->txt)), buf);
332                  sprintf(buf, "%d", abase_list[n].lat[i].nphis);
333 +                ezxml_add_txt(abb, "\n\t\t\t\t");
334                  ezxml_set_txt_d(ezxml_add_child(abb,"nPhis",strlen(abb->txt)), buf);
335 +                ezxml_add_txt(abb, "\n\t\t\t\t");
336                  tb = ezxml_add_child(abb, "ThetaBounds", strlen(abb->txt));
337 +                ezxml_add_txt(tb, "\n\t\t\t\t\t");
338                  sprintf(buf, "%g", abase_list[n].lat[i].tmin);
339 <                ezxml_set_txt(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
339 >                ezxml_set_txt_d(ezxml_add_child(tb,"LowerTheta",strlen(tb->txt)), buf);
340 >                ezxml_add_txt(tb, "\n\t\t\t\t\t");
341                  sprintf(buf, "%g", abase_list[n].lat[i+1].tmin);
342 <                ezxml_set_txt(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
342 >                ezxml_set_txt_d(ezxml_add_child(tb,"UpperTheta",strlen(tb->txt)), buf);
343 >                ezxml_add_txt(tb, "\n\t\t\t\t");
344 >                ezxml_add_txt(abb, "\n\t\t\t");
345 >                ezxml_add_txt(ab, "\n\t\t\t");
346          }
347          return 1;
348   }
# Line 320 | Line 358 | determine_angle_basis(const char *fn, ezxml_t wtl)
358          if (wtl == NULL)
359                  return -1;
360          ids = ezxml_txt(ezxml_child(wtl, "IncidentDataStructure"));
361 <        if (ids == NULL)
361 >        if (!ids[0])
362                  return -1;
363          for (i = 0; i < ABend; i++) {
364                  ezxml_t parsed = ezxml_parse_str(basis_definition[i],
# Line 343 | Line 381 | determine_angle_basis(const char *fn, ezxml_t wtl)
381          return -1;
382   }
383  
384 + /* Filter Klems angle basis, factoring out incident projected solid angle */
385 + static int
386 + filter_klems_matrix(FILE *fp)
387 + {
388 + #define MAX_COLUMNS     145
389 +        const char      *bn = klems_basis_name[angle_basis];
390 +        float           col_corr[MAX_COLUMNS];
391 +        int             i, j, n = nabases;
392 +                                        /* get angle basis */
393 +        while (n-- > 0)
394 +                if (!strcasecmp(bn, abase_list[n].name))
395 +                        break;
396 +        if (n < 0)
397 +                return 0;
398 +        if (abase_list[n].nangles > MAX_COLUMNS) {
399 +                fputs("Internal error - too many Klems columns!\n", stderr);
400 +                return 0;
401 +        }
402 +                                        /* get correction factors */
403 +        for (j = abase_list[n].nangles; j--; )
404 +                col_corr[j] = 1.f / io_getohm(j, &abase_list[n]);
405 +                                        /* read/correct/write matrix */
406 +        for (i = 0; i < abase_list[n].nangles; i++) {
407 +            for (j = 0; j < abase_list[n].nangles; j++) {
408 +                double  d;
409 +                if (fscanf(fp, "%lf", &d) != 1)
410 +                        return 0;
411 +                if (d < -1e-3) {
412 +                        fputs("Negative BSDF data!\n", stderr);
413 +                        return 0;
414 +                }
415 +                printf(" %.3e", d*col_corr[j]*(d > 0));
416 +            }
417 +            fputc('\n', stdout);
418 +        }
419 +        while ((i = getc(fp)) != EOF)
420 +                if (!isspace(i)) {
421 +                        fputs("Unexpected data past EOF\n", stderr);
422 +                        return 0;
423 +                }
424 +        return 1;                       /* all is good */
425 + #undef MAX_COLUMNS
426 + }
427 +
428   /* Write out BSDF data block with surrounding tags */
429   static int
430   writeBSDFblock(const char *caller, struct s_dfile *df)
431   {
432 +        int     correct_klems = correct_solid_angle;
433          char    *cp;
434  
435          puts("\t<WavelengthData>");
# Line 354 | Line 437 | writeBSDFblock(const char *caller, struct s_dfile *df)
437          switch (df->spectrum) {
438          case DSvisible:
439                  puts("\t\t<Wavelength unit=\"Integral\">Visible</Wavelength>");
440 <                puts("\t\tSourceSpectrum>CIE Illuminant D65 1nm.ssp</SourceSpectrum>");
440 >                puts("\t\t<SourceSpectrum>CIE Illuminant D65 1nm.ssp</SourceSpectrum>");
441                  puts("\t\t<DetectorSpectrum>ASTM E308 1931 Y.dsp</DetectorSpectrum>");
442                  break;
443          case DSxbar31:
# Line 412 | Line 495 | writeBSDFblock(const char *caller, struct s_dfile *df)
495          puts("</WavelengthDataDirection>");
496          switch (angle_basis) {
497          case ABklemsFull:
415                puts("\t\t\t<ColumnAngleBasis>LBNL/Klems Full</ColumnAngleBasis>");
416                break;
498          case ABklemsHalf:
418                puts("\t\t\t<ColumnAngleBasis>LBNL/Klems Half</ColumnAngleBasis>");
419                break;
499          case ABklemsQuarter:
500 <                puts("\t\t\t<ColumnAngleBasis>LBNL/Klems Quarter</ColumnAngleBasis>");
500 >                fputs("\t\t\t<ColumnAngleBasis>", stdout);
501 >                fputs(klems_basis_name[angle_basis], stdout);
502 >                puts("</ColumnAngleBasis>");
503 >                fputs("\t\t\t<RowAngleBasis>", stdout);
504 >                fputs(klems_basis_name[angle_basis], stdout);
505 >                puts("</RowAngleBasis>");
506                  break;
507          case ABtensorTree3:
508          case ABtensorTree4:
509                  puts("\t\t\t<AngleBasis>LBNL/Shirley-Chiu</AngleBasis>");
510 +                correct_klems = 0;
511                  break;
512          default:
513                  fprintf(stderr, "%s: bad angle basis (%d)\n", caller, angle_basis);
# Line 431 | Line 516 | writeBSDFblock(const char *caller, struct s_dfile *df)
516          puts("\t\t\t<ScatteringDataType>BTDF</ScatteringDataType>");
517          puts("\t\t\t<ScatteringData>");
518          fflush(stdout);
519 <        if (df->fname == stdin_name) {
519 >        if (correct_klems) {                    /* correct Klems matrix data */
520 >                FILE    *fp = stdin;
521 >                if (df->fname[0] == '!')
522 >                        fp = popen(df->fname+1, "r");
523 >                else if (df->fname != stdin_name)
524 >                        fp = fopen(df->fname, "r");
525 >                if (fp == NULL) {
526 >                        fprintf(stderr, "%s: cannot open '%s'\n",
527 >                                        caller, df->fname);
528 >                        return 0;
529 >                }
530 >                if (!filter_klems_matrix(fp)) {
531 >                        fprintf(stderr, "%s: Klems data error from '%s'\n",
532 >                                        caller, df->fname);
533 >                        return 0;
534 >                }
535 >                if (df->fname[0] != '!') {
536 >                        fclose(fp);
537 >                } else if (pclose(fp)) {
538 >                        fprintf(stderr, "%s: error running '%s'\n",
539 >                                        caller, df->fname);
540 >                        return 0;
541 >                }
542 >        } else if (df->fname == stdin_name) {
543                  copy_and_close(fileno(stdin));
544 <        } else if (*df->fname != '!') {
544 >        } else if (df->fname[0] != '!') {
545                  if (!copy_and_close(open(df->fname, O_RDONLY))) {
546                          fprintf(stderr, "%s: error reading from '%s'\n",
547                                          caller, df->fname);
548                          return 0;
549                  }
550          } else if (system(df->fname+1)) {
551 <                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname+1);
551 >                fprintf(stderr, "%s: error running '%s'\n", caller, df->fname);
552                  return 0;
553          }
554          puts("\t\t\t</ScatteringData>");
# Line 453 | Line 561 | writeBSDFblock(const char *caller, struct s_dfile *df)
561   static int
562   writeBSDF(const char *caller, ezxml_t fl)
563   {
564 <        char    *xml = ezxml_toxml(fl);
564 >        char    *xml = ezxml_toxml(fl);         /* store XML in string */
565          int     ei, i;
566                                                  /* locate trailer */
567          for (ei = strlen(xml)-strlen("</Layer></Optical></WindowElement>");
# Line 477 | Line 585 | writeBSDF(const char *caller, ezxml_t fl)
585                          return 0;
586                  }
587          fputs(xml+ei, stdout);                  /* write trailer */
588 <        free(xml);
588 >        free(xml);                              /* free string */
589 >        fputc('\n', stdout);
590          return (fflush(stdout) == 0);
591   }
592  
# Line 485 | Line 594 | writeBSDF(const char *caller, ezxml_t fl)
594   static int
595   wrapBSDF(const char *caller)
596   {
597 <        const char      *xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
597 >        const char      *xml_path = xml_input;
598          ezxml_t         fl, wtl;
599                                          /* load previous XML/template */
600 <        if (xml_path == NULL) {
601 <                fprintf(stderr, "%s: cannot find XML file named '%s'\n",
602 <                                caller, xml_input==NULL ? "NULL" : xml_input);
603 <                return 0;
600 >        if (xml_input == stdin_name) {
601 >                fl = ezxml_parse_fp(stdin);
602 >        } else if (xml_input[0] == '!') {
603 >                FILE    *pfp = popen(xml_input+1, "r");
604 >                if (pfp == NULL) {
605 >                        fprintf(stderr, "%s: cannot start process '%s'\n",
606 >                                        caller, xml_input);
607 >                        return 0;
608 >                }
609 >                fl = ezxml_parse_fp(pfp);
610 >                if (pclose(pfp)) {
611 >                        fprintf(stderr, "%s: error running '%s'\n",
612 >                                        caller, xml_input);
613 >                        return 0;
614 >                }
615 >        } else {
616 >                xml_path = getpath((char *)xml_input, getrlibpath(), R_OK);
617 >                if (xml_path == NULL) {
618 >                        fprintf(stderr, "%s: cannot find XML file named '%s'\n",
619 >                                        caller, xml_input==NULL ? "NULL" : xml_input);
620 >                        return 0;
621 >                }
622 >                fl = ezxml_parse_file(xml_path);
623          }
496        fl = ezxml_parse_file(xml_path);
624          if (fl == NULL) {
625 <                fprintf(stderr, "%s: cannot open XML path '%s'\n",
499 <                                caller, xml_path);
625 >                fprintf(stderr, "%s: cannot load XML '%s'\n", caller, xml_path);
626                  return 0;
627          }
628          if (ezxml_error(fl)[0]) {
629 <                fprintf(stderr, "%s: error in XML %s: %s\n", caller, xml_path,
629 >                fprintf(stderr, "%s: error in XML '%s': %s\n", caller, xml_path,
630                                  ezxml_error(fl));
631                  goto failure;
632          }
# Line 522 | Line 648 | wrapBSDF(const char *caller)
648                  goto failure;
649          }
650                                          /* make material assignments */
651 <        if (!mat_assignments(caller, xml_path, wtl)) {
651 >        if (!mat_assignments(caller, xml_path, wtl))
652                  goto failure;
527        }
653          if (mgf_geometry != NULL) {     /* add geometry if specified */
654                  ezxml_t geom = ezxml_child(wtl, "Geometry");
655                  if (geom == NULL)
656 <                        geom = ezxml_add_child(wtl, "Geometry", 0);
656 >                        geom = ezxml_add_child(wtl, "Geometry", strlen(wtl->txt));
657                  ezxml_set_attr(geom, "format", "MGF");
658                  geom = ezxml_child(geom, "MGFblock");
659                  if (geom == NULL) {
660                          geom = ezxml_child(wtl, "Geometry");
661 <                        geom = ezxml_add_child(geom, "MGFblock", strlen(geom->txt));
661 >                        geom = ezxml_add_child(geom, "MGFblock", 0);
662                  }
663                  ezxml_set_attr(geom, "unit", attr_unit);
664                  ezxml_set_txt(geom, input2str(mgf_geometry));
# Line 542 | Line 667 | wrapBSDF(const char *caller)
667          }
668                                          /* check basis */
669          if (angle_basis != ABdefault) {
670 +                size_t  offset = 0;
671                  ezxml_t ab, dd = ezxml_child(wtl, "DataDefinition");
672 <                if (dd == NULL) {
673 <                        dd = ezxml_add_child(wtl, "DataDefinition", 0);
674 <                } else {
549 <                        if (ezxml_child(dd, "DataDefinition") != NULL)
672 >                if (dd != NULL) {
673 >                        offset = dd->off;
674 >                        if (dd->child != NULL)
675                                  fprintf(stderr,
676                  "%s: warning - replacing existing <DataDefinition> in '%s'\n",
677                                                  caller, xml_path);
678 <                        while (dd->child != NULL)
679 <                                ezxml_remove(dd->child);
680 <                }
681 <                ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
678 >                        ezxml_remove(dd);
679 >                } else
680 >                        offset = strlen(wtl->txt);
681 >                dd = ezxml_insert(ezxml_parse_str(basis_definition[angle_basis],
682                                          strlen(basis_definition[angle_basis])),
683 <                                dd, 0);
683 >                                wtl, offset);
684                  if ((ab = ezxml_child(dd, "AngleBasis")) != NULL &&
685                                  !finish_angle_basis(ab))
686                          goto failure;
# Line 580 | Line 705 | UsageExit(const char *pname)
705   {
706          fputs("Usage: ", stderr);
707          fputs(pname, stderr);
708 <        fputs(" [options] [input.xml]\n", stderr);
708 >        fputs(" [-W][-a {kf|kh|kq|t3|t4}][-u unit][-g geom][-f 'x=string;y=string']", stderr);
709 >        fputs(" [-s spectr][-tb inp][-tf inp][-rb inp][-rf inp]", stderr);
710 >        fputs(" [input.xml]\n", stderr);
711          exit(1);
712   }
713  
# Line 617 | Line 744 | main(int argc, char *argv[])
744                                                  argv[0]);
745                                  return 1;
746                          }
747 <                        if (strstr(argv[i], legal_units) == NULL) {
748 <                                fprintf(stderr, "%s: unit must be one of (%s)\n",
747 >                        if (strstr(legal_units, argv[i]) == NULL) {
748 >                                fprintf(stderr, "%s: -u unit must be one of (%s)\n",
749                                                  argv[0], legal_units);
750                                  return 1;
751                          }
# Line 645 | Line 772 | main(int argc, char *argv[])
772                          else
773                                  UsageExit(argv[0]);
774                          continue;
775 +                case 'c':               /* correct solid angle */
776 +                        correct_solid_angle = 1;
777 +                        continue;
778                  case 't':               /* transmission */
779                          if (i >= argc-1)
780                                  UsageExit(argv[0]);
# Line 686 | Line 816 | main(int argc, char *argv[])
816                                  argv[i] = (char *)stdin_name;
817                          }
818                          data_file[ndataf].fname = argv[i];
819 <                        data_file[ndataf++].spectrum = cur_spectrum;
819 >                        data_file[ndataf].spectrum = cur_spectrum;
820 >                        ndataf++;
821                          continue;
822                  case 's':               /* spectrum name or input file */
823                          if (++i >= argc)
# Line 748 | Line 879 | doneOptions:                                   /* get XML input */
879          } else {
880                  xml_input = argv[i];
881          }
751        if ((xml_input == win6_template) & (angle_basis == ABdefault))
752                angle_basis = ABklemsFull;
882                                                  /* wrap it! */
883          return !wrapBSDF(argv[0]);
884   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines