cog/Plugins/GME/GameMetadataReader.m

82 lines
1.5 KiB
Matlab
Raw Normal View History

//
// GameMetadataReader.m
// GME
//
// Created by Vincent Spader on 10/12/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "GameMetadataReader.h"
#import "GameDecoder.h"
#import <GME/gme.h>
@implementation GameMetadataReader
+ (NSArray *)fileTypes
{
return [GameDecoder fileTypes];
}
2007-10-14 18:56:23 +00:00
+ (NSArray *)mimeTypes
{
return [GameDecoder mimeTypes];
2007-10-14 18:56:23 +00:00
}
+ (NSDictionary *)metadataForURL:(NSURL *)url
{
if (![url isFileURL])
return nil;
NSString *ext = [[[url path] pathExtension] lowercaseString];
gme_type_t type = gme_identify_extension([ext UTF8String]);
if (!type)
{
NSLog(@"No type!");
return NO;
}
Music_Emu* emu;
emu = gme_new_emu(type, gme_info_only);
if (!emu)
{
NSLog(@"No new emu!");
return NO;
}
gme_err_t error;
error = gme_load_file(emu, [[url path] UTF8String]);
if (error)
{
NSLog(@"ERROR Loding file!");
return NO;
}
int track_num;
if ([[url fragment] length] == 0)
track_num = 0;
else
2009-03-07 10:20:30 +00:00
track_num = [[url fragment] intValue];
track_info_t info;
error = gme_track_info( emu, &info, track_num );
if (error)
{
NSLog(@"Unable to get track info");
}
gme_delete(emu);
return [NSDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithUTF8String: info.system], @"genre",
[NSString stringWithUTF8String: info.game], @"album",
[NSString stringWithUTF8String: info.song], @"title",
[NSString stringWithUTF8String: info.author], @"artist",
2009-03-07 10:20:30 +00:00
[NSNumber numberWithInt:track_num+1], @"track",
nil];
}
@end