mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
//
|
|
// File: VLMMADocument.mm - Export document in MMA format
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2006-2007 Matthias Neeracher
|
|
//
|
|
|
|
#import "VLMMADocument.h"
|
|
#import "VLMMAWriter.h"
|
|
|
|
@implementation VLDocument (MMA)
|
|
|
|
- (NSData *)mmaDataWithError:(NSError **)outError
|
|
{
|
|
char buf[32];
|
|
NSBundle * bndl = [NSBundle mainBundle];
|
|
VLMMAWriter writer;
|
|
writer.Visit(*song);
|
|
const VLProperties & prop = song->fProperties.front();
|
|
|
|
std::string mmaFile = std::string("// Generated by VocalEasel ")
|
|
+ (const char *)[[bndl objectForInfoDictionaryKey:@"CFBundleVersion"]
|
|
UTF8String]
|
|
+ "\n\n"
|
|
+ "Solo Voice AltoSax\n"
|
|
+ "Solo Volume fff\n";
|
|
sprintf(buf, "Tempo %d\n", [songTempo intValue]);
|
|
mmaFile += buf;
|
|
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;
|
|
}
|
|
if (!(playElements & kVLPlayAccompaniment))
|
|
mmaFile += "AllTracks Off\nSolo On\n";
|
|
if (!(playElements & kVLPlayMelody))
|
|
mmaFile += "Solo Off\n";
|
|
mmaFile += '\n'+writer.Measures();
|
|
|
|
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
|