X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=ConfigsController.m;h=969398515b4a5d235e41d48da9dca73dd2035c14;hp=17cf8fd6a3a9547a11733b514fb48ec8344ba6ae;hb=794561a4606fa9e31e3b2b077891f5b1e6084698;hpb=9584becb2e5469e8f482d73e6f0c9c3bf879e0db diff --git a/ConfigsController.m b/ConfigsController.m index 17cf8fd..9693985 100644 --- a/ConfigsController.m +++ b/ConfigsController.m @@ -148,6 +148,80 @@ } } +- (void)importPressed:(id)sender { + NSOpenPanel *panel = [NSOpenPanel openPanel]; + panel.allowedFileTypes = @[ @"enjoyable", @"json", @"txt" ]; + if ([panel runModal] == NSFileHandlingPanelOKButton) { + NSError *error; + NSInputStream *stream = [NSInputStream inputStreamWithURL:panel.URL]; + [stream open]; + NSDictionary *serialization = !error + ? [NSJSONSerialization JSONObjectWithStream:stream options:0 error:&error] + : nil; + [stream close]; + + if (!([serialization isKindOfClass:[NSDictionary class]] + && serialization[@"entries"])) { + error = [NSError errorWithDomain:@"Enjoyable" + code:0 + description:@"This isn't a valid mapping file."]; + } + + + if (!error) { + NSDictionary *entries = serialization[@"entries"]; + Config *cfg = [[Config alloc] initWithName:serialization[@"name"]]; + Config *mergeInto = self[cfg.name]; + BOOL conflict = NO; + for (id key in entries) { + cfg.entries[key] = [Target targetDeserialize:entries[key] + withConfigs:_configs]; + if (mergeInto.entries[key]) + conflict = YES; + } + + if (conflict) { + NSAlert *conflictAlert = [[NSAlert alloc] init]; + conflictAlert.messageText = @"Replace existing mappings?"; + conflictAlert.informativeText = + [NSString stringWithFormat: + @"This file contains inputs you've already mapped in \"%@\". Do you " + @"want to merge them and replace your existing mappings, or import this " + @"as a separate mapping?", cfg.name]; + [conflictAlert addButtonWithTitle:@"Merge"]; + [conflictAlert addButtonWithTitle:@"Cancel"]; + [conflictAlert addButtonWithTitle:@"New Mapping"]; + NSInteger res = [conflictAlert runModal]; + if (res == NSAlertSecondButtonReturn) + return; + else if (res == NSAlertThirdButtonReturn) + mergeInto = nil; + } + + if (mergeInto) { + [mergeInto.entries addEntriesFromDictionary:cfg.entries]; + cfg = mergeInto; + } else { + [_configs addObject:cfg]; + [tableView reloadData]; + } + + [self save]; + [(ApplicationController *)[[NSApplication sharedApplication] delegate] configsChanged]; + [self activateConfig:cfg]; + [targetController loadCurrent]; + + if (conflict && !mergeInto) { + [tableView selectRowIndexes:[NSIndexSet indexSetWithIndex:_configs.count - 1] byExtendingSelection:NO]; + [tableView editColumn:0 row:_configs.count - 1 withEvent:nil select:YES]; + } + } + + if (error) + [[NSAlert alertWithError:error] runModal]; + } +} + - (void)exportPressed:(id)sender { NSSavePanel *panel = [NSSavePanel savePanel]; panel.allowedFileTypes = @[ @"enjoyable" ];