2007-10-11 23:11:58 +00:00
|
|
|
//
|
|
|
|
// GameFile.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 5/29/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <GME/gme.h>
|
|
|
|
|
|
|
|
#import "GameContainer.h"
|
|
|
|
#import "GameDecoder.h"
|
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
#import "Logging.h"
|
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
@implementation GameContainer
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (NSArray *)fileTypes {
|
|
|
|
// There doesn't seem to be a way to get this list. These are the only multitrack types.
|
2022-01-19 02:12:57 +00:00
|
|
|
return @[@"ay", @"gbs", @"hes", @"kss", @"nsf", @"nsfe", @"sap", @"sgc"];
|
2007-10-11 23:11:58 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (NSArray *)mimeTypes {
|
2007-10-14 18:56:23 +00:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (float)priority {
|
|
|
|
return 1.0f;
|
2015-04-13 07:39:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
// This really should be source...
|
|
|
|
+ (NSArray *)urlsForContainerURL:(NSURL *)url {
|
|
|
|
if([url fragment]) {
|
|
|
|
// input url already has fragment defined - no need to expand further
|
|
|
|
return [NSMutableArray arrayWithObject:url];
|
|
|
|
}
|
|
|
|
|
|
|
|
id audioSourceClass = NSClassFromString(@"AudioSource");
|
|
|
|
id<CogSource> source = [audioSourceClass audioSourceForURL:url];
|
|
|
|
|
|
|
|
if(![source open:url])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(![source seekable])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
[source seek:0 whence:SEEK_END];
|
|
|
|
long size = [source tell];
|
|
|
|
[source seek:0 whence:SEEK_SET];
|
|
|
|
|
|
|
|
void *data = malloc(size);
|
|
|
|
[source read:data amount:size];
|
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
Music_Emu *emu;
|
2013-10-04 16:00:18 +00:00
|
|
|
gme_err_t error = gme_open_data(data, size, &emu, 44100);
|
2022-02-07 05:49:27 +00:00
|
|
|
free(data);
|
|
|
|
|
|
|
|
if(NULL != error) {
|
2013-10-11 12:03:55 +00:00
|
|
|
ALog(@"GME: Error loading file: %@ %s", [url path], error);
|
2022-01-19 02:12:57 +00:00
|
|
|
return @[url];
|
2009-07-16 02:11:55 +00:00
|
|
|
}
|
2022-02-07 05:49:27 +00:00
|
|
|
|
|
|
|
NSURL *m3uurl = [url URLByDeletingPathExtension];
|
|
|
|
m3uurl = [m3uurl URLByAppendingPathExtension:@"m3u"];
|
|
|
|
id<CogSource> m3usrc = [audioSourceClass audioSourceForURL:m3uurl];
|
|
|
|
if([m3usrc open:m3uurl]) {
|
|
|
|
if([m3usrc seekable]) {
|
|
|
|
[m3usrc seek:0 whence:SEEK_END];
|
|
|
|
size = [m3usrc tell];
|
|
|
|
[m3usrc seek:0 whence:SEEK_SET];
|
|
|
|
|
|
|
|
data = malloc(size);
|
|
|
|
[m3usrc read:data amount:size];
|
|
|
|
|
|
|
|
error = gme_load_m3u_data(emu, data, size);
|
|
|
|
free(data);
|
|
|
|
|
|
|
|
ALog(@"M3U loaded: %s", error ? error : "no error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
int track_count = gme_track_count(emu);
|
2022-02-07 05:49:27 +00:00
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
NSMutableArray *tracks = [NSMutableArray array];
|
2022-02-07 05:49:27 +00:00
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
int i;
|
2022-02-07 05:49:27 +00:00
|
|
|
for(i = 0; i < track_count; i++) {
|
2007-10-11 23:11:58 +00:00
|
|
|
[tracks addObject:[NSURL URLWithString:[[url absoluteString] stringByAppendingFormat:@"#%i", i]]];
|
|
|
|
}
|
2022-02-07 05:49:27 +00:00
|
|
|
|
2007-10-11 23:11:58 +00:00
|
|
|
return tracks;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|