Support loading of user defined instruments.

pull/3/head
Jonathan Moore Liles 2008-02-11 18:22:04 -06:00
parent c0c7f71830
commit 00354529c7
2 changed files with 52 additions and 20 deletions

View File

@ -31,6 +31,13 @@
#include <fnmatch.h> #include <fnmatch.h>
#include <dirent.h> #include <dirent.h>
#include <list>
#include <string>
using std::list;
using std::string;
/****** /******
Instrument definition file format is thus: Instrument definition file format is thus:
@ -134,10 +141,16 @@ Instrument::read ( const char *s )
char pat[512]; char pat[512];
sprintf( pat, "%s%s.inst", SYSTEM_PATH INSTRUMENT_DIR, s ); sprintf( pat, "%s%s.inst", config.user_config_dir, s );
if ( ! ( fp = fopen( pat, "r" ) ) ) if ( ! ( fp = fopen( pat, "r" ) ) )
return false; {
sprintf( pat, "%s%s.inst", SYSTEM_PATH INSTRUMENT_DIR, s );
if ( ! ( fp = fopen( pat, "r" ) ) )
return false;
}
struct i_map m; struct i_map m;
char namebuf[256]; char namebuf[256];
@ -184,7 +197,7 @@ Instrument::write ( const char *s ) const
char pat[512]; char pat[512];
sprintf( pat, "%s/%s%s.inst", config.user_config_dir, INSTRUMENT_DIR, s ); sprintf( pat, "%s/%s.inst", config.user_config_dir, s );
if ( ! ( fp = fopen( pat, "w" ) ) ) if ( ! ( fp = fopen( pat, "w" ) ) )
return false; return false;
@ -214,25 +227,22 @@ instrument_filter ( const struct dirent *d )
return 0 == fnmatch( suffix, d->d_name, 0 ); return 0 == fnmatch( suffix, d->d_name, 0 );
} }
/* Returns a list of available instruments */ static
char ** list <string> *
Instrument::listing ( void ) get_listing( const char *dir )
{ {
char **sa; list <string> *sl = new list <string>;
struct dirent **names; struct dirent **names;
int n; int n;
if ( 0 > ( n = scandir( SYSTEM_PATH INSTRUMENT_DIR, &names, instrument_filter, alphasort ) ) ) if ( 0 > ( n = scandir( dir, &names, instrument_filter, alphasort ) ) )
{ {
WARNING( "couldn't open instrument directory" ); WARNING( "couldn't open instrument directory" );
return NULL; return NULL;
} }
else else
{ {
sa = (char **)malloc( sizeof( char * ) * (n + 1) );
sa[n] = NULL;
while (n--) while (n--)
{ {
char *c = rindex( names[n]->d_name, '.' ); char *c = rindex( names[n]->d_name, '.' );
@ -242,16 +252,45 @@ Instrument::listing ( void )
MESSAGE( "found instrument: %s", names[n]->d_name ); MESSAGE( "found instrument: %s", names[n]->d_name );
sa[n] = strdup( names[n]->d_name ); string s( names[n]->d_name );
sl->push_back( s );
free( names[n] ); free( names[n] );
} }
free( names ); free( names );
return sa; return sl;
} }
} }
/* Returns a list of available instruments */
char **
Instrument::listing ( void )
{
list <string> *sys = get_listing( SYSTEM_PATH INSTRUMENT_DIR );
list <string> *usr = get_listing( config.user_config_dir );
usr->merge( *sys );
usr->unique();
usr->sort();
delete sys;
char **sa = (char**)malloc( usr->size() * sizeof( char * ) + 1 );
int i = 0;
for ( list <string>::iterator s = usr->begin(); s != usr->end(); s++, i++ )
sa[i] = strdup( s->c_str() );
sa[i] = NULL;
delete usr;
return sa;
}
const char * const char *
Instrument::name ( void ) const Instrument::name ( void ) const
{ {

7
main.C
View File

@ -140,14 +140,7 @@ main ( int argc, char **argv )
song.random.probability = 0.33; song.random.probability = 0.33;
asprintf( &config.user_config_dir, "%s/%s", getenv( "HOME" ), USER_CONFIG_DIR ); asprintf( &config.user_config_dir, "%s/%s", getenv( "HOME" ), USER_CONFIG_DIR );
mkdir( config.user_config_dir, 0777 ); mkdir( config.user_config_dir, 0777 );
{
char pat[512];
snprintf( pat, 512, "%s/%s", config.user_config_dir, INSTRUMENT_DIR );
mkdir( pat, 0777 );
}
printf( "%s %s -- %s\n", APP_TITLE, VERSION, COPYRIGHT ); printf( "%s %s -- %s\n", APP_TITLE, VERSION, COPYRIGHT );