2005-06-02 18:16:43 +00:00
|
|
|
#import "AppController.h"
|
2016-05-05 20:05:39 +00:00
|
|
|
#import "FileTreeController.h"
|
2013-10-11 10:03:23 +00:00
|
|
|
#import "FileTreeViewController.h"
|
2016-05-05 20:05:39 +00:00
|
|
|
#import "FileTreeOutlineView.h"
|
2007-03-09 01:16:06 +00:00
|
|
|
#import "PlaybackController.h"
|
|
|
|
#import "PlaylistController.h"
|
|
|
|
#import "PlaylistView.h"
|
2013-10-09 09:02:49 +00:00
|
|
|
#import "PlaylistEntry.h"
|
2007-03-09 01:16:06 +00:00
|
|
|
#import "PlaylistLoader.h"
|
2007-05-26 14:43:31 +00:00
|
|
|
#import "OpenURLPanel.h"
|
2008-02-11 09:20:52 +00:00
|
|
|
#import "SpotlightWindowController.h"
|
2008-02-18 01:46:34 +00:00
|
|
|
#import "StringToURLTransformer.h"
|
2008-02-18 09:27:27 +00:00
|
|
|
#import "FontSizetoLineHeightTransformer.h"
|
2020-11-23 02:16:34 +00:00
|
|
|
#import "Cog-Swift.h"
|
2013-10-11 10:03:23 +00:00
|
|
|
#import "PathNode.h"
|
2013-10-09 09:02:49 +00:00
|
|
|
#import <CogAudio/Status.h>
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
#import "Logging.h"
|
2013-10-11 19:02:05 +00:00
|
|
|
#import "MiniModeMenuTitleTransformer.h"
|
|
|
|
#import "DualWindow.h"
|
2013-10-11 12:03:55 +00:00
|
|
|
|
2021-01-25 02:44:17 +00:00
|
|
|
#import <MASShortcut/Shortcut.h>
|
|
|
|
#import "Shortcuts.h"
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@implementation AppController
|
|
|
|
|
2008-02-18 01:46:34 +00:00
|
|
|
+ (void)initialize
|
|
|
|
{
|
2008-02-18 09:27:27 +00:00
|
|
|
// Register transformers
|
2016-05-05 20:05:39 +00:00
|
|
|
NSValueTransformer *stringToURLTransformer = [[StringToURLTransformer alloc] init];
|
2008-02-18 01:46:34 +00:00
|
|
|
[NSValueTransformer setValueTransformer:stringToURLTransformer
|
|
|
|
forName:@"StringToURLTransformer"];
|
2008-02-18 09:27:27 +00:00
|
|
|
|
|
|
|
NSValueTransformer *fontSizetoLineHeightTransformer =
|
2016-05-05 20:05:39 +00:00
|
|
|
[[FontSizetoLineHeightTransformer alloc] init];
|
2008-02-18 09:27:27 +00:00
|
|
|
[NSValueTransformer setValueTransformer:fontSizetoLineHeightTransformer
|
|
|
|
forName:@"FontSizetoLineHeightTransformer"];
|
2013-10-11 19:02:05 +00:00
|
|
|
|
2016-05-05 20:05:39 +00:00
|
|
|
NSValueTransformer *miniModeMenuTitleTransformer = [[MiniModeMenuTitleTransformer alloc] init];
|
2013-10-11 19:02:05 +00:00
|
|
|
[NSValueTransformer setValueTransformer:miniModeMenuTitleTransformer
|
|
|
|
forName:@"MiniModeMenuTitleTransformer"];
|
2020-11-23 02:16:34 +00:00
|
|
|
|
|
|
|
NSValueTransformer *playbackStatusToHiddenTransformer = [[PlaybackStatusToHiddenTransformer alloc] init];
|
|
|
|
[NSValueTransformer setValueTransformer:playbackStatusToHiddenTransformer forName:@"PlaybackStatusToHiddenTransformer"];
|
2008-02-18 01:46:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-30 13:25:45 +00:00
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (self)
|
|
|
|
{
|
|
|
|
[self initDefaults];
|
2007-11-01 01:53:52 +00:00
|
|
|
|
2008-03-01 18:29:14 +00:00
|
|
|
queue = [[NSOperationQueue alloc]init];
|
2006-09-30 13:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
- (IBAction)openFiles:(id)sender
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
|
|
|
NSOpenPanel *p;
|
|
|
|
|
|
|
|
p = [NSOpenPanel openPanel];
|
|
|
|
|
2013-10-03 08:00:58 +00:00
|
|
|
[p setAllowedFileTypes:[playlistLoader acceptableFileTypes]];
|
2005-06-02 18:16:43 +00:00
|
|
|
[p setCanChooseDirectories:YES];
|
|
|
|
[p setAllowsMultipleSelection:YES];
|
2013-10-03 08:00:58 +00:00
|
|
|
[p setResolvesAliases:YES];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2013-10-03 08:00:58 +00:00
|
|
|
[p beginSheetModalForWindow:mainWindow completionHandler:^(NSInteger result) {
|
2021-01-07 04:41:58 +00:00
|
|
|
if ( result == NSModalResponseOK ) {
|
2018-06-28 10:59:59 +00:00
|
|
|
[self->playlistLoader willInsertURLs:[p URLs] origin:URLOriginInternal];
|
|
|
|
[self->playlistLoader didInsertURLs:[self->playlistLoader addURLs:[p URLs] sort:YES] origin:URLOriginInternal];
|
2013-10-03 08:00:58 +00:00
|
|
|
} else {
|
|
|
|
[p close];
|
|
|
|
}
|
|
|
|
}];
|
2007-05-26 14:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)savePlaylist:(id)sender
|
|
|
|
{
|
|
|
|
NSSavePanel *p;
|
|
|
|
|
|
|
|
p = [NSSavePanel savePanel];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2013-10-03 08:00:58 +00:00
|
|
|
[p beginSheetModalForWindow:mainWindow completionHandler:^(NSInteger result) {
|
2021-01-07 04:41:58 +00:00
|
|
|
if ( result == NSModalResponseOK ) {
|
2018-06-28 10:59:59 +00:00
|
|
|
[self->playlistLoader save:[[p URL] path]];
|
2013-10-03 08:00:58 +00:00
|
|
|
} else {
|
|
|
|
[p close];
|
|
|
|
}
|
|
|
|
}];
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
2007-05-26 14:43:31 +00:00
|
|
|
- (IBAction)openURL:(id)sender
|
2007-03-02 01:36:52 +00:00
|
|
|
{
|
2007-05-26 14:43:31 +00:00
|
|
|
OpenURLPanel *p;
|
2007-03-02 01:36:52 +00:00
|
|
|
|
2007-05-26 14:43:31 +00:00
|
|
|
p = [OpenURLPanel openURLPanel];
|
|
|
|
|
|
|
|
[p beginSheetWithWindow:mainWindow delegate:self didEndSelector:@selector(openURLPanelDidEnd:returnCode:contextInfo:) contextInfo:nil];
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
2007-05-26 14:43:31 +00:00
|
|
|
- (void)openURLPanelDidEnd:(OpenURLPanel *)panel returnCode:(int)returnCode contextInfo:(void *)contextInfo
|
2007-03-02 01:36:52 +00:00
|
|
|
{
|
2021-01-07 04:41:58 +00:00
|
|
|
if (returnCode == NSModalResponseOK)
|
2007-05-26 14:43:31 +00:00
|
|
|
{
|
2020-03-10 09:17:19 +00:00
|
|
|
[playlistLoader willInsertURLs:[NSArray arrayWithObject:[panel url]] origin:URLOriginInternal];
|
|
|
|
[playlistLoader didInsertURLs:[playlistLoader addURLs:[NSArray arrayWithObject:[panel url]] sort:NO] origin:URLOriginInternal];
|
2007-05-26 14:43:31 +00:00
|
|
|
}
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (IBAction)delEntries:(id)sender
|
|
|
|
{
|
|
|
|
[playlistController remove:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (PlaylistEntry *)currentEntry
|
|
|
|
{
|
|
|
|
return [playlistController currentEntry];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)application:(NSApplication *)sender delegateHandlesKey:(NSString *)key
|
|
|
|
{
|
2007-10-03 22:26:39 +00:00
|
|
|
return [key isEqualToString:@"currentEntry"] || [key isEqualToString:@"play"];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)awakeFromNib
|
|
|
|
{
|
2007-11-24 20:16:27 +00:00
|
|
|
[[totalTimeField cell] setBackgroundStyle:NSBackgroundStyleRaised];
|
|
|
|
|
2008-01-23 03:03:46 +00:00
|
|
|
[[playbackButtons cell] setToolTip:NSLocalizedString(@"PlayButtonTooltip", @"") forSegment: 1];
|
|
|
|
[[playbackButtons cell] setToolTip:NSLocalizedString(@"PrevButtonTooltip", @"") forSegment: 0];
|
|
|
|
[[playbackButtons cell] setToolTip:NSLocalizedString(@"NextButtonTooltip", @"") forSegment: 2];
|
2005-07-11 20:27:47 +00:00
|
|
|
[infoButton setToolTip:NSLocalizedString(@"InfoButtonTooltip", @"")];
|
|
|
|
[shuffleButton setToolTip:NSLocalizedString(@"ShuffleButtonTooltip", @"")];
|
|
|
|
[repeatButton setToolTip:NSLocalizedString(@"RepeatButtonTooltip", @"")];
|
2013-10-11 12:27:19 +00:00
|
|
|
[randomizeButton setToolTip:NSLocalizedString(@"RandomizeButtonTooltip", @"")];
|
2007-05-28 14:13:57 +00:00
|
|
|
[fileButton setToolTip:NSLocalizedString(@"FileButtonTooltip", @"")];
|
2006-04-13 03:20:31 +00:00
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
[self registerHotKeys];
|
|
|
|
|
2016-05-05 20:05:39 +00:00
|
|
|
(void) [spotlightWindowController init];
|
2007-02-19 00:42:12 +00:00
|
|
|
|
2008-02-10 18:34:23 +00:00
|
|
|
[[playlistController undoManager] disableUndoRegistration];
|
2013-10-09 15:45:16 +00:00
|
|
|
NSString *basePath = [@"~/Library/Application Support/Cog/" stringByExpandingTildeInPath];
|
|
|
|
NSString *oldFilename = @"Default.m3u";
|
|
|
|
NSString *newFilename = @"Default.xml";
|
|
|
|
|
|
|
|
if ([[NSFileManager defaultManager] fileExistsAtPath:[basePath stringByAppendingPathComponent:newFilename]])
|
|
|
|
{
|
|
|
|
[playlistLoader addURL:[NSURL fileURLWithPath:[basePath stringByAppendingPathComponent:newFilename]]];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[playlistLoader addURL:[NSURL fileURLWithPath:[basePath stringByAppendingPathComponent:oldFilename]]];
|
|
|
|
}
|
|
|
|
|
2008-02-10 18:34:23 +00:00
|
|
|
[[playlistController undoManager] enableUndoRegistration];
|
2013-10-09 09:02:49 +00:00
|
|
|
|
2017-03-22 05:08:35 +00:00
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"resumePlaybackOnStartup"])
|
2013-10-09 09:02:49 +00:00
|
|
|
{
|
2017-03-22 05:08:35 +00:00
|
|
|
int lastStatus = (int) [[NSUserDefaults standardUserDefaults] integerForKey:@"lastPlaybackStatus"];
|
|
|
|
int lastIndex = (int) [[NSUserDefaults standardUserDefaults] integerForKey:@"lastTrackPlaying"];
|
2013-10-11 09:09:26 +00:00
|
|
|
|
2017-03-22 05:08:35 +00:00
|
|
|
if (lastStatus != kCogStatusStopped && lastIndex >= 0)
|
|
|
|
{
|
|
|
|
[playbackController playEntryAtIndex:lastIndex startPaused:(lastStatus == kCogStatusPaused)];
|
|
|
|
[playbackController seek:[NSNumber numberWithDouble:[[NSUserDefaults standardUserDefaults] floatForKey:@"lastTrackPosition"]]];
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 19:02:05 +00:00
|
|
|
|
|
|
|
// Restore mini mode
|
|
|
|
[self setMiniMode:[[NSUserDefaults standardUserDefaults] boolForKey:@"miniMode"]];
|
|
|
|
|
2013-10-11 10:03:23 +00:00
|
|
|
// We need file tree view to restore its state here
|
|
|
|
// so attempt to access file tree view controller's root view
|
|
|
|
// to force it to read nib and create file tree view for us
|
|
|
|
//
|
|
|
|
// TODO: there probably is a more elegant way to do all this
|
|
|
|
// but i'm too stupid/tired to figure it out now
|
|
|
|
[fileTreeViewController view];
|
|
|
|
|
|
|
|
FileTreeOutlineView* outlineView = [fileTreeViewController outlineView];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(nodeExpanded:) name:NSOutlineViewItemDidExpandNotification object:outlineView];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(nodeCollapsed:) name:NSOutlineViewItemDidCollapseNotification object:outlineView];
|
|
|
|
|
|
|
|
NSArray *expandedNodesArray = [[NSUserDefaults standardUserDefaults] valueForKey:@"fileTreeViewExpandedNodes"];
|
|
|
|
|
|
|
|
if (expandedNodesArray)
|
|
|
|
{
|
|
|
|
expandedNodes = [[NSMutableSet alloc] initWithArray:expandedNodesArray];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
expandedNodes = [[NSMutableSet alloc] init];
|
|
|
|
}
|
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Nodes to expand: %@", [expandedNodes description]);
|
2013-10-11 10:03:23 +00:00
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Num of rows: %ld", [outlineView numberOfRows]);
|
2013-10-11 10:03:23 +00:00
|
|
|
|
|
|
|
if (!outlineView)
|
|
|
|
{
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"outlineView is NULL!");
|
2013-10-11 10:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[outlineView reloadData];
|
|
|
|
|
|
|
|
for (NSInteger i=0; i<[outlineView numberOfRows]; i++)
|
|
|
|
{
|
|
|
|
PathNode *pn = [outlineView itemAtRow:i];
|
|
|
|
NSString *str = [[pn URL] absoluteString];
|
|
|
|
|
|
|
|
if ([expandedNodes containsObject:str])
|
|
|
|
{
|
|
|
|
[outlineView expandItem:pn];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)nodeExpanded:(NSNotification*)notification
|
|
|
|
{
|
|
|
|
PathNode* node = [[notification userInfo] objectForKey:@"NSObject"];
|
|
|
|
NSString* url = [[node URL] absoluteString];
|
|
|
|
|
|
|
|
[expandedNodes addObject:url];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)nodeCollapsed:(NSNotification*)notification
|
|
|
|
{
|
|
|
|
PathNode* node = [[notification userInfo] objectForKey:@"NSObject"];
|
|
|
|
NSString* url = [[node URL] absoluteString];
|
|
|
|
|
|
|
|
[expandedNodes removeObject:url];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillTerminate:(NSNotification *)aNotification
|
|
|
|
{
|
2013-10-09 09:02:49 +00:00
|
|
|
int currentStatus = [playbackController playbackStatus];
|
|
|
|
int lastTrackPlaying = -1;
|
|
|
|
double lastTrackPosition = 0;
|
|
|
|
|
2021-01-06 10:18:09 +00:00
|
|
|
if (currentStatus == kCogStatusStopping)
|
|
|
|
currentStatus = kCogStatusStopped;
|
|
|
|
|
2013-10-09 09:02:49 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setInteger:currentStatus forKey:@"lastPlaybackStatus"];
|
|
|
|
|
|
|
|
if (currentStatus != kCogStatusStopped)
|
|
|
|
{
|
|
|
|
PlaylistEntry * pe = [playlistController currentEntry];
|
|
|
|
lastTrackPlaying = [pe index];
|
|
|
|
lastTrackPosition = [pe currentPosition];
|
|
|
|
}
|
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] setInteger:lastTrackPlaying forKey:@"lastTrackPlaying"];
|
|
|
|
[[NSUserDefaults standardUserDefaults] setDouble:lastTrackPosition forKey:@"lastTrackPosition"];
|
|
|
|
|
2007-02-26 05:07:18 +00:00
|
|
|
[playbackController stop:self];
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
NSFileManager *fileManager = [NSFileManager defaultManager];
|
|
|
|
NSString *folder = @"~/Library/Application Support/Cog/";
|
|
|
|
|
|
|
|
folder = [folder stringByExpandingTildeInPath];
|
|
|
|
|
|
|
|
if ([fileManager fileExistsAtPath: folder] == NO)
|
|
|
|
{
|
2013-10-03 08:00:58 +00:00
|
|
|
[fileManager createDirectoryAtPath: folder withIntermediateDirectories:NO attributes:nil error:nil];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2013-10-09 15:45:16 +00:00
|
|
|
NSString * fileName = @"Default.xml";
|
|
|
|
|
|
|
|
[playlistLoader saveXml:[folder stringByAppendingPathComponent: fileName]];
|
|
|
|
|
|
|
|
fileName = @"Default.m3u";
|
|
|
|
|
|
|
|
NSError *error;
|
|
|
|
[[NSFileManager defaultManager] removeItemAtPath:[folder stringByAppendingPathComponent:fileName] error:&error];
|
2013-10-11 10:03:23 +00:00
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Saving expanded nodes: %@", [expandedNodes description]);
|
2013-10-11 10:03:23 +00:00
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] setValue:[expandedNodes allObjects] forKey:@"fileTreeViewExpandedNodes"];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)flag
|
|
|
|
{
|
2007-07-05 23:08:10 +00:00
|
|
|
if (flag == NO)
|
2015-01-15 13:57:22 +00:00
|
|
|
[mainWindow makeKeyAndOrderFront:self]; // TODO: do we really need this? We never close the main window.
|
|
|
|
|
|
|
|
for(NSWindow* win in [NSApp windows]) // Maximizing all windows
|
|
|
|
if([win isMiniaturized])
|
|
|
|
[win deminiaturize:self];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename
|
|
|
|
{
|
2008-05-09 21:24:49 +00:00
|
|
|
NSArray* urls = [NSArray arrayWithObject:[NSURL fileURLWithPath:filename]];
|
2009-02-28 22:22:33 +00:00
|
|
|
[playlistLoader willInsertURLs:urls origin:URLOriginExternal];
|
|
|
|
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:NO] origin:URLOriginExternal];
|
2005-06-02 18:16:43 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)application:(NSApplication *)theApplication openFiles:(NSArray *)filenames
|
|
|
|
{
|
2007-03-09 01:16:06 +00:00
|
|
|
//Need to convert to urls
|
|
|
|
NSMutableArray *urls = [NSMutableArray array];
|
|
|
|
|
2008-02-20 00:54:45 +00:00
|
|
|
for (NSString *filename in filenames)
|
2007-03-09 01:16:06 +00:00
|
|
|
{
|
|
|
|
[urls addObject:[NSURL fileURLWithPath:filename]];
|
|
|
|
}
|
2009-02-28 22:22:33 +00:00
|
|
|
[playlistLoader willInsertURLs:urls origin:URLOriginExternal];
|
|
|
|
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:YES] origin:URLOriginExternal];
|
2005-06-02 18:16:43 +00:00
|
|
|
[theApplication replyToOpenOrPrint:NSApplicationDelegateReplySuccess];
|
|
|
|
}
|
|
|
|
|
2020-11-25 00:03:49 +00:00
|
|
|
- (IBAction)openLiberapayPage:(id)sender
|
2006-04-04 01:08:21 +00:00
|
|
|
{
|
2020-11-25 00:03:49 +00:00
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://liberapay.com/kode54"]];
|
2019-11-16 22:49:30 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 00:03:49 +00:00
|
|
|
- (IBAction)openPaypalPage:(id)sender
|
2020-05-02 07:53:08 +00:00
|
|
|
{
|
2020-11-25 00:03:49 +00:00
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://www.paypal.com/paypalme/kode54"]];
|
2020-05-02 07:53:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 00:03:49 +00:00
|
|
|
- (IBAction)openBitcoinPage:(id)sender
|
|
|
|
{
|
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://kode54.net/donateBitcoin"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)openPatreonPage:(id)sender
|
|
|
|
{
|
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://patreon.com/kode54"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)openKofiPage:(id)sender
|
|
|
|
{
|
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://ko-fi.com/kode54"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-16 22:49:30 +00:00
|
|
|
- (IBAction)feedback:(id)sender
|
|
|
|
{
|
|
|
|
NSString *version = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];
|
|
|
|
|
|
|
|
NSString *url = @"https://kode54.net/contact";
|
|
|
|
|
|
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/%@", url, version]]];
|
2006-04-04 01:08:21 +00:00
|
|
|
}
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
- (void)initDefaults
|
|
|
|
{
|
|
|
|
NSMutableDictionary *userDefaultsValuesDict = [NSMutableDictionary dictionary];
|
2007-02-19 00:42:12 +00:00
|
|
|
|
2008-02-18 00:11:38 +00:00
|
|
|
// Font defaults
|
2021-01-07 04:41:58 +00:00
|
|
|
float fFontSize = [NSFont systemFontSizeForControlSize:NSControlSizeSmall];
|
2008-02-18 00:11:38 +00:00
|
|
|
NSNumber *fontSize = [NSNumber numberWithFloat:fFontSize];
|
|
|
|
[userDefaultsValuesDict setObject:fontSize forKey:@"fontSize"];
|
2006-09-10 21:27:20 +00:00
|
|
|
|
2021-01-25 03:23:48 +00:00
|
|
|
NSString *feedURLdefault = @"https://f.losno.co/cog/mercury.xml";
|
|
|
|
[userDefaultsValuesDict setObject:feedURLdefault forKey:@"SUFeedURL"];
|
2008-05-09 21:24:49 +00:00
|
|
|
|
2008-05-18 09:38:53 +00:00
|
|
|
[userDefaultsValuesDict setObject:@"clearAndPlay" forKey:@"openingFilesBehavior"];
|
|
|
|
[userDefaultsValuesDict setObject:@"enqueue" forKey:@"openingFilesAlteredBehavior"];
|
2013-10-02 06:00:16 +00:00
|
|
|
|
|
|
|
[userDefaultsValuesDict setObject:@"albumGainWithPeak" forKey:@"volumeScaling"];
|
2014-03-27 04:49:31 +00:00
|
|
|
|
|
|
|
[userDefaultsValuesDict setObject:@"cubic" forKey:@"resampling"];
|
2013-10-04 11:16:09 +00:00
|
|
|
|
2013-10-09 09:02:49 +00:00
|
|
|
[userDefaultsValuesDict setObject:[NSNumber numberWithInteger:kCogStatusStopped] forKey:@"lastPlaybackStatus"];
|
|
|
|
[userDefaultsValuesDict setObject:[NSNumber numberWithInteger:-1] forKey:@"lastTrackPlaying"];
|
|
|
|
[userDefaultsValuesDict setObject:[NSNumber numberWithDouble:0] forKey:@"lastTrackPosition"];
|
2014-12-04 05:36:55 +00:00
|
|
|
|
2016-01-21 05:11:05 +00:00
|
|
|
[userDefaultsValuesDict setObject:@"dls appl" forKey:@"midi.plugin"];
|
|
|
|
|
2016-11-29 23:46:38 +00:00
|
|
|
[userDefaultsValuesDict setObject:@"default" forKey:@"midi.flavor"];
|
2016-04-13 04:16:25 +00:00
|
|
|
|
2017-03-22 05:08:35 +00:00
|
|
|
[userDefaultsValuesDict setObject:[NSNumber numberWithBool:NO] forKey:@"resumePlaybackOnStartup"];
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
//Register and sync defaults
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:userDefaultsValuesDict];
|
|
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
2021-01-25 03:23:48 +00:00
|
|
|
|
2013-10-23 00:46:33 +00:00
|
|
|
//And if the existing feed URL is broken due to my ineptitude with the above defaults, fix it
|
2021-01-25 03:23:48 +00:00
|
|
|
NSSet<NSString *> *brokenFeedURLs = [NSSet setWithObjects:
|
|
|
|
@"https://kode54.net/cog/stable.xml",
|
|
|
|
@"https://kode54.net/cog/mercury.xml"
|
|
|
|
@"https://www.kode54.net/cog/mercury.xml",
|
|
|
|
nil];
|
|
|
|
NSString *feedURL = [[NSUserDefaults standardUserDefaults] stringForKey:@"SUFeedURL"];
|
|
|
|
if ([brokenFeedURLs containsObject:feedURL]) {
|
2013-10-23 00:46:33 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setValue:feedURLdefault forKey:@"SUFeedURL"];
|
2021-01-25 03:23:48 +00:00
|
|
|
}
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 05:33:00 +00:00
|
|
|
/* Unassign previous handler first, so dealloc can unregister it from the global map before the new instances are assigned */
|
2006-09-10 21:27:20 +00:00
|
|
|
- (void)registerHotKeys
|
2006-09-02 16:09:20 +00:00
|
|
|
{
|
2021-01-25 02:44:17 +00:00
|
|
|
MASShortcutBinder *binder = [MASShortcutBinder sharedBinder];
|
|
|
|
[binder bindShortcutWithDefaultsKey:CogPlayShortcutKey toAction:^{
|
|
|
|
[self clickPlay];
|
|
|
|
}];
|
2013-10-04 11:16:09 +00:00
|
|
|
|
2021-01-25 02:44:17 +00:00
|
|
|
[binder bindShortcutWithDefaultsKey:CogNextShortcutKey toAction:^{
|
|
|
|
[self clickNext];
|
|
|
|
}];
|
|
|
|
|
|
|
|
[binder bindShortcutWithDefaultsKey:CogPrevShortcutKey toAction:^{
|
|
|
|
[self clickPrev];
|
|
|
|
}];
|
|
|
|
|
|
|
|
[binder bindShortcutWithDefaultsKey:CogSpamShortcutKey toAction:^{
|
|
|
|
[self clickSpam];
|
|
|
|
}];
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 10:39:57 +00:00
|
|
|
- (void)windowDidEnterFullScreen:(NSNotification *)notification
|
2013-10-11 09:09:26 +00:00
|
|
|
{
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Entering fullscreen");
|
2013-10-11 09:09:26 +00:00
|
|
|
if (nil == nowPlaying)
|
|
|
|
{
|
|
|
|
nowPlaying = [[NowPlayingBarController alloc] init];
|
|
|
|
|
|
|
|
NSView *contentView = [mainWindow contentView];
|
|
|
|
NSRect contentRect = [contentView frame];
|
|
|
|
const NSSize windowSize = [contentView convertSize:[mainWindow frame].size fromView: nil];
|
|
|
|
|
|
|
|
[contentView addSubview: [nowPlaying view]];
|
2017-12-28 02:51:44 +00:00
|
|
|
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
|
|
|
|
[context setDuration:0.25];
|
2018-06-28 10:59:59 +00:00
|
|
|
NSRect nowPlayingFrame = [[self->nowPlaying view] frame];
|
2017-12-28 02:51:44 +00:00
|
|
|
nowPlayingFrame.size.width = windowSize.width;
|
2018-06-28 10:59:59 +00:00
|
|
|
[[self->nowPlaying view] setFrame: nowPlayingFrame];
|
|
|
|
[[self->nowPlaying view] setFrameOrigin: NSMakePoint(0.0, NSMaxY(contentRect) - nowPlayingFrame.size.height)];
|
2017-12-28 02:51:44 +00:00
|
|
|
|
2018-06-28 10:59:59 +00:00
|
|
|
NSRect mainViewFrame = [self->mainView frame];
|
2017-12-28 02:51:44 +00:00
|
|
|
mainViewFrame.size.height -= nowPlayingFrame.size.height;
|
2018-06-28 10:59:59 +00:00
|
|
|
[[self->mainView animator] setFrame:mainViewFrame];
|
2017-12-28 02:51:44 +00:00
|
|
|
|
|
|
|
} completionHandler:^{
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
2013-10-11 09:09:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
[[nowPlaying text] bind:@"value" toObject:currentEntryController withKeyPath:@"content.display" options:nil];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-11 10:39:57 +00:00
|
|
|
- (void)windowDidExitFullScreen:(NSNotification *)notification
|
2013-10-11 09:09:26 +00:00
|
|
|
{
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Exiting fullscreen");
|
2013-10-11 09:09:26 +00:00
|
|
|
if (nowPlaying)
|
|
|
|
{
|
|
|
|
NSRect nowPlayingFrame = [[nowPlaying view] frame];
|
|
|
|
NSRect mainViewFrame = [mainView frame];
|
|
|
|
mainViewFrame.size.height += nowPlayingFrame.size.height;
|
2017-12-28 02:51:44 +00:00
|
|
|
//[mainView setFrame:mainViewFrame];
|
2013-10-11 09:09:26 +00:00
|
|
|
// [mainView setFrameOrigin:NSMakePoint(0.0, 0.0)];
|
|
|
|
|
2017-12-28 02:51:44 +00:00
|
|
|
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
|
|
|
|
[context setDuration:0.25];
|
2018-06-28 10:59:59 +00:00
|
|
|
[[self->mainView animator] setFrame:mainViewFrame];
|
2017-12-28 02:51:44 +00:00
|
|
|
|
|
|
|
} completionHandler:^{
|
2018-06-28 10:59:59 +00:00
|
|
|
[[self->nowPlaying view] removeFromSuperview];
|
|
|
|
self->nowPlaying = nil;
|
2017-12-28 02:51:44 +00:00
|
|
|
}];
|
2013-10-11 09:09:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
- (void)clickPlay
|
|
|
|
{
|
2008-01-23 03:03:46 +00:00
|
|
|
[playbackController playPauseResume:self];
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
2019-11-14 03:13:59 +00:00
|
|
|
- (void)clickPause
|
|
|
|
{
|
|
|
|
[playbackController pause:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)clickStop
|
|
|
|
{
|
|
|
|
[playbackController stop:self];
|
|
|
|
}
|
|
|
|
|
2006-09-02 16:09:20 +00:00
|
|
|
- (void)clickPrev
|
|
|
|
{
|
2008-01-23 03:03:46 +00:00
|
|
|
[playbackController prev:nil];
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)clickNext
|
|
|
|
{
|
2008-01-23 03:03:46 +00:00
|
|
|
[playbackController next:nil];
|
2006-09-02 16:09:20 +00:00
|
|
|
}
|
|
|
|
|
2013-10-04 11:16:09 +00:00
|
|
|
- (void)clickSpam
|
|
|
|
{
|
|
|
|
[playbackController spam];
|
|
|
|
}
|
|
|
|
|
2019-11-14 03:13:59 +00:00
|
|
|
- (void)clickSeek:(NSTimeInterval)position
|
|
|
|
{
|
|
|
|
[playbackController seek:self toTime:position];
|
|
|
|
}
|
|
|
|
|
2008-02-15 15:27:34 +00:00
|
|
|
- (void)changeFontSize:(float)size
|
|
|
|
{
|
2008-02-18 00:11:38 +00:00
|
|
|
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
float fCurrentSize = [defaults floatForKey:@"fontSize"];
|
|
|
|
NSNumber *newSize = [NSNumber numberWithFloat:(fCurrentSize + size)];
|
|
|
|
[defaults setObject:newSize forKey:@"fontSize"];
|
2008-02-15 15:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)increaseFontSize:(id)sender
|
|
|
|
{
|
|
|
|
[self changeFontSize:1];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)decreaseFontSize:(id)sender
|
|
|
|
{
|
|
|
|
[self changeFontSize:-1];
|
|
|
|
|
|
|
|
}
|
2008-03-01 18:29:14 +00:00
|
|
|
|
2013-10-11 19:02:05 +00:00
|
|
|
- (IBAction)toggleMiniMode:(id)sender
|
|
|
|
{
|
|
|
|
[self setMiniMode:(!miniMode)];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)miniMode
|
|
|
|
{
|
|
|
|
return miniMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setMiniMode:(BOOL)newMiniMode
|
|
|
|
{
|
|
|
|
miniMode = newMiniMode;
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:miniMode forKey:@"miniMode"];
|
|
|
|
|
|
|
|
NSWindow *windowToShow = miniMode ? miniWindow : mainWindow;
|
|
|
|
NSWindow *windowToHide = miniMode ? mainWindow : miniWindow;
|
|
|
|
[windowToHide close];
|
|
|
|
[windowToShow makeKeyAndOrderFront:self];
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@end
|