X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=ApplicationController.m;h=faad07aa7ef23a2d96d84821d697106691458313;hp=b86a5f2067f8ebc36e09e8bdc58bd90eda2b70ff;hb=dcedf147ddcb6c21768cea94a2f06b93007d2a82;hpb=5de694150d275d27119d344cbb1d61bc31d75268 diff --git a/ApplicationController.m b/ApplicationController.m index b86a5f2..faad07a 100644 --- a/ApplicationController.m +++ b/ApplicationController.m @@ -7,10 +7,11 @@ #import "ApplicationController.h" -#import "Config.h" -#import "ConfigsController.h" -#import "JoystickController.h" -#import "TargetController.h" +#import "NJMapping.h" +#import "NJMappingsController.h" +#import "NJInputController.h" +#import "NJOutputController.h" +#import "NJEvents.h" @implementation ApplicationController { BOOL active; @@ -18,72 +19,93 @@ - (void)didSwitchApplication:(NSNotification *)notification { NSRunningApplication *currentApp = notification.userInfo[NSWorkspaceApplicationKey]; - [self.configsController activateConfigForProcess:currentApp.localizedName]; + [self.mappingsController activateMappingForProcess:currentApp.localizedName]; } - (void)applicationDidFinishLaunching:(NSNotification *)notification { [drawer open]; - self.targetController.enabled = NO; - [self.jsController setup]; - [self.configsController load]; - [[NSWorkspace sharedWorkspace].notificationCenter + self.outputController.enabled = NO; + [self.inputController setup]; + [self.mappingsController load]; + [NSNotificationCenter.defaultCenter + addObserver:self + selector:@selector(mappingDidChange:) + name:NJEventMappingChanged + object:nil]; + [NSNotificationCenter.defaultCenter + addObserver:self + selector:@selector(eventTranslationActivated:) + name:NJEventTranslationActivated + object:nil]; + [NSNotificationCenter.defaultCenter + addObserver:self + selector:@selector(eventTranslationDeactivated:) + name:NJEventTranslationDeactivated + object:nil]; +} + +- (void)applicationWillTerminate:(NSNotification *)aNotification { + [NSUserDefaults.standardUserDefaults synchronize]; +} + +- (void)eventTranslationActivated:(NSNotification *)note { + activeButton.image = [NSImage imageNamed:@"NSStopProgressFreestandingTemplate"]; + activeMenuItem.state = [note.object translatingEvents]; + [NSWorkspace.sharedWorkspace.notificationCenter addObserver:self selector:@selector(didSwitchApplication:) name:NSWorkspaceDidActivateApplicationNotification object:nil]; + NSLog(@"Listening for application changes."); } -- (void)applicationWillTerminate:(NSNotification *)aNotification { - [[NSUserDefaults standardUserDefaults] synchronize]; - [[NSWorkspace sharedWorkspace].notificationCenter +- (void)eventTranslationDeactivated:(NSNotification *)note { + activeButton.image = [NSImage imageNamed:@"NSGoRightTemplate"]; + activeMenuItem.state = [note.object translatingEvents]; + [NSWorkspace.sharedWorkspace.notificationCenter removeObserver:self name:NSWorkspaceDidActivateApplicationNotification object:nil]; + NSLog(@"Ignoring application changes."); } - (IBAction)toggleActivity:(id)sender { - BOOL sendRealEvents = !self.jsController.sendingRealEvents; - self.jsController.sendingRealEvents = sendRealEvents; - activeButton.label = sendRealEvents ? @"Stop" : @"Start"; - activeButton.image = [NSImage imageNamed:sendRealEvents ? @"NSStopProgressFreestandingTemplate" : @"NSGoRightTemplate"]; - activeMenuItem.state = sendRealEvents; + self.inputController.translatingEvents = !self.inputController.translatingEvents; } -- (NSInteger)firstConfigMenuIndex { - NSInteger count = dockMenuBase.numberOfItems; - for (int i = 0; i < count; ++i) +- (NSInteger)firstMappingMenuIndex { + for (NSInteger i = dockMenuBase.numberOfItems - 1; i >= 0; --i) if ([dockMenuBase itemAtIndex:i].isSeparatorItem) return i + 1; - return count; + return dockMenuBase.numberOfItems; } -- (void)configsChanged { - NSInteger removeFrom = [self firstConfigMenuIndex]; +- (void)mappingsChanged { + NSInteger removeFrom = self.firstMappingMenuIndex; while (dockMenuBase.numberOfItems > removeFrom) [dockMenuBase removeItemAtIndex:dockMenuBase.numberOfItems - 1]; int added = 0; - for (Config *config in self.configsController.configs) { + for (NJMapping *mapping in self.mappingsController.mappings) { NSString *keyEquiv = ++added < 10 ? @(added).stringValue : @""; - [dockMenuBase addItemWithTitle:config.name - action:@selector(chooseConfig:) + [dockMenuBase addItemWithTitle:mapping.name + action:@selector(chooseMapping:) keyEquivalent:keyEquiv]; } - [_targetController refreshConfigs]; - [self configChanged]; + [_outputController refreshMappings]; } -- (void)configChanged { - NSInteger firstConfig = [self firstConfigMenuIndex]; - Config *current = self.configsController.currentConfig; - NSArray *configs = self.configsController.configs; - for (int i = 0; i < configs.count; ++i) - [dockMenuBase itemAtIndex:i + firstConfig].state = configs[i] == current; +- (void)mappingDidChange:(NSNotification *)note { + NSInteger firstMapping = self.firstMappingMenuIndex; + NJMapping *current = note.object; + NSArray *mappings = self.mappingsController.mappings; + for (NSUInteger i = 0; i < mappings.count; ++i) + [dockMenuBase itemAtIndex:i + firstMapping].state = mappings[i] == current; } -- (void)chooseConfig:(id)sender { - NSInteger idx = [dockMenuBase indexOfItem:sender] - [self firstConfigMenuIndex]; - Config *chosen = self.configsController.configs[idx]; - [_configsController activateConfig:chosen]; +- (void)chooseMapping:(id)sender { + NSInteger idx = [dockMenuBase indexOfItem:sender] - self.firstMappingMenuIndex; + NJMapping *chosen = self.mappingsController.mappings[idx]; + [_mappingsController activateMapping:chosen]; } @end