2006-01-20 15:41:31 +00:00
|
|
|
#import "PlaybackController.h"
|
|
|
|
#import "PlaylistView.h"
|
2008-02-12 22:12:27 +00:00
|
|
|
#import <Foundation/NSTimer.h>
|
2007-02-24 20:36:27 +00:00
|
|
|
#import "CogAudio/Status.h"
|
2008-02-17 18:44:11 +00:00
|
|
|
#import "CogAudio/Helper.h"
|
2006-01-20 15:41:31 +00:00
|
|
|
|
2007-03-14 02:28:30 +00:00
|
|
|
#import "PlaylistController.h"
|
|
|
|
#import "PlaylistEntry.h"
|
2018-06-28 10:59:59 +00:00
|
|
|
#import "PlaylistLoader.h"
|
2007-03-14 02:28:30 +00:00
|
|
|
|
2019-11-14 03:13:59 +00:00
|
|
|
#import <MediaPlayer/MPNowPlayingInfoCenter.h>
|
|
|
|
#import <MediaPlayer/MPRemoteCommandCenter.h>
|
|
|
|
#import <MediaPlayer/MPRemoteCommand.h>
|
|
|
|
#import <MediaPlayer/MPMediaItem.h>
|
|
|
|
#import <MediaPlayer/MPRemoteCommandEvent.h>
|
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
#import "Logging.h"
|
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
@implementation PlaybackController
|
|
|
|
|
2008-02-28 13:11:37 +00:00
|
|
|
#define DEFAULT_SEEK 5
|
2008-02-10 18:34:23 +00:00
|
|
|
|
2009-03-05 17:03:30 +00:00
|
|
|
NSString *CogPlaybackDidBeginNotficiation = @"CogPlaybackDidBeginNotficiation";
|
|
|
|
NSString *CogPlaybackDidPauseNotficiation = @"CogPlaybackDidPauseNotficiation";
|
|
|
|
NSString *CogPlaybackDidResumeNotficiation = @"CogPlaybackDidResumeNotficiation";
|
|
|
|
NSString *CogPlaybackDidStopNotficiation = @"CogPlaybackDidStopNotficiation";
|
|
|
|
|
2008-02-23 22:20:14 +00:00
|
|
|
@synthesize playbackStatus;
|
2008-02-13 01:50:39 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
+ (NSSet *)keyPathsForValuesAffectingSeekable
|
|
|
|
{
|
|
|
|
return [NSSet setWithObjects:@"playlistController.currentEntry",@"playlistController.currentEntry.seekable",nil];
|
|
|
|
}
|
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (self)
|
|
|
|
{
|
2007-02-26 05:26:48 +00:00
|
|
|
[self initDefaults];
|
2009-02-28 21:19:26 +00:00
|
|
|
|
|
|
|
seekable = NO;
|
|
|
|
fading = NO;
|
2007-02-26 05:26:48 +00:00
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
audioPlayer = [[AudioPlayer alloc] init];
|
|
|
|
[audioPlayer setDelegate:self];
|
2021-02-06 21:20:03 +00:00
|
|
|
[self setPlaybackStatus: CogStatusStopped];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-02-26 05:26:48 +00:00
|
|
|
- (void)initDefaults
|
|
|
|
{
|
|
|
|
NSDictionary *defaultsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
|
2009-02-28 18:19:15 +00:00
|
|
|
[NSNumber numberWithDouble:100.0], @"volume",
|
2007-02-26 05:26:48 +00:00
|
|
|
nil];
|
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:defaultsDictionary];
|
|
|
|
}
|
|
|
|
|
2007-02-28 00:35:27 +00:00
|
|
|
|
2008-02-13 01:50:39 +00:00
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
- (void)awakeFromNib
|
|
|
|
{
|
2009-02-28 18:19:15 +00:00
|
|
|
double volume = [[NSUserDefaults standardUserDefaults] doubleForKey:@"volume"];
|
2008-02-13 01:50:39 +00:00
|
|
|
|
2009-02-28 18:19:15 +00:00
|
|
|
[volumeSlider setDoubleValue:logarithmicToLinear(volume)];
|
|
|
|
[audioPlayer setVolume:volume];
|
2009-02-22 22:28:09 +00:00
|
|
|
|
|
|
|
[self setSeekable:NO];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
2007-02-20 01:02:23 +00:00
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
- (IBAction)playPauseResume:(id)sender
|
|
|
|
{
|
2021-02-06 21:20:03 +00:00
|
|
|
if (playbackStatus == CogStatusStopped || playbackStatus == CogStatusStopping)
|
2008-02-22 03:09:03 +00:00
|
|
|
{
|
2006-01-20 15:41:31 +00:00
|
|
|
[self play:self];
|
2008-02-22 03:09:03 +00:00
|
|
|
}
|
2006-01-20 15:41:31 +00:00
|
|
|
else
|
2008-02-22 03:09:03 +00:00
|
|
|
{
|
2006-01-20 15:41:31 +00:00
|
|
|
[self pauseResume:self];
|
2008-02-22 03:09:03 +00:00
|
|
|
}
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)pauseResume:(id)sender
|
|
|
|
{
|
2021-02-06 21:20:03 +00:00
|
|
|
if (playbackStatus == CogStatusPaused)
|
2006-01-20 15:41:31 +00:00
|
|
|
[self resume:self];
|
|
|
|
else
|
|
|
|
[self pause:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)pause:(id)sender
|
|
|
|
{
|
2007-02-24 20:36:27 +00:00
|
|
|
[audioPlayer pause];
|
2021-02-06 21:20:03 +00:00
|
|
|
[self setPlaybackStatus: CogStatusPaused];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)resume:(id)sender
|
|
|
|
{
|
2007-02-24 20:36:27 +00:00
|
|
|
[audioPlayer resume];
|
2007-02-25 02:43:56 +00:00
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)stop:(id)sender
|
|
|
|
{
|
2007-02-24 20:36:27 +00:00
|
|
|
[audioPlayer stop];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//called by double-clicking on table
|
2021-04-30 01:16:24 +00:00
|
|
|
- (void)playEntryAtIndex:(NSInteger)i
|
2013-10-13 02:16:47 +00:00
|
|
|
{
|
|
|
|
[self playEntryAtIndex:i startPaused:NO];
|
|
|
|
}
|
|
|
|
|
2021-04-30 01:16:24 +00:00
|
|
|
- (void)playEntryAtIndex:(NSInteger)i startPaused:(BOOL)paused
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2008-02-20 13:20:07 +00:00
|
|
|
PlaylistEntry *pe = [playlistController entryAtIndex:i];
|
2006-01-20 15:41:31 +00:00
|
|
|
|
2013-10-13 02:16:47 +00:00
|
|
|
[self playEntry:pe startPaused:paused];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2007-11-01 01:53:52 +00:00
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
- (IBAction)play:(id)sender
|
|
|
|
{
|
|
|
|
if ([playlistView selectedRow] == -1)
|
2013-10-03 08:00:58 +00:00
|
|
|
[playlistView selectRowIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO];
|
2008-11-21 15:43:34 +00:00
|
|
|
|
|
|
|
if ([playlistView selectedRow] > -1)
|
2016-06-30 05:10:29 +00:00
|
|
|
[self playEntryAtIndex:(int)[playlistView selectedRow]];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2013-10-02 09:30:04 +00:00
|
|
|
NSDictionary * makeRGInfo(PlaylistEntry *pe)
|
|
|
|
{
|
|
|
|
NSMutableDictionary * dictionary = [NSMutableDictionary dictionary];
|
|
|
|
if ([pe replayGainAlbumGain] != 0)
|
|
|
|
[dictionary setObject:[NSNumber numberWithFloat:[pe replayGainAlbumGain]] forKey:@"replayGainAlbumGain"];
|
|
|
|
if ([pe replayGainAlbumPeak] != 0)
|
|
|
|
[dictionary setObject:[NSNumber numberWithFloat:[pe replayGainAlbumPeak]] forKey:@"replayGainAlbumPeak"];
|
|
|
|
if ([pe replayGainTrackGain] != 0)
|
|
|
|
[dictionary setObject:[NSNumber numberWithFloat:[pe replayGainTrackGain]] forKey:@"replayGainTrackGain"];
|
|
|
|
if ([pe replayGainTrackPeak] != 0)
|
|
|
|
[dictionary setObject:[NSNumber numberWithFloat:[pe replayGainTrackPeak]] forKey:@"replayGainTrackPeak"];
|
|
|
|
if ([pe volume] != 1)
|
|
|
|
[dictionary setObject:[NSNumber numberWithFloat:[pe volume]] forKey:@"volume"];
|
|
|
|
return dictionary;
|
|
|
|
}
|
|
|
|
|
2007-02-25 02:43:56 +00:00
|
|
|
- (void)playEntry:(PlaylistEntry *)pe
|
2013-10-13 02:16:47 +00:00
|
|
|
{
|
|
|
|
[self playEntry:pe startPaused:NO];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)playEntry:(PlaylistEntry *)pe startPaused:(BOOL)paused
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2021-02-06 21:20:03 +00:00
|
|
|
if (playbackStatus != CogStatusStopped && playbackStatus != CogStatusStopping)
|
2006-01-29 14:57:48 +00:00
|
|
|
[self stop:self];
|
2006-05-13 15:52:52 +00:00
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"PLAYLIST CONTROLLER: %@", [playlistController class]);
|
2008-02-22 03:09:03 +00:00
|
|
|
[playlistController setCurrentEntry:pe];
|
2006-04-02 15:44:08 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setPosition:0.0];
|
2008-02-22 03:09:03 +00:00
|
|
|
|
|
|
|
if (pe == nil)
|
|
|
|
return;
|
2021-02-28 10:47:00 +00:00
|
|
|
|
|
|
|
BOOL loadData = YES;
|
|
|
|
NSString * urlScheme = [[pe URL] scheme];
|
|
|
|
if ([urlScheme isEqualToString:@"http"] ||
|
|
|
|
[urlScheme isEqualToString:@"https"])
|
|
|
|
loadData = NO;
|
|
|
|
|
2016-05-08 05:41:28 +00:00
|
|
|
#if 0
|
2013-10-07 23:15:15 +00:00
|
|
|
// Race here, but the worst that could happen is we re-read the data
|
2016-05-08 05:41:28 +00:00
|
|
|
if ([pe metadataLoaded] != YES) {
|
2013-10-07 23:15:15 +00:00
|
|
|
[pe performSelectorOnMainThread:@selector(setMetadata:) withObject:[playlistLoader readEntryInfo:pe] waitUntilDone:YES];
|
|
|
|
}
|
2016-09-04 19:49:43 +00:00
|
|
|
#elif 0
|
2016-05-08 05:41:28 +00:00
|
|
|
// Racing with this version is less likely to jam up the main thread
|
|
|
|
if ([pe metadataLoaded] != YES) {
|
|
|
|
NSArray * entries = [NSArray arrayWithObject:pe];
|
|
|
|
[playlistLoader loadInfoForEntries:entries];
|
|
|
|
}
|
2016-09-04 19:49:43 +00:00
|
|
|
#else
|
|
|
|
// Let's do it this way instead
|
2021-02-28 10:47:00 +00:00
|
|
|
if ([pe metadataLoaded] != YES && loadData == YES) {
|
2016-09-04 19:49:43 +00:00
|
|
|
NSArray *entries = [NSArray arrayWithObject:pe];
|
|
|
|
[playlistLoader performSelectorInBackground:@selector(loadInfoForEntries:) withObject:entries];
|
|
|
|
}
|
2016-05-08 05:41:28 +00:00
|
|
|
#endif
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2013-10-07 23:15:15 +00:00
|
|
|
|
2013-10-13 02:16:47 +00:00
|
|
|
[audioPlayer play:[pe URL] withUserInfo:pe withRGInfo:makeRGInfo(pe) startPaused:paused];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)next:(id)sender
|
|
|
|
{
|
2006-01-29 14:57:48 +00:00
|
|
|
if ([playlistController next] == NO)
|
2006-01-20 15:41:31 +00:00
|
|
|
return;
|
2006-01-29 14:57:48 +00:00
|
|
|
|
2007-06-05 03:09:55 +00:00
|
|
|
[self playEntry:[playlistController currentEntry]];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)prev:(id)sender
|
|
|
|
{
|
2008-02-14 23:09:51 +00:00
|
|
|
if ([playlistController prev] == NO)
|
2006-01-20 15:41:31 +00:00
|
|
|
return;
|
|
|
|
|
2007-06-05 03:09:55 +00:00
|
|
|
[self playEntry:[playlistController currentEntry]];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
- (void)updatePosition:(id)sender
|
|
|
|
{
|
|
|
|
double pos = [audioPlayer amountPlayed];
|
|
|
|
|
|
|
|
[self setPosition:pos];
|
2013-10-04 11:16:09 +00:00
|
|
|
|
|
|
|
[[playlistController currentEntry] setCurrentPosition:pos];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2009-02-22 22:28:09 +00:00
|
|
|
}
|
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
- (IBAction)seek:(id)sender
|
|
|
|
{
|
2009-02-22 22:28:09 +00:00
|
|
|
double time = [sender doubleValue];
|
2006-04-18 17:00:29 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
[audioPlayer seekToTime:time];
|
2013-10-13 02:16:47 +00:00
|
|
|
|
|
|
|
[self setPosition:time];
|
2013-10-04 11:16:09 +00:00
|
|
|
|
|
|
|
[[playlistController currentEntry] setCurrentPosition:time];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)seek:(id)sender toTime:(NSTimeInterval)position
|
|
|
|
{
|
|
|
|
double time = (double)(position);
|
|
|
|
|
|
|
|
[audioPlayer seekToTime:time];
|
|
|
|
|
|
|
|
[self setPosition:time];
|
|
|
|
|
|
|
|
[[playlistController currentEntry] setCurrentPosition:time];
|
2013-10-04 11:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)spam
|
|
|
|
{
|
|
|
|
NSPasteboard *pboard = [NSPasteboard generalPasteboard];
|
|
|
|
|
|
|
|
[pboard clearContents];
|
|
|
|
|
|
|
|
[pboard writeObjects:[NSArray arrayWithObjects:[[playlistController currentEntry] spam], nil]];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 18:03:06 +00:00
|
|
|
- (IBAction)eventSeekForward:(id)sender
|
2008-02-07 23:57:21 +00:00
|
|
|
{
|
2008-02-13 18:03:06 +00:00
|
|
|
[self seekForward:DEFAULT_SEEK];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)seekForward:(double)amount
|
|
|
|
{
|
|
|
|
double seekTo = [audioPlayer amountPlayed] + amount;
|
2008-02-10 18:34:23 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
if (seekTo > [[[playlistController currentEntry] length] doubleValue])
|
2008-02-07 23:57:21 +00:00
|
|
|
{
|
|
|
|
[self next:self];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-10 18:34:23 +00:00
|
|
|
[audioPlayer seekToTime:seekTo];
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setPosition:seekTo];
|
2008-02-07 23:57:21 +00:00
|
|
|
}
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2008-02-07 23:57:21 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 18:03:06 +00:00
|
|
|
- (IBAction)eventSeekBackward:(id)sender
|
|
|
|
{
|
|
|
|
[self seekBackward:DEFAULT_SEEK];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)seekBackward:(double)amount
|
2008-02-07 23:57:21 +00:00
|
|
|
{
|
2008-02-13 18:03:06 +00:00
|
|
|
double seekTo = [audioPlayer amountPlayed] - amount;
|
2008-02-10 18:34:23 +00:00
|
|
|
|
|
|
|
if (seekTo < 0)
|
2008-02-17 18:44:11 +00:00
|
|
|
seekTo = 0;
|
|
|
|
|
|
|
|
[audioPlayer seekToTime:seekTo];
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setPosition:seekTo];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
|
|
|
[self sendMetaData];
|
2008-02-07 23:57:21 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 21:13:06 +00:00
|
|
|
/*
|
|
|
|
- (void)changePlayButtonImage:(NSString *)name
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2007-11-01 01:53:52 +00:00
|
|
|
NSImage *img = [NSImage imageNamed:name];
|
|
|
|
// [img retain];
|
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
if (img == nil)
|
|
|
|
{
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"Error loading image!");
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2007-11-01 01:53:52 +00:00
|
|
|
[playbackButtons setImage:img forSegment:1];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
2009-02-28 21:13:06 +00:00
|
|
|
*/
|
2006-01-20 15:41:31 +00:00
|
|
|
- (IBAction)changeVolume:(id)sender
|
|
|
|
{
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"VOLUME: %lf, %lf", [sender doubleValue], linearToLogarithmic([sender doubleValue]));
|
2008-02-13 01:50:39 +00:00
|
|
|
|
|
|
|
[audioPlayer setVolume:linearToLogarithmic([sender doubleValue])];
|
2009-02-28 18:19:15 +00:00
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] setDouble:[audioPlayer volume] forKey:@"volume"];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2008-02-12 22:12:27 +00:00
|
|
|
/* selector for NSTimer - gets passed the Timer object itself
|
|
|
|
and the appropriate userInfo, which in this case is an NSNumber
|
|
|
|
containing the current volume before we start fading. */
|
2008-02-16 16:30:18 +00:00
|
|
|
- (void)audioFadeDown:(NSTimer *)audioTimer
|
2008-02-12 22:12:27 +00:00
|
|
|
{
|
2008-02-13 01:50:39 +00:00
|
|
|
double volume = [audioPlayer volume];
|
|
|
|
double originalVolume = [[audioTimer userInfo] doubleValue];
|
2008-02-17 18:44:11 +00:00
|
|
|
double down = originalVolume/10;
|
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"VOLUME IS %lf", volume);
|
2008-02-13 18:03:06 +00:00
|
|
|
|
2008-02-13 01:50:39 +00:00
|
|
|
if (volume > 0.0001) //YAY! Roundoff error!
|
2008-02-12 22:12:27 +00:00
|
|
|
{
|
2008-02-17 18:44:11 +00:00
|
|
|
[audioPlayer volumeDown:down];
|
2008-02-12 22:12:27 +00:00
|
|
|
}
|
|
|
|
else // volume is at 0 or below, we are ready to release the timer and move on
|
|
|
|
{
|
|
|
|
[audioPlayer pause];
|
2008-02-13 01:50:39 +00:00
|
|
|
[audioPlayer setVolume:originalVolume];
|
|
|
|
[volumeSlider setDoubleValue: logarithmicToLinear(originalVolume)];
|
2008-02-12 22:12:27 +00:00
|
|
|
[audioTimer invalidate];
|
2009-02-28 21:19:26 +00:00
|
|
|
|
|
|
|
fading = NO;
|
2008-02-12 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-16 16:30:18 +00:00
|
|
|
- (void)audioFadeUp:(NSTimer *)audioTimer
|
|
|
|
{
|
|
|
|
double volume = [audioPlayer volume];
|
|
|
|
double originalVolume = [[audioTimer userInfo] doubleValue];
|
2008-02-17 18:44:11 +00:00
|
|
|
double up = originalVolume/10;
|
|
|
|
|
2013-10-11 12:03:55 +00:00
|
|
|
DLog(@"VOLUME IS %lf", volume);
|
2008-02-16 16:30:18 +00:00
|
|
|
|
2021-11-18 05:12:25 +00:00
|
|
|
if (originalVolume - volume > 0.0001)
|
2008-02-16 16:30:18 +00:00
|
|
|
{
|
2008-02-17 18:44:11 +00:00
|
|
|
if ((volume + up) > originalVolume)
|
|
|
|
[audioPlayer volumeUp:(originalVolume - volume)];
|
2008-02-16 16:30:18 +00:00
|
|
|
else
|
2008-02-17 18:44:11 +00:00
|
|
|
[audioPlayer volumeUp:up];
|
2008-02-16 16:30:18 +00:00
|
|
|
}
|
2021-11-18 05:12:25 +00:00
|
|
|
else // volume is at or near original level, we are ready to release the timer and move on
|
2008-02-16 16:30:18 +00:00
|
|
|
{
|
2021-11-18 05:12:25 +00:00
|
|
|
[audioPlayer setVolume:originalVolume];
|
2008-02-16 16:30:18 +00:00
|
|
|
[volumeSlider setDoubleValue: logarithmicToLinear(originalVolume)];
|
|
|
|
[audioTimer invalidate];
|
2009-02-28 21:19:26 +00:00
|
|
|
|
|
|
|
fading = NO;
|
2008-02-16 16:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-02-23 22:20:14 +00:00
|
|
|
- (IBAction)fade:(id)sender
|
2008-02-12 22:12:27 +00:00
|
|
|
{
|
2008-02-23 22:20:14 +00:00
|
|
|
double time = 0.1;
|
|
|
|
|
2008-02-13 18:03:06 +00:00
|
|
|
// we can not allow multiple fade timers to be registered
|
2009-02-28 21:19:26 +00:00
|
|
|
if (YES == fading)
|
2008-02-13 18:03:06 +00:00
|
|
|
return;
|
2009-02-28 21:19:26 +00:00
|
|
|
fading = YES;
|
2008-02-16 16:30:18 +00:00
|
|
|
|
2008-02-13 18:03:06 +00:00
|
|
|
NSNumber *originalVolume = [NSNumber numberWithDouble: [audioPlayer volume]];
|
|
|
|
NSTimer *fadeTimer;
|
|
|
|
|
2021-02-06 21:20:03 +00:00
|
|
|
if (playbackStatus == CogStatusPlaying) {
|
2009-02-09 06:16:16 +00:00
|
|
|
fadeTimer = [NSTimer timerWithTimeInterval:time
|
2008-02-12 22:12:27 +00:00
|
|
|
target:self
|
2008-02-16 16:30:18 +00:00
|
|
|
selector:@selector(audioFadeDown:)
|
2008-02-13 01:50:39 +00:00
|
|
|
userInfo:originalVolume
|
2008-02-12 22:12:27 +00:00
|
|
|
repeats:YES];
|
2009-02-09 06:16:16 +00:00
|
|
|
[[NSRunLoop currentRunLoop] addTimer:fadeTimer forMode:NSRunLoopCommonModes];
|
|
|
|
}
|
2008-02-16 16:30:18 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
[audioPlayer setVolume:0];
|
2009-02-09 06:16:16 +00:00
|
|
|
fadeTimer = [NSTimer timerWithTimeInterval:time
|
2008-02-16 16:30:18 +00:00
|
|
|
target:self
|
|
|
|
selector:@selector(audioFadeUp:)
|
|
|
|
userInfo:originalVolume
|
|
|
|
repeats:YES];
|
2009-02-09 06:16:16 +00:00
|
|
|
[[NSRunLoop currentRunLoop] addTimer:fadeTimer forMode:NSRunLoopCommonModes];
|
2008-02-16 16:30:18 +00:00
|
|
|
[self pauseResume:self];
|
|
|
|
}
|
2008-02-12 22:12:27 +00:00
|
|
|
}
|
|
|
|
|
2008-02-14 19:25:01 +00:00
|
|
|
- (IBAction)skipToNextAlbum:(id)sender
|
|
|
|
{
|
|
|
|
BOOL found = NO;
|
|
|
|
|
2021-04-30 01:16:24 +00:00
|
|
|
NSInteger index = [[playlistController currentEntry] index];
|
2008-02-20 00:12:25 +00:00
|
|
|
NSString *origAlbum = [[playlistController currentEntry] album];
|
2008-02-14 19:25:01 +00:00
|
|
|
|
2021-04-30 01:16:24 +00:00
|
|
|
NSInteger i;
|
2008-02-14 19:25:01 +00:00
|
|
|
NSString *curAlbum;
|
|
|
|
|
|
|
|
PlaylistEntry *pe;
|
|
|
|
|
2008-02-20 13:20:07 +00:00
|
|
|
for (i = 1; i < [[playlistController arrangedObjects] count]; i++)
|
2008-02-14 19:25:01 +00:00
|
|
|
{
|
2008-02-23 22:20:14 +00:00
|
|
|
pe = [playlistController entryAtIndex:index + i];
|
|
|
|
if (pe == nil)
|
2008-02-20 13:20:07 +00:00
|
|
|
break;
|
|
|
|
|
2008-02-14 19:25:01 +00:00
|
|
|
curAlbum = [pe album];
|
|
|
|
|
|
|
|
// check for untagged files, and just play the first untagged one
|
|
|
|
// we come across
|
|
|
|
if (curAlbum == nil)
|
|
|
|
{
|
2008-02-20 13:20:07 +00:00
|
|
|
found = YES;
|
|
|
|
break;
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
2008-02-20 13:20:07 +00:00
|
|
|
|
2008-02-20 13:25:24 +00:00
|
|
|
if ([curAlbum caseInsensitiveCompare:origAlbum] != NSOrderedSame)
|
2008-02-14 19:25:01 +00:00
|
|
|
{
|
|
|
|
found = YES;
|
2008-02-20 13:20:07 +00:00
|
|
|
break;
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-20 13:20:07 +00:00
|
|
|
if (found)
|
|
|
|
{
|
2008-02-23 22:20:14 +00:00
|
|
|
[self playEntryAtIndex:i + index];
|
2008-02-20 13:20:07 +00:00
|
|
|
}
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)skipToPreviousAlbum:(id)sender
|
|
|
|
{
|
2008-02-20 13:20:07 +00:00
|
|
|
BOOL found = NO;
|
2008-02-14 19:25:01 +00:00
|
|
|
BOOL foundAlbum = NO;
|
|
|
|
|
2021-04-30 01:16:24 +00:00
|
|
|
NSInteger index = [[playlistController currentEntry] index];
|
2008-02-20 00:12:25 +00:00
|
|
|
NSString *origAlbum = [[playlistController currentEntry] album];
|
2008-02-14 19:25:01 +00:00
|
|
|
NSString *curAlbum;
|
|
|
|
|
2021-04-30 01:16:24 +00:00
|
|
|
NSInteger i;
|
2008-02-14 19:25:01 +00:00
|
|
|
|
|
|
|
PlaylistEntry *pe;
|
2008-02-20 13:20:07 +00:00
|
|
|
|
|
|
|
for (i = 1; i < [[playlistController arrangedObjects] count]; i++)
|
2008-02-14 19:25:01 +00:00
|
|
|
{
|
2008-02-23 22:20:14 +00:00
|
|
|
pe = [playlistController entryAtIndex:index - i];
|
|
|
|
if (pe == nil)
|
2008-02-20 13:20:07 +00:00
|
|
|
break;
|
2008-02-23 22:20:14 +00:00
|
|
|
|
2008-02-14 19:25:01 +00:00
|
|
|
curAlbum = [pe album];
|
|
|
|
if (curAlbum == nil)
|
|
|
|
{
|
2008-02-20 13:20:07 +00:00
|
|
|
found = YES;
|
|
|
|
break;
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
2008-02-20 13:20:07 +00:00
|
|
|
|
2008-02-20 13:25:24 +00:00
|
|
|
if ([curAlbum caseInsensitiveCompare:origAlbum] != NSOrderedSame)
|
2008-02-14 19:25:01 +00:00
|
|
|
{
|
|
|
|
if (foundAlbum == NO)
|
|
|
|
{
|
|
|
|
foundAlbum = YES;
|
2008-02-15 15:27:34 +00:00
|
|
|
// now we need to move up to the first song in the album, so we'll
|
|
|
|
// go till we either find index 0, or the first song in the album
|
2008-02-20 13:20:07 +00:00
|
|
|
origAlbum = curAlbum;
|
|
|
|
continue;
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
|
|
|
else
|
2008-02-20 13:20:07 +00:00
|
|
|
{
|
2008-02-14 19:25:01 +00:00
|
|
|
found = YES; // terminate loop
|
2008-02-20 13:20:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-20 13:20:07 +00:00
|
|
|
if (found || foundAlbum)
|
|
|
|
{
|
|
|
|
if (foundAlbum == YES)
|
|
|
|
i--;
|
2008-02-23 22:20:14 +00:00
|
|
|
[self playEntryAtIndex:index - i];
|
2008-02-20 13:20:07 +00:00
|
|
|
}
|
2008-02-14 19:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-17 18:44:11 +00:00
|
|
|
- (IBAction)volumeDown:(id)sender
|
2007-02-18 23:41:44 +00:00
|
|
|
{
|
2009-02-28 18:19:15 +00:00
|
|
|
double newVolume = [audioPlayer volumeDown:DEFAULT_VOLUME_DOWN];
|
2008-02-13 01:50:39 +00:00
|
|
|
[volumeSlider setDoubleValue:logarithmicToLinear(newVolume)];
|
2009-02-28 18:19:15 +00:00
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] setDouble:[audioPlayer volume] forKey:@"volume"];
|
2007-02-18 23:41:44 +00:00
|
|
|
|
2008-02-13 18:03:06 +00:00
|
|
|
}
|
2008-02-12 22:12:27 +00:00
|
|
|
|
2008-02-17 18:44:11 +00:00
|
|
|
- (IBAction)volumeUp:(id)sender
|
|
|
|
{
|
|
|
|
double newVolume;
|
|
|
|
newVolume = [audioPlayer volumeUp:DEFAULT_VOLUME_UP];
|
2008-02-13 01:50:39 +00:00
|
|
|
[volumeSlider setDoubleValue:logarithmicToLinear(newVolume)];
|
2008-02-17 18:44:11 +00:00
|
|
|
|
2009-02-28 18:19:15 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setDouble:[audioPlayer volume] forKey:@"volume"];
|
2007-02-18 23:41:44 +00:00
|
|
|
}
|
|
|
|
|
2009-03-05 17:03:30 +00:00
|
|
|
- (void)audioPlayer:(AudioPlayer *)player willEndStream:(id)userInfo
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2007-02-24 20:36:27 +00:00
|
|
|
PlaylistEntry *curEntry = (PlaylistEntry *)userInfo;
|
2008-02-25 17:02:06 +00:00
|
|
|
PlaylistEntry *pe;
|
|
|
|
|
2008-03-01 03:29:21 +00:00
|
|
|
if (curEntry.stopAfter)
|
2008-02-26 11:59:47 +00:00
|
|
|
pe = nil;
|
2008-02-25 17:02:06 +00:00
|
|
|
else
|
2013-10-07 23:15:15 +00:00
|
|
|
{
|
2008-02-25 17:02:06 +00:00
|
|
|
pe = [playlistController getNextEntry:curEntry];
|
2015-02-11 05:42:36 +00:00
|
|
|
if (pe && [pe metadataLoaded] != YES) {
|
2016-05-08 05:41:28 +00:00
|
|
|
NSArray * entries = [NSArray arrayWithObject:pe];
|
2016-09-04 19:49:43 +00:00
|
|
|
[playlistLoader performSelectorInBackground:@selector(loadInfoForEntries:) withObject:entries];
|
2013-10-07 23:15:15 +00:00
|
|
|
}
|
|
|
|
}
|
2006-05-12 18:12:31 +00:00
|
|
|
|
2015-02-11 05:42:36 +00:00
|
|
|
if (pe)
|
|
|
|
[player setNextStream:[pe URL] withUserInfo:pe withRGInfo:makeRGInfo(pe)];
|
|
|
|
else
|
|
|
|
[player setNextStream:nil];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2009-03-05 17:03:30 +00:00
|
|
|
- (void)audioPlayer:(AudioPlayer *)player didBeginStream:(id)userInfo
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2007-02-24 20:36:27 +00:00
|
|
|
PlaylistEntry *pe = (PlaylistEntry *)userInfo;
|
|
|
|
|
2006-04-13 02:51:22 +00:00
|
|
|
[playlistController setCurrentEntry:pe];
|
2006-01-20 15:41:31 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setPosition:0];
|
2009-03-05 17:03:30 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:CogPlaybackDidBeginNotficiation object:pe];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2009-03-05 17:03:30 +00:00
|
|
|
- (void)audioPlayer:(AudioPlayer *)player didChangeStatus:(NSNumber *)s userInfo:(id)userInfo
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2006-01-29 14:57:48 +00:00
|
|
|
int status = [s intValue];
|
2021-02-06 21:20:03 +00:00
|
|
|
if (status == CogStatusStopped || status == CogStatusPaused)
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2006-04-02 15:44:08 +00:00
|
|
|
if (positionTimer)
|
|
|
|
{
|
|
|
|
[positionTimer invalidate];
|
|
|
|
positionTimer = NULL;
|
|
|
|
}
|
2009-02-22 22:28:09 +00:00
|
|
|
|
2021-02-06 21:20:03 +00:00
|
|
|
if (status == CogStatusStopped)
|
2006-04-02 15:44:08 +00:00
|
|
|
{
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setPosition:0];
|
|
|
|
[self setSeekable:NO]; // the player stopped, disable the slider
|
2009-03-05 17:03:30 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:CogPlaybackDidStopNotficiation object:nil];
|
|
|
|
}
|
|
|
|
else // paused
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:CogPlaybackDidPauseNotficiation object:nil];
|
2006-04-02 15:44:08 +00:00
|
|
|
}
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
2021-02-06 21:20:03 +00:00
|
|
|
else if (status == CogStatusPlaying)
|
2006-01-20 15:41:31 +00:00
|
|
|
{
|
2009-02-09 06:16:16 +00:00
|
|
|
if (!positionTimer) {
|
2021-04-20 06:51:31 +00:00
|
|
|
positionTimer = [NSTimer timerWithTimeInterval:0.2 target:self selector:@selector(updatePosition:) userInfo:nil repeats:YES];
|
2009-02-09 06:16:16 +00:00
|
|
|
[[NSRunLoop currentRunLoop] addTimer:positionTimer forMode:NSRunLoopCommonModes];
|
|
|
|
}
|
2009-03-05 17:03:30 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:CogPlaybackDidResumeNotficiation object:nil];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2021-02-06 21:20:03 +00:00
|
|
|
if (status == CogStatusStopped) {
|
2008-02-22 03:09:03 +00:00
|
|
|
[playlistController setCurrentEntry:nil];
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setSeekable:NO]; // the player stopped, disable the slider
|
2007-06-03 17:09:07 +00:00
|
|
|
}
|
2008-02-22 03:46:04 +00:00
|
|
|
else {
|
2009-02-22 22:28:09 +00:00
|
|
|
[self setSeekable:YES];
|
2008-02-22 03:46:04 +00:00
|
|
|
}
|
2021-02-06 21:39:19 +00:00
|
|
|
switch (status) {
|
|
|
|
case CogStatusPlaying:
|
|
|
|
DLog(@"PLAYING!");
|
|
|
|
break;
|
|
|
|
case CogStatusPaused:
|
|
|
|
DLog(@"PAUSED!");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DLog(@"STOPED!");
|
|
|
|
break;
|
|
|
|
}
|
2021-01-06 08:39:12 +00:00
|
|
|
|
2021-02-06 21:20:03 +00:00
|
|
|
if (status == CogStatusStopped) {
|
|
|
|
status = CogStatusStopping;
|
2021-01-06 08:39:12 +00:00
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
|
2021-02-06 21:20:03 +00:00
|
|
|
if ([self playbackStatus] == CogStatusStopping)
|
|
|
|
[self setPlaybackStatus:CogStatusStopped];
|
2021-01-06 08:39:12 +00:00
|
|
|
});
|
|
|
|
}
|
2008-02-22 03:09:03 +00:00
|
|
|
|
2009-02-28 21:13:06 +00:00
|
|
|
[self setPlaybackStatus:status];
|
2021-07-31 15:08:02 +00:00
|
|
|
// If we don't send it here, if we've stopped, then the NPIC will be stuck at the last file we played.
|
2021-08-08 20:57:42 +00:00
|
|
|
[self sendMetaData];
|
2006-01-20 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2009-02-28 18:57:21 +00:00
|
|
|
- (void)playlistDidChange:(PlaylistController *)p
|
|
|
|
{
|
|
|
|
[audioPlayer resetNextStreams];
|
|
|
|
}
|
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
- (void)setPosition:(double)p
|
|
|
|
{
|
|
|
|
position = p;
|
2013-10-04 11:16:09 +00:00
|
|
|
|
|
|
|
[[playlistController currentEntry] setCurrentPosition:p];
|
2009-02-22 22:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (double)position
|
|
|
|
{
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setSeekable:(BOOL)s
|
|
|
|
{
|
|
|
|
seekable = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)seekable
|
|
|
|
{
|
|
|
|
return seekable && [[playlistController currentEntry] seekable];
|
|
|
|
}
|
2008-02-10 18:34:23 +00:00
|
|
|
|
2019-11-14 03:13:59 +00:00
|
|
|
- (void)sendMetaData {
|
2021-02-06 21:24:45 +00:00
|
|
|
MPNowPlayingInfoCenter * defaultCenter = [MPNowPlayingInfoCenter defaultCenter];
|
2019-11-14 03:13:59 +00:00
|
|
|
|
2021-02-06 21:24:45 +00:00
|
|
|
PlaylistEntry * entry = [playlistController currentEntry];
|
|
|
|
NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];
|
|
|
|
|
|
|
|
if (entry) {
|
|
|
|
if ([entry title])
|
|
|
|
[songInfo setObject:[entry title] forKey:MPMediaItemPropertyTitle];
|
|
|
|
if ([entry artist])
|
|
|
|
[songInfo setObject:[entry artist] forKey:MPMediaItemPropertyArtist];
|
|
|
|
if ([entry album])
|
|
|
|
[songInfo setObject:[entry album] forKey:MPMediaItemPropertyAlbumTitle];
|
2021-06-21 22:45:46 +00:00
|
|
|
if ([entry albumArt]) {
|
|
|
|
// can't do && with @available
|
|
|
|
if (@available(macOS 10.13.2, *)) {
|
|
|
|
CGSize artworkSize = CGSizeMake(500, 500);
|
|
|
|
MPMediaItemArtwork *mpArtwork = [[MPMediaItemArtwork alloc] initWithBoundsSize:artworkSize requestHandler:^NSImage * _Nonnull(CGSize size) {
|
|
|
|
return [entry albumArt];
|
|
|
|
}];
|
|
|
|
[songInfo setObject:mpArtwork forKey:MPMediaItemPropertyArtwork];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// I don't know what NPIC does with these since they aren't exposed in UI, but if we have them, use it.
|
|
|
|
// There's a bunch of other metadata, but PlaylistEntry can't represent a lot of it.
|
|
|
|
if ([entry genre])
|
|
|
|
[songInfo setObject:[entry genre] forKey:MPMediaItemPropertyGenre];
|
|
|
|
if ([entry year]) {
|
|
|
|
// If PlaylistEntry can represent a full date like some tag formats can do, change it
|
|
|
|
NSCalendar *calendar = [NSCalendar currentCalendar];
|
|
|
|
NSDate *releaseYear = [calendar dateWithEra:1 year:[[entry year] intValue] month:0 day:0 hour:0 minute:0 second:0 nanosecond:0];
|
|
|
|
[songInfo setObject:releaseYear forKey:MPMediaItemPropertyReleaseDate];
|
|
|
|
}
|
2021-02-06 21:24:45 +00:00
|
|
|
[songInfo setObject:[NSNumber numberWithFloat:[entry currentPosition]] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];
|
|
|
|
[songInfo setObject:[entry length] forKey:MPMediaItemPropertyPlaybackDuration];
|
|
|
|
[songInfo setObject:[NSNumber numberWithFloat:[entry index]] forKey:MPMediaItemPropertyPersistentID];
|
|
|
|
}
|
2019-11-14 03:13:59 +00:00
|
|
|
|
2021-02-06 21:24:45 +00:00
|
|
|
switch (playbackStatus) {
|
|
|
|
case CogStatusPlaying:
|
|
|
|
defaultCenter.playbackState = MPNowPlayingPlaybackStatePlaying;
|
|
|
|
break;
|
|
|
|
case CogStatusPaused:
|
|
|
|
defaultCenter.playbackState = MPNowPlayingPlaybackStatePaused;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
defaultCenter.playbackState = MPNowPlayingPlaybackStateStopped;
|
|
|
|
break;
|
2019-11-14 03:13:59 +00:00
|
|
|
}
|
2021-02-06 21:24:45 +00:00
|
|
|
|
|
|
|
[defaultCenter setNowPlayingInfo:songInfo];
|
2019-11-14 03:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-10 18:34:23 +00:00
|
|
|
|
2006-01-20 15:41:31 +00:00
|
|
|
@end
|