blob: f4711d1fb171d06b9999443be86fed7e44ed1357 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
//
// PcsxrFreezeStateHandler.m
// Pcsxr
//
// Created by Charles Betts on 12/11/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "PcsxrFreezeStateHandler.h"
#import "EmuThread.h"
#import "ARCBridge.h"
#import "PluginList.h"
#include "misc.h"
@implementation PcsxrFreezeStateHandler
+ (NSArray *)supportedUTIs
{
static NSArray *utisupport = nil;
if (utisupport == nil) {
utisupport = RETAINOBJ([NSArray arrayWithObject:@"com.codeplex.pcsxr.freeze"]);
}
return utisupport;
}
- (BOOL)handleFile:(NSString *)theFile
{
if (CheckState([theFile fileSystemRepresentation]) != 0) {
return NO;
}
if (![EmuThread active]) {
PluginList *pluginList = [PluginList list];
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"NetPlay"]) {
[pluginList enableNetPlug];
} else {
[pluginList disableNetPlug];
}
[EmuThread run];
}
return [EmuThread defrostAt:theFile];
}
@end
|