summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2014-01-04 18:38:40 +0100
committerBert Münnich <ber.t@posteo.de>2014-01-04 19:07:15 +0100
commit6a0fa2507cc933cfb54fdf4d80c094bfcdf782cf (patch)
treeab682c40f0a648b60db9a7a41753923279579cd9 /options.c
parent0e818020cc3459dda528993e27202c8ef5dfa90f (diff)
downloadnsxiv-6a0fa2507cc933cfb54fdf4d80c094bfcdf782cf.tar.zst
Slideshow mode is back, in a simplified version
Diffstat (limited to 'options.c')
-rw-r--r--options.c41
1 files changed, 24 insertions, 17 deletions
diff --git a/options.c b/options.c
index e4d597c..6753050 100644
--- a/options.c
+++ b/options.c
@@ -34,7 +34,7 @@ const options_t *options = (const options_t*) &_options;
void print_usage(void)
{
printf("usage: sxiv [-bcdFfhioqrstvZ] [-G GAMMA] [-g GEOMETRY] [-n NUM] "
- "[-N name] [-z ZOOM] FILES...\n");
+ "[-N NAME] [-S DELAY] [-z ZOOM] FILES...\n");
}
void print_version(void)
@@ -44,7 +44,7 @@ void print_version(void)
void parse_options(int argc, char **argv)
{
- int opt, t, gamma;
+ int n, opt;
char *end;
_options.from_stdin = false;
@@ -55,6 +55,7 @@ void parse_options(int argc, char **argv)
_options.scalemode = SCALE_MODE;
_options.zoom = 1.0;
_options.gamma = 0;
+ _options.slideshow = 0;
_options.fixed_win = false;
_options.fullscreen = false;
@@ -66,7 +67,7 @@ void parse_options(int argc, char **argv)
_options.thumb_mode = false;
_options.clean_cache = false;
- while ((opt = getopt(argc, argv, "bcdFfG:g:hin:N:oqrstvZz:")) != -1) {
+ while ((opt = getopt(argc, argv, "bcdFfG:g:hin:N:oqrS:stvZz:")) != -1) {
switch (opt) {
case '?':
print_usage();
@@ -87,13 +88,12 @@ void parse_options(int argc, char **argv)
_options.fullscreen = true;
break;
case 'G':
- gamma = strtol(optarg, &end, 0);
+ n = strtol(optarg, &end, 0);
if (*end != '\0') {
- fprintf(stderr, "sxiv: invalid argument for option -G: %s\n",
- optarg);
+ fprintf(stderr, "sxiv: invalid argument for option -G: %s\n", optarg);
exit(EXIT_FAILURE);
}
- _options.gamma = gamma;
+ _options.gamma = n;
break;
case 'g':
_options.geometry = optarg;
@@ -105,13 +105,12 @@ void parse_options(int argc, char **argv)
_options.from_stdin = true;
break;
case 'n':
- if (sscanf(optarg, "%d", &t) <= 0 || t < 1) {
- fprintf(stderr, "sxiv: invalid argument for option -n: %s\n",
- optarg);
+ n = strtol(optarg, &end, 0);
+ if (*end != '\0' || n <= 0) {
+ fprintf(stderr, "sxiv: invalid argument for option -n: %s\n", optarg);
exit(EXIT_FAILURE);
- } else {
- _options.startnum = t - 1;
}
+ _options.startnum = n - 1;
break;
case 'N':
_options.res_name = optarg;
@@ -125,6 +124,14 @@ void parse_options(int argc, char **argv)
case 'r':
_options.recursive = true;
break;
+ case 'S':
+ n = strtol(optarg, &end, 0);
+ if (*end != '\0' || n <= 0) {
+ fprintf(stderr, "sxiv: invalid argument for option -S: %s\n", optarg);
+ exit(EXIT_FAILURE);
+ }
+ _options.slideshow = n;
+ break;
case 's':
_options.scalemode = SCALE_FIT;
break;
@@ -139,13 +146,13 @@ void parse_options(int argc, char **argv)
_options.zoom = 1.0;
break;
case 'z':
- _options.scalemode = SCALE_ZOOM;
- if (sscanf(optarg, "%d", &t) <= 0 || t <= 0) {
- fprintf(stderr, "sxiv: invalid argument for option -z: %s\n",
- optarg);
+ n = strtol(optarg, &end, 0);
+ if (*end != '\n' || n <= 0) {
+ fprintf(stderr, "sxiv: invalid argument for option -z: %s\n", optarg);
exit(EXIT_FAILURE);
}
- _options.zoom = (float) t / 100.0;
+ _options.scalemode = SCALE_ZOOM;
+ _options.zoom = (float) n / 100.0;
break;
}
}