'' '' bam2mid -- convert a .BAM file to a General Midi .MID file '' 2005-10-11 - 1.0 - Ignores final infinite loop point and '' sets velocity to 64. Don't know if that '' is good or bad. '' '' usage: bam2mid [] '' defaults to .mid if not specified. '' '' To compile: '' fbc -lang deprecated bam2mid.bas '' option explicit #include "banks.bi" #define VELOCITY 96 #define NOTE_OFF &b10000000 #define NOTE_ON &b10010000 #define PATCH_CHANGE &b11000000 declare function fput alias "fb_FilePut" ( byval fnum as integer, byval pos as integer = 0, byval src as any ptr, byval bytes as uinteger ) as integer declare sub bam2mid(infile as string, outfile as string, useOHRm as integer) declare sub setbigval(byval value as integer) declare sub setsmallval(byval value as integer) declare function setvarval(byval value as integer) as integer declare function getvoice(bamvoice as voice) as integer declare sub magicSysexStart(file as integer,length as integer) declare sub magicSysexEnd(file as integer) 'external 'declare sub debug(message as string) dim shared bignum(0 to 3) as ubyte => { 0, 0, 0, 0 } dim shared smallnum(0 to 1) as ubyte => { 0, 0 } sub bam2mid(infile as string, outfile as string, useOHRm as integer) 'fields for writing to midi file dim magic as string * 4 dim tracklen as integer = 0 dim lenpos as integer dim bamvoice as voice 'need to remember the exact note pressed in mids, unlike bams dim tracknote(0 to 15) as integer 'save file positions for loops dim labelpos(0 to 15) as integer dim loopcount(0 to 15) as integer dim returnpos as integer = -1 dim as integer f1, f2, i, j 'initialise shared vals setbigval(0) setsmallval(0) for i = 0 to 15 labelpos(i) = -1 loopcount(i) = -1 next if outfile = "" then outfile = infile + ".mid" end if 'open both files f1 = freefile open infile for binary as #f1 if err <> 0 then 'debug "File " + infile + " could not be opened." exit sub end if get #f1, , magic if magic <> "CBMF" then 'debug "File " + infile + " is not a BAM." close #f1 exit sub end if kill outfile f2 = freefile open outfile for binary as #f2 if err <> 0 then 'debug "Output file " + outfile + " could not be opened." close #f1 exit sub end if 'write the midi header magic = "MThd" put #f2, , magic 'chunk type bignum(3) = 6 put #f2, , bignum() 'chunk length put #f2, , smallnum() 'file type (type 0 = single track) smallnum(1) = 1 put #f2, , smallnum() 'number of tracks (always 1 for type 0) smallnum(1) = 37 put #f2, , smallnum() 'ticks per 1/4 note (half second, by default) 'write the track header magic = "MTrk" put #f2, , magic 'chunk type lenpos = seek(f2) 'remember where we are bignum(3) = 0 put #f2, , bignum() 'chunk length - come back and fill this in later 'process a bam dim ub as ubyte dim cmd as ubyte dim chan as ubyte dim delta as integer = 0 dim bc as integer dim mb as ubyte 'put the tempo in bc = setvarval(0) fput f2, , @bignum(0), bc 'variable length delta time tracklen = tracklen + bc mb = &hff put #f2, , mb 'metacommand mb = &h51 put #f2, , mb 'end track mb = 3 put #f2, , mb 'no further params tracklen = tracklen + 3 bignum(0) = &h07 bignum(1) = &hA1 bignum(2) = &h20 fput f2, , @bignum(0), 3 tracklen = tracklen + 3 get #f1, , ub do while not eof(f1) if ub < 128 then cmd = ub and &hf0 chan = ub and &h0f select case cmd case 0: 'stop song exit do case 16: 'start note get #f1, , ub 'get freq 'write midi note on bc = setvarval(delta) fput f2, , @bignum(0), bc 'variable length delta time tracklen = tracklen + bc mb = NOTE_ON or chan put #f2, , mb 'command put #f2, , ub 'note tracknote(chan) = ub 'remember note mb = VELOCITY put #f2, , mb 'velocity tracklen = tracklen + 3 delta = 0 case 32: 'stop note 'write midi note on bc = setvarval(delta) fput f2, , @bignum(0), bc 'variable length delta time tracklen = tracklen + bc mb = NOTE_OFF or chan put #f2, , mb 'command mb = tracknote(chan) put #f2, , mb 'note mb = 64 put #f2, , mb 'velocity tracklen = tracklen + 3 delta = 0 case 48: 'define instrument 'write midi patch change bc = setvarval(delta) fput f2, , @bignum(0), bc 'variable length delta time tracklen = tracklen + bc get #f1, , bamvoice mb = PATCH_CHANGE or chan put #f2, , mb mb = getvoice(bamvoice) put #f2, , mb tracklen = tracklen + 2 delta = 0 case 80: 'set label 'save file position if chan = 0 then bc = setvarval(delta) fput f2, , @bignum(0), bc 'variable length delta time tracklen += bc mb = &HB0 put #f2,,mb mb = 111 put #f2,,mb mb = 127 put #f2,,mb tracklen += 3 delta = 0 end if labelpos(chan) = seek(f1) + 1 case 96: 'jump get #f1, , ub 'loop control if labelpos(chan) > 0 then if ub = 255 then 'chorus loop, but only if not already 'in a chorus if returnpos = -1 then returnpos = seek(f1) + 1 seek f1, labelpos(chan) end if end if if ub < 254 then if loopcount(chan) = -1 then loopcount(chan) = ub end if if loopcount(chan) = 0 then loopcount(chan) = -1 'reset else loopcount(chan) = loopcount(chan) - 1 seek f1, labelpos(chan) end if end if end if case 112: 'end of chorus if returnpos > -1 then seek f1, returnpos returnpos = -1 end if case else: 'ignore 'nothing end select else 'wait delta = delta + ((ub - 127) * 4) end if get #f1, , ub loop 'write end track event bc = setvarval(delta) fput f2, , @bignum(0), bc 'variable length delta time tracklen = tracklen + bc mb = &hff put #f2, , mb 'metacommand mb = &h2f put #f2, , mb 'end track mb = 0 put #f2, , mb 'no further params tracklen = tracklen + 3 'skip back and write the track length setbigval(tracklen) put #f2, lenpos, bignum() close #f2 close #f1 end sub sub setbigval(byval value as integer) bignum(3) = value and &hff bignum(2) = (value shr 8) and &hff bignum(1) = (value shr 16) and &hff bignum(0) = (value shr 24) and &hff end sub sub setsmallval(byval value as integer) smallnum(1) = value and &hff smallnum(0) = (value shr 8) and &hff end sub function setvarval(byval value as integer) as integer dim bytes as integer = 0 dim tmp as integer dim b as integer dim flag as ubyte = 0 if value = 0 then bignum(0) = 0 setvarval = 1 exit function end if tmp = value while tmp > 0 bytes = bytes + 1 tmp = tmp \ 128 wend tmp = value for b = bytes - 1 to 0 step -1 bignum(b) = (tmp mod 128) or flag flag = &h80 tmp = tmp \ 128 next setvarval = bytes end function function getvoice(bamvoice as voice) as integer 'returns GM program number for this instrument dim voicenum as integer dim found as integer dim check as integer dim as integer i, j voicenum = 0 'default = acoustic grand piano found = 0 'check gm voices for i = 0 to 127 check = 1 for j = 0 to 10 if gm_voice(i,j) <> bamvoice.vbyte(j) then check = 0 exit for end if next if check = 1 then 'if we get here, then we are good found = 1 voicenum = i exit for end if next if found <> 1 then 'check ibank voices for i = 0 to 127 check = 1 for j = 0 to 10 if ibank_voice(i,j) <> bamvoice.vbyte(j) then check = 0 exit for end if next if check = 1 then 'if we get here, then we are good found = 1 voicenum = ibank_map(i) exit for end if next end if getvoice = voicenum end function #ifndef IS_GAME #ifndef IS_CUSTOM dim infile as string, outfile as string if command(1) <> "" then infile = command(1) if command(2) <> "" then outfile = command(2) if infile = "" then PRINT "Usage: bam2mid filename" PRINT "Converts a BAM file into MIDI format" system end if if outfile = "" then outfile = infile if right(lcase(outfile), 4) = ".bam" then outfile = left(outfile, len(outfile)-4) end if outfile = outfile & ".mid" end if bam2mid(infile, outfile, 0) #endif #endif