Analog mouse scrolling.
[enjoyable.git] / ConfigsController.m
1 //
2 // ConfigsController.m
3 // Enjoy
4 //
5 // Created by Sam McCall on 4/05/09.
6 //
7
8 #import "ConfigsController.h"
9
10 #import "ApplicationController.h"
11 #import "Config.h"
12 #import "ConfigsController.h"
13 #import "Target.h"
14 #import "TargetController.h"
15
16 @implementation ConfigsController {
17 NSMutableArray *_configs;
18 Config *manualConfig;
19 }
20
21 - (id)init {
22 if ((self = [super init])) {
23 _configs = [[NSMutableArray alloc] init];
24 _currentConfig = [[Config alloc] initWithName:@"(default)"];
25 manualConfig = _currentConfig;
26 [_configs addObject:_currentConfig];
27 }
28 return self;
29 }
30
31 - (Config *)objectForKeyedSubscript:(NSString *)name {
32 for (Config *config in _configs)
33 if ([name isEqualToString:config.name])
34 return config;
35 return nil;
36 }
37
38 - (void)activateConfigForProcess:(NSString *)processName {
39 Config *oldConfig = manualConfig;
40 [self activateConfig:self[processName]];
41 manualConfig = oldConfig;
42 }
43
44 - (void)activateConfig:(Config *)config {
45 if (!config)
46 config = manualConfig;
47 if (_currentConfig == config)
48 return;
49 manualConfig = config;
50 _currentConfig = config;
51 [removeButton setEnabled:_configs[0] != config];
52 [targetController loadCurrent];
53 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configChanged];
54 [tableView selectRowIndexes:[NSIndexSet indexSetWithIndex:[_configs indexOfObject:config]] byExtendingSelection:NO];
55 }
56
57 - (IBAction)addPressed:(id)sender {
58 Config *newConfig = [[Config alloc] initWithName:@"Untitled"];
59 [_configs addObject:newConfig];
60 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged];
61 [tableView reloadData];
62 [tableView selectRowIndexes:[NSIndexSet indexSetWithIndex:_configs.count - 1] byExtendingSelection:NO];
63 [tableView editColumn:0 row:_configs.count - 1 withEvent:nil select:YES];
64 }
65
66 - (IBAction)removePressed:(id)sender {
67 if (tableView.selectedRow == 0)
68 return;
69
70 [_configs removeObjectAtIndex:tableView.selectedRow];
71 [tableView reloadData];
72 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged];
73 [self activateConfig:_configs[0]];
74 [self save];
75 }
76
77 -(void)tableViewSelectionDidChange:(NSNotification *)notify {
78 if (tableView.selectedRow >= 0)
79 [self activateConfig:_configs[tableView.selectedRow]];
80 }
81
82 - (id)tableView:(NSTableView *)view objectValueForTableColumn:(NSTableColumn *)column row:(NSInteger)index {
83 return [_configs[index] name];
84 }
85
86 - (void)tableView:(NSTableView *)view setObjectValue:(NSString *)obj forTableColumn:(NSTableColumn *)col row:(NSInteger)index {
87 [(Config *)_configs[index] setName:obj];
88 [tableView reloadData];
89 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged];
90 }
91
92 - (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
93 return _configs.count;
94 }
95
96 - (BOOL)tableView:(NSTableView *)view shouldEditTableColumn:(NSTableColumn *)column row:(NSInteger)index {
97 return index > 0;
98 }
99
100 - (void)save {
101 NSLog(@"Saving defaults.");
102 [[NSUserDefaults standardUserDefaults] setObject:[self dumpAll] forKey:@"configurations"];
103 }
104
105 - (void)load {
106 [self loadAllFrom:[[NSUserDefaults standardUserDefaults] objectForKey:@"configurations"]];
107 }
108
109 - (NSDictionary *)dumpAll {
110 NSMutableArray *ary = [[NSMutableArray alloc] initWithCapacity:_configs.count];
111 for (Config *config in _configs)
112 [ary addObject:[config serialize]];
113 NSUInteger current = _currentConfig ? [_configs indexOfObject:_currentConfig] : 0;
114 return @{ @"configurations": ary, @"selected": @(current) };
115 }
116
117 - (void)loadAllFrom:(NSDictionary*) envelope{
118 NSArray *storedConfigs = envelope[@"configurations"];
119 NSMutableArray* newConfigs = [[NSMutableArray alloc] initWithCapacity:storedConfigs.count];
120
121 // have to do two passes in case config1 refers to config2 via a TargetConfig
122 for (NSDictionary *storedConfig in storedConfigs) {
123 Config *cfg = [[Config alloc] initWithName:storedConfig[@"name"]];
124 [newConfigs addObject:cfg];
125 }
126
127 for (unsigned i = 0; i < storedConfigs.count; ++i) {
128 NSDictionary *entries = storedConfigs[i][@"entries"];
129 Config *config = newConfigs[i];
130 for (id key in entries) {
131 Target *target = [Target targetDeserialize:entries[key]
132 withConfigs:newConfigs];
133 if (target)
134 config.entries[key] = target;
135 }
136 }
137
138 if (newConfigs.count) {
139 unsigned current = [envelope[@"selected"] unsignedIntValue];
140 if (current >= newConfigs.count)
141 current = 0;
142 _configs = newConfigs;
143 [tableView reloadData];
144 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged];
145 [self activateConfig:_configs[current]];
146 }
147 }
148
149 - (void)importPressed:(id)sender {
150 NSOpenPanel *panel = [NSOpenPanel openPanel];
151 panel.allowedFileTypes = @[ @"enjoyable", @"json", @"txt" ];
152 if ([panel runModal] == NSFileHandlingPanelOKButton) {
153 NSError *error;
154 NSInputStream *stream = [NSInputStream inputStreamWithURL:panel.URL];
155 [stream open];
156 NSDictionary *serialization = !error
157 ? [NSJSONSerialization JSONObjectWithStream:stream options:0 error:&error]
158 : nil;
159 [stream close];
160
161 if (!([serialization isKindOfClass:[NSDictionary class]]
162 && serialization[@"entries"])) {
163 error = [NSError errorWithDomain:@"Enjoyable"
164 code:0
165 description:@"This isn't a valid mapping file."];
166 }
167
168
169 if (!error) {
170 NSDictionary *entries = serialization[@"entries"];
171 Config *cfg = [[Config alloc] initWithName:serialization[@"name"]];
172 Config *mergeInto = self[cfg.name];
173 BOOL conflict = NO;
174 for (id key in entries) {
175 cfg.entries[key] = [Target targetDeserialize:entries[key]
176 withConfigs:_configs];
177 if (mergeInto.entries[key])
178 conflict = YES;
179 }
180
181 if (conflict) {
182 NSAlert *conflictAlert = [[NSAlert alloc] init];
183 conflictAlert.messageText = @"Replace existing mappings?";
184 conflictAlert.informativeText =
185 [NSString stringWithFormat:
186 @"This file contains inputs you've already mapped in \"%@\". Do you "
187 @"want to merge them and replace your existing mappings, or import this "
188 @"as a separate mapping?", cfg.name];
189 [conflictAlert addButtonWithTitle:@"Merge"];
190 [conflictAlert addButtonWithTitle:@"Cancel"];
191 [conflictAlert addButtonWithTitle:@"New Mapping"];
192 NSInteger res = [conflictAlert runModal];
193 if (res == NSAlertSecondButtonReturn)
194 return;
195 else if (res == NSAlertThirdButtonReturn)
196 mergeInto = nil;
197 }
198
199 if (mergeInto) {
200 [mergeInto.entries addEntriesFromDictionary:cfg.entries];
201 cfg = mergeInto;
202 } else {
203 [_configs addObject:cfg];
204 [tableView reloadData];
205 }
206
207 [self save];
208 [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged];
209 [self activateConfig:cfg];
210 [targetController loadCurrent];
211
212 if (conflict && !mergeInto) {
213 [tableView selectRowIndexes:[NSIndexSet indexSetWithIndex:_configs.count - 1] byExtendingSelection:NO];
214 [tableView editColumn:0 row:_configs.count - 1 withEvent:nil select:YES];
215 }
216 }
217
218 if (error)
219 [[NSAlert alertWithError:error] runModal];
220 }
221 }
222
223 - (void)exportPressed:(id)sender {
224 NSSavePanel *panel = [NSSavePanel savePanel];
225 panel.allowedFileTypes = @[ @"enjoyable" ];
226 if ([panel runModal] == NSFileHandlingPanelOKButton) {
227 NSError *error;
228 NSDictionary *serialization = [_currentConfig serialize];
229 NSData *json = [NSJSONSerialization dataWithJSONObject:serialization
230 options:NSJSONWritingPrettyPrinted
231 error:&error];
232 if (!error)
233 [json writeToURL:panel.URL options:NSDataWritingAtomic error:&error];
234
235 if (error)
236 [[NSAlert alertWithError:error] runModal];
237 }
238 }
239
240 @end