blob: b300fe02c7d7460dc48ce235bd13feb5f3ad01aa (
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
|
//
// 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 "PluginList.h"
#include "misc.h"
@implementation PcsxrFreezeStateHandler
+ (NSArray *)supportedUTIs
{
static NSArray *utisupport = nil;
if (utisupport == nil) {
utisupport = @[@"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
|