e4c6b3d27c0f735376eeb60f8cb87c332ca86c89
[enjoyable.git] / Classes / NJDevice.m
1 //
2 // NJDevice.m
3 // Enjoy
4 //
5 // Created by Sam McCall on 4/05/09.
6 //
7
8 #import "NJDevice.h"
9
10 #import "NJInput.h"
11 #import "NJInputAnalog.h"
12 #import "NJInputHat.h"
13 #import "NJInputButton.h"
14
15 static NSArray *InputsForElement(IOHIDDeviceRef device, id parent) {
16 CFArrayRef elements = IOHIDDeviceCopyMatchingElements(device, NULL, kIOHIDOptionsTypeNone);
17 NSMutableArray *children = [NSMutableArray arrayWithCapacity:CFArrayGetCount(elements)];
18
19 int buttons = 0;
20 int axes = 0;
21 int hats = 0;
22
23 for (CFIndex i = 0; i < CFArrayGetCount(elements); i++) {
24 IOHIDElementRef element = (IOHIDElementRef)CFArrayGetValueAtIndex(elements, i);
25 IOHIDElementType type = IOHIDElementGetType(element);
26 uint32_t usage = IOHIDElementGetUsage(element);
27 uint32_t usagePage = IOHIDElementGetUsagePage(element);
28 CFIndex max = IOHIDElementGetPhysicalMax(element);
29 CFIndex min = IOHIDElementGetPhysicalMin(element);
30
31 NJInput *input = nil;
32
33 if (!(type == kIOHIDElementTypeInput_Misc
34 || type == kIOHIDElementTypeInput_Axis
35 || type == kIOHIDElementTypeInput_Button))
36 continue;
37
38 if (max - min == 1
39 || usagePage == kHIDPage_Button
40 || type == kIOHIDElementTypeInput_Button) {
41 input = [[NJInputButton alloc] initWithElement:element
42 index:++buttons
43 parent:parent];
44 } else if (usage == kHIDUsage_GD_Hatswitch) {
45 input = [[NJInputHat alloc] initWithElement:element
46 index:++hats
47 parent:parent];
48 } else if (usage >= kHIDUsage_GD_X && usage <= kHIDUsage_GD_Rz) {
49 input = [[NJInputAnalog alloc] initWithElement:element
50 index:++axes
51 parent:parent];
52 } else {
53 continue;
54 }
55
56 [children addObject:input];
57 }
58
59 CFRelease(elements);
60 return children;
61 }
62
63 @implementation NJDevice {
64 int _vendorId;
65 int _productId;
66 }
67
68 - (id)initWithDevice:(IOHIDDeviceRef)dev {
69 if ((self = [super initWithName:nil eid:nil parent:nil])) {
70 self.device = dev;
71 self.productName = (__bridge NSString *)IOHIDDeviceGetProperty(dev, CFSTR(kIOHIDProductKey));
72 _vendorId = [(__bridge NSNumber *)IOHIDDeviceGetProperty(dev, CFSTR(kIOHIDVendorIDKey)) intValue];
73 _productId = [(__bridge NSNumber *)IOHIDDeviceGetProperty(dev, CFSTR(kIOHIDProductIDKey)) intValue];
74 self.children = InputsForElement(dev, self);
75 }
76 return self;
77 }
78
79 - (NSString *)name {
80 return [NSString stringWithFormat:@"%@ #%d", _productName, _index];
81 }
82
83 - (NSString *)uid {
84 return [NSString stringWithFormat: @"%d:%d:%d", _vendorId, _productId, _index];
85 }
86
87 - (NJInput *)findInputByCookie:(IOHIDElementCookie)cookie {
88 for (NJInput *child in self.children)
89 if (child.cookie == cookie)
90 return child;
91 return nil;
92 }
93
94 - (NJInput *)handlerForEvent:(IOHIDValueRef)value {
95 NJInput *mainInput = [self inputForEvent:value];
96 return [mainInput findSubInputForValue:value];
97 }
98
99 - (NJInput *)inputForEvent:(IOHIDValueRef)value {
100 IOHIDElementRef elt = IOHIDValueGetElement(value);
101 IOHIDElementCookie cookie = IOHIDElementGetCookie(elt);
102 return [self findInputByCookie:cookie];
103 }
104
105 @end