Use represented objects rather than index hackery. Remove the mapping name from the...
[enjoyable.git] / NJDeviceController.m
1 //
2 // NJDeviceController.m
3 // Enjoy
4 //
5 // Created by Sam McCall on 4/05/09.
6 //
7
8 #import "NJDeviceController.h"
9
10 #import "NJMapping.h"
11 #import "NJMappingsController.h"
12 #import "NJDevice.h"
13 #import "NJInput.h"
14 #import "NJOutput.h"
15 #import "NJOutputController.h"
16 #import "NJEvents.h"
17
18 @implementation NJDeviceController {
19 IOHIDManagerRef hidManager;
20 NSTimer *continuousTimer;
21 NSMutableArray *runningOutputs;
22 NSMutableArray *_devices;
23 }
24
25 - (id)init {
26 if ((self = [super init])) {
27 _devices = [[NSMutableArray alloc] initWithCapacity:16];
28 runningOutputs = [[NSMutableArray alloc] initWithCapacity:32];
29 }
30 return self;
31 }
32
33 - (void)dealloc {
34 [continuousTimer invalidate];
35 IOHIDManagerClose(hidManager, kIOHIDOptionsTypeNone);
36 CFRelease(hidManager);
37 }
38
39 - (void)expandRecursive:(id <NJInputPathElement>)pathElement {
40 if (pathElement) {
41 [self expandRecursive:pathElement.base];
42 [outlineView expandItem:pathElement];
43 }
44 }
45
46 - (void)addRunningOutput:(NJOutput *)output {
47 if (![runningOutputs containsObject:output]) {
48 [runningOutputs addObject:output];
49 }
50 if (!continuousTimer) {
51 continuousTimer = [NSTimer scheduledTimerWithTimeInterval:1.f/60.f
52 target:self
53 selector:@selector(updateContinuousInputs:)
54 userInfo:nil
55 repeats:YES];
56 NSLog(@"Scheduled continuous output timer.");
57 }
58 }
59
60 - (void)runOutputForDevice:(IOHIDDeviceRef)device value:(IOHIDValueRef)value {
61 NJDevice *dev = [self findDeviceByRef:device];
62 NJInput *mainInput = [dev inputForEvent:value];
63 [mainInput notifyEvent:value];
64 NSArray *children = mainInput.children ? mainInput.children : mainInput ? @[mainInput] : @[];
65 for (NJInput *subInput in children) {
66 NJOutput *output = mappingsController.currentMapping[subInput];
67 output.magnitude = mainInput.magnitude;
68 output.running = subInput.active;
69 if (output.running && output.isContinuous)
70 [self addRunningOutput:output];
71 }
72 }
73
74 - (void)showOutputForDevice:(IOHIDDeviceRef)device value:(IOHIDValueRef)value {
75 NJDevice *dev = [self findDeviceByRef:device];
76 NJInput *handler = [dev handlerForEvent:value];
77 if (!handler)
78 return;
79
80 [self expandRecursive:handler];
81 [outlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:[outlineView rowForItem:handler]] byExtendingSelection: NO];
82 [outputController focusKey];
83 }
84
85 static void input_callback(void *ctx, IOReturn inResult, void *inSender, IOHIDValueRef value) {
86 NJDeviceController *controller = (__bridge NJDeviceController *)ctx;
87 IOHIDDeviceRef device = IOHIDQueueGetDevice(inSender);
88
89 if (controller.translatingEvents) {
90 [controller runOutputForDevice:device value:value];
91 } else if ([NSApplication sharedApplication].mainWindow.isVisible) {
92 [controller showOutputForDevice:device value:value];
93 }
94 }
95
96 static int findAvailableIndex(NSArray *list, NJDevice *dev) {
97 for (int index = 1; ; index++) {
98 BOOL available = YES;
99 for (NJDevice *used in list) {
100 if ([used.productName isEqualToString:dev.productName] && used.index == index) {
101 available = NO;
102 break;
103 }
104 }
105 if (available)
106 return index;
107 }
108 }
109
110 - (void)addDeviceForDevice:(IOHIDDeviceRef)device {
111 IOHIDDeviceRegisterInputValueCallback(device, input_callback, (__bridge void*)self);
112 NJDevice *dev = [[NJDevice alloc] initWithDevice:device];
113 dev.index = findAvailableIndex(_devices, dev);
114 [_devices addObject:dev];
115 [outlineView reloadData];
116 }
117
118 static void add_callback(void *ctx, IOReturn inResult, void *inSender, IOHIDDeviceRef device) {
119 NJDeviceController *controller = (__bridge NJDeviceController *)ctx;
120 [controller addDeviceForDevice:device];
121 }
122
123 - (NJDevice *)findDeviceByRef:(IOHIDDeviceRef)device {
124 for (NJDevice *dev in _devices)
125 if (dev.device == device)
126 return dev;
127 return nil;
128 }
129
130 static void remove_callback(void *ctx, IOReturn inResult, void *inSender, IOHIDDeviceRef device) {
131 NJDeviceController *controller = (__bridge NJDeviceController *)ctx;
132 [controller removeDeviceForDevice:device];
133 }
134
135 - (void)removeDeviceForDevice:(IOHIDDeviceRef)device {
136 NJDevice *match = [self findDeviceByRef:device];
137 IOHIDDeviceRegisterInputValueCallback(device, NULL, NULL);
138 if (match) {
139 [_devices removeObject:match];
140 [outlineView reloadData];
141 }
142
143 }
144
145 - (void)updateContinuousInputs:(NSTimer *)timer {
146 self.mouseLoc = [NSEvent mouseLocation];
147 for (NJOutput *output in [runningOutputs copy]) {
148 if (![output update:self]) {
149 [runningOutputs removeObject:output];
150 }
151 }
152 if (!runningOutputs.count) {
153 [continuousTimer invalidate];
154 continuousTimer = nil;
155 NSLog(@"Unscheduled continuous output timer.");
156 }
157 }
158
159 #define NSSTR(e) ((NSString *)CFSTR(e))
160
161 - (void)setup {
162 hidManager = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
163 NSArray *criteria = @[ @{ NSSTR(kIOHIDDeviceUsagePageKey) : @(kHIDPage_GenericDesktop),
164 NSSTR(kIOHIDDeviceUsageKey) : @(kHIDUsage_GD_Joystick) },
165 @{ NSSTR(kIOHIDDeviceUsagePageKey) : @(kHIDPage_GenericDesktop),
166 NSSTR(kIOHIDDeviceUsageKey) : @(kHIDUsage_GD_GamePad) },
167 @{ NSSTR(kIOHIDDeviceUsagePageKey) : @(kHIDPage_GenericDesktop),
168 NSSTR(kIOHIDDeviceUsageKey) : @(kHIDUsage_GD_MultiAxisController) }
169 ];
170 IOHIDManagerSetDeviceMatchingMultiple(hidManager, (__bridge CFArrayRef)criteria);
171
172 IOHIDManagerScheduleWithRunLoop(hidManager, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
173 IOReturn ret = IOHIDManagerOpen(hidManager, kIOHIDOptionsTypeNone);
174 if (ret != kIOReturnSuccess) {
175 [[NSAlert alertWithMessageText:@"Input devices are unavailable"
176 defaultButton:nil
177 alternateButton:nil
178 otherButton:nil
179 informativeTextWithFormat:@"Error 0x%08x occured trying to access your devices. "
180 @"Input may not be correctly detected or mapped.",
181 ret]
182 beginSheetModalForWindow:outlineView.window
183 modalDelegate:nil
184 didEndSelector:nil
185 contextInfo:nil];
186 }
187
188 IOHIDManagerRegisterDeviceMatchingCallback(hidManager, add_callback, (__bridge void *)self);
189 IOHIDManagerRegisterDeviceRemovalCallback(hidManager, remove_callback, (__bridge void *)self);
190 }
191
192 - (NJInput *)selectedInput {
193 id <NJInputPathElement> item = [outlineView itemAtRow:outlineView.selectedRow];
194 return (!item.children && item.base) ? item : nil;
195 }
196
197 - (NSInteger)outlineView:(NSOutlineView *)outlineView
198 numberOfChildrenOfItem:(id <NJInputPathElement>)item {
199 return item ? item.children.count : _devices.count;
200 }
201
202 - (BOOL)outlineView:(NSOutlineView *)outlineView
203 isItemExpandable:(id <NJInputPathElement>)item {
204 return item ? [[item children] count] > 0: YES;
205 }
206
207 - (id)outlineView:(NSOutlineView *)outlineView
208 child:(NSInteger)index
209 ofItem:(id <NJInputPathElement>)item {
210 return item ? item.children[index] : _devices[index];
211 }
212
213 - (id)outlineView:(NSOutlineView *)outlineView
214 objectValueForTableColumn:(NSTableColumn *)tableColumn
215 byItem:(id <NJInputPathElement>)item {
216 return item ? item.name : @"root";
217 }
218
219 - (void)outlineViewSelectionDidChange:(NSNotification *)notification {
220
221 [outputController loadCurrent];
222 }
223
224 - (void)setTranslatingEvents:(BOOL)translatingEvents {
225 if (translatingEvents != _translatingEvents) {
226 _translatingEvents = translatingEvents;
227 translatingEventsSetting.selectedSegment = !!translatingEvents;
228 NSString *name = translatingEvents
229 ? NJEventTranslationActivated
230 : NJEventTranslationDeactivated;
231 [NSNotificationCenter.defaultCenter postNotificationName:name
232 object:self];
233 }
234 }
235
236 - (IBAction)translatingEventsChanged:(id)sender {
237 self.translatingEvents = translatingEventsSetting.selectedSegment;
238 }
239
240
241 @end