]> git.sesse.net Git - nageru/blob - flags.cpp
Allow symlinked frame files. Useful for testing.
[nageru] / flags.cpp
1 #include "flags.h"
2
3 #include <getopt.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7
8 #include <utility>
9
10 using namespace std;
11
12 Flags global_flags;
13
14 // Long options that have no corresponding short option.
15 enum LongOption {
16         OPTION_HELP = 1000,
17         OPTION_SLOW_DOWN_INPUT = 1001,
18         OPTION_HTTP_PORT = 1002
19 };
20
21 void usage()
22 {
23         fprintf(stderr, "Usage: futatabi [OPTION]... SOURCE_URL\n");
24         fprintf(stderr, "\n");
25         fprintf(stderr, "      --help                      print usage information\n");
26         fprintf(stderr, "      --slow-down-input           slow down input to realtime (default on if no\n");
27         fprintf(stderr, "                                    source URL given)\n");
28         fprintf(stderr, "  -q, --interpolation-quality N   1 = fastest\n");
29         fprintf(stderr, "                                  2 = default (realtime 720p on fast embedded GPUs)\n");
30         fprintf(stderr, "                                  3 = good (realtime 720p on GTX 970 or so)\n");
31         fprintf(stderr, "                                  4 = best (not realtime on any current GPU)\n");
32         fprintf(stderr, "  -d, --working-directory DIR     where to store frames and database\n");
33         fprintf(stderr, "      --http-port PORT            which port to listen on for output\n");
34 }
35
36 void parse_flags(int argc, char * const argv[])
37 {
38         static const option long_options[] = {
39                 { "help", no_argument, 0, OPTION_HELP },
40                 { "slow-down-input", no_argument, 0, OPTION_SLOW_DOWN_INPUT },
41                 { "interpolation-quality", required_argument, 0, 'q' },
42                 { "working-directory", required_argument, 0, 'd' },
43                 { "http-port", required_argument, 0, OPTION_HTTP_PORT },
44                 { 0, 0, 0, 0 }
45         };
46         for ( ;; ) {
47                 int option_index = 0;
48                 int c = getopt_long(argc, argv, "q:d:", long_options, &option_index);
49
50                 if (c == -1) {
51                         break;
52                 }
53                 switch (c) {
54                 case OPTION_SLOW_DOWN_INPUT:
55                         global_flags.slow_down_input = true;
56                         break;
57                 case 'q':
58                         global_flags.interpolation_quality = atoi(optarg);
59                         break;
60                 case 'd':
61                         global_flags.working_directory = optarg;
62                         break;
63                 case OPTION_HTTP_PORT:
64                         global_flags.http_port = atoi(optarg);
65                         break;
66                 case OPTION_HELP:
67                         usage();
68                         exit(0);
69                 default:
70                         fprintf(stderr, "Unknown option '%s'\n", argv[option_index]);
71                         fprintf(stderr, "\n");
72                         usage();
73                         exit(1);
74                 }
75         }
76
77         if (global_flags.interpolation_quality < 1 || global_flags.interpolation_quality > 4) {
78                 fprintf(stderr, "Interpolation quality must be 1, 2, 3 or 4.\n");
79                 usage();
80                 exit(1);
81         }
82 }