enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / opts.cc
1 /*
2     Copyright (C) 2001 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <getopt.h>
21 #include <string.h>
22 #include <iostream>
23 #include <cstdlib>
24
25 #include "ardour/debug.h"
26 #include "ardour/session.h"
27
28 #ifndef NDEBUG // "-H"
29 #include "processor_box.h"
30 #endif
31
32 #include "opts.h"
33
34 #include "pbd/i18n.h"
35
36 using namespace std;
37
38 string ARDOUR_COMMAND_LINE::session_name = "";
39 string ARDOUR_COMMAND_LINE::backend_client_name = "ardour";
40 string ARDOUR_COMMAND_LINE::backend_session_uuid;
41 bool  ARDOUR_COMMAND_LINE::show_key_actions = false;
42 bool ARDOUR_COMMAND_LINE::no_splash = false;
43 bool ARDOUR_COMMAND_LINE::just_version = false;
44 bool ARDOUR_COMMAND_LINE::use_vst = true;
45 bool ARDOUR_COMMAND_LINE::new_session = false;
46 char* ARDOUR_COMMAND_LINE::curvetest_file = 0;
47 bool ARDOUR_COMMAND_LINE::try_hw_optimization = true;
48 bool ARDOUR_COMMAND_LINE::no_connect_ports = false;
49 string ARDOUR_COMMAND_LINE::keybindings_path = ""; /* empty means use builtin default */
50 std::string ARDOUR_COMMAND_LINE::menus_file = "ardour.menus";
51 bool ARDOUR_COMMAND_LINE::finder_invoked_ardour = false;
52 string ARDOUR_COMMAND_LINE::immediate_save;
53 string ARDOUR_COMMAND_LINE::load_template;
54 bool ARDOUR_COMMAND_LINE::check_announcements = true;
55
56 using namespace ARDOUR_COMMAND_LINE;
57
58 int
59 print_help (const char *execname)
60 {
61         cout << _("Usage: ") << execname << " [OPTION]... [SESSION_NAME]\n\n"
62              << _("  [SESSION_NAME]              Name of session to load\n")
63              << _("  -v, --version               Show version information\n")
64              << _("  -h, --help                  Print this message\n")
65              << _("  -a, --no-announcements      Do not contact website for announcements\n")
66              << _("  -b, --bindings              Print all possible keyboard binding names\n")
67              << _("  -B, --bypass-plugins        Bypass all plugins in an existing session\n")
68              << _("  -c, --name <name>           Use a specific backend client name, default is ardour\n")
69              << _("  -d, --disable-plugins       Disable all plugins in an existing session\n")
70              << _("  -D, --debug <options>       Set debug flags. Use \"-D list\" to see available options\n")
71              << _("  -n, --no-splash             Do not show splash screen\n")
72              << _("  -m, --menus file            Use \"file\" to define menus\n")
73              << _("  -N, --new session-name      Create a new session from the command line\n")
74              << _("  -O, --no-hw-optimizations   Disable h/w specific optimizations\n")
75              << _("  -P, --no-connect-ports      Do not connect any ports at startup\n")
76              << _("  -S, --sync                  Draw the gui synchronously \n")
77 #ifdef WINDOWS_VST_SUPPORT
78              << _("  -V, --novst                 Do not use VST support\n")
79 #endif
80              << _("  -E, --save <file>           Load the specified session, save it to <file> and then quit\n")
81              << _("  -C, --curvetest filename    Curve algorithm debugger\n")
82              << _("  -k, --keybindings filename  Name of key bindings to load\n")
83                 ;
84         return 1;
85
86 }
87
88 int
89 ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
90 {
91         const char *optstring = "abBc:C:dD:hHk:E:m:N:nOp:PST:U:vV";
92         const char *execname = strrchr (argv[0], '/');
93
94         if (execname == 0) {
95                 execname = argv[0];
96         } else {
97                 execname++;
98         }
99
100         const struct option longopts[] = {
101                 { "version", 0, 0, 'v' },
102                 { "help", 0, 0, 'h' },
103                 { "no-announcements", 0, 0, 'a' },
104                 { "bindings", 0, 0, 'b' },
105                 { "bypass-plugins", 0, 0, 'B' },
106                 { "disable-plugins", 0, 0, 'd' },
107                 { "debug", 1, 0, 'D' },
108                 { "no-splash", 0, 0, 'n' },
109                 { "menus", 1, 0, 'm' },
110                 { "name", 1, 0, 'c' },
111                 { "novst", 0, 0, 'V' },
112                 { "new", 1, 0, 'N' },
113                 { "no-hw-optimizations", 0, 0, 'O' },
114                 { "sync", 0, 0, 'S' },
115                 { "curvetest", 1, 0, 'C' },
116                 { "save", 1, 0, 'E' },
117                 { "uuid", 1, 0, 'U' },
118                 { "template", 1, 0, 'T' },
119                 { "no-connect-ports", 0, 0, 'P' },
120                 { 0, 0, 0, 0 }
121         };
122
123         int option_index = 0;
124         int c = 0;
125
126         while (1) {
127                 c = getopt_long (argc, argv, optstring, longopts, &option_index);
128
129                 if (c == -1) {
130                         break;
131                 }
132
133                 switch (c) {
134                 case 0:
135                         break;
136
137                 case 'v':
138                         just_version = true;
139                         break;
140
141                 case 'h':
142                         print_help (execname);
143                         exit (0);
144                         break;
145                 case 'H':
146 #ifndef NDEBUG
147                         ProcessorBox::show_all_processors = true;
148 #endif
149                         break;
150                 case 'a':
151                         check_announcements = false;
152                         break;
153
154                 case 'b':
155                         show_key_actions = true;
156                         break;
157
158                 case 'B':
159                         ARDOUR::Session::set_bypass_all_loaded_plugins (true);
160                         break;
161
162                 case 'd':
163                         ARDOUR::Session::set_disable_all_loaded_plugins (true);
164                         break;
165
166                 case 'D':
167                         if (PBD::parse_debug_options (optarg)) {
168                                 exit (0);
169                         }
170                         break;
171
172                 case 'm':
173                         menus_file = optarg;
174                         break;
175
176                 case 'n':
177                         no_splash = true;
178                         break;
179
180                 case 'p':
181                         //undocumented OS X finder -psn_XXXXX argument
182                         finder_invoked_ardour = true;
183                         break;
184
185                 case 'S':
186                 //      ; just pass this through to gtk it will figure it out
187                         break;
188                 case 'T':
189                         load_template = optarg;
190                         break;
191
192                 case 'N':
193                         new_session = true;
194                         session_name = optarg;
195                         break;
196
197                 case 'O':
198                         try_hw_optimization = false;
199                         break;
200
201                 case 'P':
202                         no_connect_ports = true;
203                         break;
204
205                 case 'V':
206 #ifdef WINDOWS_VST_SUPPORT
207                         use_vst = false;
208 #endif /* WINDOWS_VST_SUPPORT */
209                         break;
210
211                 case 'c':
212                         backend_client_name = optarg;
213                         break;
214
215                 case 'C':
216                         curvetest_file = optarg;
217                         break;
218
219                 case 'k':
220                         keybindings_path = optarg;
221                         break;
222
223                 case 'E':
224                         immediate_save = optarg;
225                         break;
226
227                 case 'U':
228                         backend_session_uuid = optarg;
229                         break;
230
231                 default:
232                         return print_help(execname);
233                 }
234         }
235
236         if (optind < argc) {
237                 if (new_session) {
238                         cerr << "Illogical combination: you can either create a new session, or a load an existing session but not both!" << endl;
239                         return print_help(execname);
240                 }
241                 session_name = argv[optind++];
242         }
243
244         return 0;
245 }
246