summaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/Configuration.cpp55
-rw-r--r--src/shared/Configuration.hpp35
2 files changed, 90 insertions, 0 deletions
diff --git a/src/shared/Configuration.cpp b/src/shared/Configuration.cpp
new file mode 100644
index 00000000..5cda3e9e
--- /dev/null
+++ b/src/shared/Configuration.cpp
@@ -0,0 +1,55 @@
+/* This file is part of Ingen.
+ * Copyright (C) 2010 Dave Robillard <http://drobilla.net>
+ *
+ * Ingen is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "raul/Atom.hpp"
+#include "Configuration.hpp"
+
+using namespace Raul;
+
+namespace Ingen {
+namespace Shared {
+
+Configuration::Configuration()
+ : Raul::Configuration("A realtime modular audio processor.",
+ "Ingen is a flexible modular system that be used in various ways.\n"
+ "The engine can run as a stand-alone server controlled via a network protocol\n"
+ "(e.g. OSC), or internal to another process (e.g. the GUI). The GUI, or other\n"
+ "clients, can communicate with the engine via any supported protocol, or host the\n"
+ "engine in the same process. Many clients can connect to an engine at once.\n\n"
+ "Examples:\n"
+ " ingen -e # Run an engine, listen for OSC\n"
+ " ingen -g # Run a GUI, connect via OSC\n"
+ " ingen -eg # Run an engine and a GUI in one process\n"
+ " ingen -egl patch.ing.ttl # Run an engine and a GUI and load a patch file\n"
+ " ingen -egl patch.ing.lv2 # Run an engine and a GUI and load a patch bundle")
+{
+ add("client-port", 'C', "Client OSC port", Atom::INT, Atom())
+ .add("connect", 'c', "Connect to engine URI", Atom::STRING, "osc.udp://localhost:16180")
+ .add("engine", 'e', "Run (JACK) engine", Atom::BOOL, false)
+ .add("engine-port", 'E', "Engine listen port", Atom::INT, 16180)
+ .add("gui", 'g', "Launch the GTK graphical interface", Atom::BOOL, false)
+ .add("help", 'h', "Print this help message", Atom::BOOL, false)
+ .add("jack-client", 'n', "JACK client name", Atom::STRING, "ingen")
+ .add("jack-server", 's', "JACK server name", Atom::STRING, "default")
+ .add("load", 'l', "Load patch", Atom::STRING, Atom())
+ .add("parallelism", 'p', "Number of concurrent process threads", Atom::INT, 1)
+ .add("path", 'L', "Target path for loaded patch", Atom::STRING, Atom())
+ .add("run", 'r', "Run script", Atom::STRING, Atom());
+}
+
+} // namespace Shared
+} // namespace Ingen
diff --git a/src/shared/Configuration.hpp b/src/shared/Configuration.hpp
new file mode 100644
index 00000000..12c95e9b
--- /dev/null
+++ b/src/shared/Configuration.hpp
@@ -0,0 +1,35 @@
+/* This file is part of Ingen.
+ * Copyright (C) 2010 Dave Robillard <http://drobilla.net>
+ *
+ * Ingen is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef INGEN_SHARED_CONFIGURATION_HPP
+#define INGEN_SHARED_CONFIGURATION_HPP
+
+#include "raul/Configuration.hpp"
+
+namespace Ingen {
+namespace Shared {
+
+class Configuration : public Raul::Configuration {
+public:
+ Configuration();
+};
+
+} // namespace Shared
+} // namespace Ingen
+
+#endif // INGEN_SHARED_CONFIGURATION_HPP
+