📄 qmus2mid2.c
字号:
track[MIDItrack].DeltaTime = 0 ;
switch( et )
{
case 0 : /* release note */
NewEvent = 0x90 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
data = getc( file_mus ) ;
TWriteByte( MIDItrack, data, track ) ;
TWriteByte( MIDItrack, 0, track ) ;
break ;
case 1 :
NewEvent = 0x90 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
data = getc( file_mus ) ;
TWriteByte( MIDItrack, data & 0x7F, track ) ;
if( data & 0x80 )
track[MIDItrack].vel = getc( file_mus ) ;
TWriteByte( MIDItrack, track[MIDItrack].vel, track ) ;
break ;
case 2 :
NewEvent = 0xE0 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
data = getc( file_mus ) ;
TWriteByte( MIDItrack, (data & 1) << 6, track ) ;
TWriteByte( MIDItrack, data >> 1, track ) ;
break ;
case 3 :
NewEvent = 0xB0 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
data = getc( file_mus ) ;
TWriteByte( MIDItrack, MUS2MIDcontrol[data], track ) ;
if( data == 12 )
TWriteByte( MIDItrack, MUSh.channels+1, track ) ;
else
TWriteByte( MIDItrack, 0, track ) ;
break ;
case 4 :
data = getc( file_mus ) ;
if( data )
{
NewEvent = 0xB0 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
TWriteByte( MIDItrack, MUS2MIDcontrol[data], track ) ;
}
else
{
NewEvent = 0xC0 | MIDIchannel ;
if( (NewEvent != track[MIDItrack].LastEvent) || nocomp )
{
TWriteByte( MIDItrack, NewEvent, track ) ;
track[MIDItrack].LastEvent = NewEvent ;
}
else
n++ ;
}
data = getc( file_mus ) ;
TWriteByte( MIDItrack, data, track ) ;
break ;
case 5 :
case 7 :
FreeTracks( track ) ;
Close() ;
return MUSFILECOR ;
default : break ;
}
if( last( event ) )
{
DeltaTime = ReadTime( file_mus ) ;
TotalTime += DeltaTime ;
for( i = 0 ; i < (int) TrackCnt ; i++ )
track[i].DeltaTime += DeltaTime ;
}
event = getc( file_mus ) ;
if( event != EOF )
{
et = event_type( event ) ;
MUSchannel = channel( event ) ;
}
else
ouch = 1 ;
}
if( !nodisplay ) printf( "done !\n" ) ;
if( ouch )
printf( "WARNING : There are bytes missing at the end of %s.\n "
"The end of the MIDI file might not fit the original one.\n", mus ) ;
if( !division )
division = 89 ;
else
if( !nodisplay ) printf( "Ticks per quarter note set to %d.\n", division ) ;
if( !nodisplay )
{
if( division != 89 )
{
time = TotalTime / 140 ;
min = time / 60 ;
sec = (char) (time - min*60) ;
printf( "Playing time of the MUS file : %u'%.2u''.\n", min, sec ) ;
}
time = (TotalTime * 89) / (140 * division) ;
min = time / 60 ;
sec = (char) (time - min*60) ;
if( division != 89 )
printf( " MID file" ) ;
else
printf( "Playing time" ) ;
printf( " : %u'%.2u''.\n", min, sec ) ;
}
if( !nodisplay )
{
printf( "Writing..." ) ;
fflush( stdout ) ;
}
WriteMIDheader( TrackCnt+1, division, file_mid ) ;
WriteFirstTrack( file_mid ) ;
for( i = 0 ; i < (int) TrackCnt ; i++ )
WriteTrack( i, file_mid, track ) ;
if( !nodisplay )
printf( "done !\n" ) ;
if( !nodisplay && !nocomp )
printf( "Compression : %u%%.\n",
(100 * n) / (n+ (int4) ftell( file_mid )) ) ;
FreeTracks( track ) ;
fclose(file_mus);
fclose(file_mid);
return 0 ;
}
int convert( const char *mus, const char *mid, int nodisplay, int div,
int size, int nocomp, int *ow )
{
FILE *file ;
int error;
struct stat file_data ;
char buffer[30] ;
/* we don't need _all_ that checking, do we ? */
/* Answer : it's more user-friendly */
if ( !*ow ) {
file = fopen(mid, "r");
if ( file ) {
fclose(file);
printf( "qmus2mid: file %s exists, not removed.\n", mid ) ;
return 2 ;
}
}
error = qmus2mid( mus, mid, nodisplay, div, size, nocomp ) ;
if( error )
{
printf( "ERROR : " ) ;
switch( error )
{
case NOTMUSFILE :
printf( "%s is not a MUS file.\n", mus ) ; break ;
case COMUSFILE :
printf( "Can't open %s for read.\n", mus ) ; break ;
case COTMPFILE :
printf( "Can't open temp file.\n" ) ; break ;
case CWMIDFILE :
printf( "Can't write %s (?).\n", mid ) ; break ;
case MUSFILECOR :
printf( "%s is corrupted.\n", mus ) ; break ;
case TOOMCHAN :
printf( "%s contains more than 16 channels.\n", mus ) ; break ;
case MEMALLOC :
printf( "Not enough memory.\n" ) ; break ;
default : break ;
}
return 4 ;
}
if( !nodisplay )
{
printf( "%s converted successfully.\n", mus ) ;
if( (file = fopen( mid, "rb" )) != NULL )
{
stat( mid, &file_data ) ;
fclose( file ) ;
sprintf( buffer, " : %lu bytes", (unsigned long) file_data.st_size ) ;
}
printf( "%s (%scompressed) written%s.\n", mid, nocomp ? "NOT " : "",
file ? buffer : "" ) ;
}
return 0 ;
}
int CheckParm( char *check, int argc, char *argv[] )
{
int i;
for ( i = 1 ; i<argc ; i++ )
if( !strcmp( check, argv[i] ) )
return i ;
return 0;
}
void PrintHeader( void )
{
printf( "===============================================================================\n"
" Quick MUS->MID v2.0 ! (C) 1995,96 Sebastien Bacquet\n"
" E-mail : bacquet@iie.cnam.fr\n"
"===============================================================================\n" ) ;
}
void PrintSyntax( void )
{
PrintHeader() ;
printf(
"\nSyntax : QMUS2MID musfile midifile [options]\n"
" Options are :\n"
" -noow : Don't overwrite !\n"
" -nodisp : Display nothing ! (except errors)\n"
" -nocomp : Don't compress !\n"
" -size ### : Set the track buffer size to ### (in KB). "
"Default = 64 KB\n"
" -t ### : Ticks per quarter note. Default = 89\n"
) ;
}
/*
int main( int argc, char *argv[] )
{
int div = 0, ow = 1, nodisplay = 0, nocomp = 0, size = 0, n ;
char mus[FILENAME_MAX], mid[FILENAME_MAX];
if ( !LittleEndian() ) {
printf("\nSorry, this program presently only works on "
"little-endian machines... \n\n");
exit( EXIT_FAILURE ) ;
}
if( argc < 3 )
{
PrintSyntax() ;
exit( EXIT_FAILURE ) ;
}
strncpy( mus, argv[1], FILENAME_MAX ) ;
strncpy( mid, argv[2], FILENAME_MAX ) ;
if( CheckParm( "-nodisp", argc, argv ) )
nodisplay = 1 ;
if( !nodisplay )
PrintHeader() ;
if( (n = CheckParm( "-size", argc, argv )) != 0 )
size = atoi( argv[n+1] ) ;
if( CheckParm( "-noow", argc, argv ) )
ow -= 1 ;
if( (n = CheckParm( "-t", argc, argv )) != 0 )
div = atoi( argv[n+1] ) ;
if( CheckParm( "-nocomp", argc, argv ) )
nocomp = 1 ;
convert( mus, mid, nodisplay, div, size, nocomp, &ow ) ;
return 0;
}
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -