summaryrefslogtreecommitdiff
path: root/macosx/Source/PcsxrCheatHandler.m
blob: 54f6cb5b11c0535ed99df10796d594a057e9a61b (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
//
//  PcsxrCheatHandler.m
//  Pcsxr
//
//  Created by C.W. Betts on 8/1/13.
//
//

#import "PcsxrCheatHandler.h"
#import "CheatController.h"
#import "PcsxrController.h"
#include "psxcommon.h"
#include "cheat.h"

@implementation PcsxrCheatHandler

+ (NSArray *)supportedUTIs
{
	static NSArray *utisupport;
	if (utisupport == nil) {
		utisupport = @[@"com.codeplex.pcsxr.cheat"];
	}
	return utisupport;
}

- (BOOL)handleFile:(NSString *)theFile
{
	LoadCheats([theFile fileSystemRepresentation]);

	if ([(PcsxrController*)[NSApp delegate] cheatController]) {
		[[(PcsxrController*)[NSApp delegate] cheatController] refresh];
	}
	return YES;
}

@end