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

Revision 2124, 73.9 KB checked in by mattausch, 17 years ago (diff)
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
801  char buff[256];
802  envStream.getline(buff, 255);
803  buff[8] = 0;
804  if (strcmp(buff, "CGX_CF10") == 0)
805    return;
806
807  ofstream cStream(filenameCoded);
808  cStream<<"CGX_CF10";
809 
810  // main loop
811  for (;;) {
812    // read in one line
813    envStream.getline(buff, 255);
814    if (!envStream)
815      break;
816    CodeString(buff, 255);
817    cStream<<buff;
818  }
819 
820}
821
822bool
823Environment::ReadEnvFile(const char *envFilename)
824{
825  char buff[MaxStringLength], name[MaxStringLength];
826  char *s, *t;
827  int i, line = 0;
828  bool found;
829  igzstream envStream(envFilename);
830
831  // some error had occured
832  if (envStream.fail()) {
833    cerr << "Error: Can't open file " << envFilename << " for reading (err. "
834         << envStream.rdstate() << ").\n";
835    return false;
836  }
837
838  name[0] = '\0';
839
840//    bool coded;
841//    envStream.getline(buff, 255);
842//    buff[8] = 0;
843//    if (strcmp(buff, "CGX_CF10") == 0)
844//      coded = true;
845//    else {
846//      coded = false;
847//      envStream.Rewind();
848//    }
849 
850  // main loop
851  for (;;) {
852    // read in one line
853    envStream.getline(buff, MaxStringLength-1);
854   
855    if (!envStream)
856      break;
857
858//      if (coded)
859//        DecodeString(buff, 255);
860
861    line++;
862    // get rid of comments
863    s = strchr(buff, '#');
864    if (s != NULL)
865      *s = '\0';
866
867    // get one identifier
868    s = ParseString(buff, name);
869    // parse line
870    while (s != NULL) {
871      // it's a group name - make the full name
872      if (*s == '{') {
873        strcat(name, ".");
874        s++;
875        s = ParseString(s, name);
876        continue;
877      }
878      // end of group
879      if (*s == '}') {
880        if (strlen(name) == 0) {
881          cerr << "Error: unpaired } in " << envFilename << " (line "
882               << line << ").\n";
883          envStream.close();
884          return false;
885        }
886        name[strlen(name) - 1] = '\0';
887        t = strrchr(name, '.');
888        if (t == NULL)
889          name[0] = '\0';
890        else
891          *(t + 1) = '\0';
892        s++;
893        s = ParseString(s, name);
894        continue;
895      }
896      // find variable name in the table
897      found = false;
898      for (i = 0; i < numOptions; i++)
899        if (!strcmp(name, options[i].name)) {
900          found = true;
901          break;
902        }
903      if (!found) {
904        cerr << "Warning: unknown option " << name << " in environment file "
905             << envFilename << " (line " << line << ").\n";
906      } else
907        switch (options[i].type) {
908        case optInt: {
909          strtol(s, &t, 10);
910          if (t == s || (*t != ' ' && *t != '\t' &&
911                         *t != '\0' && *t != '}')) {
912            cerr << "Error: Mismatch in int variable " << name << " in "
913                 << "environment file " << envFilename << " (line "
914                 << line << ").\n";
915            envStream.close();
916            return false;
917          }
918          if (options[i].value != NULL)
919            delete options[i].value;
920          options[i].value = new char[t - s + 1];
921          strncpy(options[i].value, s, t - s);
922          options[i].value[t - s] = '\0';
923          s = t;
924          break;
925        }
926        case optFloat: {
927          strtod(s, &t);
928          if (t == s || (*t != ' ' && *t != '\t' &&
929                         *t != '\0' && *t != '}')) {
930            cerr << "Error: Mismatch in Real variable " << name << " in "
931                 << "environment file " << envFilename << " (line "
932                 << line << ").\n";
933            envStream.close();
934            return false;
935          }
936          if (options[i].value != NULL)
937            delete options[i].value;
938          options[i].value = new char[t - s + 1];
939          strncpy(options[i].value, s, t - s);
940          options[i].value[t - s] = '\0';
941          s = t;
942          break;
943        }
944        case optBool: {
945          t = s;
946          while ((*t >= 'a' && *t <= 'z') ||
947                 (*t >= 'A' && *t <= 'Z') ||
948                 *t == '+' || *t == '-')
949            t++;
950          if (((!strncasecmp(s, "true", t - s)  && t - s == 4) ||
951               (!strncasecmp(s, "false", t - s) && t - s == 5) ||
952               (!strncasecmp(s, "YES", t -s)    && t - s == 3) ||
953               (!strncasecmp(s, "NO", t - s)    && t - s == 2) ||
954               (!strncasecmp(s, "ON", t - s)    && t - s == 2) ||
955               (!strncasecmp(s, "OFF", t - s)   && t - s == 3) ||
956               (t - s == 1 && (*s == '+' || *s == '-'))) &&
957              (*t == ' ' || *t == '\t' || *t == '\0' || *t == '}')) {
958            if (options[i].value != NULL)
959              delete options[i].value;
960            options[i].value = new char[t - s + 1];
961            strncpy(options[i].value, s, t - s);
962            options[i].value[t - s] = '\0';
963            s = t;
964          }
965          else {
966            cerr << "Error: Mismatch in bool variable " << name << " in "
967                 << "environment file " << envFilename << " (line "
968                 << line << ").\n";
969            envStream.close();
970            return false;
971          }
972          break;
973        }
974        case optVector:{
975          strtod(s, &t);
976          if (*t == ' ' || *t == '\t') {
977            while (*t == ' ' || *t == '\t')
978              t++;
979            if (*t != ',')
980              t--;
981          }
982          if (t == s || (*t != ' ' && *t != '\t' && *t != ',')) {
983            cerr << "Error: Mismatch in vector variable " << name << " in "
984                 << "environment file " << envFilename << " (line "
985                 << line << ").\n";
986            envStream.close();
987            return false;
988          }
989          char *u;
990          strtod(t, &u);
991          t = u;
992          if (*t == ' ' || *t == '\t') {
993            while (*t == ' ' || *t == '\t')
994              t++;
995            if (*t != ',')
996              t--;
997          }
998          if (t == s || (*t != ' ' && *t != '\t' && *t != ',')) {
999            cerr << "Error: Mismatch in vector variable " << name << " in "
1000                 << "environment file " << envFilename << " (line "
1001                 << line << ").\n";
1002            envStream.close();
1003            return false;
1004          }
1005          strtod(t, &u);
1006          t = u;
1007          if (t == s || (*t != ' ' && *t != '\t' &&
1008                         *t != '\0' && *t != '}')) {
1009            cerr << "Error: Mismatch in vector variable " << name << " in "
1010                 << "environment file " << envFilename << " (line "
1011                 << line << ").\n";
1012            envStream.close();
1013            return false;
1014          }
1015          if (options[i].value != NULL)
1016            delete options[i].value;
1017          options[i].value = new char[t - s + 1];
1018          strncpy(options[i].value, s, t - s);
1019          options[i].value[t - s] = '\0';
1020          s = t;
1021          break;
1022        }
1023        case optString: {
1024          if (options[i].value != NULL)
1025            delete options[i].value;
1026          options[i].value = new char[strlen(s) + 1];
1027          strcpy(options[i].value, s);
1028          s += strlen(s);
1029          break;
1030        }
1031        default: {
1032          Debug << "Internal error: Unknown type of option.\n" << flush;
1033          exit(1);
1034        }
1035      }
1036      // prepare the variable name for next pass
1037      t = strrchr(name, '.');
1038      if (t == NULL)
1039        name[0] = '\0';
1040      else
1041        *(t + 1) = '\0';
1042      // get next identifier
1043      s = ParseString(s, name);
1044    }
1045  }
1046  envStream.close();
1047  return true;
1048}
1049
1050void
1051Environment::PrintUsage(ostream &s) const
1052{
1053  // Print out all environment variable names
1054  s << "Registered options:\n";
1055  for (int j = 0; j < numOptions; j++)
1056    s << options[j] << "\n";
1057  s << flush;
1058}
1059
1060  /**
1061         Input scene filename. Currently simplified X3D (.x3d), Unigraphics (.dat),
1062         and UNC (.ply) formats are supported.
1063  */
1064
1065Environment::Environment()
1066{
1067  optionalParams = NULL;
1068  paramRows = 0;
1069  numParams = 0;
1070  params = NULL;
1071  maxOptions = 500;
1072
1073 
1074// this is maximal nuber of options.
1075  numOptions = 0;
1076
1077  options = new COption[maxOptions];
1078
1079  if (options == NULL ) {
1080    Debug << "Error: Memory allocation failed.\n";
1081    exit(1);
1082  }
1083 
1084  // register all basic options
1085
1086  RegisterOption("Limits.threshold", optFloat, NULL, "0.01");
1087  RegisterOption("Limits.small", optFloat, NULL, "1e-6");
1088  RegisterOption("Limits.infinity", optFloat, NULL, "1e6");
1089
1090  RegisterOption("Scene.filename",
1091                                 optString,
1092                                 "scene_filename=",
1093                                 "atlanta2.x3d");
1094
1095  RegisterOption("Unigraphics.meshGrouping",
1096                                 optInt,
1097                                 "unigraphics_mesh_grouping=",
1098                                 "0");
1099 
1100   RegisterOption("ObjParser.meshGrouping",
1101                                 optInt,
1102                                 "objparser_mesh_grouping=",
1103                                 "0");
1104
1105  RegisterOption("KdTree.Termination.minCost",
1106                                 optInt,
1107                                 "kd_term_min_cost=",
1108                                 "10");
1109 
1110  RegisterOption("KdTree.Termination.maxNodes",
1111                                 optInt,
1112                                 "kd_term_max_nodes=",
1113                                 "200000");
1114 
1115  RegisterOption("KdTree.Termination.maxDepth",
1116                                 optInt,
1117                                 "kd_term_max_depth=",
1118                                 "20");
1119
1120  RegisterOption("KdTree.Termination.maxCostRatio",
1121                                 optFloat,
1122                                 "kd_term_max_cost_ratio=",
1123                                 "1.5");
1124
1125  RegisterOption("KdTree.Termination.ct_div_ci",
1126                                 optFloat,
1127                                 "kd_term_ct_div_ci=",
1128                                 "1.0");
1129
1130  RegisterOption("KdTree.splitMethod",
1131                                 optString,
1132                                 "kd_split_method=",
1133                                 "spatialMedian");
1134
1135  RegisterOption("KdTree.splitBorder",
1136                 optFloat,
1137                 "kd_split_border=",
1138                 "0.1");
1139
1140  RegisterOption("KdTree.sahUseFaces",
1141                 optBool,
1142                 "kd_sah_use_faces=",
1143                 "true");
1144
1145  RegisterOption("MeshKdTree.Termination.minCost",
1146                 optInt,
1147                 "kd_term_min_cost=",
1148                 "10");
1149 
1150  RegisterOption("MeshKdTree.Termination.maxDepth",
1151                 optInt,
1152                 "kd_term_max_depth=",
1153                 "20");
1154
1155  RegisterOption("MeshKdTree.Termination.maxCostRatio",
1156                 optFloat,
1157                 "kd_term_max_cost_ratio=",
1158                 "1.5");
1159
1160  RegisterOption("MeshKdTree.Termination.ct_div_ci",
1161                 optFloat,
1162                 "kd_term_ct_div_ci=",
1163                 "1.0");
1164
1165  RegisterOption("MeshKdTree.splitMethod",
1166                 optString,
1167                 "kd_split_method=",
1168                 "spatialMedian");
1169
1170  RegisterOption("MeshKdTree.splitBorder",
1171                 optFloat,
1172                 "kd_split_border=",
1173                 "0.1");
1174
1175  RegisterOption("Preprocessor.totalSamples",
1176                                 optInt,
1177                                 "total_samples=",
1178                                 "10000000");
1179
1180  RegisterOption("Preprocessor.totalTime",
1181                                 optInt,
1182                                 "total_time=",
1183                                 "-1");
1184
1185  RegisterOption("Preprocessor.samplesPerPass",
1186                                 optInt,
1187                                 "samples_per_pass=",
1188                                 "100000");
1189 
1190  RegisterOption("Preprocessor.samplesPerEvaluation",
1191                                 optInt,
1192                                 "samples_per_evaluation=",
1193                                 "1000000");
1194
1195  RegisterOption("Preprocessor.useHwGlobalLines",
1196                                 optBool,
1197                                 "preprocessor_use_hw_global_lines=",
1198                                 "false");
1199
1200   RegisterOption("Preprocessor.HwGlobalLines.texHeight",
1201                                  optInt,
1202                                  "preprocessor_hw_global_lines_texheight=",
1203                                  "128");
1204
1205    RegisterOption("Preprocessor.HwGlobalLines.texWidth",
1206                                   optInt,
1207                                   "preprocessor_hw_global_lines_texwidth=",
1208                                   "128");
1209
1210        RegisterOption("Preprocessor.HwGlobalLines.stepSize",
1211                                   optFloat,
1212                                   "preprocessor_hw_global_lines_stepsize=",
1213                                   "0.0001");
1214
1215        RegisterOption("Preprocessor.HwGlobalLines.maxDepth",
1216                                   optInt,
1217                                   "preprocessor_hw_global_lines_max_depth=",
1218                                   "50");
1219
1220        RegisterOption("Preprocessor.HwGlobalLines.sampleReverse",
1221                                   optBool,
1222                                   "preprocessor_hw_global_lines_sample_reverse=",
1223                                   "true");
1224
1225  RegisterOption("RenderSampler.samples",
1226                                 optInt,
1227                                 "render_sampler_samples=",
1228                                 "1000");
1229
1230  RegisterOption("RenderSampler.visibleThreshold",
1231                                 optInt,
1232                                 "render_sampler_visible_threshold=",
1233                                 "0");
1234
1235   RegisterOption("RenderSampler.useOcclusionQueries",
1236                                 optBool,
1237                                 "render_sampler_use_occlusion_queries=",
1238                                 "true");
1239 
1240  RegisterOption("VssPreprocessor.testBeamSampling",
1241                                optBool,
1242                                "vss_beam_sampling=",
1243                                "false");
1244
1245  RegisterOption("VssPreprocessor.useImportanceSampling",
1246                                 optBool,
1247                                 "vss_use_importance=",
1248                                 "true");
1249
1250 
1251   RegisterOption("VssPreprocessor.enlargeViewSpace",
1252                                 optBool,
1253                                 "vss_enlarge_viewspace=",
1254                                 "false");
1255
1256   RegisterOption("VssPreprocessor.loadInitialSamples",
1257          optBool,
1258          "vss_load_loadInitialSamples=",
1259          "false");
1260
1261   RegisterOption("VssPreprocessor.storeInitialSamples",
1262          optBool,
1263          "vss_store_storedInitialSamples=",
1264          "false");
1265 
1266
1267
1268   /*************************************************************************/
1269   /*    Mutation strategy related options                                  */
1270   /*************************************************************************/
1271   
1272   RegisterOption("Mutation.bufferSize",
1273                                  optInt,
1274                                  "mutation_buffer_size=",
1275                                  "500000");
1276
1277   RegisterOption("Mutation.radiusOrigin",
1278                                  optFloat,
1279                                  "mutation_radius_origin=",
1280                                  "0.5");
1281
1282   RegisterOption("Mutation.radiusTermination",
1283                                  optFloat,
1284                                  "mutation_radius_termination=",
1285                                  "0.5");
1286
1287   RegisterOption("Mutation.useReverseSamples",
1288                                  optBool,
1289                                  "mutation_use_reverse_samples",
1290                                  "true");
1291
1292   RegisterOption("Mutation.reverseSamplesDistance",
1293                                  optFloat,
1294                                  "mutation_reverse_samples_distance=",
1295                                  "3.0");
1296
1297   RegisterOption("Mutation.useSilhouetteSamples",
1298                                  optBool,
1299                                  "mutation_use_silhouette_samples",
1300                                  "true");
1301
1302   RegisterOption("Mutation.silhouetteSearchSteps",
1303                                  optInt,
1304                                  "mutation_silhouette_search_steps=",
1305                                  "3");
1306
1307   RegisterOption("Mutation.silhouetteProb",
1308                                  optFloat,
1309                                  "mutation_silhouette_prob=",
1310                                  "0.8");
1311
1312   RegisterOption("Mutation.usePassImportance",
1313                                  optBool,
1314                                  "mutation_use_pass_importance",
1315                                  "true");
1316
1317   RegisterOption("Mutation.useUnsuccCountImportance",
1318                                  optBool,
1319                                  "mutation_use_unsucc_count_importance",
1320                                  "false");
1321   
1322   
1323   /*************************************************************************/
1324   /*                       GvsPrerpocessor related options                 */
1325   /*************************************************************************/
1326
1327
1328   RegisterOption("GvsPreprocessor.totalSamples",
1329                 optInt,
1330                 "gvs_total_samples=",
1331                 "1000000");
1332   
1333   RegisterOption("GvsPreprocessor.gvsSamplesPerPass",
1334                 optInt,
1335                 "gvs_samples_per_pass=",
1336                 "100000");
1337   
1338   RegisterOption("GvsPreprocessor.initialSamples",
1339                 optInt,
1340                 "gvs_initial_samples=",
1341                 "256");
1342
1343   RegisterOption("GvsPreprocessor.epsilon",
1344                 optFloat,
1345                 "gvs_epsilon=",
1346                 "0.00001");
1347
1348    RegisterOption("GvsPreprocessor.threshold",
1349                 optFloat,
1350                 "gvs_threshold=",
1351                 "1.5");
1352
1353        RegisterOption("GvsPreprocessor.perViewCell",
1354                optBool,
1355                "gvs_per_viewcell=",
1356                "false");
1357
1358        RegisterOption("GvsPreprocessor.stats",
1359                optString,
1360                "gvs_stats=",
1361                "gvsStats.log");
1362
1363        RegisterOption("GvsPreprocessor.minContribution",
1364                 optInt,
1365                 "gvs_min_contribution=",
1366                 "50");
1367
1368         RegisterOption("GvsPreprocessor.maxViewCells",
1369                 optInt,
1370                 "gvs_max_viewcells=",
1371                 "5");
1372
1373
1374  /**********************************************************************/
1375  /*                     View cells related options                     */
1376  /**********************************************************************/
1377
1378
1379        RegisterOption("ViewCells.type",
1380                                        optString,
1381                                        "view_cells_type=",
1382                                        "vspBspTree");
1383
1384        RegisterOption("ViewCells.samplingType",
1385                                        optString,
1386                                        "view_cells_sampling_type=",
1387                                        "box");
1388
1389        RegisterOption("ViewCells.mergeStats",
1390                                        optString,
1391                                        "view_cells_merge_stats=",
1392                                        "mergeStats.log");
1393
1394        RegisterOption("ViewCells.Evaluation.statsPrefix",
1395                                        optString,
1396                                        "view_cells_evaluation_stats_prefix=",
1397                                        "viewCells");
1398
1399        RegisterOption("ViewCells.Evaluation.histogram",
1400                                        optBool,
1401                                        "view_cells_evaluation_histogram=",
1402                                        "false");
1403
1404        RegisterOption("ViewCells.Evaluation.histoStepSize",
1405                                        optInt,
1406                                        "view_cells_evaluation_histo_step_size=",
1407                                        "5000");
1408
1409        RegisterOption("ViewCells.Evaluation.histoMem",
1410                                        optInt,
1411                                        "view_cells_evaluation_histo_mem=",
1412                                        "50");
1413
1414        RegisterOption("ViewCells.renderCostEvaluationType",
1415                                        optString,
1416                                        "view_cells_render_cost_evaluation=",
1417                                        "perobject");
1418
1419        RegisterOption("ViewCells.active",
1420                                        optInt,
1421                                        "view_cells_active=",
1422                                        "1000");
1423
1424        RegisterOption("ViewCells.Construction.samples",
1425                                        optInt,
1426                                        "view_cells_construction_samples=",
1427                                        "0");
1428
1429        RegisterOption("ViewCells.Construction.samplesPerPass",
1430                                        optInt,
1431                                        "view_cells_construction_samples_per_pass=",
1432                                        "500000");
1433
1434        RegisterOption("ViewCells.PostProcess.samples",
1435                                        optInt,
1436                                        "view_cells_post_process_samples=",
1437                                        "0");
1438
1439        RegisterOption("ViewCells.Visualization.samples",
1440                                        optInt,
1441                                        "view_cells_visualization_samples=",
1442                                        "0");
1443
1444        RegisterOption("ViewCells.Visualization.maxOutput",
1445                                        optInt,
1446                                        "view_cells_visualization_max_output=",
1447                                        "20");
1448
1449        RegisterOption("ViewCells.Filter.maxSize",
1450                                        optInt,
1451                                        "view_cells_filter_max_size=",
1452                                        "4");
1453
1454        RegisterOption("ViewCells.Filter.width",
1455                                        optFloat,
1456                                        "view_cells_filter_width=",
1457                                        "1.0");
1458
1459        RegisterOption("ViewCells.loadFromFile",
1460                                        optBool,
1461                                        "view_cells_load_from_file=",
1462                                        "false");
1463
1464        RegisterOption("ViewCells.PostProcess.refine",
1465                                        optBool,
1466                                        "view_cells_refine=",
1467                                        "false");
1468
1469        RegisterOption("ViewCells.PostProcess.compress",
1470                                        optBool,
1471                                        "view_cells_post_process_compress=",
1472                                        "false");
1473
1474        RegisterOption("ViewCells.Evaluation.samples",
1475                                        optInt,
1476                                        "view_cells_evaluation_samples=",
1477                                        "8000000");
1478
1479        RegisterOption("ViewCells.Evaluation.samplingType",
1480                                        optString,
1481                                        "view_cells_evaluation_sampling_type=",
1482                                        "box");
1483
1484        RegisterOption("ViewCells.Evaluation.samplesPerPass",
1485                                        optInt,
1486                                        "view_cells_evaluation_samples_per_pass=",
1487                                        "300000");
1488
1489        RegisterOption("ViewCells.Evaluation.samplesForStats",
1490                                        optInt,
1491                                        "view_cells_evaluation_samples_for_stats=",
1492                                        "300000");
1493
1494        RegisterOption("ViewCells.exportToFile",
1495                                        optBool,
1496                                        "view_cells_export_to_file=",
1497                                        "false");
1498
1499        RegisterOption("ViewCells.exportPvs",
1500                                        optBool,
1501                                        "view_cells_export_pvs=",
1502                                        "false");
1503
1504        RegisterOption("ViewCells.exportBboxesForPvs",
1505                                        optBool,
1506                                        "view_cells_export_bounding_boxes=",
1507                                        "true");
1508       
1509        RegisterOption("ViewCells.boxesFilename",
1510                                        optString,
1511                                        "view_cells_boxes_filename=",
1512                                        "boxes.out");
1513
1514        RegisterOption("ViewCells.evaluateViewCells",
1515                                        optBool,
1516                                        "view_cells_evaluate=",
1517                                        "false");
1518
1519        RegisterOption("ViewCells.maxViewCells",
1520                                        optInt,
1521                                        "view_cells_max_view_cells=",
1522                                        "0");
1523
1524        RegisterOption("ViewCells.Evaluation.stepSize",
1525                                        optInt,
1526                                        "view_cells_evaluation_step_size=",
1527                                        "100");
1528
1529        RegisterOption("ViewCells.maxPvsRatio",
1530                                        optFloat,
1531                                        "view_cells_max_pvs_ratio=",
1532                                        "0.1");
1533
1534        RegisterOption("ViewCells.filename",
1535                                        optString,
1536                                        "view_cells_filename=",
1537                                        "atlanta_viewcells_large.x3d");
1538
1539        RegisterOption("ViewCells.height",
1540                                        optFloat,
1541                                        "view_cells_height=",
1542                                        "5.0");
1543
1544        RegisterOption("ViewCells.Visualization.colorCode",
1545                                        optString,
1546                                        "view_cells_visualization_color_code=",
1547                                        "PVS");
1548
1549        RegisterOption("ViewCells.Visualization.clipPlanePos",
1550                                        optFloat,
1551                                        "view_cells_visualization_clip_plane_pos=",
1552                                        "0.35");
1553       
1554        RegisterOption("ViewCells.Visualization.exportGeometry",
1555                                        optBool,
1556                                        "view_cells_visualization_export_geometry=",
1557                                        "false");
1558
1559        RegisterOption("ViewCells.Visualization.exportRays",
1560                                        optBool,
1561                                        "view_cells_visualization_export_rays=",
1562                                        "false");
1563
1564        RegisterOption("ViewCells.processOnlyValidViewCells",
1565                                        optBool,
1566                                        "view_cells_process_only_valid_view_cells",
1567                                        "false");
1568
1569        RegisterOption("ViewCells.PostProcess.maxCostRatio",
1570                        optFloat,
1571                        "view_cells_post_process_max_cost_ratio=",
1572                        "0.9");
1573       
1574        RegisterOption("ViewCells.PostProcess.renderCostWeight",
1575                        optFloat,
1576                        "view_cells_post_process_render_cost_weight",
1577                        "0.5");
1578       
1579        RegisterOption("ViewCells.PostProcess.avgCostMaxDeviation",
1580                        optFloat,
1581                        "view_cells_avgcost_max_deviations",
1582                        "0.5");
1583
1584        RegisterOption("ViewCells.PostProcess.maxMergesPerPass",
1585                optInt,
1586                "view_cells_post_process_max_merges_per_pass=",
1587                "500");
1588
1589        RegisterOption("ViewCells.PostProcess.minViewCells",
1590                optInt,
1591                "view_cells_post_process_min_view_cells=",
1592                "1000");
1593
1594        RegisterOption("ViewCells.PostProcess.useRaysForMerge",
1595                optBool,
1596                "view_cells_post_process_use_rays_for_merge=",
1597                "false");
1598       
1599        RegisterOption("ViewCells.PostProcess.merge",
1600                optBool,
1601                "view_cells_post_process_merge=",
1602                "true");
1603
1604        RegisterOption("ViewCells.Visualization.exportMergedViewCells",
1605                optBool,
1606                "view_cells_viz_export_merged_viewcells=",
1607                "false");
1608
1609        RegisterOption("ViewCells.maxStaticMemory",
1610                optFloat,
1611                "view_cells_max_static_mem=",
1612                "8.0");
1613
1614        RegisterOption("ViewCells.Visualization.useClipPlane",
1615                optBool,
1616                "view_cells_viz_use_clip_plane=",
1617                "false");
1618       
1619        RegisterOption("ViewCells.showVisualization",
1620                optBool,
1621                "view_cells_show_visualization=",
1622                "false");
1623
1624        RegisterOption("ViewCells.Visualization.clipPlaneAxis",
1625                optInt,
1626                "view_cells_viz_clip_plane_axis=",
1627                "0");
1628
1629        RegisterOption("ViewCells.loadGeometry",
1630                optBool,
1631                "view_cells_load_geometry=",
1632                "false");
1633       
1634        RegisterOption("ViewCells.geometryFilename",
1635                optString,
1636                "view_cells_geometry_filename=",
1637                "viewCellsGeometry.x3d");
1638
1639        RegisterOption("ViewCells.useBaseTrianglesAsGeometry",
1640                optBool,
1641                "view_cells_use_base_triangles_as_geometry=",
1642                "false");
1643
1644        RegisterOption("ViewCells.compressObjects",
1645                optBool,
1646                "view_cells_compress_objects=",
1647                "false");
1648       
1649        RegisterOption("ViewCells.useKdPvs",
1650                optBool,
1651                "view_cells_use_kd_pvs",
1652                "false");
1653
1654        RegisterOption("ViewCells.useKdPvsAfterFiltering",
1655                                   optBool,
1656                                   "af_use_kd_pvs",
1657                                   "false");
1658
1659        RegisterOption("ViewCells.importRandomViewCells",
1660                                   optBool,
1661                                   "view_cells_import_random_viewcells=",
1662                                   "false");
1663
1664        RegisterOption("ViewCells.exportRandomViewCells",
1665                                   optBool,
1666                                   "view_cells_export_random_viewcells=",
1667                                   "false");
1668
1669
1670
1671        /****************************************************************************/
1672        /*                     Render simulation related options                    */
1673        /****************************************************************************/
1674
1675
1676        RegisterOption("Simulation.objRenderCost",
1677                        optFloat,
1678                        "simulation_obj_render_cost",
1679                        "1.0");
1680
1681        RegisterOption("Simulation.vcOverhead",
1682                        optFloat,
1683                        "simulation_vc_overhead",
1684                        "0.05");
1685
1686        RegisterOption("Simulation.moveSpeed",
1687                        optFloat,
1688                        "simulation_moveSpeed",
1689                        "1.0");
1690
1691
1692
1693        /******************************************************************/
1694        /*                    Bsp tree related options                    */
1695        /******************************************************************/
1696
1697
1698        RegisterOption("BspTree.Construction.input",
1699                optString,
1700                "bsp_construction_input=",
1701                "fromViewCells");
1702       
1703        RegisterOption("BspTree.subdivisionStats",
1704                                        optString,
1705                                        "bsp_subdivision_stats=",
1706                                        "bspSubdivisionStats.log");
1707
1708        RegisterOption("BspTree.Construction.samples",
1709                optInt,
1710                "bsp_construction_samples=",
1711                "100000");
1712
1713        RegisterOption("BspTree.Construction.epsilon",
1714                optFloat,
1715                "bsp_construction_epsilon=",
1716                "0.002");
1717
1718        RegisterOption("BspTree.Termination.minPolygons",
1719                        optInt,
1720                        "bsp_term_min_polygons=",
1721                        "5");
1722
1723        RegisterOption("BspTree.Termination.minPvs",
1724                        optInt,
1725                        "bsp_term_min_pvs=",
1726                        "20");
1727
1728        RegisterOption("BspTree.Termination.minProbability",
1729                        optFloat,
1730                        "bsp_term_min_probability=",
1731                        "0.001");
1732
1733        RegisterOption("BspTree.Termination.maxRayContribution",
1734                        optFloat,
1735                        "bsp_term_ray_contribution=",
1736                        "0.005");
1737
1738        RegisterOption("BspTree.Termination.minAccRayLenght",
1739                        optFloat,
1740                        "bsp_term_min_acc_ray_length=",
1741                        "50");
1742
1743        RegisterOption("BspTree.Termination.minRays",
1744                        optInt,
1745                        "bsp_term_min_rays=",
1746                        "-1");
1747
1748        RegisterOption("BspTree.Termination.ct_div_ci",
1749                        optFloat,
1750                        "bsp_term_ct_div_ci=",
1751                        "0.0");
1752
1753        RegisterOption("BspTree.Termination.maxDepth",
1754                        optInt,
1755                        "bsp_term_max_depth=",
1756                        "100");
1757
1758        RegisterOption("BspTree.Termination.maxCostRatio",
1759                        optFloat,
1760                        "bsp_term_axis_aligned_max_cost_ratio=",
1761                        "1.5");
1762
1763        RegisterOption("BspTree.Termination.AxisAligned.ct_div_ci",
1764                        optFloat,
1765                        "bsp_term_axis_aligned_ct_div_ci=",
1766                        "0.5");
1767
1768        RegisterOption("BspTree.AxisAligned.splitBorder",
1769                        optFloat,
1770                        "bsp__axis_aligned_split_border=",
1771                        "0.1");
1772
1773        RegisterOption("BspTree.Termination.AxisAligned.minPolys",
1774                        optInt,
1775                        "bsp_term_axis_aligned_max_polygons=",
1776                        "50");
1777
1778        RegisterOption("BspTree.Termination.AxisAligned.minObjects",
1779                        optInt,
1780                        "bsp_term_min_objects=",
1781                        "3");
1782
1783        RegisterOption("BspTree.Termination.AxisAligned.minRays",
1784                        optInt,
1785                        "bsp_term_axis_aligned_min_rays=",
1786                        "-1");
1787
1788        RegisterOption("BspTree.splitPlaneStrategy",
1789                        optString,
1790                        "bsp_split_method=",
1791                        "leastSplits");
1792
1793        RegisterOption("BspTree.maxPolyCandidates",
1794                optInt,
1795                "bsp_max_poly_candidates=",
1796                "20");
1797
1798        RegisterOption("BspTree.maxRayCandidates",
1799                optInt,
1800                "bsp_max_plane_candidates=",
1801                "20");
1802
1803        RegisterOption("BspTree.maxTests",
1804                optInt,
1805                "bsp_max_tests=",
1806                "5000");
1807
1808        RegisterOption("BspTree.Termination.maxViewCells",
1809                optInt,
1810                "bsp_max_view_cells=",
1811                "5000");
1812
1813        RegisterOption("BspTree.Visualization.exportSplits",
1814                optBool,
1815                "bsp_visualization.export_splits=",
1816                "false");
1817
1818        RegisterOption("BspTree.Factor.verticalSplits", optFloat, "bsp_factor_vertical=", "1.0");
1819        RegisterOption("BspTree.Factor.largestPolyArea", optFloat, "bsp_factor_largest_poly=", "1.0");
1820        RegisterOption("BspTree.Factor.blockedRays", optFloat, "bsp_factor_blocked=", "1.0");
1821        RegisterOption("BspTree.Factor.leastSplits", optFloat, "bsp_factor_least_splits=", "1.0");
1822        RegisterOption("BspTree.Factor.balancedPolys", optFloat, "bsp_factor_balanced_polys=", "1.0");
1823        RegisterOption("BspTree.Factor.balancedViewCells", optFloat, "bsp_factor_balanced_view_cells=", "1.0");
1824        RegisterOption("BspTree.Factor.leastRaySplits", optFloat, "bsp_factor_least_ray_splits=", "1.0");
1825        RegisterOption("BspTree.Factor.balancedRays", optFloat, "bsp_factor_balanced_rays=", "1.0");
1826        RegisterOption("BspTree.Factor.pvs", optFloat, "bsp_factor_pvs=", "1.0");
1827
1828
1829
1830
1831        /**********************************************************************/
1832        /*                     Preprocessor related options                   */
1833        /**********************************************************************/
1834
1835        RegisterOption("Preprocessor.type",
1836                                        optString,
1837                                        "preprocessor=",
1838                                        "sampling");
1839
1840        RegisterOption("Preprocessor.stats",
1841                                        optString,
1842                                        "preprocessor_stats=",
1843                                        "stats.log");
1844
1845        RegisterOption("Preprocessor.samplesFilename",
1846                                        optString,
1847                                        "preprocessor_samples_filename=",
1848                                        "rays.out");
1849
1850        RegisterOption("Preprocessor.loadMeshes",
1851                                        optBool,
1852                                        "preprocessor_load_meshes",
1853                                        "true");
1854
1855        RegisterOption("Preprocessor.evaluateFilter",
1856                                   optBool,
1857                                   "preprocessor_evaluate_filter",
1858                                   "false");
1859
1860        RegisterOption("Preprocessor.delayVisibilityComputation",
1861                                   optBool,
1862                                   "preprocessor_delay_computation",
1863                                   "true");
1864
1865        RegisterOption("Preprocessor.pvsRenderErrorSamples",
1866                                   optInt,
1867                                   "preprocessor_pvs_rendererror_samples=",
1868                                   "10000");
1869       
1870        RegisterOption("Preprocessor.useGlRenderer",
1871                                        optBool,
1872                                        "preprocessor_use_gl_renderer",
1873                                        "false");
1874
1875        RegisterOption("Preprocessor.useGlDebugger",
1876                                        optBool,
1877                                        "preprocessor_use_gl_debugger",
1878                                        "false");
1879
1880        RegisterOption("Preprocessor.detectEmptyViewSpace",
1881                                   optBool,
1882                                   "preprocessor_detect_empty_viewspace",
1883                                   "false");
1884       
1885        RegisterOption("Preprocessor.quitOnFinish",
1886                                   optBool,
1887                                   "preprocessor_quit_on_finish",
1888                                   "true");
1889
1890        RegisterOption("Preprocessor.computeVisibility",
1891                                   optBool,
1892                                   "preprocessor_compute_visibility",
1893                                   "true");
1894
1895        RegisterOption("Preprocessor.exportVisibility",
1896                                   optBool,
1897                                   "preprocessor_export_visibility",
1898                                   "true");
1899
1900        RegisterOption("Preprocessor.visibilityFile",
1901                                   optString,
1902                                   "preprocessor_visibility_file=",
1903                                   "visibility.xml");
1904
1905        RegisterOption("Preprocessor.applyVisibilityFilter",
1906                                   optBool,
1907                                   "preprocessor_apply_filter",
1908                                   "false");
1909       
1910        RegisterOption("Preprocessor.evaluatePixelError",
1911                                   optBool,
1912                                   "preprocessor_evaluatePixelError",
1913                                   "false");
1914
1915        RegisterOption("Preprocessor.applyVisibilitySpatialFilter",
1916                                   optBool,
1917                                   "preprocessor_apply_spatial_filter",
1918                                   "false");
1919
1920        RegisterOption("Preprocessor.visibilityFilterWidth",
1921                                   optFloat,
1922                                   "preprocessor_visibility_filter_width=",
1923                                   "0.02");
1924
1925        RegisterOption("Preprocessor.histogram.maxValue",
1926                                        optInt,
1927                                        "preprocessor_histogram_max_value=",
1928                                        "1000");
1929
1930        RegisterOption("Preprocessor.rayCastMethod",
1931                                        optInt,
1932                                        "preprocessor_ray_cast_method=",
1933                                        "0");
1934
1935        RegisterOption("Preprocessor.histogram.intervals",
1936                                        optInt,
1937                                        "preprocessor_histogram_intervals=",
1938                                        "20");
1939
1940        RegisterOption("Preprocessor.histogram.file",
1941                                   optString,
1942                                   "preprocessor_histogram_file=",
1943                                   "histogram.log");
1944
1945        RegisterOption("Preprocessor.exportKdTree",
1946                                        optBool,
1947                                        "preprocessor_export_kd_tree=",
1948                                        "false");
1949
1950        RegisterOption("Preprocessor.loadKdTree",
1951                                        optBool,
1952                                        "preprocessor_load_kd_tree=",
1953                                        "false");
1954
1955        RegisterOption("Preprocessor.kdTreeFilename",
1956                                        optString,
1957                                        "preprocessor_kd_tree_filename=",
1958                                        "vienna_kdtree.bin.gz");
1959
1960        RegisterOption("Preprocessor.exportObj",
1961                                        optBool,
1962                                        "preprocessor_export_obj=",
1963                                        "false");
1964
1965   RegisterOption("Preprocessor.useViewSpaceBox",
1966                                        optBool,
1967                                        "preprocessor_use_viewspace_box=",
1968                                        "false");   
1969
1970   RegisterOption("Preprocessor.Export.rays", optBool, "export_rays", "false");
1971   RegisterOption("Preprocessor.Export.animation", optBool, "export_animation", "false");
1972   RegisterOption("Preprocessor.Export.numRays", optInt, "export_num_rays=", "5000");
1973   
1974        /*************************************************************************/
1975        /*             VSS Preprocessor cells related options                    */
1976        /*************************************************************************/
1977
1978        RegisterOption("VssTree.maxDepth", optInt, "kd_depth=", "12");
1979        RegisterOption("VssTree.minPvs", optInt, "kd_minpvs=", "1");
1980        RegisterOption("VssTree.minRays", optInt, "kd_minrays=", "10");
1981        RegisterOption("VssTree.maxCostRatio", optFloat, "maxcost=", "0.95");
1982        RegisterOption("VssTree.maxRayContribution", optFloat, "maxraycontrib=", "0.5");
1983
1984        RegisterOption("VssTree.epsilon", optFloat, "kd_eps=", "1e-6");
1985        RegisterOption("VssTree.ct_div_ci", optFloat, "kd_ctdivci=", "1.0");
1986        RegisterOption("VssTree.randomize", optBool, "randomize", "false");
1987        RegisterOption("VssTree.splitType", optString, "split=", "queries");
1988        RegisterOption("VssTree.splitUseOnlyDrivingAxis", optBool, "splitdriving=", "false");
1989        RegisterOption("VssTree.useRss", optBool, "rss=", "false");
1990        RegisterOption("VssTree.numberOfEndPointDomains", optInt, "endpoints=", "10000");
1991
1992        RegisterOption("VssTree.minSize", optFloat, "minsize=", "0.001");
1993
1994        RegisterOption("VssTree.maxTotalMemory", optFloat, "mem=", "60.0");
1995        RegisterOption("VssTree.maxStaticMemory", optFloat, "statmem=", "8.0");
1996
1997        RegisterOption("VssTree.queryType", optString, "qtype=", "static");
1998
1999       
2000       
2001        RegisterOption("VssTree.queryPosWeight", optFloat, "qposweight=", "0.0");
2002        RegisterOption("VssTree.useRefDirSplits", optBool, "refdir=", "false");
2003        RegisterOption("VssTree.refDirAngle", optFloat, "refangle=", "10");
2004        RegisterOption("VssTree.refDirBoxMaxSize", optFloat, "refboxsize=", "0.1");
2005        RegisterOption("VssTree.accessTimeThreshold", optInt, "accesstime=", "1000");
2006        RegisterOption("VssTree.minCollapseDepth", optInt, "colldepth=", "4");
2007
2008        RegisterOption("VssTree.interleaveDirSplits", optBool, "interleavedirsplits", "true");
2009        RegisterOption("VssTree.dirSplitDepth", optInt, "dirsplidepth=", "10");
2010
2011
2012//      RegisterOption("RssPreprocessor.initialSamples",
2013//                                                                      optInt,
2014//                                                                      "rss_initial_samples=",
2015//                                                                      "100000");
2016
2017//      RegisterOption("RssPreprocessor.vssSamples",
2018//                                      optInt,
2019//                                      "rss_vss_samples=",
2020//                                      "1000000");
2021
2022//      RegisterOption("RssPreprocessor.vssSamplesPerPass",
2023//                                      optInt,
2024//                                      "rss_vss_samples_per_pass=",
2025//                                      "1000");
2026
2027//      RegisterOption("RssPreprocessor.samplesPerPass",
2028//                                      optInt,
2029//                                      "rss_samples_per_pass=",
2030//                                      "100000");
2031
2032        RegisterOption("RssPreprocessor.useImportanceSampling",
2033                                        optBool,
2034                                        "rss_use_importance",
2035                                        "true");
2036
2037        RegisterOption("RssPreprocessor.useRssTree",
2038                                        optBool,
2039                                        "rss_use_rss_tree",
2040                                        "true");
2041
2042        RegisterOption("RssPreprocessor.objectBasedSampling",
2043                                        optBool,
2044                                        "rss_object_based_sampling",
2045                                        "true");
2046
2047        RegisterOption("RssPreprocessor.directionalSampling",
2048                                        optBool,
2049                                        "rss_directional_sampling",
2050                                        "false");
2051
2052        RegisterOption("RssPreprocessor.distributions",
2053                                   optString,
2054                                   "rss_distributions=",
2055                                   "rss+spatial+object");
2056       
2057        RegisterOption("RssTree.hybridDepth", optInt, "hybrid_depth=", "10");
2058        RegisterOption("RssTree.maxDepth", optInt, "kd_depth=", "12");
2059        RegisterOption("RssTree.minPvs", optInt, "kd_minpvs=", "1");
2060        RegisterOption("RssTree.minRays", optInt, "kd_minrays=", "10");
2061        RegisterOption("RssTree.maxCostRatio", optFloat, "maxcost=", "0.95");
2062        RegisterOption("RssTree.maxRayContribution", optFloat, "maxraycontrib=", "0.5");
2063
2064        RegisterOption("RssTree.epsilon", optFloat, "kd_eps=", "1e-6");
2065        RegisterOption("RssTree.ct_div_ci", optFloat, "kd_ctdivci=", "1.0");
2066        RegisterOption("RssTree.randomize", optBool, "randomize=", "false");
2067        RegisterOption("RssTree.splitType", optString, "rss_split=", "queries");
2068        RegisterOption("RssTree.splitUseOnlyDrivingAxis", optBool, "splitdriving=", "false");
2069
2070        RegisterOption("RssTree.numberOfEndPointDomains", optInt, "endpoints=", "10000");
2071
2072        RegisterOption("RssTree.minSize", optFloat, "minsize=", "0.001");
2073
2074        RegisterOption("RssTree.maxTotalMemory", optFloat, "mem=", "60.0");
2075        RegisterOption("RssTree.maxStaticMemory", optFloat, "statmem=", "8.0");
2076
2077        RegisterOption("RssTree.queryType", optString, "qtype=", "static");
2078
2079        RegisterOption("RssTree.queryPosWeight", optFloat, "qposweight=", "0.0");
2080        RegisterOption("RssTree.useRefDirSplits", optBool, "refdir", "false");
2081        RegisterOption("RssTree.refDirAngle", optFloat, "refangle=", "10");
2082        RegisterOption("RssTree.refDirBoxMaxSize", optFloat, "refboxsize=", "0.1");
2083        RegisterOption("RssTree.accessTimeThreshold", optInt, "accesstime=", "1000");
2084        RegisterOption("RssTree.minCollapseDepth", optInt, "colldepth=", "4");
2085
2086        RegisterOption("RssTree.interleaveDirSplits", optBool, "interleavedirsplits=", "true");
2087        RegisterOption("RssTree.dirSplitDepth", optInt, "dirsplidepth=", "10");
2088        RegisterOption("RssTree.importanceBasedCost", optBool, "importance_based_cost=", "true");
2089        RegisterOption("RssTree.maxRays", optInt, "rss_max_rays=", "2000000");
2090
2091        RegisterOption("RssTree.perObjectTree", optBool, "rss_per_object_tree", "false");
2092
2093        RegisterOption("RssPreprocessor.Export.pvs", optBool, "rss_export_pvs=", "false");
2094        RegisterOption("RssPreprocessor.Export.rssTree", optBool, "rss_export_rss_tree=", "false");
2095
2096        RegisterOption("RssPreprocessor.useViewcells", optBool, "rss_use_viewcells=", "false");
2097        RegisterOption("RssPreprocessor.updateSubdivision",
2098                                   optBool,
2099                                   "rss_update_subdivision=",
2100                                   "false");
2101
2102
2103/************************************************************************************/
2104/*                      Rss preprocessor related options                            */
2105/************************************************************************************/
2106
2107
2108        RegisterOption("RssPreprocessor.loadInitialSamples",
2109                                        optBool,
2110                                        "vss_load_loadInitialSamples=",
2111                                        "false");
2112
2113        RegisterOption("RssPreprocessor.storeInitialSamples",
2114                                        optBool,
2115                                        "vss_store_storeInitialSamples=",
2116                                        "false");
2117
2118
2119/************************************************************************************/
2120/*                 View space partition BSP tree related options                    */
2121/************************************************************************************/
2122
2123        RegisterOption("VspBspTree.Termination.minGlobalCostRatio",
2124                                        optFloat,
2125                                        "vsp_bsp_term_min_global_cost_ratio=",
2126                                        "0.0001");
2127
2128        RegisterOption("VspBspTree.useSplitCostQueue",
2129                                        optBool,
2130                                        "vsp_bsp_use_split_cost_queue=",
2131                                        "true");
2132
2133        RegisterOption("VspBspTree.Termination.globalCostMissTolerance",
2134                                        optInt,
2135                                        "vsp_bsp_term_global_cost_miss_tolerance=",
2136                                        "4");
2137
2138        RegisterOption("VspBspTree.Termination.minPolygons",
2139                                        optInt,
2140                                        "vsp_bsp_term_min_polygons=",
2141                                        "-1");
2142
2143        RegisterOption("VspBspTree.Termination.minPvs",
2144                                        optInt,
2145                                        "vsp_bsp_term_min_pvs=",
2146                                        "20");
2147
2148        RegisterOption("VspBspTree.Termination.minProbability",
2149                                        optFloat,
2150                                        "vsp_bsp_term_min_probability=",
2151                                        "0.001");
2152
2153        RegisterOption("VspBspTree.subdivisionStats",
2154                                        optString,
2155                                        "vsp_bsp_subdivision_stats=",
2156                                        "vspBspSubdivisionStats.log");
2157
2158        RegisterOption("VspBspTree.Termination.maxRayContribution",
2159                                        optFloat,
2160                                        "vsp_bsp_term_ray_contribution=",
2161                                        "2");
2162
2163        RegisterOption("VspBspTree.Termination.minAccRayLenght",
2164                                        optFloat,
2165                                        "vsp_bsp_term_min_acc_ray_length=",
2166                                        "50");
2167
2168        RegisterOption("VspBspTree.Termination.minRays",
2169                                        optInt,
2170                                        "vsp_bsp_term_min_rays=",
2171                                        "-1");
2172
2173        RegisterOption("VspBspTree.Termination.ct_div_ci",
2174                                        optFloat,
2175                                        "vsp_bsp_term_ct_div_ci=",
2176                                        "0.0");
2177
2178        RegisterOption("VspBspTree.Termination.maxDepth",
2179                                        optInt,
2180                                        "vsp_bsp_term_max_depth=",
2181                                        "50");
2182
2183        RegisterOption("VspBspTree.Termination.AxisAligned.maxCostRatio",
2184                                        optFloat,
2185                                        "vsp_bsp_term_axis_aligned_max_cost_ratio=",
2186                                        "1.5");
2187
2188        RegisterOption("VspBspTree.useCostHeuristics",
2189                                        optBool,
2190                                        "vsp_bsp_use_cost_heuristics=",
2191                                        "false");
2192
2193        RegisterOption("VspBspTree.Termination.maxViewCells",
2194                                        optInt,
2195                                        "vsp_bsp_term_max_view_cells=",
2196                                        "10000");
2197
2198        RegisterOption("VspBspTree.Termination.maxCostRatio",
2199                                        optFloat,
2200                                        "vsp_bsp_term_max_cost_ratio=",
2201                                        "1.5");
2202
2203        RegisterOption("VspBspTree.Termination.missTolerance",
2204                                        optInt,
2205                                        "vsp_bsp_term_miss_tolerance=",
2206                                        "4");
2207
2208        RegisterOption("VspBspTree.splitPlaneStrategy",
2209                                        optInt,
2210                                        "vsp_bsp_split_method=",
2211                                        "1026");
2212
2213        RegisterOption("VspBspTree.maxPolyCandidates",
2214                                        optInt,
2215                                        "vsp_bsp_max_poly_candidates=",
2216                                        "20");
2217
2218        RegisterOption("VspBspTree.maxRayCandidates",
2219                                        optInt,
2220                                        "vsp_bsp_max_plane_candidates=",
2221                                        "20");
2222
2223        RegisterOption("VspBspTree.maxTests",
2224                                        optInt,
2225                                        "vsp_bsp_max_tests=",
2226                                        "5000");
2227
2228        RegisterOption("VspBspTree.Construction.samples",
2229                                        optInt,
2230                                        "vsp_bsp_construction_samples=",
2231                                        "100000");
2232
2233        RegisterOption("VspBspTree.Construction.minBand",
2234                                        optFloat,
2235                                        "vsp_bsp_construction_min_band=",
2236                                        "0.01");
2237
2238        RegisterOption("VspBspTree.Construction.maxBand",
2239                                        optFloat,
2240                                        "vsp_bsp_construction_max_band=",
2241                                        "0.99");
2242
2243        RegisterOption("VspBspTree.Construction.useDrivingAxisForMaxCost",
2244                                        optBool,
2245                                        "vsp_bsp_construction_use_drivingaxis_for_maxcost=",
2246                                        "false");
2247
2248        RegisterOption("VspBspTree.Construction.epsilon",
2249                                        optFloat,
2250                                        "vsp_bsp_construction_epsilon=",
2251                                        "0.002");
2252
2253        RegisterOption("VspBspTree.Visualization.exportSplits",
2254                                        optBool,
2255                                        "vsp_bsp_visualization.export_splits",
2256                                        "false");
2257
2258        RegisterOption("VspBspTree.splitUseOnlyDrivingAxis",
2259                                        optBool,
2260                                        "vsp_bsp_split_only_driving_axis=",
2261                                        "false");
2262
2263        RegisterOption("VspBspTree.usePolygonSplitIfAvailable",
2264                                        optBool,
2265                    "vsp_bsp_usePolygonSplitIfAvailable=",
2266                                        "false");
2267
2268        RegisterOption("VspBspTree.Termination.AxisAligned.minRays",
2269                        optInt,
2270                        "bsp_term_axis_aligned_min_rays=",
2271                        "0");
2272       
2273        RegisterOption("VspBspTree.Termination.AxisAligned.maxRayContribution",
2274                        optFloat,
2275                        "bsp_term_axis_aligned_min_rays=",
2276                        "2");
2277
2278        RegisterOption("VspBspTree.Factor.leastRaySplits",
2279                                        optFloat,
2280                                        "vsp_bsp_factor_least_ray_splits=",
2281                                        "1.0");
2282
2283        RegisterOption("VspBspTree.Factor.balancedRays",
2284                                        optFloat,
2285                                        "vsp_bsp_factor_balanced_rays=",
2286                                        "1.0");
2287
2288        RegisterOption("VspBspTree.Factor.pvs",
2289                                        optFloat,
2290                                        "vsp_bsp_factor_pvs=",
2291                                        "1.0");
2292       
2293        RegisterOption("VspBspTree.Construction.renderCostWeight",
2294                        optFloat,
2295                        "vsp_bsp_post_process_render_cost_weight=",
2296                        "1.0");
2297
2298        RegisterOption("VspBspTree.Construction.renderCostDecreaseWeight",
2299                        optFloat,
2300                        "vsp_bsp_construction_render_cost_decrease_weight=",
2301                        "0.99");
2302
2303        RegisterOption("VspBspTree.Construction.randomize",
2304                optBool,
2305                "vsp_bsp_construction_randomize=",
2306                "false");
2307
2308        RegisterOption("VspBspTree.simulateOctree",
2309                optBool,
2310                "vsp_bsp_simulate_octree=",
2311                "false");
2312
2313        RegisterOption("VspBspTree.nodePriorityQueueType",
2314                optInt,
2315                "vsp_bsp_node_queue_type=",
2316                "0");
2317
2318        RegisterOption("VspBspTree.useRandomAxis",
2319                optBool,
2320                "-vsp_bsp_use_random_axis=",
2321                "false");
2322
2323        RegisterOption("VspBspTree.maxTotalMemory",
2324                optFloat,
2325                "vsp_bsp_max_total_mem=",
2326                "60.0");
2327
2328        RegisterOption("VspBspTree.maxStaticMemory",
2329                optFloat,
2330                "vsp_bsp_max_static_mem=",
2331                "8.0");
2332
2333
2334
2335/***************************************************************************/
2336/*                 View space partition tree related options               */
2337/***************************************************************************/
2338
2339       
2340        RegisterOption("VspTree.Construction.samples",
2341                                        optInt,
2342                                        "vsp_construction_samples=",
2343                                        "10000");
2344
2345        RegisterOption("VspTree.Construction.renderCostDecreaseWeight",
2346                                optFloat,
2347                                "vsp_construction_render_cost_decrease_weight=",
2348                                "0.99");
2349
2350        RegisterOption("VspTree.Termination.maxDepth",
2351                                        optInt,
2352                                        "vsp_term_max_depth=",
2353                                        "100");
2354
2355        RegisterOption("VspTree.Termination.minRays",
2356                                        optInt,
2357                                        "vsp_term_min_rays=",
2358                                        "-1");
2359
2360
2361        RegisterOption("VspTree.Termination.minPvs",
2362                                        optInt,
2363                                        "vsp_term_min_pvs=",
2364                                        "20");
2365
2366        RegisterOption("VspTree.Termination.minProbability",
2367                                        optFloat,
2368                                        "vsp_term_min_probability=",
2369                                        "0.0000001");
2370
2371        RegisterOption("VspTree.Termination.maxRayContribution",
2372                                optFloat,
2373                                "vsp_term_ray_contribution=",
2374                                "0.9");
2375       
2376        RegisterOption("VspTree.Termination.maxCostRatio",
2377                                optFloat,
2378                                "vsp_term_max_cost_ratio=",
2379                                "1.5");
2380       
2381        RegisterOption("VspTree.Termination.maxViewCells",
2382                                optInt,
2383                                "vsp_term_max_view_cells=",
2384                                "10000");
2385
2386       
2387        RegisterOption("VspTree.Termination.missTolerance",
2388                                optInt,
2389                                "vsp_term_miss_tolerance=",
2390                                "4");
2391
2392        RegisterOption("VspTree.Termination.minGlobalCostRatio",
2393                                        optFloat,
2394                                        "vsp_term_min_global_cost_ratio=",
2395                                        "0.0001");
2396
2397        RegisterOption("VspTree.Termination.globalCostMissTolerance",
2398                                        optInt,
2399                                        "vsp_term_global_cost_miss_tolerance=",
2400                                        "4");
2401
2402        RegisterOption("VspTree.Termination.ct_div_ci",
2403                                        optFloat,
2404                                        "vsp_term_ct_div_ci=",
2405                                        "0.0");
2406
2407        RegisterOption("VspTree.Construction.epsilon",
2408                                        optFloat,
2409                                        "vsp_construction_epsilon=",
2410                                        "0.002");
2411
2412        RegisterOption("VspTree.splitUseOnlyDrivingAxis",
2413                                        optBool,
2414                                        "vsp_split_only_driving_axis=",
2415                                        "false");
2416
2417        RegisterOption("VspTree.maxStaticMemory",
2418                                        optFloat,
2419                                        "vsp_max_static_mem=",
2420                                        "8.0");
2421
2422        RegisterOption("VspTree.useCostHeuristics",
2423                                        optBool,
2424                                        "vsp_use_cost_heuristics=",
2425                                        "false");
2426
2427        RegisterOption("VspTree.simulateOctree",
2428                                        optBool,
2429                                        "vsp_simulate_octree=",
2430                                        "false");
2431
2432        RegisterOption("VspTree.Construction.randomize",
2433                                        optBool,
2434                                        "vsp_construction_randomize=",
2435                                        "false");
2436
2437        RegisterOption("VspTree.subdivisionStats",
2438                                        optString,
2439                                        "vsp_subdivision_stats=",
2440                                        "vspSubdivisionStats.log");
2441
2442        RegisterOption("VspTree.Construction.minBand",
2443                                        optFloat,
2444                                        "vsp_construction_min_band=",
2445                                        "0.01");
2446
2447        RegisterOption("VspTree.Construction.maxBand",
2448                                        optFloat,
2449                                        "vsp_construction_max_band=",
2450                                        "0.99");
2451       
2452        RegisterOption("VspTree.maxTests",
2453                                        optInt,
2454                                        "vsp_max_tests=",
2455                                        "5000");
2456
2457
2458
2459/***********************************************************************/
2460/*           Object space partition tree related options               */
2461/***********************************************************************/
2462
2463
2464        RegisterOption("OspTree.Construction.randomize",
2465                                        optBool,
2466                                        "osp_construction_randomize=",
2467                                        "false");
2468
2469        RegisterOption("OspTree.Termination.maxDepth",
2470                                        optInt,
2471                                        "osp_term_max_depth=",
2472                                        "30");
2473       
2474        RegisterOption("OspTree.Termination.maxLeaves",
2475                                        optInt,
2476                                        "osp_term_max_leaves=",
2477                                        "1000");
2478       
2479        RegisterOption("OspTree.Termination.minObjects",
2480                                        optInt,
2481                                        "osp_term_min_objects=",
2482                                        "1");
2483
2484        RegisterOption("OspTree.Termination.minProbability",
2485                                        optFloat,
2486                                        "osp_term_min_objects=",
2487                                        "0.00001");
2488
2489        RegisterOption("OspTree.Termination.missTolerance",
2490                                        optInt,
2491                                        "osp_term_miss_tolerance=",
2492                                        "8");
2493
2494        RegisterOption("OspTree.Termination.maxCostRatio",
2495                                        optFloat,
2496                                        "osp_term_max_cost_ratio=",
2497                                        "0.99");
2498
2499        RegisterOption("OspTree.Termination.minGlobalCostRatio",
2500                                        optFloat,
2501                                        "osp_term_min_global_cost_ratio=",
2502                                        "0.00001");
2503
2504        RegisterOption("OspTree.Termination.globalCostMissTolerance",
2505                                        optInt,
2506                                        "osp_term_global_cost_miss_tolerance=",
2507                                        "4");
2508
2509        RegisterOption("OspTree.Termination.ct_div_ci",
2510                                        optFloat,
2511                                        "osp_term_ct_div_ci=",
2512                                        "0");
2513       
2514        RegisterOption("OspTree.Construction.epsilon",
2515                                   optFloat,
2516                                   "osp_construction_epsilon=",
2517                                   "0.00001");
2518       
2519        // if only the driving axis is used for axis aligned split
2520        RegisterOption("OspTree.splitUseOnlyDrivingAxis",
2521                                   optBool,
2522                                   "osp_split_only_driving_axis=",
2523                                   "false");
2524
2525        RegisterOption("OspTree.maxStaticMemory",
2526                                   optFloat,
2527                                   "osp_max_static_mem=",
2528                                   "8.0");
2529
2530        RegisterOption("OspTree.useCostHeuristics",
2531                                   optBool,
2532                                   "osp_use_cost_heuristics=",
2533                                   "true");
2534
2535        RegisterOption("OspTree.subdivisionStats",
2536                                        optString,
2537                                        "osp_subdivision_stats=",
2538                                        "ospSubdivisionStats.log");
2539
2540        RegisterOption("OspTree.Construction.splitBorder",
2541                                        optFloat,
2542                                        "osp_construction_split_border=",
2543                                        "0.01");
2544
2545        RegisterOption("OspTree.Construction.renderCostDecreaseWeight",
2546                                   optFloat,
2547                                   "osp_construction_render_cost_decrease_weight=",
2548                                   "0.99");
2549
2550
2551
2552/**********************************************************************/
2553/*            Bounding Volume Hierarchy related options               */
2554/**********************************************************************/
2555
2556        RegisterOption("BvHierarchy.Construction.randomize",
2557                                        optBool,
2558                                        "bvh_construction_randomize=",
2559                                        "false");
2560
2561        RegisterOption("BvHierarchy.Termination.maxDepth",
2562                                        optInt,
2563                                        "bvh_term_max_depth=",
2564                                        "30");
2565       
2566        RegisterOption("BvHierarchy.Termination.maxLeaves",
2567                                        optInt,
2568                                        "bvh_term_max_leaves=",
2569                                        "1000");
2570       
2571        RegisterOption("BvHierarchy.Termination.minObjects",
2572                                        optInt,
2573                                        "bvh_term_min_objects=",
2574                                        "1");
2575
2576        RegisterOption("BvHierarchy.Termination.minProbability",
2577                                        optFloat,
2578                                        "bvh_term_min_objects=",
2579                                        "0.0000001");
2580
2581        RegisterOption("BvHierarchy.Termination.minRays",
2582                                        optInt,
2583                                        "bvh_term_min_rays=",
2584                                        "0");
2585
2586        RegisterOption("BvHierarchy.Termination.missTolerance",
2587                                        optInt,
2588                                        "osp_term_miss_tolerance=",
2589                                        "8");
2590
2591        RegisterOption("BvHierarchy.Termination.maxCostRatio",
2592                                        optFloat,
2593                                        "bvh_term_max_cost_ratio=",
2594                                        "0.99");
2595
2596        RegisterOption("BvHierarchy.Termination.minGlobalCostRatio",
2597                                        optFloat,
2598                                        "bvh_term_min_global_cost_ratio=",
2599                                        "0.00001");
2600
2601        RegisterOption("BvHierarchy.Termination.globalCostMissTolerance",
2602                                        optInt,
2603                                        "bvh_term_global_cost_miss_tolerance=",
2604                                        "4");
2605
2606        // if only the driving axis is used for axis aligned split
2607        RegisterOption("BvHierarchy.splitUseOnlyDrivingAxis",
2608                                   optBool,
2609                                   "bvh_split_only_driving_axis=",
2610                                   "false");
2611
2612        RegisterOption("BvHierarchy.maxStaticMemory",
2613                                   optFloat,
2614                                   "bvh_max_static_mem=",
2615                                   "8.0");
2616
2617        RegisterOption("BvHierarchy.useCostHeuristics",
2618                                   optBool,
2619                                   "bvh_use_cost_heuristics=",
2620                                   "true");
2621       
2622        RegisterOption("BvHierarchy.useSah",
2623                                   optBool,
2624                                   "bvh_use_sah=",
2625                                   "false");
2626
2627        RegisterOption("BvHierarchy.subdivisionStats",
2628                                        optString,
2629                                        "bvh_subdivision_stats=",
2630                                        "bvhSubdivisionStats.log");
2631
2632        RegisterOption("BvHierarchy.Construction.renderCostDecreaseWeight",
2633                                   optFloat,
2634                                   "bvh_construction_render_cost_decrease_weight=",
2635                                   "0.99");
2636       
2637        RegisterOption("BvHierarchy.Construction.useGlobalSorting",
2638                                        optBool,
2639                                        "bvh_construction_use_global_sorting=",
2640                                        "true");
2641       
2642        RegisterOption("BvHierarchy.Construction.useInitialSubdivision",
2643                                        optBool,
2644                                        "bvh_construction_use_initial_subdivision=",
2645                                        "false");
2646
2647        RegisterOption("BvHierarchy.Construction.Initial.minObjects",
2648                                        optInt,
2649                                        "bvh_construction_use_initial_min_objects=",
2650                                        "100000");
2651
2652        RegisterOption("BvHierarchy.Construction.Initial.minArea",
2653                                        optFloat,
2654                                        "bvh_construction_use_initial_min_area=",
2655                                        "0.0001");
2656
2657        RegisterOption("BvHierarchy.Construction.Initial.maxAreaRatio",
2658                                        optFloat,
2659                                        "bvh_construction_use_initial_max_area_ratio=",
2660                                        "0.9");
2661
2662        RegisterOption("BvHierarchy.minRaysForVisibility",
2663                                        optInt,
2664                                        "bvh_min_rays_for_vis=",
2665                                        "0");
2666
2667        RegisterOption("BvHierarchy.maxTests",
2668                                        optInt,
2669                                        "bvh_max_tests=",
2670                                        "50000");
2671
2672
2673        /*******************************************************************/
2674        /*               Hierarchy Manager related options                 */
2675        /*******************************************************************/
2676
2677        RegisterOption("Hierarchy.Construction.samples",
2678                                        optInt,
2679                                        "hierarchy_construction_samples=",
2680                                        "100000");
2681
2682        RegisterOption("Hierarchy.subdivisionStats",
2683                           optString,
2684                                   "hierarchy_subdivision_stats=",
2685                                   "hierarchySubdivisionStats.log");
2686
2687        RegisterOption("Hierarchy.type",
2688                           optString,
2689                                   "hierarchy_type=",
2690                                   "bvh");
2691
2692        RegisterOption("Hierarchy.Termination.minGlobalCostRatio",
2693                                        optFloat,
2694                                        "hierarchy_term_min_global_cost_ratio=",
2695                                        "0.000000001");
2696
2697        RegisterOption("Hierarchy.Termination.globalCostMissTolerance",
2698                                        optInt,
2699                                        "hierarchy_term_global_cost_miss_tolerance=",
2700                                        "4");
2701
2702        RegisterOption("Hierarchy.Termination.maxLeaves",
2703                                        optInt,
2704                                        "hierarchy_term_max_leaves=",
2705                                        "1000");
2706       
2707        RegisterOption("Hierarchy.Construction.type",
2708                                        optInt,
2709                                        "hierarchy_construction_type=",
2710                                        "0");
2711
2712        RegisterOption("Hierarchy.Construction.minDepthForOsp",
2713                                        optInt,
2714                                        "hierarchy_construction_min_depth_for_osp=",
2715                                        "-1");
2716
2717        RegisterOption("Hierarchy.Construction.startWithObjectSpace",
2718                                        optBool,
2719                                        "hierarchy_construction_start_with_osp=",
2720                                        "true");
2721
2722        RegisterOption("Hierarchy.Construction.considerMemory",
2723                                        optBool,
2724                                        "hierarchy_construction_consider_memory=",
2725                                        "true");
2726
2727        RegisterOption("Hierarchy.Construction.repairQueue",
2728                                        optBool,
2729                                        "hierarchy_construction_repair_queue=",
2730                                        "true");
2731
2732        RegisterOption("Hierarchy.Construction.minDepthForVsp",
2733                                        optInt,
2734                                        "hierarchy_construction_min_depth_for_vsp=",
2735                                        "-1");
2736
2737        RegisterOption("Hierarchy.Termination.maxMemory",
2738                                        optFloat,
2739                                        "hierarchy_term_max_memory=",
2740                                        "1");
2741
2742        RegisterOption("Hierarchy.Termination.memoryConst",
2743                                        optFloat,
2744                                        "hierarchy_term_memory_const=",
2745                                        "1.0");
2746
2747        RegisterOption("Hierarchy.Construction.useMultiLevel",
2748                                        optBool,
2749                                        "hierarchy_construction_multilevel=",
2750                                        "false");
2751
2752        RegisterOption("Hierarchy.Construction.levels",
2753                                        optInt,
2754                                        "hierarchy_construction_levels=",
2755                                        "4");
2756
2757        RegisterOption("Hierarchy.Construction.maxRepairs",
2758                                        optInt,
2759                                        "hierarchy_construction_max_repairs=",
2760                                        "1000");
2761
2762        RegisterOption("Hierarchy.Construction.minStepsOfSameType",
2763                                        optInt,
2764                                        "hierarchy_construction_min_steps_same_type=",
2765                                        "200");
2766
2767        RegisterOption("Hierarchy.Construction.maxStepsOfSameType",
2768                                        optInt,
2769                                        "hierarchy_construction_max_steps_same_type=",
2770                                        "700");
2771
2772        RegisterOption("Hierarchy.Construction.recomputeSplitPlaneOnRepair",
2773                                        optBool,
2774                                        "hierarchy_construction_recompute_split_on_repair=",
2775                                        "true");
2776
2777        RegisterOption("Hierarchy.Construction.maxAvgRayContri",
2778                                        optFloat,
2779                                        "hierarchy_construction_max_avg_raycontri=",
2780                                        "99999.0");
2781       
2782        RegisterOption("Hierarchy.Construction.minAvgRayContri",
2783                                        optFloat,
2784                                        "hierarchy_construction_min_avg_raycontri=",
2785                                        "99990.0");
2786       
2787
2788        ///////////////////////////////////////////////////////
2789
2790         RegisterOption("TraversalTree.Termination.minCost",
2791                                 optInt,
2792                                 "kd_term_min_cost=",
2793                                 "1");
2794 
2795  RegisterOption("TraversalTree.Termination.maxNodes",
2796                                 optInt,
2797                                 "kd_term_max_nodes=",
2798                                 "200000");
2799 
2800  RegisterOption("TraversalTree.Termination.maxDepth",
2801                                 optInt,
2802                                 "kd_term_max_depth=",
2803                                 "20");
2804
2805  RegisterOption("TraversalTree.Termination.maxCostRatio",
2806                                 optFloat,
2807                                 "kd_term_max_cost_ratio=",
2808                                 "1.5");
2809
2810  RegisterOption("TraversalTree.Termination.ct_div_ci",
2811                                 optFloat,
2812                                 "kd_term_ct_div_ci=",
2813                                 "1.0");
2814
2815  RegisterOption("TraversalTree.splitMethod",
2816                                 optString,
2817                                 "kd_split_method=",
2818                                 "spatialMedian");
2819
2820  RegisterOption("TraversalTree.splitBorder",
2821                                 optFloat,
2822                                 "kd_split_border=",
2823                                 "0.1");
2824
2825  RegisterOption("TraversalTree.sahUseFaces",
2826                                 optBool,
2827                                 "kd_sah_use_faces=",
2828                                 "true");
2829
2830        /////////////////////////////////////////////////////////////////
2831
2832}
2833
2834void
2835Environment::SetStaticOptions()
2836{
2837 
2838  // get Global option values
2839  GetRealValue("Limits.threshold", Limits::Threshold);
2840  GetRealValue("Limits.small", Limits::Small);
2841  GetRealValue("Limits.infinity", Limits::Infinity);
2842
2843
2844}
2845
2846bool
2847Environment::Parse(const int argc, char **argv, bool useExePath)
2848{
2849  bool result = true;
2850  // Read the names of the scene, environment and output files
2851  ReadCmdlineParams(argc, argv, "");
2852
2853  char *envFilename = new char[128];
2854
2855  char filename[64];
2856
2857  // Get the environment file name
2858  if (!GetParam(' ', 0, filename)) {
2859    // user didn't specified environment file explicitly, so
2860    strcpy(filename, "default.env");
2861  }
2862
2863 
2864  if (useExePath) {
2865    char *path = GetPath(argv[0]);
2866    if (*path != 0)
2867      sprintf(envFilename, "%s/%s", path, filename);
2868    else
2869      strcpy(envFilename, filename);
2870   
2871    delete path;
2872  }
2873  else
2874    strcpy(envFilename, filename);
2875
2876 
2877  // Now it's time to read in environment file.
2878  if (!ReadEnvFile(envFilename)) {
2879    // error - bad input file name specified ?
2880    cerr<<"Error parsing environment file "<<envFilename<<endl;
2881        result = false;
2882  }
2883  delete envFilename;
2884
2885  // Parse the command line; options given on the command line subsume
2886  // stuff specified in the input environment file.
2887  ParseCmdline(argc, argv, 0);
2888
2889  SetStaticOptions();
2890
2891  // Check for request for help
2892  if (CheckForSwitch(argc, argv, '?')) {
2893    PrintUsage(cout);
2894    exit(0);
2895  }
2896 
2897  return true;
2898}
2899
2900}
Note: See TracBrowser for help on using the repository browser.