summaryrefslogtreecommitdiffstats
path: root/dimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-04-16 18:16:47 -0400
committerTavian Barnes <tavianator@gmail.com>2010-04-16 18:54:13 -0400
commita28b29149ce8da2fb2d1865ace4c467e790a1ebe (patch)
treec5032f216b9051480dcefa0b6f8c9d0222c7a3c8 /dimension
parent82f6b6d9e7aaf765c1a9e7ce0a7afefe6e61e3d8 (diff)
downloaddimension-a28b29149ce8da2fb2d1865ace4c467e790a1ebe.tar.xz
New --resilience command-line argument.
Diffstat (limited to 'dimension')
-rw-r--r--dimension/main.c49
1 files changed, 30 insertions, 19 deletions
diff --git a/dimension/main.c b/dimension/main.c
index 32893eb..c9bbd37 100644
--- a/dimension/main.c
+++ b/dimension/main.c
@@ -46,19 +46,21 @@ main(int argc, char **argv) {
/* Long-only option codes */
enum {
DMNSN_OPT_THREADS = 256,
- DMNSN_OPT_QUALITY
+ DMNSN_OPT_QUALITY,
+ DMNSN_OPT_RESILIENCE
};
static struct option long_options[] = {
- { "help", no_argument, NULL, '?' },
- { "output", required_argument, NULL, 'o' },
- { "width", required_argument, NULL, 'w' },
- { "height", required_argument, NULL, 'h' },
- { "threads", required_argument, NULL, DMNSN_OPT_THREADS },
- { "quality", required_argument, NULL, DMNSN_OPT_QUALITY },
- { "tokenize", no_argument, &tokenize, 1 },
- { "parse", no_argument, &parse, 1 },
- { 0, 0, 0, 0 }
+ { "help", no_argument, NULL, '?' },
+ { "output", required_argument, NULL, 'o' },
+ { "width", required_argument, NULL, 'w' },
+ { "height", required_argument, NULL, 'h' },
+ { "threads", required_argument, NULL, DMNSN_OPT_THREADS },
+ { "quality", required_argument, NULL, DMNSN_OPT_QUALITY },
+ { "resilience", required_argument, NULL, DMNSN_OPT_RESILIENCE },
+ { "tokenize", no_argument, &tokenize, 1 },
+ { "parse", no_argument, &parse, 1 },
+ { 0, 0, 0, 0 }
};
int opt, opt_index;
@@ -90,8 +92,6 @@ main(int argc, char **argv) {
case 'w':
{
- dmnsn_assert(optarg, "NULL argument.");
-
char *endptr;
width = strtoul(optarg, &endptr, 10);
if (*endptr != '\0' || endptr == optarg) {
@@ -103,8 +103,6 @@ main(int argc, char **argv) {
}
case 'h':
{
- dmnsn_assert(optarg, "NULL argument.");
-
char *endptr;
height = strtoul(optarg, &endptr, 10);
if (*endptr != '\0' || endptr == optarg) {
@@ -117,8 +115,6 @@ main(int argc, char **argv) {
case DMNSN_OPT_THREADS:
{
- dmnsn_assert(optarg, "NULL argument.");
-
char *endptr;
nthreads = strtoul(optarg, &endptr, 10);
if (*endptr != '\0' || endptr == optarg) {
@@ -130,8 +126,6 @@ main(int argc, char **argv) {
}
case DMNSN_OPT_QUALITY:
{
- dmnsn_assert(optarg, "NULL argument.");
-
char *endptr;
quality = strtoul(optarg, &endptr, 0);
if (*endptr != '\0' || endptr == optarg) {
@@ -141,6 +135,21 @@ main(int argc, char **argv) {
}
break;
}
+ case DMNSN_OPT_RESILIENCE:
+ {
+ if (strcmp(optarg, "low") == 0) {
+ dmnsn_set_resilience(DMNSN_SEVERITY_LOW);
+ } else if (strcmp(optarg, "medium") == 0) {
+ dmnsn_set_resilience(DMNSN_SEVERITY_MEDIUM);
+ } else if (strcmp(optarg, "high") == 0) {
+ dmnsn_set_resilience(DMNSN_SEVERITY_HIGH);
+ } else {
+ fprintf(stderr, "Invalid argument to --resilience!\n");
+ print_usage(stderr, argv[0]);
+ return EXIT_FAILURE;
+ }
+ break;
+ }
default:
fprintf(stderr, "Invalid command line option!\n");
@@ -325,7 +334,9 @@ print_usage(FILE *file, const char *arg0)
" -h, --height=HEIGHT set canvas height to HEIGHT (default 480)\n\n"
" Rendering options:\n"
" --threads=THREADS render with THREADS parallel threads\n"
- " --quality=QUALITY use the quality setting QUALITY\n\n"
+ " --quality=QUALITY use the quality setting QUALITY\n"
+ " --resilience=RES set error tolerance to RES (low, medium, or"
+ " high)\n\n"
" Debugging options:\n"
" --tokenize tokenize the input and print the token list\n"
" --parse parse the input and print the abstract syntax"