2007-12-18 05:09:02 +01:00
|
|
|
/**********************************************************************************/
|
|
|
|
/* Copyright (C) 2007,2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* 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; see the file COPYING. If not,write to the Free Software ; */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/**********************************************************************************/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2008-02-12 00:42:15 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
#include "non.H"
|
|
|
|
// #include "gui/input.H"
|
|
|
|
#include "gui/ui.H"
|
|
|
|
#include "jack.H"
|
|
|
|
#include "lash.H"
|
|
|
|
|
|
|
|
#include "pattern.H"
|
|
|
|
#include "phrase.H"
|
|
|
|
|
2008-02-12 00:42:15 +01:00
|
|
|
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
Canvas *pattern_c, *phrase_c, *trigger_c;
|
|
|
|
|
|
|
|
sequence *playlist;
|
|
|
|
|
|
|
|
global_settings config;
|
|
|
|
song_settings song;
|
|
|
|
|
|
|
|
Lash lash;
|
|
|
|
|
|
|
|
/* default to pattern mode */
|
|
|
|
|
|
|
|
UI *ui;
|
|
|
|
|
|
|
|
void
|
|
|
|
quit ( void )
|
|
|
|
{
|
|
|
|
/* clean up, only for valgrind's sake */
|
|
|
|
|
|
|
|
delete ui;
|
|
|
|
|
|
|
|
delete pattern_c;
|
|
|
|
delete phrase_c;
|
|
|
|
delete trigger_c;
|
|
|
|
|
|
|
|
midi_all_sound_off();
|
|
|
|
|
|
|
|
// wait for it...
|
|
|
|
sleep( 1 );
|
|
|
|
|
|
|
|
midi_shutdown();
|
|
|
|
|
|
|
|
MESSAGE( "Your fun is over" );
|
|
|
|
|
|
|
|
exit( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
init_song ( void )
|
|
|
|
{
|
|
|
|
song.filename = NULL;
|
|
|
|
|
|
|
|
pattern_c->grid( NULL );
|
|
|
|
phrase_c->grid( NULL );
|
|
|
|
|
|
|
|
playlist->reset();
|
|
|
|
playlist->insert( 0, 1 );
|
|
|
|
pattern_c->grid( new pattern );
|
|
|
|
phrase_c->grid( new phrase );
|
2008-03-23 07:26:12 +01:00
|
|
|
|
|
|
|
song.dirty( false );
|
2007-12-18 05:09:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
handle_midi_input ( void )
|
|
|
|
{
|
|
|
|
midievent *e;
|
|
|
|
while ( ( e = midi_input_event( PERFORMANCE ) ) )
|
|
|
|
{
|
|
|
|
pattern::record_event( e );
|
|
|
|
delete e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
load_song ( const char *name )
|
|
|
|
{
|
|
|
|
MESSAGE( "loading song \"%s\"", name );
|
|
|
|
|
|
|
|
pattern_c->grid( NULL );
|
|
|
|
phrase_c->grid( NULL );
|
|
|
|
|
|
|
|
if ( ! playlist->load( name ) )
|
|
|
|
{
|
|
|
|
WARNING( "failed to load song file" );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern_c->grid( pattern::pattern_by_number( 1 ) );
|
|
|
|
phrase_c->grid( phrase::phrase_by_number( 1 ) );
|
|
|
|
|
|
|
|
song.filename = strdup( name );
|
|
|
|
|
2008-03-23 05:43:40 +01:00
|
|
|
song.dirty( false );
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
save_song ( const char *name )
|
|
|
|
{
|
|
|
|
playlist->save( name );
|
|
|
|
|
|
|
|
song.filename = strdup( name );
|
2008-02-12 07:06:08 +01:00
|
|
|
song.dirty( false );
|
2007-12-18 05:09:02 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main ( int argc, char **argv )
|
|
|
|
{
|
|
|
|
|
|
|
|
config.follow_playhead = true;
|
|
|
|
config.record_mode = MERGE;
|
|
|
|
song.play_mode = PATTERN;
|
|
|
|
song.random.feel = 8;
|
|
|
|
song.random.probability = 0.33;
|
|
|
|
|
2008-02-12 00:42:15 +01:00
|
|
|
asprintf( &config.user_config_dir, "%s/%s", getenv( "HOME" ), USER_CONFIG_DIR );
|
|
|
|
mkdir( config.user_config_dir, 0777 );
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
printf( "%s %s -- %s\n", APP_TITLE, VERSION, COPYRIGHT );
|
|
|
|
|
|
|
|
playlist = new sequence;
|
|
|
|
|
|
|
|
pattern_c = new Canvas;
|
|
|
|
phrase_c = new Canvas;
|
|
|
|
trigger_c = new Canvas;
|
|
|
|
|
|
|
|
init_song();
|
|
|
|
|
2008-02-13 00:04:38 +01:00
|
|
|
pattern::signal_create_destroy.connect( mem_fun( phrase_c, &Canvas::v_zoom_fit ) );
|
2008-03-23 05:43:40 +01:00
|
|
|
pattern::signal_create_destroy.connect( mem_fun( song, &song_settings::set_dirty ) );
|
|
|
|
phrase::signal_create_destroy.connect( mem_fun( song, &song_settings::set_dirty ) );
|
2008-02-13 00:04:38 +01:00
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
if ( ! lash.init( &argc, &argv ) )
|
|
|
|
WARNING( "error initializing LASH" );
|
|
|
|
|
|
|
|
if ( argc > 1 )
|
|
|
|
{
|
|
|
|
/* maybe a filename on the commandline */
|
|
|
|
load_song( argv[1] );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! midi_init() )
|
|
|
|
ASSERTION( "Could not initialize MIDI system! (is Jack running and with MIDI ports enabled?)" );
|
|
|
|
|
2008-03-19 02:54:31 +01:00
|
|
|
if ( ! transport.valid )
|
2008-03-19 03:21:19 +01:00
|
|
|
if ( transport.master )
|
|
|
|
ASSERTION( "The version of JACK you are using does not appear to be capable of passing BBT positional information." );
|
|
|
|
else
|
|
|
|
ASSERTION( "Either the version of JACK you are using does pass BBT information, or the current timebase master does not provide it." );
|
2008-03-19 02:54:31 +01:00
|
|
|
|
2008-03-23 05:43:40 +01:00
|
|
|
song.dirty( false );
|
|
|
|
|
2007-12-18 05:09:02 +01:00
|
|
|
MESSAGE( "Initializing GUI" );
|
|
|
|
|
|
|
|
init_colors();
|
|
|
|
|
|
|
|
ui = new UI;
|
|
|
|
|
|
|
|
ui->run();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|