2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2012-05-30 10:32:27 -04:00
|
|
|
Copyright (C) 2001-2012 Paul Davis
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 more 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstdlib>
|
2008-09-10 17:27:39 -04:00
|
|
|
#include <signal.h>
|
2010-11-03 22:40:07 -04:00
|
|
|
#include <cerrno>
|
|
|
|
#include <fstream>
|
2012-05-05 10:16:13 -04:00
|
|
|
#include <vector>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <sigc++/bind.h>
|
2005-11-29 12:27:58 -05:00
|
|
|
#include <gtkmm/settings.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "pbd/file_utils.h"
|
|
|
|
#include "pbd/textreceiver.h"
|
|
|
|
#include "pbd/failed_constructor.h"
|
2013-07-11 14:57:16 -04:00
|
|
|
#include "pbd/pathexpand.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/pthread_utils.h"
|
2011-02-10 12:44:33 -05:00
|
|
|
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
|
|
|
|
#include "pbd/boost_debug.h"
|
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-03-17 09:53:30 -04:00
|
|
|
#include "ardour/revision.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/version.h"
|
|
|
|
#include "ardour/ardour.h"
|
|
|
|
#include "ardour/audioengine.h"
|
|
|
|
#include "ardour/session_utils.h"
|
|
|
|
#include "ardour/filesystem_paths.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/main.h>
|
2010-08-16 22:48:24 -04:00
|
|
|
#include <gtkmm2ext/application.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/popup.h>
|
|
|
|
#include <gtkmm2ext/utils.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "opts.h"
|
2007-01-09 18:24:54 -05:00
|
|
|
#include "enums.h"
|
2014-03-02 11:30:51 -05:00
|
|
|
#include "bundle_env.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2014-10-25 22:10:53 -04:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
2014-04-15 06:01:48 -04:00
|
|
|
#include <fcntl.h> // Needed for '_fmode'
|
|
|
|
#endif
|
2013-02-22 10:48:44 -05:00
|
|
|
|
2014-09-06 11:59:53 -04:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-version.h"
|
|
|
|
#endif
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2007-10-11 18:07:47 -04:00
|
|
|
using namespace ARDOUR_COMMAND_LINE;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
TextReceiver text_receiver ("ardour");
|
|
|
|
|
|
|
|
extern int curvetest (string);
|
|
|
|
|
|
|
|
static ARDOUR_UI *ui = 0;
|
2007-10-14 01:45:31 -04:00
|
|
|
static const char* localedir = LOCALEDIR;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
gui_jack_error ()
|
|
|
|
{
|
2013-09-17 22:25:21 -04:00
|
|
|
MessageDialog win (string_compose (_("%1 could not connect to the audio backend."), PROGRAM_NAME),
|
2011-11-18 15:22:49 -05:00
|
|
|
false,
|
|
|
|
Gtk::MESSAGE_INFO,
|
|
|
|
Gtk::BUTTONS_NONE);
|
2006-04-19 16:42:17 -04:00
|
|
|
|
|
|
|
win.add_button (Stock::QUIT, RESPONSE_CLOSE);
|
|
|
|
win.set_default_response (RESPONSE_CLOSE);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
win.show_all ();
|
2005-10-27 16:51:57 -04:00
|
|
|
win.set_position (Gtk::WIN_POS_CENTER);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-30 22:28:42 -04:00
|
|
|
if (!no_splash) {
|
2006-11-19 11:45:16 -05:00
|
|
|
ui->hide_splash ();
|
2006-08-30 22:28:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* we just don't care about the result, but we want to block */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-08 13:53:43 -05:00
|
|
|
win.run ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
static gboolean
|
2013-07-24 08:36:04 -04:00
|
|
|
tell_about_backend_death (void* /* ignored */)
|
2010-03-16 11:33:04 -04:00
|
|
|
{
|
|
|
|
if (AudioEngine::instance()->processed_frames() == 0) {
|
|
|
|
/* died during startup */
|
2013-07-24 08:36:04 -04:00
|
|
|
MessageDialog msg (string_compose (_("The audio backend (%1) has failed, or terminated"), AudioEngine::instance()->current_backend_name()), false);
|
2010-03-16 11:33:04 -04:00
|
|
|
msg.set_position (Gtk::WIN_POS_CENTER);
|
2010-08-16 20:28:20 -04:00
|
|
|
msg.set_secondary_text (string_compose (_(
|
2013-07-24 08:36:04 -04:00
|
|
|
"%2 exited unexpectedly, and without notifying %1.\n\
|
2010-03-16 11:33:04 -04:00
|
|
|
\n\
|
2013-07-24 08:36:04 -04:00
|
|
|
This could be due to misconfiguration or to an error inside %2.\n\
|
2010-03-16 11:33:04 -04:00
|
|
|
\n\
|
2013-07-24 08:36:04 -04:00
|
|
|
Click OK to exit %1."), PROGRAM_NAME, AudioEngine::instance()->current_backend_name()));
|
2011-04-04 18:46:48 -04:00
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
msg.run ();
|
|
|
|
_exit (0);
|
2011-04-04 18:46:48 -04:00
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
} else {
|
|
|
|
|
2013-07-24 08:36:04 -04:00
|
|
|
/* engine has already run, so this is a mid-session backend death */
|
|
|
|
|
|
|
|
MessageDialog msg (string_compose (_("The audio backend (%1) has failed, or terminated"), AudioEngine::instance()->current_backend_name()), false);
|
2013-07-30 23:26:46 -04:00
|
|
|
msg.set_secondary_text (string_compose (_("%2 exited unexpectedly, and without notifying %1."),
|
2013-07-24 08:36:04 -04:00
|
|
|
PROGRAM_NAME, AudioEngine::instance()->current_backend_name()));
|
2013-07-30 23:26:46 -04:00
|
|
|
msg.present ();
|
2010-03-16 11:33:04 -04:00
|
|
|
}
|
|
|
|
return false; /* do not call again */
|
|
|
|
}
|
|
|
|
|
2014-11-23 16:04:32 -05:00
|
|
|
#ifndef PLATFORM_WINDOWS
|
2008-09-10 17:27:39 -04:00
|
|
|
static void
|
2010-11-13 00:14:48 -05:00
|
|
|
sigpipe_handler (int /*signal*/)
|
2008-09-10 17:27:39 -04:00
|
|
|
{
|
2013-07-24 08:36:04 -04:00
|
|
|
/* XXX fix this so that we do this again after a reconnect to the backend
|
2011-04-04 18:46:48 -04:00
|
|
|
*/
|
|
|
|
|
2013-07-24 08:36:04 -04:00
|
|
|
static bool done_the_backend_thing = false;
|
2010-03-16 11:33:04 -04:00
|
|
|
|
2013-07-24 08:36:04 -04:00
|
|
|
if (!done_the_backend_thing) {
|
2010-03-16 11:33:04 -04:00
|
|
|
AudioEngine::instance()->died ();
|
2013-07-24 08:36:04 -04:00
|
|
|
g_idle_add (tell_about_backend_death, 0);
|
|
|
|
done_the_backend_thing = true;
|
2010-03-16 11:33:04 -04:00
|
|
|
}
|
2008-09-10 17:27:39 -04:00
|
|
|
}
|
2014-11-23 16:04:32 -05:00
|
|
|
#endif
|
2008-09-10 17:27:39 -04:00
|
|
|
|
2014-04-14 11:59:28 -04:00
|
|
|
#if (defined(COMPILER_MSVC) && defined(NDEBUG) && !defined(RDC_BUILD))
|
2014-04-14 11:54:21 -04:00
|
|
|
/*
|
|
|
|
* Release build with MSVC uses ardour_main()
|
|
|
|
*/
|
|
|
|
int ardour_main (int argc, char *argv[])
|
2014-04-14 10:54:32 -04:00
|
|
|
|
2014-04-14 11:54:21 -04:00
|
|
|
#elif (defined WINDOWS_VST_SUPPORT && !defined PLATFORM_WINDOWS)
|
|
|
|
|
|
|
|
// prototype for function in windows_vst_plugin_ui.cc
|
2011-11-21 12:42:29 -05:00
|
|
|
extern int windows_vst_gui_init (int* argc, char** argv[]);
|
2009-02-27 12:11:21 -05:00
|
|
|
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
/* this is called from the entry point of a wine-compiled
|
|
|
|
executable that is linked against gtk2_ardour built
|
|
|
|
as a shared library.
|
|
|
|
*/
|
|
|
|
extern "C" {
|
2014-04-14 11:54:21 -04:00
|
|
|
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
int ardour_main (int argc, char *argv[])
|
2014-04-14 10:54:32 -04:00
|
|
|
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
#else
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2014-10-25 22:10:53 -04:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
2014-04-15 06:01:48 -04:00
|
|
|
// Essential!! Make sure that any files used by Ardour
|
|
|
|
// will be created or opened in BINARY mode!
|
|
|
|
_fmode = O_BINARY;
|
|
|
|
#endif
|
|
|
|
|
2014-03-02 11:30:51 -05:00
|
|
|
fixup_bundle_environment (argc, argv, &localedir);
|
2007-10-11 18:07:47 -04:00
|
|
|
|
2014-04-14 10:54:32 -04:00
|
|
|
load_custom_fonts(); /* needs to happen before any gtk and pango init calls */
|
2013-01-29 10:25:30 -05:00
|
|
|
|
2011-02-10 12:44:33 -05:00
|
|
|
if (!Glib::thread_supported()) {
|
2009-10-27 14:00:45 -04:00
|
|
|
Glib::thread_init();
|
2011-04-04 18:46:48 -04:00
|
|
|
}
|
2009-10-27 14:00:45 -04:00
|
|
|
|
2013-01-23 11:09:10 -05:00
|
|
|
#ifdef ENABLE_NLS
|
2005-09-25 14:42:24 -04:00
|
|
|
gtk_set_locale ();
|
2013-01-23 11:09:10 -05:00
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-04-15 06:01:48 -04:00
|
|
|
#if (defined WINDOWS_VST_SUPPORT && !defined PLATFORM_WINDOWS)
|
2014-04-14 11:54:21 -04:00
|
|
|
/* this does some magic that is needed to make GTK and X11 client interact properly.
|
|
|
|
* the platform dependent code is in windows_vst_plugin_ui.cc
|
|
|
|
*/
|
2011-11-21 12:42:29 -05:00
|
|
|
windows_vst_gui_init (&argc, &argv);
|
2009-02-27 12:11:21 -05:00
|
|
|
#endif
|
|
|
|
|
2013-01-21 22:29:28 -05:00
|
|
|
#ifdef ENABLE_NLS
|
2014-04-14 10:54:32 -04:00
|
|
|
cerr << "bind txt domain [" << PACKAGE << "] to " << localedir << endl;
|
2013-01-21 22:29:28 -05:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
(void) bindtextdomain (PACKAGE, localedir);
|
2007-01-28 12:44:13 -05:00
|
|
|
/* our i18n translations are all in UTF-8, so make sure
|
|
|
|
that even if the user locale doesn't specify UTF-8,
|
|
|
|
we use that when handling them.
|
|
|
|
*/
|
|
|
|
(void) bind_textdomain_codeset (PACKAGE,"UTF-8");
|
2013-01-21 22:29:28 -05:00
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, 0);
|
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
// catch error message system signals ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
text_receiver.listen_to (error);
|
|
|
|
text_receiver.listen_to (info);
|
|
|
|
text_receiver.listen_to (fatal);
|
|
|
|
text_receiver.listen_to (warning);
|
|
|
|
|
2011-02-10 12:44:33 -05:00
|
|
|
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
|
2013-07-11 11:37:25 -04:00
|
|
|
if (g_getenv ("BOOST_DEBUG")) {
|
2011-04-04 18:46:48 -04:00
|
|
|
boost_debug_shared_ptr_show_live_debugging (true);
|
|
|
|
}
|
2011-02-10 12:44:33 -05:00
|
|
|
#endif
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (parse_opts (argc, argv)) {
|
2014-04-15 06:01:48 -04:00
|
|
|
#if (defined(COMPILER_MSVC) && defined(NDEBUG) && !defined(RDC_BUILD))
|
|
|
|
// Since we don't ordinarily have access to stdout and stderr with
|
|
|
|
// an MSVC app, let the user know we encountered a parsing error.
|
|
|
|
Gtk::Main app(&argc, &argv); // Calls 'gtk_init()'
|
|
|
|
|
|
|
|
Gtk::MessageDialog dlgReportParseError (_("\n Ardour could not understand your command line "),
|
|
|
|
false, MESSAGE_ERROR, BUTTONS_CLOSE, true);
|
|
|
|
dlgReportParseError.set_title (_("An error was encountered while launching Ardour"));
|
|
|
|
dlgReportParseError.run ();
|
|
|
|
#endif
|
2005-09-25 14:42:24 -04:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2010-03-14 22:31:27 -04:00
|
|
|
cout << PROGRAM_NAME
|
2005-09-25 14:42:24 -04:00
|
|
|
<< VERSIONSTRING
|
The great audio processing overhaul.
The vast majority of Route signal processing is now simply in the list of
processors. There are definitely regressions here, but there's also
a lot of things fixed. It's far too much work to let diverge anymore
regardless, so here it is.
The basic model is: A route has a fixed set of input channels (matching
its JACK input ports and diskstream). The first processor takes this
as input. The next processor is configured using the first processor's
output as input, and is allowed to choose whatever output it wants
given that input... and so on, and so on. Finally, the last processor's
requested output is used to set up the panner and create whatever Jack
ports are needed to output the data.
All 'special' internal processors (meter, fader, amp, insert, send) are
currently transparent: they read any input, and return the same set
of channels back (unmodified, except for amp).
User visible changes:
* LV2 Instrument support (tracks with both MIDI and audio channels)
* MIDI in/out plugin support
* Generic plugin replication (for MIDI plugins, MIDI/audio plugins)
* Movable meter point
Known Bugs:
* Things seem to get weird on loaded sessions
* Output delivery is sketchy
* 2.0 session loading was probably already broken...
but it's definitely broken now :)
Please test this and file bugs if you have any time...
git-svn-id: svn://localhost/ardour2/branches/3.0@5055 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-05-07 02:30:50 -04:00
|
|
|
<< _(" (built using ")
|
2013-03-17 09:53:30 -04:00
|
|
|
<< revision
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifdef __GNUC__
|
2009-10-14 12:10:01 -04:00
|
|
|
<< _(" and GCC version ") << __VERSION__
|
2005-09-25 14:42:24 -04:00
|
|
|
#endif
|
|
|
|
<< ')'
|
|
|
|
<< endl;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (just_version) {
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (no_splash) {
|
2012-01-03 16:13:05 -05:00
|
|
|
cerr << _("Copyright (C) 1999-2012 Paul Davis") << endl
|
2012-11-13 10:11:07 -05:00
|
|
|
<< _("Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker, Robin Gareus") << endl
|
2005-09-25 14:42:24 -04:00
|
|
|
<< endl
|
2010-03-14 22:31:27 -04:00
|
|
|
<< string_compose (_("%1 comes with ABSOLUTELY NO WARRANTY"), PROGRAM_NAME) << endl
|
2005-09-25 14:42:24 -04:00
|
|
|
<< _("not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") << endl
|
|
|
|
<< _("This is free software, and you are welcome to redistribute it ") << endl
|
|
|
|
<< _("under certain conditions; see the source for copying conditions.")
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
|
2007-03-18 02:07:08 -04:00
|
|
|
/* some GUI objects need this */
|
|
|
|
|
2013-08-09 07:47:16 -04:00
|
|
|
if (!ARDOUR::init (ARDOUR_COMMAND_LINE::use_vst, ARDOUR_COMMAND_LINE::try_hw_optimization, localedir)) {
|
|
|
|
error << string_compose (_("could not initialize %1."), PROGRAM_NAME) << endmsg;
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2013-08-09 22:08:45 -04:00
|
|
|
if (curvetest_file) {
|
|
|
|
return curvetest (curvetest_file);
|
|
|
|
}
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2013-10-14 12:00:28 -04:00
|
|
|
#ifndef PLATFORM_WINDOWS
|
2008-09-10 17:27:39 -04:00
|
|
|
if (::signal (SIGPIPE, sigpipe_handler)) {
|
2010-09-20 11:12:44 -04:00
|
|
|
cerr << _("Cannot xinstall SIGPIPE error handler") << endl;
|
2008-09-10 17:27:39 -04:00
|
|
|
}
|
2013-07-11 22:34:59 -04:00
|
|
|
#endif
|
2008-09-10 17:27:39 -04:00
|
|
|
|
2009-10-27 14:00:45 -04:00
|
|
|
try {
|
2014-11-19 13:12:06 -05:00
|
|
|
ARDOUR_UI::create_configuration ();
|
2013-01-21 18:14:00 -05:00
|
|
|
ui = new ARDOUR_UI (&argc, &argv, localedir);
|
2006-08-30 22:28:42 -04:00
|
|
|
} catch (failed_constructor& err) {
|
2013-02-05 13:18:35 -05:00
|
|
|
error << string_compose (_("could not create %1 GUI"), PROGRAM_NAME) << endmsg;
|
2005-09-25 14:42:24 -04:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
ui->run (text_receiver);
|
2011-04-04 18:46:48 -04:00
|
|
|
Gtkmm2ext::Application::instance()->cleanup();
|
2013-10-07 20:28:20 -04:00
|
|
|
delete ui;
|
2007-10-11 18:07:47 -04:00
|
|
|
ui = 0;
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
ARDOUR::cleanup ();
|
2009-12-09 13:37:06 -05:00
|
|
|
pthread_cancel_all ();
|
2009-12-08 22:05:14 -05:00
|
|
|
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
return 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2014-04-14 11:54:21 -04:00
|
|
|
#if (defined WINDOWS_VST_SUPPORT && !defined PLATFORM_WINDOWS)
|
2014-04-14 10:54:32 -04:00
|
|
|
} // end of extern "C" block
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
#endif
|