summaryrefslogtreecommitdiff
path: root/macosx/Source/PcsxrHexadecimalFormatter.m
blob: e0ea5bdfef2ad20afd1718f15e81a6c2f3d91a3d (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//
//  PcsxrHexadecimalFormatter.m
//  Pcsxr
//
//  Created by C.W. Betts on 8/17/13.
//
//

#import "PcsxrHexadecimalFormatter.h"

@interface PcsxrHexadecimalFormatter ()
@property (strong) NSString *hexFormatString;
@end

@implementation PcsxrHexadecimalFormatter
@synthesize hexPadding;
@synthesize hexFormatString;

- (void)setHexPadding:(char)_hexPadding
{
	hexPadding = _hexPadding;
	self.hexFormatString = [NSString stringWithFormat:@"0x%%0%ilx", hexPadding];
}

- (instancetype)init
{
	if (self = [super init]) {
#ifdef __LP64__
		self.hexPadding = 16;
#else
		self.hexPadding = 8;
#endif
	}
	return self;
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
	if (self = [super initWithCoder:aDecoder]) {
#ifdef __LP64__
		self.hexPadding = 16;
#else
		self.hexPadding = 8;
#endif
	}
	return self;
}

- (NSString *)stringForObjectValue:(id)obj
{
	if ([obj isKindOfClass:[NSNumber class]]) {
		return [NSString stringWithFormat:self.hexFormatString, (long)[obj integerValue]];
	} else return nil;
}

- (NSString *)editingStringForObjectValue:(id)obj
{
	if ([obj isKindOfClass:[NSNumber class]]) {
		return [NSString stringWithFormat:@"%lx", (long)[obj integerValue]];
	} else return nil;
}

- (BOOL)getObjectValue:(out id *)obj forString:(NSString *)string errorDescription:(out NSString **)error
{
	NSString *tmpstr = nil;
	unsigned int tmpNum;
	NSScanner *theScan = [[NSScanner alloc] initWithString:string];
	if ([theScan scanHexInt:&tmpNum]) {
		*obj = @(tmpNum);
		return YES;
	} else {
		if ([string hasPrefix:@"0x"]) {
			NSRange zeroXRange = [string rangeOfString:@"0x"];
			tmpstr = [string stringByReplacingCharactersInRange:zeroXRange withString:@""];
		}else {
			tmpstr = string;
		}
		long tmpNum = 0;
		if (sscanf([tmpstr UTF8String], "%lx", &tmpNum) == 1) {
			*obj = @(tmpNum);
			return YES;
		} else {
			return NO;
		}
	}
}

@end