2006-11-04 08:15:34 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// File: VLMMADocument.mm - Export document in MMA format
|
2006-11-04 08:15:34 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// Author(s):
|
|
|
|
//
|
|
|
|
// (MN) Matthias Neeracher
|
|
|
|
//
|
|
|
|
// Copyright © 2006-2007 Matthias Neeracher
|
2006-11-04 08:15:34 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "VLMMADocument.h"
|
2007-05-27 04:35:45 +00:00
|
|
|
#import "VLMMAWriter.h"
|
2006-11-04 08:15:34 +00:00
|
|
|
|
|
|
|
@implementation VLDocument (MMA)
|
|
|
|
|
|
|
|
- (NSData *)mmaDataWithError:(NSError **)outError
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
NSBundle * bndl = [NSBundle mainBundle];
|
2007-05-27 04:35:45 +00:00
|
|
|
VLMMAWriter writer;
|
|
|
|
writer.Visit(*song);
|
2006-11-04 08:15:34 +00:00
|
|
|
const VLProperties & prop = song->fProperties.front();
|
|
|
|
|
|
|
|
std::string mmaFile = std::string("// Generated by VocalEasel ")
|
|
|
|
+ (const char *)[[bndl objectForInfoDictionaryKey:@"CFBundleVersion"]
|
|
|
|
UTF8String]
|
2007-01-02 07:07:39 +00:00
|
|
|
+ "\n\n"
|
|
|
|
+ "Solo Voice AltoSax\n"
|
|
|
|
+ "Solo Volume fff\n";
|
2006-11-04 08:15:34 +00:00
|
|
|
sprintf(buf, "Tempo %d\n", [songTempo intValue]);
|
|
|
|
mmaFile += buf;
|
2007-12-03 17:45:56 +00:00
|
|
|
if (playElements & kVLPlayCountIn)
|
|
|
|
switch ([[self songTime] intValue]) {
|
|
|
|
case 0x404:
|
|
|
|
mmaFile += "Groove Metronome2-4\nz\nz\n";
|
|
|
|
break;
|
|
|
|
case 0x304:
|
|
|
|
case 0x608:
|
|
|
|
mmaFile += "Groove Metronome3\nz\nz\n";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Can't handle these yet
|
|
|
|
break;
|
|
|
|
}
|
2006-11-04 08:15:34 +00:00
|
|
|
sprintf(buf, "Groove %s\n", [songGroove UTF8String]);
|
|
|
|
mmaFile += buf;
|
|
|
|
sprintf(buf, "KeySig %d%c\n", labs(prop.fKey), prop.fKey>=0 ? '#' : '&');
|
|
|
|
mmaFile += buf;
|
2007-12-03 17:45:56 +00:00
|
|
|
if (!(playElements & kVLPlayAccompaniment))
|
|
|
|
mmaFile += "AllTracks Off\nSolo On\n";
|
|
|
|
if (!(playElements & kVLPlayMelody))
|
|
|
|
mmaFile += "Solo Off\n";
|
2007-05-27 04:35:45 +00:00
|
|
|
mmaFile += '\n'+writer.Measures();
|
2006-11-04 08:15:34 +00:00
|
|
|
|
|
|
|
return [[NSString stringWithUTF8String:mmaFile.c_str()]
|
|
|
|
dataUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSFileWrapper *)mmaFileWrapperWithError:(NSError **)outError
|
|
|
|
{
|
|
|
|
NSData * data = [self mmaDataWithError:outError];
|
|
|
|
|
|
|
|
if (!data)
|
|
|
|
return nil;
|
|
|
|
else
|
|
|
|
return [[[NSFileWrapper alloc]
|
|
|
|
initRegularFileWithContents:data]
|
|
|
|
autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|