Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing...
[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 <iostream>
22 #include <cstdlib>
23
24 #include "ardour/session.h"
25
26 #include "opts.h"
27
28 #include "i18n.h"
29
30 using namespace std;
31
32 string ARDOUR_COMMAND_LINE::session_name = "";
33 string ARDOUR_COMMAND_LINE::jack_client_name = "ardour";
34 bool  ARDOUR_COMMAND_LINE::show_key_actions = false;
35 bool ARDOUR_COMMAND_LINE::no_splash = true;
36 bool ARDOUR_COMMAND_LINE::just_version = false;
37 bool ARDOUR_COMMAND_LINE::use_vst = true;
38 bool ARDOUR_COMMAND_LINE::new_session = false;
39 char* ARDOUR_COMMAND_LINE::curvetest_file = 0;
40 bool ARDOUR_COMMAND_LINE::try_hw_optimization = true;
41 string ARDOUR_COMMAND_LINE::keybindings_path = ""; /* empty means use builtin default */
42 Glib::ustring ARDOUR_COMMAND_LINE::menus_file = "ardour.menus";
43 bool ARDOUR_COMMAND_LINE::finder_invoked_ardour = false;
44
45 using namespace ARDOUR_COMMAND_LINE;
46
47 int
48 print_help (const char *execname)
49 {
50         cout << _("Usage: ") << execname << "\n"
51              << _("  -v, --version                    Show version information\n")
52              << _("  -h, --help                       Print this message\n")
53              << _("  -b, --bindings                   Print all possible keyboard binding names\n")
54              << _("  -c, --name  name                 Use a specific jack client name, default is ardour\n")
55              << _("  -d, --disable-plugins            Disable all plugins in an existing session\n")
56              << _("  -n, --show-splash                Show splash screen\n")
57              << _("  -m, --menus file                 Use \"file\" for Ardour menus\n")
58              << _("  -N, --new session-name           Create a new session from the command line\n")
59              << _("  -O, --no-hw-optimizations        Disable h/w specific optimizations\n")
60              << _("  -S, --sync                       Draw the gui synchronously \n")
61 #ifdef VST_SUPPORT
62              << _("  -V, --novst                      Do not use VST support\n")
63 #endif
64              << _("  [session-name]                   Name of session to load\n")
65              << _("  -C, --curvetest filename         Curve algorithm debugger\n")
66              << _("  -k, --keybindings filename       Name of key bindings to load (default is ~/.ardour3/ardour.bindings)\n")
67                 ;
68         return 1;
69
70 }
71
72 int
73 ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
74
75 {
76         const char *optstring = "U:hSbvVnOdc:C:m:N:k:p:";
77         const char *execname = strrchr (argv[0], '/');
78
79         if (getenv ("ARDOUR_SAE")) {
80                 menus_file = "ardour-sae.menus";
81                 keybindings_path = "SAE";
82         }
83
84         if (execname == 0) {
85                 execname = argv[0];
86         } else {
87                 execname++;
88         }
89
90         const struct option longopts[] = {
91                 { "version", 0, 0, 'v' },
92                 { "help", 0, 0, 'h' },
93                 { "bindings", 0, 0, 'b' },
94                 { "show-splash", 0, 0, 'n' },
95                 { "menus", 1, 0, 'm' },
96                 { "name", 1, 0, 'c' },
97                 { "novst", 0, 0, 'V' },
98                 { "new", 1, 0, 'N' },
99                 { "no-hw-optimizations", 0, 0, 'O' },
100                 { "sync", 0, 0, 'S' },
101                 { "curvetest", 1, 0, 'C' },
102                 { 0, 0, 0, 0 }
103         };
104
105         int option_index = 0;
106         int c = 0;
107
108         while (1) {
109                 c = getopt_long (argc, argv, optstring, longopts, &option_index);
110
111                 if (c == -1) {
112                         break;
113                 }
114
115                 switch (c) {
116                 case 0:
117                         break;
118
119                 case 'v':
120                         just_version = true;
121                         break;
122
123                 case 'h':
124                         print_help (execname);
125                         exit (0);
126                         break;
127                 case 'b':
128                         show_key_actions = true;
129                         break;
130
131                 case 'd':
132                         ARDOUR::Session::set_disable_all_loaded_plugins (true);
133                         break;
134
135                 case 'm':
136                         menus_file = optarg;
137                         break;
138
139                 case 'n':
140                         no_splash = false;
141                         break;
142
143                 case 'p':
144                         //undocumented OS X finder -psn_XXXXX argument
145                         finder_invoked_ardour = true;
146                         break;
147
148                 case 'S':
149                 //      ; just pass this through to gtk it will figure it out
150                         break;
151
152                 case 'N':
153                         new_session = true;
154                         session_name = optarg;
155                         break;
156
157                 case 'O':
158                         try_hw_optimization = false;
159                         break;
160
161                 case 'V':
162 #ifdef VST_SUPPORT
163                         use_vst = false;
164 #endif /* VST_SUPPORT */
165                         break;
166
167                 case 'c':
168                         jack_client_name = optarg;
169                         break;
170
171                 case 'C':
172                         curvetest_file = optarg;
173                         break;
174
175                 case 'k':
176                         keybindings_path = optarg;
177                         break;
178
179                 default:
180                         return print_help(execname);
181                 }
182         }
183
184         if (optind < argc) {
185                 if (new_session) {
186                         cerr << "Illogical combination: you can either create a new session, or a load an existing session but not both!" << endl;
187                         return print_help(execname);
188                 }
189                 session_name = argv[optind++];
190         }
191
192
193         return 0;
194 }
195