]> git.sesse.net Git - nageru/blobdiff - futatabi/flags.cpp
Make the MIDI play button blinking when something is ready to play, and solid when...
[nageru] / futatabi / flags.cpp
index aefde273aa64fdbc32504ff2658e743faa6a09d9..c5bc722f5c6fa2eaeb3eecaf24a981da004cf2e8 100644 (file)
@@ -4,7 +4,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-
 #include <utility>
 
 using namespace std;
@@ -18,7 +17,8 @@ enum LongOption {
        OPTION_SLOW_DOWN_INPUT = 1001,
        OPTION_HTTP_PORT = 1002,
        OPTION_TALLY_URL = 1003,
-       OPTION_CUE_POINT_PADDING = 1004
+       OPTION_CUE_POINT_PADDING = 1004,
+       OPTION_MIDI_MAPPING = 1005
 };
 
 void usage()
@@ -41,9 +41,10 @@ void usage()
        fprintf(stderr, "  -d, --working-directory DIR     where to store frames and database\n");
        fprintf(stderr, "      --http-port PORT            which port to listen on for output\n");
        fprintf(stderr, "      --tally-url URL             URL to get tally color from (polled every 100 ms)\n");
+       fprintf(stderr, "      --midi-mapping=FILE         start with the given MIDI controller mapping\n");
 }
 
-void parse_flags(int argc, char * const argv[])
+void parse_flags(int argc, char *const argv[])
 {
        static const option long_options[] = {
                { "help", no_argument, 0, OPTION_HELP },
@@ -56,9 +57,10 @@ void parse_flags(int argc, char * const argv[])
                { "http-port", required_argument, 0, OPTION_HTTP_PORT },
                { "tally-url", required_argument, 0, OPTION_TALLY_URL },
                { "cue-point-padding", required_argument, 0, OPTION_CUE_POINT_PADDING },
+               { "midi-mapping", required_argument, 0, OPTION_MIDI_MAPPING },
                { 0, 0, 0, 0 }
        };
-       for ( ;; ) {
+       for (;;) {
                int option_index = 0;
                int c = getopt_long(argc, argv, "w:h:r:q:d:", long_options, &option_index);
 
@@ -104,6 +106,9 @@ void parse_flags(int argc, char * const argv[])
                        global_flags.cue_point_padding_seconds = atof(optarg);
                        global_flags.cue_point_padding_set = true;
                        break;
+               case OPTION_MIDI_MAPPING:
+                       global_flags.midi_mapping_filename = optarg;
+                       break;
                case OPTION_HELP:
                        usage();
                        exit(0);