source: GTP/trunk/Lib/Vis/Preprocessing/src/Environment.cpp @ 1867

Revision 1867, 69.2 KB checked in by bittner, 18 years ago (diff)

merge, global lines, rss sampling updates

Line 
1// ================================================================
2// $Id: environ.cpp,v 1.1 2004/02/16 14:45:59 bittner Exp $
3//
4// environ.cpp
5//     Implementation of the environment operations, ie. reading
6//     environment file, reading command line parameters etc.
7//
8
9//#define _DEBUG_PARAMS
10
11#include <math.h>
12#include <stdlib.h>
13#include <stdio.h>
14#include <string.h>
15#include <fstream>
16
17#include "gzstream.h"
18#include "common.h"
19#include "Environment.h"
20#include "Vector3.h"
21
22using namespace std;
23 
24namespace GtpVisibilityPreprocessor {
25
26
27Environment *Environment::sEnvironment = NULL;
28
29
30Environment *Environment::GetSingleton()
31{
32        if (!sEnvironment)
33        {
34                sEnvironment = new Environment();
35        }
36
37        return sEnvironment;
38}
39
40
41void Environment::DelSingleton()
42{
43        DEL_PTR(sEnvironment);
44}
45
46
47Environment::~Environment()
48{
49  int i, j;
50
51  // delete the params structure
52  for (i = 0; i < numParams; i++) {
53    for (j = 0; j < paramRows; j++)
54      if (params[i][j] != NULL)
55        delete[] params[i][j];
56    if (params[i] != NULL)
57      delete[] params[i];
58  }
59
60  if (params != NULL)
61    delete[] params;
62 
63  // delete the options structure
64  if (options != NULL)
65    delete[] options;
66 
67  if (optionalParams != NULL)
68    DEL_PTR(optionalParams);
69}
70
71bool
72Environment::CheckForSwitch(const int argc,
73                                                        char **argv,
74                                                        const char swtch) const
75{
76  for (int i = 1; i < argc; i++)
77    if ((argv[i][0] == '-') && (argv[i][1] == swtch))
78      return true;
79  return false;
80}
81
82bool
83Environment::CheckType(const char *value,
84                        const EOptType type) const
85{
86  char *s, *t, *u;
87
88  switch (type) {
89    case optInt: {
90      strtol(value, &t, 10);
91      if (value + strlen(value) != t)
92        return false;
93      else
94        return true;
95    }
96    case optFloat: {
97      strtod(value, &t);
98      if (value + strlen(value) != t)
99        return false;
100      else
101        return true;
102    }
103    case optBool: {
104      if (!strcasecmp(value, "true") ||
105          !strcasecmp(value, "false") ||
106          !strcasecmp(value, "YES") ||
107          !strcasecmp(value, "NO") ||
108          !strcmp(value, "+") ||
109          !strcmp(value, "-") ||
110          !strcasecmp(value, "ON") ||
111          !strcasecmp(value, "OFF"))
112        return true;
113      return false;
114    }
115    case optVector:{
116      strtod(value, &s);
117      if (*s == ' ' || *s == '\t') {
118        while (*s == ' ' || *s == '\t')
119          s++;
120        if (*s != ',')
121          s--;
122      }
123      if ((*s != ',' && *s != ' ' && *s != '\t') || value == s)
124        return false;
125      t = s;
126      strtod(s + 1, &u);
127      if (*u == ' ' || *u == '\t') {
128        while (*u == ' ' || *u == '\t')
129          u++;
130        if (*u != ',')
131          u--;
132      }
133      if ((*u != ',' && *s != ' ' && *s != '\t') || t == u)
134        return false;
135      t = u;
136      strtod(u + 1, &s);
137      if (t == s || value + strlen(value) != s)
138        return false;
139      return true;
140    }
141    case optString: {
142      return true;
143    }
144    default: {
145      Debug << "Internal error: Unknown type of option.\n" << flush;
146      exit(1);
147    }
148  }
149  return false;
150}
151
152void
153Environment::ReadCmdlineParams(const int argc,
154                                                           char **argv,
155                                                           const char *optParams)
156{
157  int i;
158
159  // Make sure we are called for the first time
160  if (optionalParams != NULL)
161    return;
162
163  numParams = (int)strlen(optParams) + 1;
164  optionalParams = new char[numParams];
165  strcpy(optionalParams, optParams);
166
167  // First, count all non-optional parameters on the command line
168  for (i = 1; i < argc; i++)
169    if (argv[i][0] != '-')
170      paramRows++;
171
172  // if there is no non-optional parameter add a default one...
173  if (paramRows == 0)
174    paramRows = 1;
175 
176  // allocate and initialize the table for parameters
177  params = new char **[numParams];
178  for (i = 0; i < numParams; i++) {
179    params[i] = new char *[paramRows];
180    for (int j = 0; j < paramRows; j++)
181      params[i][j] = NULL;
182  }
183  // Now read all non-optional and optional parameters into the table
184  curRow = -1;
185  for (i = 1; i < argc; i++) {
186    if (argv[i][0] != '-') {
187      // non-optional parameter encountered
188      curRow++;
189      params[0][curRow] = new char[strlen(argv[i]) + 1];
190      strcpy(params[0][curRow], argv[i]);
191    }
192    else {
193      // option encountered
194      char *t = strchr(optionalParams, argv[i][1]);
195      if (t != NULL) {
196        // this option is optional parameter
197        int index = t - optionalParams + 1;
198        if (curRow < 0) {
199          // it's a global parameter
200          for (int j = 0; j < paramRows; j++) {
201            params[index][j] = new char[strlen(argv[i] + 2) + 1];
202            strcpy(params[index][j], argv[i] + 2);
203          }
204        }
205        else {
206          // it's a scene parameter
207          if (params[index][curRow] != NULL) {
208            delete[] params[index][curRow];
209          }
210          params[index][curRow] = new char[strlen(argv[i] + 2) + 1];
211          strcpy(params[index][curRow], argv[i] + 2);
212        }
213      }
214    }
215  }
216  curRow = 0;
217
218#ifdef _DEBUG_PARAMS
219  // write out the parameter table
220  cerr << "Parameter table for " << numParams << " columns and "
221       << paramRows << " rows:\n";
222  for (int j = 0; j < paramRows; j++) {
223    for (i = 0; i < numParams; i++) {
224      if (params[i][j] != NULL)
225        cerr << params[i][j];
226      else
227        cerr << "NULL";
228      cerr << "\t";
229    }
230    cerr << "\n";
231  }
232  cerr << "Params done.\n" << flush;
233#endif // _DEBUG_PARAMS
234}
235
236bool
237Environment::GetParam(const char name,
238                                          const int index,
239                                          char *value) const
240{
241  int column;
242
243  if (index >= paramRows || index < 0)
244    return false;
245  if (name == ' ')
246    column = 0;
247  else {
248    char *t = strchr(optionalParams, name);
249
250    if (t == NULL)
251      return false;
252    column = t - optionalParams + 1;
253  }
254
255  if (params[column][index] == NULL)
256    return false;
257  //  value = new char[strlen(params[column][index]) + 1];
258  strcpy(value, params[column][index]);
259  return true;
260}
261
262void
263Environment::RegisterOption(const char *name,
264                                                        const EOptType type,
265                                                        const char *abbrev,
266                                                        const char *defValue)
267{
268  int i;
269
270  // make sure this option was not yet registered
271  for (i = 0; i < numOptions; i++)
272    if (!strcmp(name, options[i].name)) {
273      Debug << "Error: Option " << name << " registered twice.\n";
274      exit(1);
275    }
276  // make sure we have enough room in memory
277  if (numOptions >= maxOptions) {
278    Debug << "Error: Too many options. Try enlarge the maxOptions "
279          << "definition.\n";
280    exit(1);
281  }
282
283  // make sure the abbreviation doesn't start with 'D'
284  if (abbrev != NULL && (abbrev[0] == 'D' )) {
285    Debug << "Internal error: reserved switch " << abbrev
286         << " used as an abbreviation.\n";
287    exit(1);
288  }
289  // new option
290  options[numOptions].type = type;
291  options[numOptions].name = ::strdup(name);
292  // assign abbreviation, if requested
293  if (abbrev != NULL) {
294          options[numOptions].abbrev = ::strdup(abbrev);
295  }
296  // assign default value, if requested
297  if (defValue != NULL) {
298          options[numOptions].defaultValue = ::strdup(defValue);
299    if (!CheckType(defValue, type)) {
300      Debug << "Internal error: Inconsistent type and default value in option "
301           << name << ".\n";
302      exit(1);
303    }
304  }
305  // new option registered
306  numOptions++;
307}
308
309bool
310Environment::OptionPresent(const char *name) const
311{
312  bool found = false;
313  int i;
314
315  for (i = 0; i < numOptions; i++)
316    if (!strcmp(options[i].name, name)) {
317      found = true;
318      break;
319    }
320  if (!found) {
321    Debug << "Internal error: Option " << name << " not registered.\n" << flush;
322    exit(1);
323  }
324  if (options[i].value != NULL || options[i].defaultValue != NULL)
325    return true;
326  else
327    return false;
328}
329
330int
331Environment::FindOption(const char *name, const bool isFatal) const
332{
333  int i;
334  bool found = false;
335  // is this option registered ?
336  for (i = 0; i < numOptions; i++)
337    if (!strcmp(options[i].name, name)) {
338      found = true;
339      break;
340    }
341  if (!found) {
342    // no registration found
343    Debug << "Internal error: Required option " << name
344          << " not registered.\n" << flush;
345    exit(1);
346  }
347  if (options[i].value == NULL && options[i].defaultValue == NULL)
348    // this option was not initialised to some value
349    if (isFatal) {
350      Debug << "Error: Required option " << name << " not found.\n" << flush;
351      exit(1);
352    }
353    else {
354      Debug << "Error: Required option " << name << " not found.\n" << flush;
355      return -1;
356    }
357  return i;
358}
359
360bool
361Environment::GetIntValue(const char *name,
362                         int &value,
363                         const bool isFatal) const
364{
365  int i = FindOption(name, isFatal);
366
367  if (i<0)
368    return false;
369
370  if (options[i].value != NULL) {
371    // option was explicitly specified
372    value = strtol(options[i].value, NULL, 10);
373  } else {
374    // option was not read, so use the default
375    value = strtol(options[i].defaultValue, NULL, 10);
376  }
377
378  return true;
379}
380
381bool
382Environment::GetDoubleValue(const char *name,
383                            double &value,
384                            const bool isFatal) const
385{
386  int i = FindOption(name, isFatal);
387
388  if (i<0)
389    return false;
390
391  if (options[i].value != NULL) {
392    // option was explicitly specified
393    value = strtod(options[i].value, NULL);
394  } else {
395    // option was not read, so use the default
396    value = strtod(options[i].defaultValue, NULL);
397  }
398  return true;
399}
400
401bool
402Environment::GetRealValue(const char *name,
403                          Real &value,
404                          const bool isFatal) const
405{
406  int i = FindOption(name, isFatal);
407 
408  if (i<0)
409    return false;
410
411  if (options[i].value != NULL) {
412    // option was explicitly specified
413    value = (Real)strtod(options[i].value, NULL);
414  } else {
415    // option was not read, so use the default
416    value = (Real)strtod(options[i].defaultValue, NULL);
417  }
418  return true;
419}
420
421bool
422Environment::GetFloatValue(const char *name,
423                           float &value,
424                           const bool isFatal) const
425{
426  int i = FindOption(name, isFatal);
427
428  if (i<0)
429    return false;
430
431  if (options[i].value != NULL) {
432    // option was explicitly specified
433    value = (float)strtod(options[i].value, NULL);
434  } else {
435    // option was not read, so use the default
436    value = (float)strtod(options[i].defaultValue, NULL);
437  }
438  return true;
439}
440
441bool
442Environment::GetBool(const char *name,
443                     const bool isFatal) const
444{
445  bool ret;
446  if (GetBoolValue(name, ret, isFatal))
447    return ret;
448  else
449    return false;
450}
451
452bool
453Environment::ParseBool(const char *name) const
454{
455
456  bool value = true;
457 
458  if (!strcasecmp(name, "false") ||
459      !strcasecmp(name, "NO") ||
460      !strcmp(name, "-") ||
461      !strcasecmp(name, "OFF"))
462    value = false;
463 
464  return value;
465}
466
467void
468Environment::ParseVector(const char *name, Vector3 &v) const
469{
470  // option was not read, so use the default
471  char *s, *t;
472 
473  v.x = (Real)strtod(name, &s);
474  v.y = (Real)strtod(s + 1, &t);
475  v.z = (Real)strtod(t + 1, NULL);
476
477}
478
479bool
480Environment::GetBoolValue(const char *name,
481                           bool &value,
482                           const bool isFatal) const
483{
484  int i = FindOption(name, isFatal);
485
486  if (i<0)
487    return false;
488
489 
490  if (options[i].value != NULL)
491    value = ParseBool(options[i].value);
492  else
493    value = ParseBool(options[i].defaultValue);
494
495  return true;
496}
497
498bool
499Environment::GetVectorValue(const char *name,
500                            Vector3 &v,
501                            const bool isFatal) const
502{
503  int i = FindOption(name, isFatal);
504  if (i<0)
505    return false;
506
507  if (options[i].value != NULL)
508
509   
510  if (options[i].value != NULL) {
511    ParseVector(options[i].value, v);
512  }
513  else {
514    ParseVector(options[i].defaultValue, v);
515  }
516  return true;
517}
518
519bool
520Environment::GetStringValue(const char *name,
521                                                        char *value,
522                                                        const bool isFatal) const
523{
524  int i = FindOption(name, isFatal);
525
526  if (i<0)
527    return false;
528
529 
530  if (options[i].value != NULL) {
531    // option was not read, so use the default
532    strcpy(value, options[i].value);
533  }
534  else {
535    // option was explicitly specified
536    strcpy(value, options[i].defaultValue);
537  }
538  return true;
539}
540
541void
542Environment::SetInt(const char *name, const int value)
543{
544
545  int i = FindOption(name);
546  if (i<0)
547    return;
548
549  if (options[i].type == optInt) {
550    delete options[i].value;
551    options[i].value = new char[16];
552    sprintf(options[i].value, "%.15d", value);
553  }
554  else {
555    Debug << "Internal error: Trying to set non-integer option " << name
556          << " to integral value.\n" << flush;
557    exit(1);
558  }
559}
560
561void
562Environment::SetFloat(const char *name, const Real value)
563{
564  int i = FindOption(name);
565  if (i<0)
566    return;
567
568  if (options[i].type == optFloat) {
569    delete options[i].value;
570    options[i].value = new char[25];
571    sprintf(options[i].value, "%.15e", value);
572  }
573  else {
574    Debug << "Internal error: Trying to set non-Real option " << name
575          << " to Real value.\n" << flush;
576    exit(1);
577  }
578}
579
580void
581Environment::SetBool(const char *name, const bool value)
582{
583  int i = FindOption(name);
584  if (i<0)
585    return;
586
587  if (options[i].type == optBool) {
588    delete options[i].value;
589    options[i].value = new char[6];
590    if (value)
591      sprintf(options[i].value, "true");
592    else
593      sprintf(options[i].value, "false");
594  }
595  else {
596    Debug << "Internal error: Trying to set non-bool option " << name
597          << " to boolean value.\n" << flush;
598    exit(1);
599  }
600}
601
602void
603Environment::SetVector(const char *name,
604                       const Vector3 &v)
605{
606  int i = FindOption(name);
607  if (i<0)
608    return;
609
610  if (options[i].type == optVector) {
611    delete options[i].value;
612    options[i].value = new char[128];
613    sprintf(options[i].value, "%.15e,%.15e,%.15e", v.x, v.y, v.z);
614  }
615  else {
616    Debug << "Internal error: Trying to set non-vector option " << name
617          << " to vector value.\n" << flush;
618    exit(1);
619  }
620}
621
622void
623Environment::SetString(const char *name, const char *value)
624{
625  int i = FindOption(name);
626  if (i<0)
627    return;
628
629  if (options[i].type == optString) {
630    delete options[i].value;
631        options[i].value = ::strdup(value);
632  }
633  else {
634    Debug << "Internal error: Trying to set non-string option " << name
635          << " to string value.\n" << flush;
636    exit(1);
637  }
638}
639
640void
641Environment::ParseCmdline(const int argc,
642                                                  char **argv,
643                                                  const int index)
644{
645  int curIndex = -1;
646
647  for (int i = 1; i < argc; i++) {
648    // if this parameter is non-optional, skip it and increment the counter
649    if (argv[i][0] != '-') {
650      curIndex++;
651      continue;
652    }
653    // make sure to skip all non-optional parameters
654    char *t = strchr(optionalParams, argv[i][1]);
655    if (t != NULL)
656      continue;
657
658    // if we are in the scope of the current parameter, parse it
659    if (curIndex == -1 || curIndex == index) {
660      if (argv[i][1] == 'D') {
661        // it's a full name definition
662        bool found = false;
663        int j;
664
665        char *t = strchr(argv[i] + 2, '=');
666        if (t == NULL) {
667          Debug << "Error: Missing '=' in option. "
668                << "Syntax is -D<name>=<value>.\n" << flush;
669          exit(1);
670        }
671        for (j = 0; j < numOptions; j++)
672          if (!strncmp(options[j].name, argv[i] + 2, t - argv[i] - 2) &&
673              (unsigned)(t - argv[i] - 2) == strlen(options[j].name)) {
674            found = true;
675            break;
676          }
677        if (!found) {
678          Debug << "Warning: Unregistered option " << argv[i] << ".\n" << flush;
679          //  exit(1);
680        }
681        if (found) {
682          if (!CheckType(t + 1, options[j].type)) {
683            Debug << "Error: invalid type of value " << t + 1 << " in option "
684                  << options[j].name << ".\n";
685            exit(1);
686          }
687          if (options[j].value != NULL)
688            delete options[j].value;
689          options[j].value = strdup(t + 1);
690        }
691      }
692      else {
693        // it's an abbreviation
694        bool found = false;
695        int j;
696       
697        for (j = 0; j < numOptions; j++)
698          if (options[j].abbrev != NULL &&
699              !strncmp(options[j].abbrev, argv[i] + 1, strlen(options[j].abbrev))) {
700            found = true;
701            break;
702          }
703        if (!found) {
704          Debug << "Warning: Unregistered option " << argv[i] << ".\n" << flush;
705          //          exit(1);
706        }
707        if (found) {
708          if (!CheckType(argv[i] + 1 + strlen(options[j].abbrev), options[j].type)) {
709            Debug << "Error: invalid type of value "
710                  << argv[i] + 1 + strlen(options[j].abbrev) << "in option "
711                  << options[j].name << ".\n";
712            exit(1);
713          }
714          if (options[j].value != NULL)
715            delete options[j].value;
716          options[j].value = strdup(argv[i] + 1 + strlen(options[j].abbrev));
717        }
718      }
719    }
720  }
721#ifdef _DEBUG_PARAMS
722  // write out the options table
723  cerr << "Options table for " << numOptions << " options:\n";
724  for (int j = 0; j < numOptions; j++) {
725    cerr << options[j];
726    cerr << "\n";
727  }
728  cerr << "Options done.\n" << flush;
729#endif // _DEBUG_PARAMS
730}
731
732
733char *
734Environment::ParseString(char *buffer, char *string) const
735{
736  char *s = buffer;
737  char *t = string + strlen(string);
738
739  // skip leading whitespaces
740  while (*s == ' ' || *s == '\t')
741    s++;
742  if (*s == '\0')
743    return NULL;
744  while ((*s >= 'a' && *s <= 'z') ||
745         (*s >= 'A' && *s <= 'Z') ||
746         (*s >= '0' && *s <= '9') ||
747         *s == '_')
748    *t++ = *s++;
749  *t = '\0';
750  // skip trailing whitespaces
751  while (*s == ' ' || *s == '\t')
752    s++;
753  return s;
754}
755
756const char code[] = "JIDHipewhfdhyd74387hHO&{WK:DOKQEIDKJPQ*H#@USX:#FWCQ*EJMQAHPQP(@G#RD";
757
758void
759Environment::DecodeString(char *buff, int max)
760{
761  buff[max] = 0;
762  char *p = buff;
763  const char *cp = code;
764  for (; *p; p++) {
765    if (*p != '\n')
766      *p = *p ^ *cp;
767    ++cp;
768    if (*cp == 0)
769      cp = code;
770  }
771}
772
773void
774Environment::CodeString(char *buff, int max)
775{
776  buff[max] = 0;
777  char *p = buff;
778  const char *cp = code;
779  for (; *p; p++) {
780    if (*p != '\n')
781      *p = *p ^ *cp;
782    ++cp;
783    if (*cp == 0)
784      cp = code;
785  }
786}
787
788void
789Environment::SaveCodedFile(char *filenameText,
790                            char *filenameCoded)
791{
792  ifstream envStream(filenameText);
793 
794  // some error had occured
795  if (envStream.fail()) {
796    cerr << "Error: Can't open file " << filenameText << " for reading (err. "
797         << envStream.rdstate() << ").\n";
798    return;
799  }
800  char buff[256];
801  envStream.getline(buff, 255);
802  buff[8] = 0;
803  if (strcmp(buff, "CGX_CF10") == 0)
804    return;
805
806  ofstream cStream(filenameCoded);
807  cStream<<"CGX_CF10";
808 
809  // main loop
810  for (;;) {
811    // read in one line
812    envStream.getline(buff, 255);
813    if (!envStream)
814      break;
815    CodeString(buff, 255);
816    cStream<<buff;
817  }
818 
819}
820
821bool
822Environment::ReadEnvFile(const char *envFilename)
823{
824  char buff[MaxStringLength], name[MaxStringLength];
825  char *s, *t;
826  int i, line = 0;
827  bool found;
828  igzstream envStream(envFilename);
829
830  // some error had occured
831  if (envStream.fail()) {
832    cerr << "Error: Can't open file " << envFilename << " for reading (err. "
833         << envStream.rdstate() << ").\n";
834    return false;
835  }
836
837  name[0] = '\0';
838
839//    bool coded;
840//    envStream.getline(buff, 255);
841//    buff[8] = 0;
842//    if (strcmp(buff, "CGX_CF10") == 0)
843//      coded = true;
844//    else {
845//      coded = false;
846//      envStream.Rewind();
847//    }
848 
849  // main loop
850  for (;;) {
851    // read in one line
852    envStream.getline(buff, 255);
853   
854    if (!envStream)
855      break;
856
857//      if (coded)
858//        DecodeString(buff, 255);
859
860    line++;
861    // get rid of comments
862    s = strchr(buff, '#');
863    if (s != NULL)
864      *s = '\0';
865
866    // get one identifier
867    s = ParseString(buff, name);
868    // parse line
869    while (s != NULL) {
870      // it's a group name - make the full name
871      if (*s == '{') {
872        strcat(name, ".");
873        s++;
874        s = ParseString(s, name);
875        continue;
876      }
877      // end of group
878      if (*s == '}') {
879        if (strlen(name) == 0) {
880          cerr << "Error: unpaired } in " << envFilename << " (line "
881               << line << ").\n";
882          envStream.close();
883          return false;
884        }
885        name[strlen(name) - 1] = '\0';
886        t = strrchr(name, '.');
887        if (t == NULL)
888          name[0] = '\0';
889        else
890          *(t + 1) = '\0';
891        s++;
892        s = ParseString(s, name);
893        continue;
894      }
895      // find variable name in the table
896      found = false;
897      for (i = 0; i < numOptions; i++)
898        if (!strcmp(name, options[i].name)) {
899          found = true;
900          break;
901        }
902      if (!found) {
903        cerr << "Warning: unknown option " << name << " in environment file "
904             << envFilename << " (line " << line << ").\n";
905      } else
906        switch (options[i].type) {
907        case optInt: {
908          strtol(s, &t, 10);
909          if (t == s || (*t != ' ' && *t != '\t' &&
910                         *t != '\0' && *t != '}')) {
911            cerr << "Error: Mismatch in int variable " << name << " in "
912                 << "environment file " << envFilename << " (line "
913                 << line << ").\n";
914            envStream.close();
915            return false;
916          }
917          if (options[i].value != NULL)
918            delete options[i].value;
919          options[i].value = new char[t - s + 1];
920          strncpy(options[i].value, s, t - s);
921          options[i].value[t - s] = '\0';
922          s = t;
923          break;
924        }
925        case optFloat: {
926          strtod(s, &t);
927          if (t == s || (*t != ' ' && *t != '\t' &&
928                         *t != '\0' && *t != '}')) {
929            cerr << "Error: Mismatch in Real variable " << name << " in "
930                 << "environment file " << envFilename << " (line "
931                 << line << ").\n";
932            envStream.close();
933            return false;
934          }
935          if (options[i].value != NULL)
936            delete options[i].value;
937          options[i].value = new char[t - s + 1];
938          strncpy(options[i].value, s, t - s);
939          options[i].value[t - s] = '\0';
940          s = t;
941          break;
942        }
943        case optBool: {
944          t = s;
945          while ((*t >= 'a' && *t <= 'z') ||
946                 (*t >= 'A' && *t <= 'Z') ||
947                 *t == '+' || *t == '-')
948            t++;
949          if (((!strncasecmp(s, "true", t - s)  && t - s == 4) ||
950               (!strncasecmp(s, "false", t - s) && t - s == 5) ||
951               (!strncasecmp(s, "YES", t -s)    && t - s == 3) ||
952               (!strncasecmp(s, "NO", t - s)    && t - s == 2) ||
953               (!strncasecmp(s, "ON", t - s)    && t - s == 2) ||
954               (!strncasecmp(s, "OFF", t - s)   && t - s == 3) ||
955               (t - s == 1 && (*s == '+' || *s == '-'))) &&
956              (*t == ' ' || *t == '\t' || *t == '\0' || *t == '}')) {
957            if (options[i].value != NULL)
958              delete options[i].value;
959            options[i].value = new char[t - s + 1];
960            strncpy(options[i].value, s, t - s);
961            options[i].value[t - s] = '\0';
962            s = t;
963          }
964          else {
965            cerr << "Error: Mismatch in bool variable " << name << " in "
966                 << "environment file " << envFilename << " (line "
967                 << line << ").\n";
968            envStream.close();
969            return false;
970          }
971          break;
972        }
973        case optVector:{
974          strtod(s, &t);
975          if (*t == ' ' || *t == '\t') {
976            while (*t == ' ' || *t == '\t')
977              t++;
978            if (*t != ',')
979              t--;
980          }
981          if (t == s || (*t != ' ' && *t != '\t' && *t != ',')) {
982            cerr << "Error: Mismatch in vector variable " << name << " in "
983                 << "environment file " << envFilename << " (line "
984                 << line << ").\n";
985            envStream.close();
986            return false;
987          }
988          char *u;
989          strtod(t, &u);
990          t = u;
991          if (*t == ' ' || *t == '\t') {
992            while (*t == ' ' || *t == '\t')
993              t++;
994            if (*t != ',')
995              t--;
996          }
997          if (t == s || (*t != ' ' && *t != '\t' && *t != ',')) {
998            cerr << "Error: Mismatch in vector variable " << name << " in "
999                 << "environment file " << envFilename << " (line "
1000                 << line << ").\n";
1001            envStream.close();
1002            return false;
1003          }
1004          strtod(t, &u);
1005          t = u;
1006          if (t == s || (*t != ' ' && *t != '\t' &&
1007                         *t != '\0' && *t != '}')) {
1008            cerr << "Error: Mismatch in vector variable " << name << " in "
1009                 << "environment file " << envFilename << " (line "
1010                 << line << ").\n";
1011            envStream.close();
1012            return false;
1013          }
1014          if (options[i].value != NULL)
1015            delete options[i].value;
1016          options[i].value = new char[t - s + 1];
1017          strncpy(options[i].value, s, t - s);
1018          options[i].value[t - s] = '\0';
1019          s = t;
1020          break;
1021        }
1022        case optString: {
1023          if (options[i].value != NULL)
1024            delete options[i].value;
1025          options[i].value = new char[strlen(s) + 1];
1026          strcpy(options[i].value, s);
1027          s += strlen(s);
1028          break;
1029        }
1030        default: {
1031          Debug << "Internal error: Unknown type of option.\n" << flush;
1032          exit(1);
1033        }
1034      }
1035      // prepare the variable name for next pass
1036      t = strrchr(name, '.');
1037      if (t == NULL)
1038        name[0] = '\0';
1039      else
1040        *(t + 1) = '\0';
1041      // get next identifier
1042      s = ParseString(s, name);
1043    }
1044  }
1045  envStream.close();
1046  return true;
1047}
1048
1049void
1050Environment::PrintUsage(ostream &s) const
1051{
1052  // Print out all environment variable names
1053  s << "Registered options:\n";
1054  for (int j = 0; j < numOptions; j++)
1055    s << options[j] << "\n";
1056  s << flush;
1057}
1058
1059  /**
1060         Input scene filename. Currently simplified X3D (.x3d), Unigraphics (.dat),
1061         and UNC (.ply) formats are supported.
1062  */
1063
1064Environment::Environment()
1065{
1066  optionalParams = NULL;
1067  paramRows = 0;
1068  numParams = 0;
1069  params = NULL;
1070  maxOptions = 500;
1071
1072 
1073// this is maximal nuber of options.
1074  numOptions = 0;
1075
1076  options = new COption[maxOptions];
1077
1078  if (options == NULL ) {
1079    Debug << "Error: Memory allocation failed.\n";
1080    exit(1);
1081  }
1082 
1083  // register all basic options
1084
1085  RegisterOption("Limits.threshold", optFloat, NULL, "0.01");
1086  RegisterOption("Limits.small", optFloat, NULL, "1e-6");
1087  RegisterOption("Limits.infinity", optFloat, NULL, "1e6");
1088
1089  RegisterOption("Scene.filename",
1090                                 optString,
1091                                 "scene_filename=",
1092                                 "atlanta2.x3d");
1093
1094  RegisterOption("Unigraphics.meshGrouping",
1095                                 optInt,
1096                                 "unigraphics_mesh_grouping=",
1097                                 "0");
1098 
1099   RegisterOption("ObjParser.meshGrouping",
1100                                 optInt,
1101                                 "objparser_mesh_grouping=",
1102                                 "0");
1103
1104  RegisterOption("KdTree.Termination.minCost",
1105                                 optInt,
1106                                 "kd_term_min_cost=",
1107                                 "10");
1108 
1109  RegisterOption("KdTree.Termination.maxNodes",
1110                                 optInt,
1111                                 "kd_term_max_nodes=",
1112                                 "200000");
1113 
1114  RegisterOption("KdTree.Termination.maxDepth",
1115                                 optInt,
1116                                 "kd_term_max_depth=",
1117                                 "20");
1118
1119  RegisterOption("KdTree.Termination.maxCostRatio",
1120                                 optFloat,
1121                                 "kd_term_max_cost_ratio=",
1122                                 "1.5");
1123
1124  RegisterOption("KdTree.Termination.ct_div_ci",
1125                                 optFloat,
1126                                 "kd_term_ct_div_ci=",
1127                                 "1.0");
1128
1129  RegisterOption("KdTree.splitMethod",
1130                                 optString,
1131                                 "kd_split_method=",
1132                                 "spatialMedian");
1133
1134  RegisterOption("KdTree.splitBorder",
1135                 optFloat,
1136                 "kd_split_border=",
1137                 "0.1");
1138
1139  RegisterOption("KdTree.sahUseFaces",
1140                 optBool,
1141                 "kd_sah_use_faces=",
1142                 "true");
1143
1144  RegisterOption("MeshKdTree.Termination.minCost",
1145                 optInt,
1146                 "kd_term_min_cost=",
1147                 "10");
1148 
1149  RegisterOption("MeshKdTree.Termination.maxDepth",
1150                 optInt,
1151                 "kd_term_max_depth=",
1152                 "20");
1153
1154  RegisterOption("MeshKdTree.Termination.maxCostRatio",
1155                 optFloat,
1156                 "kd_term_max_cost_ratio=",
1157                 "1.5");
1158
1159  RegisterOption("MeshKdTree.Termination.ct_div_ci",
1160                 optFloat,
1161                 "kd_term_ct_div_ci=",
1162                 "1.0");
1163
1164  RegisterOption("MeshKdTree.splitMethod",
1165                 optString,
1166                 "kd_split_method=",
1167                 "spatialMedian");
1168
1169  RegisterOption("MeshKdTree.splitBorder",
1170                 optFloat,
1171                 "kd_split_border=",
1172                 "0.1");
1173
1174  RegisterOption("SamplingPreprocessor.totalSamples",
1175                 optInt,
1176                 "total_samples=",
1177                 "1000000");
1178
1179  RegisterOption("SamplingPreprocessor.samplesPerPass",
1180                 optInt,
1181                 "samples_per_pass=",
1182                 "10");
1183
1184  RegisterOption("RenderSampler.samples",
1185                                 optInt,
1186                                 "render_sampler_samples=",
1187                                 "1000");
1188
1189  RegisterOption("RenderSampler.visibleThreshold",
1190                                 optInt,
1191                                 "render_sampler_visible_threshold=",
1192                                 "0");
1193
1194
1195   RegisterOption("RenderSampler.useOcclusionQueries",
1196                                 optBool,
1197                                 "render_sampler_use_occlusion_queries=",
1198                                 "true");
1199
1200   RegisterOption("VssPreprocessor.initialSamples",
1201                                 optInt,
1202                                 "vss_initial_samples=",
1203                                 "100000");
1204 
1205  RegisterOption("VssPreprocessor.testBeamSampling",
1206                                optBool,
1207                                "vss_beam_sampling=",
1208                                "false");
1209
1210  RegisterOption("VssPreprocessor.vssSamples",
1211                                 optInt,
1212                                 "vss_samples=",
1213                                 "1000000");
1214       
1215  RegisterOption("VssPreprocessor.vssSamplesPerPass",
1216                                 optInt,
1217                                 "vss_samples_per_pass=",
1218                                 "1000");
1219 
1220  RegisterOption("VssPreprocessor.samplesPerPass",
1221                                 optInt,
1222                                 "vss_samples_per_pass=",
1223                                 "100000");
1224
1225  RegisterOption("VssPreprocessor.useImportanceSampling",
1226                                 optBool,
1227                                 "vss_use_importance=",
1228                                 "true");
1229
1230 
1231   RegisterOption("VssPreprocessor.enlargeViewSpace",
1232                                 optBool,
1233                                 "vss_enlarge_viewspace=",
1234                                 "false");
1235
1236   RegisterOption("VssPreprocessor.loadInitialSamples",
1237          optBool,
1238          "vss_load_loadInitialSamples=",
1239          "false");
1240
1241   RegisterOption("VssPreprocessor.storeInitialSamples",
1242          optBool,
1243          "vss_store_storedInitialSamples=",
1244          "false");
1245 
1246
1247
1248   /************************************************************************************/
1249   /*                         GvsPrerpocessor related options                          */
1250   /************************************************************************************/
1251
1252
1253   RegisterOption("GvsPreprocessor.totalSamples",
1254                 optInt,
1255                 "gvs_total_samples=",
1256                 "1000000");
1257   
1258   RegisterOption("GvsPreprocessor.samplesPerPass",
1259                 optInt,
1260                 "gvs_samples_per_pass=",
1261                 "100000");
1262   
1263   RegisterOption("GvsPreprocessor.initialSamples",
1264                 optInt,
1265                 "gvs_initial_samples=",
1266                 "256");
1267
1268   RegisterOption("GvsPreprocessor.epsilon",
1269                 optFloat,
1270                 "gvs_epsilon=",
1271                 "0.00001");
1272
1273    RegisterOption("GvsPreprocessor.threshold",
1274                 optFloat,
1275                 "gvs_threshold=",
1276                 "1.5");
1277
1278
1279
1280  /***********************************************************************************/
1281  /*                         View cells related options                              */
1282  /***********************************************************************************/
1283
1284
1285        RegisterOption("ViewCells.type",
1286                        optString,
1287                        "view_cells_type=",
1288                        "vspBspTree");
1289
1290        RegisterOption("ViewCells.samplingType",
1291                        optString,
1292                        "view_cells_sampling_type=",
1293                        "box");
1294
1295        RegisterOption("ViewCells.mergeStats",
1296                                        optString,
1297                                        "view_cells_merge_stats=",
1298                                        "mergeStats.log");
1299
1300        RegisterOption("ViewCells.Evaluation.statsPrefix",
1301                                        optString,
1302                                        "view_cells_evaluation_stats_prefix=",
1303                                        "viewCells");
1304
1305        RegisterOption("ViewCells.Evaluation.histogram",
1306                                        optBool,
1307                                        "view_cells_evaluation_histogram=",
1308                                        "false");
1309
1310        RegisterOption("ViewCells.Evaluation.histoStepSize",
1311                                        optInt,
1312                                        "view_cells_evaluation_histo_step_size=",
1313                                        "5000");
1314
1315        RegisterOption("ViewCells.renderCostEvaluationType",
1316                                        optString,
1317                                        "view_cells_render_cost_evaluation=",
1318                                        "perobject");
1319
1320        RegisterOption("ViewCells.active",
1321                                        optInt,
1322                                        "view_cells_active=",
1323                                        "1000");
1324
1325        RegisterOption("ViewCells.Construction.samples",
1326                                        optInt,
1327                                        "view_cells_construction_samples=",
1328                                        "0");
1329
1330        RegisterOption("ViewCells.Construction.samplesPerPass",
1331                                        optInt,
1332                                        "view_cells_construction_samples_per_pass=",
1333                                        "500000");
1334
1335        RegisterOption("ViewCells.PostProcess.samples",
1336                                        optInt,
1337                                        "view_cells_post_process_samples=",
1338                                        "0");
1339
1340        RegisterOption("ViewCells.Visualization.samples",
1341                                        optInt,
1342                                        "view_cells_visualization_samples=",
1343                                        "0");
1344
1345        RegisterOption("ViewCells.Visualization.maxOutput",
1346                                        optInt,
1347                                        "view_cells_visualization_max_output=",
1348                                        "20");
1349
1350        RegisterOption("ViewCells.Filter.maxSize",
1351                                        optInt,
1352                                        "view_cells_filter_max_size=",
1353                                        "4");
1354
1355        RegisterOption("ViewCells.Filter.width",
1356                                        optFloat,
1357                                        "view_cells_filter_width=",
1358                                        "200.0");
1359
1360        RegisterOption("ViewCells.loadFromFile",
1361                                        optBool,
1362                                        "view_cells_load_from_file=",
1363                                        "false");
1364
1365        RegisterOption("ViewCells.PostProcess.refine",
1366                                        optBool,
1367                                        "view_cells_refine=",
1368                                        "false");
1369
1370        RegisterOption("ViewCells.PostProcess.compress",
1371                                        optBool,
1372                                        "view_cells_post_process_compress=",
1373                                        "false");
1374
1375        RegisterOption("ViewCells.Evaluation.samples",
1376                                        optInt,
1377                                        "view_cells_evaluation_samples=",
1378                                        "8000000");
1379
1380        RegisterOption("ViewCells.Evaluation.samplingType",
1381                                        optString,
1382                                        "view_cells_evaluation_sampling_type=",
1383                                        "box");
1384
1385        RegisterOption("ViewCells.Evaluation.samplesPerPass",
1386                                        optInt,
1387                                        "view_cells_evaluation_samples_per_pass=",
1388                                        "300000");
1389
1390        RegisterOption("ViewCells.Evaluation.samplesForStats",
1391                                        optInt,
1392                                        "view_cells_evaluation_samples_for_stats=",
1393                                        "300000");
1394
1395        RegisterOption("ViewCells.exportToFile",
1396                                        optBool,
1397                                        "view_cells_export_to_file=",
1398                                        "false");
1399
1400        RegisterOption("ViewCells.exportPvs",
1401                                        optBool,
1402                                        "view_cells_export_pvs=",
1403                                        "false");
1404
1405        RegisterOption("ViewCells.exportBboxesForPvs",
1406                                        optBool,
1407                                        "view_cells_export_bounding_boxes=",
1408                                        "true");
1409       
1410        RegisterOption("ViewCells.boxesFilename",
1411                                        optString,
1412                                        "view_cells_boxes_filename=",
1413                                        "boxes.out");
1414
1415        RegisterOption("ViewCells.evaluateViewCells",
1416                                        optBool,
1417                                        "view_cells_evaluate=",
1418                                        "false");
1419
1420        RegisterOption("ViewCells.maxViewCells",
1421                                        optInt,
1422                                        "view_cells_max_view_cells=",
1423                                        "0");
1424
1425        RegisterOption("ViewCells.Evaluation.stepSize",
1426                                        optInt,
1427                                        "view_cells_evaluation_step_size=",
1428                                        "100");
1429
1430        RegisterOption("ViewCells.maxPvsRatio",
1431                                        optFloat,
1432                                        "view_cells_max_pvs_ratio=",
1433                                        "0.1");
1434
1435        RegisterOption("ViewCells.filename",
1436                                        optString,
1437                                        "view_cells_filename=",
1438                                        "atlanta_viewcells_large.x3d");
1439
1440        RegisterOption("ViewCells.height",
1441                                        optFloat,
1442                                        "view_cells_height=",
1443                                        "5.0");
1444
1445        RegisterOption("ViewCells.Visualization.colorCode",
1446                                        optString,
1447                                        "view_cells_visualization_color_code=",
1448                                        "PVS");
1449
1450        RegisterOption("ViewCells.Visualization.clipPlanePos",
1451                                        optFloat,
1452                                        "view_cells_visualization_clip_plane_pos=",
1453                                        "0.35");
1454       
1455        RegisterOption("ViewCells.Visualization.exportGeometry",
1456                                        optBool,
1457                                        "view_cells_visualization_export_geometry=",
1458                                        "false");
1459
1460        RegisterOption("ViewCells.Visualization.exportRays",
1461                                        optBool,
1462                                        "view_cells_visualization_export_rays=",
1463                                        "false");
1464
1465        RegisterOption("ViewCells.processOnlyValidViewCells",
1466                                        optBool,
1467                                        "view_cells_process_only_valid_view_cells",
1468                                        "false");
1469
1470        RegisterOption("ViewCells.PostProcess.maxCostRatio",
1471                        optFloat,
1472                        "view_cells_post_process_max_cost_ratio=",
1473                        "0.9");
1474       
1475        RegisterOption("ViewCells.PostProcess.renderCostWeight",
1476                        optFloat,
1477                        "view_cells_post_process_render_cost_weight",
1478                        "0.5");
1479       
1480        RegisterOption("ViewCells.PostProcess.avgCostMaxDeviation",
1481                        optFloat,
1482                        "view_cells_avgcost_max_deviations",
1483                        "0.5");
1484
1485        RegisterOption("ViewCells.PostProcess.maxMergesPerPass",
1486                optInt,
1487                "view_cells_post_process_max_merges_per_pass=",
1488                "500");
1489
1490        RegisterOption("ViewCells.PostProcess.minViewCells",
1491                optInt,
1492                "view_cells_post_process_min_view_cells=",
1493                "1000");
1494
1495        RegisterOption("ViewCells.PostProcess.useRaysForMerge",
1496                optBool,
1497                "view_cells_post_process_use_rays_for_merge=",
1498                "false");
1499       
1500        RegisterOption("ViewCells.PostProcess.merge",
1501                optBool,
1502                "view_cells_post_process_merge=",
1503                "true");
1504
1505        RegisterOption("ViewCells.Visualization.exportMergedViewCells",
1506                optBool,
1507                "view_cells_viz_export_merged_viewcells=",
1508                "false");
1509
1510        RegisterOption("ViewCells.maxStaticMemory",
1511                optFloat,
1512                "view_cells_max_static_mem=",
1513                "8.0");
1514
1515        RegisterOption("ViewCells.Visualization.useClipPlane",
1516                optBool,
1517                "view_cells_viz_use_clip_plane=",
1518                "false");
1519       
1520        RegisterOption("ViewCells.showVisualization",
1521                optBool,
1522                "view_cells_show_visualization=",
1523                "false");
1524
1525        RegisterOption("ViewCells.Visualization.clipPlaneAxis",
1526                optInt,
1527                "view_cells_viz_clip_plane_axis=",
1528                "0");
1529
1530        RegisterOption("ViewCells.loadGeometry",
1531                optBool,
1532                "view_cells_load_geometry=",
1533                "false");
1534       
1535        RegisterOption("ViewCells.geometryFilename",
1536                optString,
1537                "view_cells_geometry_filename=",
1538                "viewCellsGeometry.x3d");
1539
1540        RegisterOption("ViewCells.useBaseTrianglesAsGeometry",
1541                optBool,
1542                "view_cells_use_base_triangles_as_geometry=",
1543                "false");
1544
1545       
1546
1547        /****************************************************************************/
1548        /*                     Render simulation related options                    */
1549        /****************************************************************************/
1550
1551
1552        RegisterOption("Simulation.objRenderCost",
1553                        optFloat,
1554                        "simulation_obj_render_cost",
1555                        "1.0");
1556
1557        RegisterOption("Simulation.vcOverhead",
1558                        optFloat,
1559                        "simulation_vc_overhead",
1560                        "0.05");
1561
1562        RegisterOption("Simulation.moveSpeed",
1563                        optFloat,
1564                        "simulation_moveSpeed",
1565                        "1.0");
1566
1567
1568
1569        /******************************************************************/
1570        /*                    Bsp tree related options                    */
1571        /******************************************************************/
1572
1573
1574        RegisterOption("BspTree.Construction.input",
1575                optString,
1576                "bsp_construction_input=",
1577                "fromViewCells");
1578       
1579        RegisterOption("BspTree.subdivisionStats",
1580                                        optString,
1581                                        "bsp_subdivision_stats=",
1582                                        "bspSubdivisionStats.log");
1583
1584        RegisterOption("BspTree.Construction.samples",
1585                optInt,
1586                "bsp_construction_samples=",
1587                "100000");
1588
1589        RegisterOption("BspTree.Construction.epsilon",
1590                optFloat,
1591                "bsp_construction_epsilon=",
1592                "0.002");
1593
1594        RegisterOption("BspTree.Termination.minPolygons",
1595                        optInt,
1596                        "bsp_term_min_polygons=",
1597                        "5");
1598
1599        RegisterOption("BspTree.Termination.minPvs",
1600                        optInt,
1601                        "bsp_term_min_pvs=",
1602                        "20");
1603
1604        RegisterOption("BspTree.Termination.minProbability",
1605                        optFloat,
1606                        "bsp_term_min_probability=",
1607                        "0.001");
1608
1609        RegisterOption("BspTree.Termination.maxRayContribution",
1610                        optFloat,
1611                        "bsp_term_ray_contribution=",
1612                        "0.005");
1613
1614        RegisterOption("BspTree.Termination.minAccRayLenght",
1615                        optFloat,
1616                        "bsp_term_min_acc_ray_length=",
1617                        "50");
1618
1619        RegisterOption("BspTree.Termination.minRays",
1620                        optInt,
1621                        "bsp_term_min_rays=",
1622                        "-1");
1623
1624        RegisterOption("BspTree.Termination.ct_div_ci",
1625                        optFloat,
1626                        "bsp_term_ct_div_ci=",
1627                        "0.0");
1628
1629        RegisterOption("BspTree.Termination.maxDepth",
1630                        optInt,
1631                        "bsp_term_max_depth=",
1632                        "100");
1633
1634        RegisterOption("BspTree.Termination.maxCostRatio",
1635                        optFloat,
1636                        "bsp_term_axis_aligned_max_cost_ratio=",
1637                        "1.5");
1638
1639        RegisterOption("BspTree.Termination.AxisAligned.ct_div_ci",
1640                        optFloat,
1641                        "bsp_term_axis_aligned_ct_div_ci=",
1642                        "0.5");
1643
1644        RegisterOption("BspTree.AxisAligned.splitBorder",
1645                        optFloat,
1646                        "bsp__axis_aligned_split_border=",
1647                        "0.1");
1648
1649        RegisterOption("BspTree.Termination.AxisAligned.minPolys",
1650                        optInt,
1651                        "bsp_term_axis_aligned_max_polygons=",
1652                        "50");
1653
1654        RegisterOption("BspTree.Termination.AxisAligned.minObjects",
1655                        optInt,
1656                        "bsp_term_min_objects=",
1657                        "3");
1658
1659        RegisterOption("BspTree.Termination.AxisAligned.minRays",
1660                        optInt,
1661                        "bsp_term_axis_aligned_min_rays=",
1662                        "-1");
1663
1664        RegisterOption("BspTree.splitPlaneStrategy",
1665                        optString,
1666                        "bsp_split_method=",
1667                        "leastSplits");
1668
1669        RegisterOption("BspTree.maxPolyCandidates",
1670                optInt,
1671                "bsp_max_poly_candidates=",
1672                "20");
1673
1674        RegisterOption("BspTree.maxRayCandidates",
1675                optInt,
1676                "bsp_max_plane_candidates=",
1677                "20");
1678
1679        RegisterOption("BspTree.maxTests",
1680                optInt,
1681                "bsp_max_tests=",
1682                "5000");
1683
1684        RegisterOption("BspTree.Termination.maxViewCells",
1685                optInt,
1686                "bsp_max_view_cells=",
1687                "5000");
1688
1689        RegisterOption("BspTree.Visualization.exportSplits",
1690                optBool,
1691                "bsp_visualization.export_splits=",
1692                "false");
1693
1694        RegisterOption("BspTree.Factor.verticalSplits", optFloat, "bsp_factor_vertical=", "1.0");
1695        RegisterOption("BspTree.Factor.largestPolyArea", optFloat, "bsp_factor_largest_poly=", "1.0");
1696        RegisterOption("BspTree.Factor.blockedRays", optFloat, "bsp_factor_blocked=", "1.0");
1697        RegisterOption("BspTree.Factor.leastSplits", optFloat, "bsp_factor_least_splits=", "1.0");
1698        RegisterOption("BspTree.Factor.balancedPolys", optFloat, "bsp_factor_balanced_polys=", "1.0");
1699        RegisterOption("BspTree.Factor.balancedViewCells", optFloat, "bsp_factor_balanced_view_cells=", "1.0");
1700        RegisterOption("BspTree.Factor.leastRaySplits", optFloat, "bsp_factor_least_ray_splits=", "1.0");
1701        RegisterOption("BspTree.Factor.balancedRays", optFloat, "bsp_factor_balanced_rays=", "1.0");
1702        RegisterOption("BspTree.Factor.pvs", optFloat, "bsp_factor_pvs=", "1.0");
1703
1704        /************************************************************************************/
1705        /*                         Preprocessor related options                             */
1706        /************************************************************************************/
1707
1708        RegisterOption("Preprocessor.type",
1709                                        optString,
1710                                        "preprocessor=",
1711                                        "sampling");
1712
1713        RegisterOption("Preprocessor.stats",
1714                                        optString,
1715                                        "preprocessor_stats=",
1716                                        "stats.log");
1717
1718        RegisterOption("Preprocessor.samplesFilename",
1719                                        optString,
1720                                        "preprocessor_samples_filename=",
1721                                        "rays.out");
1722
1723        RegisterOption("Preprocessor.loadMeshes",
1724                                        optBool,
1725                                        "preprocessor_load_meshes=",
1726                                        "true");
1727
1728        RegisterOption("Preprocessor.evaluateFilter",
1729                                   optBool,
1730                                   "preprocessor_evaluate_filter",
1731                                   "false");
1732
1733        RegisterOption("Preprocessor.delayVisibilityComputation",
1734                                   optBool,
1735                                   "preprocessor_delay_computation=",
1736                                   "true");
1737
1738        RegisterOption("Preprocessor.pvsRenderErrorSamples",
1739                                   optInt,
1740                                   "preprocessor_pvs_rendererror_samples=",
1741                                   "10000");
1742       
1743        RegisterOption("Preprocessor.useGlRenderer",
1744                                        optBool,
1745                                        "preprocessor_use_gl_renderer",
1746                                        "false");
1747
1748        RegisterOption("Preprocessor.useGlDebugger",
1749                                        optBool,
1750                                        "preprocessor_use_gl_debugger",
1751                                        "false");
1752
1753        RegisterOption("Preprocessor.detectEmptyViewSpace",
1754                                   optBool,
1755                                   "preprocessor_detect_empty_viewspace=",
1756                                   "false");
1757       
1758        RegisterOption("Preprocessor.quitOnFinish",
1759                                   optBool,
1760                                   "preprocessor_quit_on_finish",
1761                                   "true");
1762
1763        RegisterOption("Preprocessor.computeVisibility",
1764                                   optBool,
1765                                   "preprocessor_compute_visibility=",
1766                                   "true");
1767
1768        RegisterOption("Preprocessor.exportVisibility",
1769                                   optBool,
1770                                   "preprocessor_export_visibility=",
1771                                   "true");
1772
1773        RegisterOption("Preprocessor.visibilityFile",
1774                                   optString,
1775                                   "preprocessor_visibility_file=",
1776                                   "visibility.xml");
1777
1778        RegisterOption("Preprocessor.applyVisibilityFilter",
1779                                   optBool,
1780                                   "preprocessor_apply_filter=",
1781                                   "false");
1782       
1783        RegisterOption("Preprocessor.applyVisibilitySpatialFilter",
1784                                   optBool,
1785                                   "preprocessor_apply_spatial_filter=",
1786                                   "false");
1787
1788        RegisterOption("Preprocessor.visibilityFilterWidth",
1789                                   optFloat,
1790                                   "preprocessor_visibility_filter_width=",
1791                                   "0.02");
1792
1793        RegisterOption("Preprocessor.histogram.maxValue",
1794                                        optInt,
1795                                        "preprocessor_histogram_max_value=",
1796                                        "1000");
1797
1798        RegisterOption("Preprocessor.rayCastMethod",
1799                                        optInt,
1800                                        "preprocessor_ray_cast_method=",
1801                                        "0");
1802
1803        RegisterOption("Preprocessor.histogram.intervals",
1804                                        optInt,
1805                                        "preprocessor_histogram_intervals=",
1806                                        "20");
1807
1808        RegisterOption("Preprocessor.histogram.file",
1809                                   optString,
1810                                   "preprocessor_histogram_file=",
1811                                   "histogram.log");
1812
1813        RegisterOption("Preprocessor.exportKdTree",
1814                                        optBool,
1815                                        "preprocessor_export_kd_tree=",
1816                                        "false");
1817
1818        RegisterOption("Preprocessor.loadKdTree",
1819                                        optBool,
1820                                        "preprocessor_load_kd_tree=",
1821                                        "false");
1822
1823        RegisterOption("Preprocessor.kdTreeFilename",
1824                                        optString,
1825                                        "preprocessor_kd_tree_filename=",
1826                                        "vienna_kdtree.bin.gz");
1827
1828        RegisterOption("Preprocessor.exportObj",
1829                                        optBool,
1830                                        "preprocessor_export_obj=",
1831                                        "false");
1832
1833   RegisterOption("Preprocessor.useViewSpaceBox",
1834          optBool,
1835          "preprocessor_use_viewspace_box=",
1836          "false");   
1837   
1838        /*************************************************************************/
1839        /*             VSS Preprocessor cells related options                    */
1840        /*************************************************************************/
1841
1842        RegisterOption("VssTree.maxDepth", optInt, "kd_depth=", "12");
1843        RegisterOption("VssTree.minPvs", optInt, "kd_minpvs=", "1");
1844        RegisterOption("VssTree.minRays", optInt, "kd_minrays=", "10");
1845        RegisterOption("VssTree.maxCostRatio", optFloat, "maxcost=", "0.95");
1846        RegisterOption("VssTree.maxRayContribution", optFloat, "maxraycontrib=", "0.5");
1847
1848        RegisterOption("VssTree.epsilon", optFloat, "kd_eps=", "1e-6");
1849        RegisterOption("VssTree.ct_div_ci", optFloat, "kd_ctdivci=", "1.0");
1850        RegisterOption("VssTree.randomize", optBool, "randomize", "false");
1851        RegisterOption("VssTree.splitType", optString, "split=", "queries");
1852        RegisterOption("VssTree.splitUseOnlyDrivingAxis", optBool, "splitdriving=", "false");
1853        RegisterOption("VssTree.useRss", optBool, "rss=", "false");
1854        RegisterOption("VssTree.numberOfEndPointDomains", optInt, "endpoints=", "10000");
1855
1856        RegisterOption("VssTree.minSize", optFloat, "minsize=", "0.001");
1857
1858        RegisterOption("VssTree.maxTotalMemory", optFloat, "mem=", "60.0");
1859        RegisterOption("VssTree.maxStaticMemory", optFloat, "statmem=", "8.0");
1860
1861        RegisterOption("VssTree.queryType", optString, "qtype=", "static");
1862
1863       
1864       
1865        RegisterOption("VssTree.queryPosWeight", optFloat, "qposweight=", "0.0");
1866        RegisterOption("VssTree.useRefDirSplits", optBool, "refdir=", "false");
1867        RegisterOption("VssTree.refDirAngle", optFloat, "refangle=", "10");
1868        RegisterOption("VssTree.refDirBoxMaxSize", optFloat, "refboxsize=", "0.1");
1869        RegisterOption("VssTree.accessTimeThreshold", optInt, "accesstime=", "1000");
1870        RegisterOption("VssTree.minCollapseDepth", optInt, "colldepth=", "4");
1871
1872        RegisterOption("VssTree.interleaveDirSplits", optBool, "interleavedirsplits", "true");
1873        RegisterOption("VssTree.dirSplitDepth", optInt, "dirsplidepth=", "10");
1874
1875
1876        RegisterOption("RssPreprocessor.initialSamples",
1877                                                                        optInt,
1878                                                                        "rss_initial_samples=",
1879                                                                        "100000");
1880
1881        RegisterOption("RssPreprocessor.vssSamples",
1882                                        optInt,
1883                                        "rss_vss_samples=",
1884                                        "1000000");
1885
1886        RegisterOption("RssPreprocessor.vssSamplesPerPass",
1887                                        optInt,
1888                                        "rss_vss_samples_per_pass=",
1889                                        "1000");
1890
1891        RegisterOption("RssPreprocessor.samplesPerPass",
1892                                        optInt,
1893                                        "rss_samples_per_pass=",
1894                                        "100000");
1895
1896        RegisterOption("RssPreprocessor.useImportanceSampling",
1897                                        optBool,
1898                                        "rss_use_importance",
1899                                        "true");
1900
1901        RegisterOption("RssPreprocessor.useRssTree",
1902                                        optBool,
1903                                        "rss_use_rss_tree",
1904                                        "true");
1905
1906        RegisterOption("RssPreprocessor.objectBasedSampling",
1907                                        optBool,
1908                                        "rss_object_based_sampling",
1909                                        "true");
1910
1911        RegisterOption("RssPreprocessor.directionalSampling",
1912                                        optBool,
1913                                        "rss_directional_sampling",
1914                                        "false");
1915
1916        RegisterOption("RssTree.hybridDepth", optInt, "hybrid_depth=", "10");
1917        RegisterOption("RssTree.maxDepth", optInt, "kd_depth=", "12");
1918        RegisterOption("RssTree.minPvs", optInt, "kd_minpvs=", "1");
1919        RegisterOption("RssTree.minRays", optInt, "kd_minrays=", "10");
1920        RegisterOption("RssTree.maxCostRatio", optFloat, "maxcost=", "0.95");
1921        RegisterOption("RssTree.maxRayContribution", optFloat, "maxraycontrib=", "0.5");
1922
1923        RegisterOption("RssTree.epsilon", optFloat, "kd_eps=", "1e-6");
1924        RegisterOption("RssTree.ct_div_ci", optFloat, "kd_ctdivci=", "1.0");
1925        RegisterOption("RssTree.randomize", optBool, "randomize=", "false");
1926        RegisterOption("RssTree.splitType", optString, "rss_split=", "queries");
1927        RegisterOption("RssTree.splitUseOnlyDrivingAxis", optBool, "splitdriving=", "false");
1928
1929        RegisterOption("RssTree.numberOfEndPointDomains", optInt, "endpoints=", "10000");
1930
1931        RegisterOption("RssTree.minSize", optFloat, "minsize=", "0.001");
1932
1933        RegisterOption("RssTree.maxTotalMemory", optFloat, "mem=", "60.0");
1934        RegisterOption("RssTree.maxStaticMemory", optFloat, "statmem=", "8.0");
1935
1936        RegisterOption("RssTree.queryType", optString, "qtype=", "static");
1937
1938        RegisterOption("RssTree.queryPosWeight", optFloat, "qposweight=", "0.0");
1939        RegisterOption("RssTree.useRefDirSplits", optBool, "refdir", "false");
1940        RegisterOption("RssTree.refDirAngle", optFloat, "refangle=", "10");
1941        RegisterOption("RssTree.refDirBoxMaxSize", optFloat, "refboxsize=", "0.1");
1942        RegisterOption("RssTree.accessTimeThreshold", optInt, "accesstime=", "1000");
1943        RegisterOption("RssTree.minCollapseDepth", optInt, "colldepth=", "4");
1944
1945        RegisterOption("RssTree.interleaveDirSplits", optBool, "interleavedirsplits=", "true");
1946        RegisterOption("RssTree.dirSplitDepth", optInt, "dirsplidepth=", "10");
1947        RegisterOption("RssTree.importanceBasedCost", optBool, "importance_based_cost=", "true");
1948        RegisterOption("RssTree.maxRays", optInt, "rss_max_rays=", "2000000");
1949
1950        RegisterOption("RssTree.perObjectTree", optBool, "rss_per_object_tree", "false");
1951
1952        RegisterOption("RssPreprocessor.Export.pvs", optBool, "rss_export_pvs=", "false");
1953        RegisterOption("RssPreprocessor.Export.rssTree", optBool, "rss_export_rss_tree=", "false");
1954        RegisterOption("RssPreprocessor.Export.rays", optBool, "rss_export_rays=", "false");
1955        RegisterOption("RssPreprocessor.Export.numRays", optInt, "rss_export_num_rays=", "5000");
1956        RegisterOption("RssPreprocessor.useViewcells", optBool, "rss_use_viewcells=", "false");
1957        RegisterOption("RssPreprocessor.updateSubdivision",
1958                                   optBool,
1959                                   "rss_update_subdivision=",
1960                                   "false");
1961
1962
1963/************************************************************************************/
1964/*                      Rss preprocessor related options                            */
1965/************************************************************************************/
1966
1967
1968        RegisterOption("RssPreprocessor.loadInitialSamples",
1969                                        optBool,
1970                                        "vss_load_loadInitialSamples=",
1971                                        "false");
1972
1973        RegisterOption("RssPreprocessor.storeInitialSamples",
1974                                        optBool,
1975                                        "vss_store_storeInitialSamples=",
1976                                        "false");
1977
1978
1979/************************************************************************************/
1980/*                 View space partition BSP tree related options                    */
1981/************************************************************************************/
1982
1983        RegisterOption("VspBspTree.Termination.minGlobalCostRatio",
1984                                        optFloat,
1985                                        "vsp_bsp_term_min_global_cost_ratio=",
1986                                        "0.0001");
1987
1988        RegisterOption("VspBspTree.useSplitCostQueue",
1989                optBool,
1990                "vsp_bsp_use_split_cost_queue=",
1991                "true");
1992
1993        RegisterOption("VspBspTree.Termination.globalCostMissTolerance",
1994                                        optInt,
1995                                        "vsp_bsp_term_global_cost_miss_tolerance=",
1996                                        "4");
1997
1998        RegisterOption("VspBspTree.Termination.minPolygons",
1999                                        optInt,
2000                                        "vsp_bsp_term_min_polygons=",
2001                                        "-1");
2002
2003        RegisterOption("VspBspTree.Termination.minPvs",
2004                                        optInt,
2005                                        "vsp_bsp_term_min_pvs=",
2006                                        "20");
2007
2008        RegisterOption("VspBspTree.Termination.minProbability",
2009                                        optFloat,
2010                                        "vsp_bsp_term_min_probability=",
2011                                        "0.001");
2012
2013        RegisterOption("VspBspTree.subdivisionStats",
2014                                        optString,
2015                                        "vsp_bsp_subdivision_stats=",
2016                                        "vspBspSubdivisionStats.log");
2017
2018        RegisterOption("VspBspTree.Termination.maxRayContribution",
2019                                        optFloat,
2020                                        "vsp_bsp_term_ray_contribution=",
2021                                        "2");
2022
2023        RegisterOption("VspBspTree.Termination.minAccRayLenght",
2024                                        optFloat,
2025                                        "vsp_bsp_term_min_acc_ray_length=",
2026                                        "50");
2027
2028        RegisterOption("VspBspTree.Termination.minRays",
2029                                        optInt,
2030                                        "vsp_bsp_term_min_rays=",
2031                                        "-1");
2032
2033        RegisterOption("VspBspTree.Termination.ct_div_ci",
2034                                        optFloat,
2035                                        "vsp_bsp_term_ct_div_ci=",
2036                                        "0.0");
2037
2038        RegisterOption("VspBspTree.Termination.maxDepth",
2039                                        optInt,
2040                                        "vsp_bsp_term_max_depth=",
2041                                        "50");
2042
2043        RegisterOption("VspBspTree.Termination.AxisAligned.maxCostRatio",
2044                optFloat,
2045                "vsp_bsp_term_axis_aligned_max_cost_ratio=",
2046                "1.5");
2047
2048        RegisterOption("VspBspTree.useCostHeuristics",
2049                optBool,
2050                "vsp_bsp_use_cost_heuristics=",
2051                "false");
2052
2053        RegisterOption("VspBspTree.Termination.maxViewCells",
2054                optInt,
2055                "vsp_bsp_term_max_view_cells=",
2056                "10000");
2057
2058        RegisterOption("VspBspTree.Termination.maxCostRatio",
2059                optFloat,
2060                "vsp_bsp_term_max_cost_ratio=",
2061                "1.5");
2062
2063        RegisterOption("VspBspTree.Termination.missTolerance",
2064                optInt,
2065                "vsp_bsp_term_miss_tolerance=",
2066                "4");
2067
2068        RegisterOption("VspBspTree.splitPlaneStrategy",
2069                                        optInt,
2070                                        "vsp_bsp_split_method=",
2071                                        "1026");
2072
2073        RegisterOption("VspBspTree.maxPolyCandidates",
2074                                        optInt,
2075                                        "vsp_bsp_max_poly_candidates=",
2076                                        "20");
2077
2078        RegisterOption("VspBspTree.maxRayCandidates",
2079                                        optInt,
2080                                        "vsp_bsp_max_plane_candidates=",
2081                                        "20");
2082
2083        RegisterOption("VspBspTree.maxTests",
2084                                        optInt,
2085                                        "vsp_bsp_max_tests=",
2086                                        "5000");
2087
2088        RegisterOption("VspBspTree.Construction.samples",
2089                                        optInt,
2090                                        "vsp_bsp_construction_samples=",
2091                                        "100000");
2092
2093        RegisterOption("VspBspTree.Construction.minBand",
2094                                        optFloat,
2095                                        "vsp_bsp_construction_min_band=",
2096                                        "0.01");
2097
2098        RegisterOption("VspBspTree.Construction.maxBand",
2099                                        optFloat,
2100                                        "vsp_bsp_construction_max_band=",
2101                                        "0.99");
2102
2103        RegisterOption("VspBspTree.Construction.useDrivingAxisForMaxCost",
2104                                        optBool,
2105                                        "vsp_bsp_construction_use_drivingaxis_for_maxcost=",
2106                                        "false");
2107
2108        RegisterOption("VspBspTree.Construction.epsilon",
2109                                        optFloat,
2110                                        "vsp_bsp_construction_epsilon=",
2111                                        "0.002");
2112
2113        RegisterOption("VspBspTree.Visualization.exportSplits",
2114                                        optBool,
2115                                        "vsp_bsp_visualization.export_splits",
2116                                        "false");
2117
2118        RegisterOption("VspBspTree.splitUseOnlyDrivingAxis",
2119                                        optBool,
2120                                        "vsp_bsp_split_only_driving_axis=",
2121                                        "false");
2122
2123        RegisterOption("VspBspTree.usePolygonSplitIfAvailable",
2124                                        optBool,
2125                    "vsp_bsp_usePolygonSplitIfAvailable=",
2126                                        "false");
2127
2128        RegisterOption("VspBspTree.Termination.AxisAligned.minRays",
2129                        optInt,
2130                        "bsp_term_axis_aligned_min_rays=",
2131                        "0");
2132       
2133        RegisterOption("VspBspTree.Termination.AxisAligned.maxRayContribution",
2134                        optFloat,
2135                        "bsp_term_axis_aligned_min_rays=",
2136                        "2");
2137
2138        RegisterOption("VspBspTree.Factor.leastRaySplits",
2139                                        optFloat,
2140                                        "vsp_bsp_factor_least_ray_splits=",
2141                                        "1.0");
2142
2143        RegisterOption("VspBspTree.Factor.balancedRays",
2144                                        optFloat,
2145                                        "vsp_bsp_factor_balanced_rays=",
2146                                        "1.0");
2147
2148        RegisterOption("VspBspTree.Factor.pvs",
2149                                        optFloat,
2150                                        "vsp_bsp_factor_pvs=",
2151                                        "1.0");
2152       
2153        RegisterOption("VspBspTree.Construction.renderCostWeight",
2154                        optFloat,
2155                        "vsp_bsp_post_process_render_cost_weight=",
2156                        "1.0");
2157
2158        RegisterOption("VspBspTree.Construction.renderCostDecreaseWeight",
2159                        optFloat,
2160                        "vsp_bsp_construction_render_cost_decrease_weight=",
2161                        "0.99");
2162
2163        RegisterOption("VspBspTree.Construction.randomize",
2164                optBool,
2165                "vsp_bsp_construction_randomize=",
2166                "false");
2167
2168        RegisterOption("VspBspTree.simulateOctree",
2169                optBool,
2170                "vsp_bsp_simulate_octree=",
2171                "false");
2172
2173        RegisterOption("VspBspTree.nodePriorityQueueType",
2174                optInt,
2175                "vsp_bsp_node_queue_type=",
2176                "0");
2177
2178        RegisterOption("VspBspTree.useRandomAxis",
2179                optBool,
2180                "-vsp_bsp_use_random_axis=",
2181                "false");
2182
2183        RegisterOption("VspBspTree.maxTotalMemory",
2184                optFloat,
2185                "vsp_bsp_max_total_mem=",
2186                "60.0");
2187
2188        RegisterOption("VspBspTree.maxStaticMemory",
2189                optFloat,
2190                "vsp_bsp_max_static_mem=",
2191                "8.0");
2192
2193
2194
2195/***************************************************************************/
2196/*                 View space partition tree related options               */
2197/***************************************************************************/
2198
2199       
2200        RegisterOption("VspTree.Construction.samples",
2201                                        optInt,
2202                                        "vsp_construction_samples=",
2203                                        "10000");
2204
2205        RegisterOption("VspTree.Construction.renderCostDecreaseWeight",
2206                                optFloat,
2207                                "vsp_construction_render_cost_decrease_weight=",
2208                                "0.99");
2209
2210        RegisterOption("VspTree.Termination.maxDepth",
2211                                        optInt,
2212                                        "vsp_term_max_depth=",
2213                                        "100");
2214
2215        RegisterOption("VspTree.Termination.minRays",
2216                                        optInt,
2217                                        "vsp_term_min_rays=",
2218                                        "-1");
2219
2220
2221        RegisterOption("VspTree.Termination.minPvs",
2222                                        optInt,
2223                                        "vsp_term_min_pvs=",
2224                                        "20");
2225
2226        RegisterOption("VspTree.Termination.minProbability",
2227                                        optFloat,
2228                                        "vsp_term_min_probability=",
2229                                        "0.0000001");
2230
2231        RegisterOption("VspTree.Termination.maxRayContribution",
2232                                optFloat,
2233                                "vsp_term_ray_contribution=",
2234                                "0.9");
2235       
2236        RegisterOption("VspTree.Termination.maxCostRatio",
2237                                optFloat,
2238                                "vsp_term_max_cost_ratio=",
2239                                "1.5");
2240       
2241        RegisterOption("VspTree.Termination.maxViewCells",
2242                                optInt,
2243                                "vsp_term_max_view_cells=",
2244                                "10000");
2245
2246       
2247        RegisterOption("VspTree.Termination.missTolerance",
2248                                optInt,
2249                                "vsp_term_miss_tolerance=",
2250                                "4");
2251
2252        RegisterOption("VspTree.Termination.minGlobalCostRatio",
2253                                        optFloat,
2254                                        "vsp_term_min_global_cost_ratio=",
2255                                        "0.0001");
2256
2257        RegisterOption("VspTree.Termination.globalCostMissTolerance",
2258                                        optInt,
2259                                        "vsp_term_global_cost_miss_tolerance=",
2260                                        "4");
2261
2262        RegisterOption("VspTree.Termination.ct_div_ci",
2263                                        optFloat,
2264                                        "vsp_term_ct_div_ci=",
2265                                        "0.0");
2266
2267        RegisterOption("VspTree.Construction.epsilon",
2268                                        optFloat,
2269                                        "vsp_construction_epsilon=",
2270                                        "0.002");
2271
2272        RegisterOption("VspTree.splitUseOnlyDrivingAxis",
2273                                        optBool,
2274                                        "vsp_split_only_driving_axis=",
2275                                        "false");
2276
2277        RegisterOption("VspTree.maxStaticMemory",
2278                                        optFloat,
2279                                        "vsp_max_static_mem=",
2280                                        "8.0");
2281
2282        RegisterOption("VspTree.useCostHeuristics",
2283                                        optBool,
2284                                        "vsp_use_cost_heuristics=",
2285                                        "false");
2286
2287        RegisterOption("VspTree.simulateOctree",
2288                                        optBool,
2289                                        "vsp_simulate_octree=",
2290                                        "false");
2291
2292        RegisterOption("VspTree.Construction.randomize",
2293                                        optBool,
2294                                        "vsp_construction_randomize=",
2295                                        "false");
2296
2297        RegisterOption("VspTree.subdivisionStats",
2298                                        optString,
2299                                        "vsp_subdivision_stats=",
2300                                        "vspSubdivisionStats.log");
2301
2302        RegisterOption("VspTree.Construction.minBand",
2303                                        optFloat,
2304                                        "vsp_construction_min_band=",
2305                                        "0.01");
2306
2307        RegisterOption("VspTree.Construction.maxBand",
2308                                        optFloat,
2309                                        "vsp_construction_max_band=",
2310                                        "0.99");
2311       
2312        RegisterOption("VspTree.maxTests",
2313                                        optInt,
2314                                        "vsp_max_tests=",
2315                                        "5000");
2316
2317
2318
2319/***********************************************************************/
2320/*           Object space partition tree related options               */
2321/***********************************************************************/
2322
2323
2324        RegisterOption("OspTree.Construction.randomize",
2325                                        optBool,
2326                                        "osp_construction_randomize=",
2327                                        "false");
2328
2329        RegisterOption("OspTree.Termination.maxDepth",
2330                                        optInt,
2331                                        "osp_term_max_depth=",
2332                                        "30");
2333       
2334        RegisterOption("OspTree.Termination.maxLeaves",
2335                                        optInt,
2336                                        "osp_term_max_leaves=",
2337                                        "1000");
2338       
2339        RegisterOption("OspTree.Termination.minObjects",
2340                                        optInt,
2341                                        "osp_term_min_objects=",
2342                                        "1");
2343
2344        RegisterOption("OspTree.Termination.minProbability",
2345                                        optFloat,
2346                                        "osp_term_min_objects=",
2347                                        "0.00001");
2348
2349        RegisterOption("OspTree.Termination.missTolerance",
2350                                        optInt,
2351                                        "osp_term_miss_tolerance=",
2352                                        "8");
2353
2354        RegisterOption("OspTree.Termination.maxCostRatio",
2355                                        optFloat,
2356                                        "osp_term_max_cost_ratio=",
2357                                        "0.99");
2358
2359        RegisterOption("OspTree.Termination.minGlobalCostRatio",
2360                                        optFloat,
2361                                        "osp_term_min_global_cost_ratio=",
2362                                        "0.00001");
2363
2364        RegisterOption("OspTree.Termination.globalCostMissTolerance",
2365                                        optInt,
2366                                        "osp_term_global_cost_miss_tolerance=",
2367                                        "4");
2368
2369        RegisterOption("OspTree.Termination.ct_div_ci",
2370                                        optFloat,
2371                                        "osp_term_ct_div_ci=",
2372                                        "0");
2373       
2374        RegisterOption("OspTree.Construction.epsilon",
2375                                   optFloat,
2376                                   "osp_construction_epsilon=",
2377                                   "0.00001");
2378       
2379        // if only the driving axis is used for axis aligned split
2380        RegisterOption("OspTree.splitUseOnlyDrivingAxis",
2381                                   optBool,
2382                                   "osp_split_only_driving_axis=",
2383                                   "false");
2384
2385        RegisterOption("OspTree.maxStaticMemory",
2386                                   optFloat,
2387                                   "osp_max_static_mem=",
2388                                   "8.0");
2389
2390        RegisterOption("OspTree.useCostHeuristics",
2391                                   optBool,
2392                                   "osp_use_cost_heuristics=",
2393                                   "true");
2394
2395        RegisterOption("OspTree.subdivisionStats",
2396                                        optString,
2397                                        "osp_subdivision_stats=",
2398                                        "ospSubdivisionStats.log");
2399
2400        RegisterOption("OspTree.Construction.splitBorder",
2401                                        optFloat,
2402                                        "osp_construction_split_border=",
2403                                        "0.01");
2404
2405        RegisterOption("OspTree.Construction.renderCostDecreaseWeight",
2406                                   optFloat,
2407                                   "osp_construction_render_cost_decrease_weight=",
2408                                   "0.99");
2409
2410
2411
2412/**********************************************************************/
2413/*            Bounding Volume Hierarchy related options               */
2414/**********************************************************************/
2415
2416        RegisterOption("BvHierarchy.Construction.randomize",
2417                                        optBool,
2418                                        "bvh_construction_randomize=",
2419                                        "false");
2420
2421        RegisterOption("BvHierarchy.Termination.maxDepth",
2422                                        optInt,
2423                                        "bvh_term_max_depth=",
2424                                        "30");
2425       
2426        RegisterOption("BvHierarchy.Termination.maxLeaves",
2427                                        optInt,
2428                                        "bvh_term_max_leaves=",
2429                                        "1000");
2430       
2431        RegisterOption("BvHierarchy.Termination.minObjects",
2432                                        optInt,
2433                                        "bvh_term_min_objects=",
2434                                        "1");
2435
2436        RegisterOption("BvHierarchy.Termination.minProbability",
2437                                        optFloat,
2438                                        "bvh_term_min_objects=",
2439                                        "0.0000001");
2440
2441        RegisterOption("BvHierarchy.Termination.minRays",
2442                                        optInt,
2443                                        "bvh_term_min_rays=",
2444                                        "0");
2445
2446        RegisterOption("BvHierarchy.Termination.missTolerance",
2447                                        optInt,
2448                                        "osp_term_miss_tolerance=",
2449                                        "8");
2450
2451        RegisterOption("BvHierarchy.Termination.maxCostRatio",
2452                                        optFloat,
2453                                        "bvh_term_max_cost_ratio=",
2454                                        "0.99");
2455
2456        RegisterOption("BvHierarchy.Termination.minGlobalCostRatio",
2457                                        optFloat,
2458                                        "bvh_term_min_global_cost_ratio=",
2459                                        "0.00001");
2460
2461        RegisterOption("BvHierarchy.Termination.globalCostMissTolerance",
2462                                        optInt,
2463                                        "bvh_term_global_cost_miss_tolerance=",
2464                                        "4");
2465
2466        // if only the driving axis is used for axis aligned split
2467        RegisterOption("BvHierarchy.splitUseOnlyDrivingAxis",
2468                                   optBool,
2469                                   "bvh_split_only_driving_axis=",
2470                                   "false");
2471
2472        RegisterOption("BvHierarchy.maxStaticMemory",
2473                                   optFloat,
2474                                   "bvh_max_static_mem=",
2475                                   "8.0");
2476
2477        RegisterOption("BvHierarchy.useCostHeuristics",
2478                                   optBool,
2479                                   "bvh_use_cost_heuristics=",
2480                                   "true");
2481       
2482        RegisterOption("BvHierarchy.useSah",
2483                                   optBool,
2484                                   "bvh_use_sah=",
2485                                   "false");
2486
2487        RegisterOption("BvHierarchy.subdivisionStats",
2488                                        optString,
2489                                        "bvh_subdivision_stats=",
2490                                        "bvhSubdivisionStats.log");
2491
2492        RegisterOption("BvHierarchy.Construction.renderCostDecreaseWeight",
2493                                   optFloat,
2494                                   "bvh_construction_render_cost_decrease_weight=",
2495                                   "0.99");
2496       
2497        RegisterOption("BvHierarchy.Construction.useGlobalSorting",
2498                                        optBool,
2499                                        "bvh_construction_use_global_sorting=",
2500                                        "true");
2501       
2502        RegisterOption("BvHierarchy.Construction.useInitialSubdivision",
2503                                        optBool,
2504                                        "bvh_construction_use_initial_subdivision=",
2505                                        "false");
2506
2507        RegisterOption("BvHierarchy.Construction.Initial.minObjects",
2508                                        optInt,
2509                                        "bvh_construction_use_initial_min_objects=",
2510                                        "100000");
2511
2512        RegisterOption("BvHierarchy.Construction.Initial.minArea",
2513                                        optFloat,
2514                                        "bvh_construction_use_initial_min_area=",
2515                                        "0.0001");
2516
2517        RegisterOption("BvHierarchy.Construction.Initial.maxAreaRatio",
2518                                        optFloat,
2519                                        "bvh_construction_use_initial_max_area_ratio=",
2520                                        "0.9");
2521
2522        RegisterOption("BvHierarchy.minRaysForVisibility",
2523                                        optInt,
2524                                        "bvh_min_rays_for_vis=",
2525                                        "0");
2526
2527        RegisterOption("BvHierarchy.maxTests",
2528                                        optInt,
2529                                        "bvh_max_tests=",
2530                                        "50000");
2531
2532
2533        /*******************************************************************/
2534        /*               Hierarchy Manager related options                 */
2535        /*******************************************************************/
2536
2537        RegisterOption("Hierarchy.Construction.samples",
2538                                        optInt,
2539                                        "hierarchy_construction_samples=",
2540                                        "100000");
2541
2542        RegisterOption("Hierarchy.subdivisionStats",
2543                           optString,
2544                                   "hierarchy_subdivision_stats=",
2545                                   "hierarchySubdivisionStats.log");
2546
2547        RegisterOption("Hierarchy.type",
2548                           optString,
2549                                   "hierarchy_type=",
2550                                   "bvh");
2551
2552        RegisterOption("Hierarchy.Termination.minGlobalCostRatio",
2553                                        optFloat,
2554                                        "hierarchy_term_min_global_cost_ratio=",
2555                                        "0.000000001");
2556
2557        RegisterOption("Hierarchy.Termination.globalCostMissTolerance",
2558                                        optInt,
2559                                        "hierarchy_term_global_cost_miss_tolerance=",
2560                                        "4");
2561
2562        RegisterOption("Hierarchy.Termination.maxLeaves",
2563                                        optInt,
2564                                        "hierarchy_term_max_leaves=",
2565                                        "1000");
2566       
2567        RegisterOption("Hierarchy.Construction.type",
2568                                        optInt,
2569                                        "hierarchy_construction_type=",
2570                                        "0");
2571
2572        RegisterOption("Hierarchy.Construction.minDepthForOsp",
2573                                        optInt,
2574                                        "hierarchy_construction_min_depth_for_osp=",
2575                                        "-1");
2576
2577        RegisterOption("Hierarchy.Construction.startWithObjectSpace",
2578                                        optBool,
2579                                        "hierarchy_construction_start_with_osp=",
2580                                        "true");
2581
2582        RegisterOption("Hierarchy.Construction.considerMemory",
2583                                        optBool,
2584                                        "hierarchy_construction_consider_memory=",
2585                                        "true");
2586
2587        RegisterOption("Hierarchy.Construction.repairQueue",
2588                                        optBool,
2589                                        "hierarchy_construction_repair_queue=",
2590                                        "true");
2591
2592        RegisterOption("Hierarchy.Construction.minDepthForVsp",
2593                                        optInt,
2594                                        "hierarchy_construction_min_depth_for_vsp=",
2595                                        "-1");
2596
2597        RegisterOption("Hierarchy.Termination.maxMemory",
2598                                        optFloat,
2599                                        "hierarchy_term_max_memory=",
2600                                        "1");
2601
2602        RegisterOption("Hierarchy.Termination.memoryConst",
2603                                        optFloat,
2604                                        "hierarchy_term_memory_const=",
2605                                        "1.0");
2606
2607        RegisterOption("Hierarchy.Construction.useMultiLevel",
2608                                        optBool,
2609                                        "hierarchy_construction_multilevel=",
2610                                        "false");
2611
2612        RegisterOption("Hierarchy.Construction.levels",
2613                                        optInt,
2614                                        "hierarchy_construction_levels=",
2615                                        "4");
2616
2617        RegisterOption("Hierarchy.Construction.maxRepairs",
2618                                        optInt,
2619                                        "hierarchy_construction_max_repairs=",
2620                                        "1000");
2621
2622        RegisterOption("Hierarchy.Construction.minStepsOfSameType",
2623                                        optInt,
2624                                        "hierarchy_construction_min_steps_same_type=",
2625                                        "200");
2626
2627        RegisterOption("Hierarchy.Construction.maxStepsOfSameType",
2628                                        optInt,
2629                                        "hierarchy_construction_max_steps_same_type=",
2630                                        "700");
2631
2632        RegisterOption("Hierarchy.Construction.recomputeSplitPlaneOnRepair",
2633                                        optBool,
2634                                        "hierarchy_construction_recompute_split_on_repair=",
2635                                        "true");
2636
2637        /////////////////////////////////////////////////////////////////
2638}
2639
2640void
2641Environment::SetStaticOptions()
2642{
2643 
2644  // get Global option values
2645  GetRealValue("Limits.threshold", Limits::Threshold);
2646  GetRealValue("Limits.small", Limits::Small);
2647  GetRealValue("Limits.infinity", Limits::Infinity);
2648
2649
2650}
2651
2652bool
2653Environment::Parse(const int argc, char **argv, bool useExePath)
2654{
2655  bool result = true;
2656  // Read the names of the scene, environment and output files
2657  ReadCmdlineParams(argc, argv, "");
2658
2659  char *envFilename = new char[128];
2660
2661  char filename[64];
2662
2663  // Get the environment file name
2664  if (!GetParam(' ', 0, filename)) {
2665    // user didn't specified environment file explicitly, so
2666    strcpy(filename, "default.env");
2667  }
2668
2669 
2670  if (useExePath) {
2671    char *path = GetPath(argv[0]);
2672    if (*path != 0)
2673      sprintf(envFilename, "%s/%s", path, filename);
2674    else
2675      strcpy(envFilename, filename);
2676   
2677    delete path;
2678  }
2679  else
2680    strcpy(envFilename, filename);
2681
2682 
2683  // Now it's time to read in environment file.
2684  if (!ReadEnvFile(envFilename)) {
2685    // error - bad input file name specified ?
2686    cerr<<"Error parsing environment file "<<envFilename<<endl;
2687        result = false;
2688  }
2689  delete envFilename;
2690
2691  // Parse the command line; options given on the command line subsume
2692  // stuff specified in the input environment file.
2693  ParseCmdline(argc, argv, 0);
2694
2695  SetStaticOptions();
2696
2697  // Check for request for help
2698  if (CheckForSwitch(argc, argv, '?')) {
2699    PrintUsage(cout);
2700    exit(0);
2701  }
2702 
2703  return true;
2704}
2705
2706}
Note: See TracBrowser for help on using the repository browser.