2005-06-02 18:16:43 +00:00
|
|
|
//
|
2008-02-10 16:16:45 +00:00
|
|
|
// PlaylistController.m
|
|
|
|
// Cog
|
2005-06-02 18:16:43 +00:00
|
|
|
//
|
2008-02-10 16:16:45 +00:00
|
|
|
// Created by Vincent Spader on 3/18/05.
|
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
#import "PlaylistLoader.h"
|
2005-06-02 18:16:43 +00:00
|
|
|
#import "PlaylistController.h"
|
|
|
|
#import "PlaylistEntry.h"
|
2006-01-20 15:22:03 +00:00
|
|
|
#import "Shuffle.h"
|
2008-02-16 16:13:21 +00:00
|
|
|
#import "SpotlightWindowController.h"
|
2008-02-19 03:39:43 +00:00
|
|
|
#import "RepeatTransformers.h"
|
2007-02-24 20:36:27 +00:00
|
|
|
#import "CogAudio/AudioPlayer.h"
|
2006-05-07 13:19:23 +00:00
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@implementation PlaylistController
|
|
|
|
|
2006-01-20 15:22:03 +00:00
|
|
|
#define SHUFFLE_HISTORY_SIZE 100
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2008-02-19 03:39:43 +00:00
|
|
|
+ (void)initialize {
|
|
|
|
NSValueTransformer *repeatNoneTransformer = [[[RepeatModeTransformer alloc] initWithMode:RepeatNone] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:repeatNoneTransformer
|
|
|
|
forName:@"RepeatNoneTransformer"];
|
|
|
|
|
|
|
|
NSValueTransformer *repeatOneTransformer = [[[RepeatModeTransformer alloc] initWithMode:RepeatOne] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:repeatOneTransformer
|
|
|
|
forName:@"RepeatOneTransformer"];
|
|
|
|
|
2008-02-19 04:02:05 +00:00
|
|
|
NSValueTransformer *repeatAlbumTransformer = [[[RepeatModeTransformer alloc] initWithMode:RepeatAlbum] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:repeatAlbumTransformer
|
|
|
|
forName:@"RepeatAlbumTransformer"];
|
|
|
|
|
2008-02-19 03:39:43 +00:00
|
|
|
NSValueTransformer *repeatAllTransformer = [[[RepeatModeTransformer alloc] initWithMode:RepeatAll] autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:repeatAllTransformer
|
|
|
|
forName:@"RepeatAllTransformer"];
|
|
|
|
|
|
|
|
NSValueTransformer *repeatModeImageTransformer = [[[RepeatModeImageTransformer alloc] init]autorelease];
|
|
|
|
[NSValueTransformer setValueTransformer:repeatModeImageTransformer
|
|
|
|
forName:@"RepeatModeImageTransformer"];
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (id)initWithCoder:(NSCoder *)decoder
|
|
|
|
{
|
|
|
|
self = [super initWithCoder:decoder];
|
|
|
|
|
|
|
|
if (self)
|
|
|
|
{
|
|
|
|
shuffleList = [[NSMutableArray alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2008-02-10 22:46:12 +00:00
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[shuffleList release];
|
|
|
|
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2006-04-29 00:03:28 +00:00
|
|
|
- (void)tableView:(NSTableView *)tableView
|
|
|
|
didClickTableColumn:(NSTableColumn *)tableColumn
|
|
|
|
{
|
2006-04-30 13:01:33 +00:00
|
|
|
if (shuffle == YES)
|
|
|
|
[self resetShuffleList];
|
|
|
|
|
2006-04-29 00:03:28 +00:00
|
|
|
[self updateIndexesFromRow:0];
|
|
|
|
}
|
|
|
|
|
2008-02-10 19:35:58 +00:00
|
|
|
-(void)moveObjectsFromArrangedObjectIndexes:(NSArray *) sources toIndexes:(NSArray *)destinations
|
|
|
|
{
|
|
|
|
[super moveObjectsFromArrangedObjectIndexes:sources toIndexes:destinations];
|
|
|
|
|
|
|
|
NSUInteger firstIndex = (NSUInteger)-1;
|
|
|
|
NSUInteger i = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < [sources count]; i++) {
|
|
|
|
NSUInteger source = [[sources objectAtIndex:i] unsignedIntegerValue];
|
|
|
|
NSUInteger dest = [[destinations objectAtIndex:i] unsignedIntegerValue];
|
|
|
|
|
|
|
|
if (source < firstIndex)
|
|
|
|
firstIndex = source;
|
|
|
|
|
|
|
|
if (dest < firstIndex)
|
|
|
|
firstIndex = dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
[self updateIndexesFromRow:firstIndex];
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (BOOL)tableView:(NSTableView*)tv
|
|
|
|
acceptDrop:(id <NSDraggingInfo>)info
|
|
|
|
row:(int)row
|
|
|
|
dropOperation:(NSTableViewDropOperation)op
|
|
|
|
{
|
|
|
|
[super tableView:tv acceptDrop:info row:row dropOperation:op];
|
2008-02-10 16:16:45 +00:00
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
if ([info draggingSource] == tableView)
|
|
|
|
{
|
2008-02-10 19:35:58 +00:00
|
|
|
//DNDArrayController handles moving...
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row < 0)
|
|
|
|
row = 0;
|
2007-02-17 15:58:39 +00:00
|
|
|
|
|
|
|
// Determine the type of object that was dropped
|
2008-02-13 17:14:19 +00:00
|
|
|
NSArray *supportedtypes = [NSArray arrayWithObjects:CogUrlsPboardType, NSFilenamesPboardType, iTunesDropType, nil];
|
2007-02-17 15:58:39 +00:00
|
|
|
NSPasteboard *pboard = [info draggingPasteboard];
|
|
|
|
NSString *bestType = [pboard availableTypeFromArray:supportedtypes];
|
|
|
|
|
2007-10-16 01:22:57 +00:00
|
|
|
// Get files from an file drawer drop
|
2008-02-13 17:14:19 +00:00
|
|
|
if ([bestType isEqualToString:CogUrlsPboardType]) {
|
|
|
|
NSArray *urls = [NSUnarchiver unarchiveObjectWithData:[[info draggingPasteboard] dataForType:CogUrlsPboardType]];
|
2007-10-16 01:22:57 +00:00
|
|
|
NSLog(@"URLS: %@", urls);
|
|
|
|
[playlistLoader insertURLs: urls atIndex:row sort:YES];
|
|
|
|
}
|
|
|
|
|
2007-02-17 15:58:39 +00:00
|
|
|
// Get files from a normal file drop (such as from Finder)
|
|
|
|
if ([bestType isEqualToString:NSFilenamesPboardType]) {
|
2007-03-09 01:16:06 +00:00
|
|
|
NSMutableArray *urls = [[NSMutableArray alloc] init];
|
|
|
|
|
2008-02-20 00:54:45 +00:00
|
|
|
for (NSString *file in [[info draggingPasteboard] propertyListForType:NSFilenamesPboardType])
|
2007-03-09 01:16:06 +00:00
|
|
|
{
|
|
|
|
[urls addObject:[NSURL fileURLWithPath:file]];
|
|
|
|
}
|
2007-02-17 15:58:39 +00:00
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
[playlistLoader insertURLs:urls atIndex:row sort:YES];
|
|
|
|
|
|
|
|
[urls release];
|
2007-02-17 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get files from an iTunes drop
|
|
|
|
if ([bestType isEqualToString:iTunesDropType]) {
|
|
|
|
NSDictionary *iTunesDict = [pboard propertyListForType:iTunesDropType];
|
|
|
|
NSDictionary *tracks = [iTunesDict valueForKey:@"Tracks"];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
// Convert the iTunes URLs to URLs....MWAHAHAH!
|
|
|
|
NSMutableArray *urls = [[NSMutableArray alloc] init];
|
|
|
|
|
2008-02-20 00:54:45 +00:00
|
|
|
for (NSDictionary *trackInfo in [tracks allValues]) {
|
2007-03-09 01:16:06 +00:00
|
|
|
[urls addObject:[NSURL URLWithString:[trackInfo valueForKey:@"Location"]]];
|
2007-02-17 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
[playlistLoader insertURLs:urls atIndex:row sort:YES];
|
|
|
|
[urls release];
|
2007-02-17 15:58:39 +00:00
|
|
|
}
|
|
|
|
|
2005-06-29 22:41:49 +00:00
|
|
|
[self updateIndexesFromRow:row];
|
2006-04-13 18:40:23 +00:00
|
|
|
[self updateTotalTime];
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
if (shuffle == YES)
|
2006-01-20 15:22:03 +00:00
|
|
|
[self resetShuffleList];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2006-04-13 18:40:23 +00:00
|
|
|
- (void)updateTotalTime
|
|
|
|
{
|
2008-02-17 20:16:06 +00:00
|
|
|
double tt = 0;
|
|
|
|
ldiv_t hoursAndMinutes;
|
2006-04-13 18:40:23 +00:00
|
|
|
|
2008-02-20 00:54:45 +00:00
|
|
|
for (PlaylistEntry *pe in [self arrangedObjects]) {
|
2007-03-14 02:28:30 +00:00
|
|
|
tt += [[pe length] doubleValue];
|
2006-04-13 18:40:23 +00:00
|
|
|
}
|
|
|
|
|
2007-11-24 20:16:27 +00:00
|
|
|
int sec = (int)(tt);
|
2008-02-17 20:16:06 +00:00
|
|
|
hoursAndMinutes = ldiv(sec/60, 60);
|
|
|
|
|
2008-02-20 15:31:00 +00:00
|
|
|
[self setTotalTimeDisplay:[NSString stringWithFormat:@"%ld hours %ld minutes %d seconds", hoursAndMinutes.quot, hoursAndMinutes.rem, sec%60]];
|
2006-04-13 18:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setTotalTimeDisplay:(NSString *)ttd
|
|
|
|
{
|
|
|
|
[ttd retain];
|
|
|
|
[totalTimeDisplay release];
|
|
|
|
totalTimeDisplay = ttd;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *)totalTimeDisplay;
|
|
|
|
{
|
|
|
|
return totalTimeDisplay;
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (void)updateIndexesFromRow:(int) row
|
|
|
|
{
|
|
|
|
int j;
|
2006-04-29 00:03:28 +00:00
|
|
|
for (j = row; j < [[self arrangedObjects] count]; j++)
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
|
|
|
PlaylistEntry *p;
|
2006-04-29 00:03:28 +00:00
|
|
|
p = [[self arrangedObjects] objectAtIndex:j];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2007-03-14 02:28:30 +00:00
|
|
|
[p setIndex:[NSNumber numberWithInt:j]];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-10 19:35:58 +00:00
|
|
|
- (NSUndoManager *)undoManager
|
2008-02-10 16:16:45 +00:00
|
|
|
{
|
2008-02-10 22:46:12 +00:00
|
|
|
return [entriesController undoManager];
|
2008-02-10 16:16:45 +00:00
|
|
|
}
|
|
|
|
|
2008-02-10 19:35:58 +00:00
|
|
|
- (void)insertObjects:(NSArray *)objects atArrangedObjectIndexes:(NSIndexSet *)indexes
|
2008-02-10 16:16:45 +00:00
|
|
|
{
|
2008-02-10 19:35:58 +00:00
|
|
|
[super insertObjects:objects atArrangedObjectIndexes:indexes];
|
2008-02-10 16:16:45 +00:00
|
|
|
|
2008-02-10 19:35:58 +00:00
|
|
|
[self updateIndexesFromRow:[indexes firstIndex]];
|
|
|
|
[self updateTotalTime];
|
2008-02-10 16:16:45 +00:00
|
|
|
|
2008-02-10 19:35:58 +00:00
|
|
|
if (shuffle == YES)
|
|
|
|
[self resetShuffleList];
|
2008-02-10 16:16:45 +00:00
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (void)removeObjectsAtArrangedObjectIndexes:(NSIndexSet *)indexes
|
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
NSLog(@"Removing indexes: %@", indexes);
|
|
|
|
NSLog(@"Current index: %i", [[currentEntry index] intValue]);
|
2008-02-10 16:16:45 +00:00
|
|
|
|
2007-10-22 00:04:34 +00:00
|
|
|
if ([[currentEntry index] intValue] >= 0 && [indexes containsIndex:[[currentEntry index] intValue]])
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
[currentEntry setIndex:[NSNumber numberWithInt:-[[currentEntry index] intValue] - 1]];
|
|
|
|
NSLog(@"Current removed: %i", [[currentEntry index] intValue]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([[currentEntry index] intValue] < 0) //Need to update the negative index
|
|
|
|
{
|
|
|
|
int i = -[[currentEntry index] intValue] - 1;
|
|
|
|
NSLog(@"I is %i", i);
|
|
|
|
int j;
|
|
|
|
for (j = i - 1; j >= 0; j--)
|
|
|
|
{
|
|
|
|
if ([indexes containsIndex:j]) {
|
|
|
|
NSLog(@"Removing 1");
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[currentEntry setIndex: [NSNumber numberWithInt:-i - 1]];
|
|
|
|
|
|
|
|
NSLog(@"UPDATING INDEX: %@", [currentEntry index]);
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[super removeObjectsAtArrangedObjectIndexes:indexes];
|
2008-02-10 19:35:58 +00:00
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
[self updateIndexesFromRow:[indexes firstIndex]];
|
2006-04-13 18:40:23 +00:00
|
|
|
[self updateTotalTime];
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
if (shuffle == YES)
|
2006-01-20 15:22:03 +00:00
|
|
|
[self resetShuffleList];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2006-05-12 19:23:17 +00:00
|
|
|
- (void)setSortDescriptors:(NSArray *)sortDescriptors
|
|
|
|
{
|
2008-02-10 20:32:46 +00:00
|
|
|
NSLog(@"Current: %@, setting: %@", [self sortDescriptors], sortDescriptors);
|
|
|
|
|
2006-05-12 19:23:17 +00:00
|
|
|
//Cheap hack so the index column isn't sorted
|
2007-03-14 03:16:37 +00:00
|
|
|
if (([sortDescriptors count] != 0) && [[[sortDescriptors objectAtIndex:0] key] caseInsensitiveCompare:@"index"] == NSOrderedSame)
|
2006-05-12 19:23:17 +00:00
|
|
|
{
|
2007-02-18 22:27:55 +00:00
|
|
|
//Remove the sort descriptors
|
|
|
|
[super setSortDescriptors:nil];
|
|
|
|
[self rearrangeObjects];
|
|
|
|
|
2006-05-29 23:03:58 +00:00
|
|
|
return;
|
2006-05-12 19:23:17 +00:00
|
|
|
}
|
2006-05-29 23:03:58 +00:00
|
|
|
|
|
|
|
[super setSortDescriptors:sortDescriptors];
|
2008-02-10 20:32:46 +00:00
|
|
|
[self rearrangeObjects];
|
|
|
|
[self updateIndexesFromRow:0];
|
2006-05-12 19:23:17 +00:00
|
|
|
}
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
- (IBAction)sortByPath
|
2006-04-30 13:01:33 +00:00
|
|
|
{
|
2007-03-02 01:36:52 +00:00
|
|
|
NSSortDescriptor *s = [[NSSortDescriptor alloc] initWithKey:@"url" ascending:YES selector:@selector(compare:)];
|
2007-02-18 22:27:55 +00:00
|
|
|
|
|
|
|
[self setSortDescriptors:[NSArray arrayWithObject:s]];
|
|
|
|
|
2006-04-30 13:01:33 +00:00
|
|
|
[s release];
|
|
|
|
|
|
|
|
if (shuffle == YES)
|
|
|
|
[self resetShuffleList];
|
|
|
|
|
|
|
|
[self updateIndexesFromRow:0];
|
|
|
|
}
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
- (IBAction)randomizeList
|
2006-04-30 13:01:33 +00:00
|
|
|
{
|
|
|
|
[self setSortDescriptors:nil];
|
2006-05-12 19:32:01 +00:00
|
|
|
|
2006-04-30 13:01:33 +00:00
|
|
|
[self setContent:[Shuffle shuffleList:[self content]]];
|
|
|
|
if (shuffle == YES)
|
|
|
|
[self resetShuffleList];
|
|
|
|
|
|
|
|
[self updateIndexesFromRow:0];
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
- (IBAction)takeShuffleFromObject:(id)sender
|
|
|
|
{
|
|
|
|
if( [sender respondsToSelector: @selector(boolValue)] )
|
|
|
|
[self setShuffle: [sender boolValue]];
|
|
|
|
else
|
|
|
|
[self setShuffle: [sender state]];
|
|
|
|
}
|
2008-02-19 04:02:05 +00:00
|
|
|
|
2008-02-19 03:39:43 +00:00
|
|
|
- (IBAction)toggleRepeat:(id)sender
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2008-02-19 03:39:43 +00:00
|
|
|
if (repeat == RepeatNone) {
|
|
|
|
[self setRepeat: RepeatOne];
|
|
|
|
}
|
|
|
|
else if (repeat == RepeatOne) {
|
2008-02-19 04:02:05 +00:00
|
|
|
[self setRepeat: RepeatAlbum];
|
|
|
|
}
|
|
|
|
else if (repeat == RepeatAlbum) {
|
2008-02-19 03:39:43 +00:00
|
|
|
[self setRepeat: RepeatAll];
|
|
|
|
}
|
|
|
|
else if (repeat == RepeatAll) {
|
|
|
|
[self setRepeat: RepeatNone];
|
|
|
|
}
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2006-04-13 02:51:22 +00:00
|
|
|
- (PlaylistEntry *)entryAtIndex:(int)i
|
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
if (i < 0)
|
2006-04-13 02:51:22 +00:00
|
|
|
{
|
2008-02-20 00:12:25 +00:00
|
|
|
if (repeat != RepeatNone)
|
2006-04-15 13:51:40 +00:00
|
|
|
i += [[self arrangedObjects] count];
|
|
|
|
else
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
else if (i >= [[self arrangedObjects] count])
|
|
|
|
{
|
2008-02-20 00:12:25 +00:00
|
|
|
if (repeat != RepeatNone)
|
2006-04-15 13:51:40 +00:00
|
|
|
i -= [[self arrangedObjects] count];
|
|
|
|
else
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [[self arrangedObjects] objectAtIndex:i];
|
|
|
|
}
|
2007-03-09 01:16:06 +00:00
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
- (PlaylistEntry *)shuffledEntryAtIndex:(int)i
|
|
|
|
{
|
|
|
|
while (i < 0)
|
|
|
|
{
|
2008-02-19 23:49:51 +00:00
|
|
|
if (repeat == RepeatAll)
|
2006-04-14 17:28:20 +00:00
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
[self addShuffledListToFront];
|
|
|
|
//change i appropriately
|
|
|
|
i += [[self arrangedObjects] count];
|
2006-04-14 17:28:20 +00:00
|
|
|
}
|
2006-04-15 13:51:40 +00:00
|
|
|
else
|
2006-04-14 17:28:20 +00:00
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
return nil;
|
2006-04-14 17:28:20 +00:00
|
|
|
}
|
2006-04-13 02:51:22 +00:00
|
|
|
}
|
2006-04-15 13:51:40 +00:00
|
|
|
while (i >= [shuffleList count])
|
2006-04-13 02:51:22 +00:00
|
|
|
{
|
2008-02-19 23:49:51 +00:00
|
|
|
if (repeat == RepeatAll)
|
2006-04-14 17:28:20 +00:00
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
[self addShuffledListToBack];
|
2006-04-14 17:28:20 +00:00
|
|
|
}
|
2006-04-15 13:51:40 +00:00
|
|
|
else
|
2006-04-14 17:28:20 +00:00
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
return nil;
|
2006-04-14 17:28:20 +00:00
|
|
|
}
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return [shuffleList objectAtIndex:i];
|
2006-04-13 02:51:22 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
- (PlaylistEntry *)getNextEntry:(PlaylistEntry *)pe
|
|
|
|
{
|
2008-02-19 23:49:51 +00:00
|
|
|
if (repeat == RepeatOne) {
|
|
|
|
return pe;
|
|
|
|
}
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
if (shuffle == YES)
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
return [self shuffledEntryAtIndex:([[pe shuffleIndex] intValue] + 1)];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
int i;
|
|
|
|
if ([[pe index] intValue] < 0) //Was a current entry, now removed.
|
|
|
|
{
|
|
|
|
i = -[[pe index] intValue] - 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i = [[pe index] intValue] + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [self entryAtIndex:i];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (PlaylistEntry *)getPrevEntry:(PlaylistEntry *)pe
|
|
|
|
{
|
2008-02-19 23:49:51 +00:00
|
|
|
if (repeat == RepeatOne) {
|
|
|
|
return pe;
|
|
|
|
}
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
if (shuffle == YES)
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
return [self shuffledEntryAtIndex:([[pe shuffleIndex] intValue] - 1)];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
int i;
|
|
|
|
if ([[pe index] intValue] < 0) //Was a current entry, now removed.
|
2006-04-15 14:17:46 +00:00
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
i = -[[pe index] intValue] - 2;
|
2006-04-15 14:17:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-22 00:04:34 +00:00
|
|
|
i = [[pe index] intValue] - 1;
|
2006-04-15 14:17:46 +00:00
|
|
|
}
|
2007-10-22 00:04:34 +00:00
|
|
|
|
|
|
|
return [self entryAtIndex:i];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-29 14:57:48 +00:00
|
|
|
- (BOOL)next
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
|
|
|
PlaylistEntry *pe;
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
pe = [self getNextEntry:[self currentEntry]];
|
2008-02-19 19:59:35 +00:00
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
if (pe == nil)
|
2008-02-19 23:49:51 +00:00
|
|
|
return NO;
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2006-01-20 15:22:03 +00:00
|
|
|
[self setCurrentEntry:pe];
|
2006-01-29 14:57:48 +00:00
|
|
|
|
|
|
|
return YES;
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2006-01-29 14:57:48 +00:00
|
|
|
- (BOOL)prev
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
|
|
|
PlaylistEntry *pe;
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
pe = [self getPrevEntry:[self currentEntry]];
|
2005-06-02 18:16:43 +00:00
|
|
|
if (pe == nil)
|
2008-02-19 23:49:51 +00:00
|
|
|
return NO;
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2006-01-20 15:22:03 +00:00
|
|
|
[self setCurrentEntry:pe];
|
2006-01-29 14:57:48 +00:00
|
|
|
|
|
|
|
return YES;
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
2006-04-14 20:34:14 +00:00
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
- (void)addShuffledListToFront
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2006-01-20 15:22:03 +00:00
|
|
|
NSArray *newList = [Shuffle shuffleList:[self arrangedObjects]];
|
|
|
|
NSIndexSet *indexSet = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, [newList count])];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2006-04-05 17:25:51 +00:00
|
|
|
[shuffleList insertObjects:newList atIndexes:indexSet];
|
2006-04-15 13:51:40 +00:00
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < [shuffleList count]; i++)
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
[[shuffleList objectAtIndex:i] setShuffleIndex:[NSNumber numberWithInt:i]];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 13:51:40 +00:00
|
|
|
- (void)addShuffledListToBack
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2006-01-20 15:22:03 +00:00
|
|
|
NSArray *newList = [Shuffle shuffleList:[self arrangedObjects]];
|
2006-04-05 17:25:51 +00:00
|
|
|
NSIndexSet *indexSet = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange([shuffleList count], [newList count])];
|
2006-04-15 13:51:40 +00:00
|
|
|
|
2006-04-05 17:25:51 +00:00
|
|
|
[shuffleList insertObjects:newList atIndexes:indexSet];
|
2006-04-15 13:51:40 +00:00
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = ([shuffleList count] - [newList count]); i < [shuffleList count]; i++)
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
[[shuffleList objectAtIndex:i] setShuffleIndex:[NSNumber numberWithInt:i]];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2006-01-20 15:22:03 +00:00
|
|
|
- (void)resetShuffleList
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2006-01-20 15:22:03 +00:00
|
|
|
[shuffleList removeAllObjects];
|
2006-04-15 13:51:40 +00:00
|
|
|
|
2006-04-05 17:25:51 +00:00
|
|
|
[self addShuffledListToFront];
|
2006-04-15 13:51:40 +00:00
|
|
|
|
2008-02-20 00:12:25 +00:00
|
|
|
if (currentEntry && [[currentEntry index] intValue] >= 0)
|
2006-04-15 13:51:40 +00:00
|
|
|
{
|
2006-04-15 14:17:46 +00:00
|
|
|
[shuffleList insertObject:currentEntry atIndex:0];
|
|
|
|
[currentEntry setShuffleIndex:0];
|
|
|
|
|
|
|
|
//Need to rejigger so the current entry is at the start now...
|
|
|
|
int i;
|
|
|
|
BOOL found = NO;
|
2008-02-20 00:12:25 +00:00
|
|
|
for (i = 1; i < [shuffleList count] && !found; i++)
|
2006-04-15 13:51:40 +00:00
|
|
|
{
|
2008-02-20 00:12:25 +00:00
|
|
|
if ([shuffleList objectAtIndex:i] == currentEntry)
|
2006-04-15 14:17:46 +00:00
|
|
|
{
|
|
|
|
found = YES;
|
|
|
|
[shuffleList removeObjectAtIndex:i];
|
|
|
|
}
|
2008-02-20 00:12:25 +00:00
|
|
|
else {
|
|
|
|
[[shuffleList objectAtIndex:i] setShuffleIndex:[NSNumber numberWithInt:i]];
|
|
|
|
}
|
2006-04-15 14:17:46 +00:00
|
|
|
}
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (id)currentEntry
|
|
|
|
{
|
|
|
|
return currentEntry;
|
|
|
|
}
|
|
|
|
|
2007-02-18 21:41:47 +00:00
|
|
|
- (void)setCurrentEntry:(PlaylistEntry *)pe
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2007-03-18 17:44:59 +00:00
|
|
|
[currentEntry setCurrent:[NSNumber numberWithBool:NO]];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2007-03-18 17:44:59 +00:00
|
|
|
[pe setCurrent:[NSNumber numberWithBool:YES]];
|
2007-03-14 02:28:30 +00:00
|
|
|
[tableView scrollRowToVisible:[[pe index] intValue]];
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
[pe retain];
|
|
|
|
[currentEntry release];
|
|
|
|
|
|
|
|
currentEntry = pe;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setShuffle:(BOOL)s
|
|
|
|
{
|
|
|
|
shuffle = s;
|
|
|
|
if (shuffle == YES)
|
2006-01-20 15:22:03 +00:00
|
|
|
[self resetShuffleList];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
- (BOOL)shuffle
|
|
|
|
{
|
|
|
|
return shuffle;
|
|
|
|
}
|
2008-02-19 03:39:43 +00:00
|
|
|
- (void)setRepeat:(RepeatMode)r
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
2008-02-19 03:39:43 +00:00
|
|
|
NSLog(@"Repeat is now: %i", r);
|
2005-06-02 18:16:43 +00:00
|
|
|
repeat = r;
|
|
|
|
}
|
2008-02-19 03:39:43 +00:00
|
|
|
- (RepeatMode)repeat
|
2005-06-02 18:16:43 +00:00
|
|
|
{
|
|
|
|
return repeat;
|
|
|
|
}
|
|
|
|
|
2007-05-26 14:09:03 +00:00
|
|
|
- (IBAction)clear:(id)sender
|
|
|
|
{
|
2008-02-10 19:46:45 +00:00
|
|
|
[self setFilterPredicate:nil];
|
2007-06-05 00:33:30 +00:00
|
|
|
|
2008-02-10 19:46:45 +00:00
|
|
|
[self removeObjectsAtArrangedObjectIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, [[self arrangedObjects] count])]];
|
2007-05-26 14:09:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)clearFilterPredicate:(id)sender
|
|
|
|
{
|
|
|
|
[self setFilterPredicate:nil];
|
|
|
|
}
|
|
|
|
|
2006-04-30 15:31:57 +00:00
|
|
|
- (void)setFilterPredicate:(NSPredicate *)filterPredicate
|
|
|
|
{
|
|
|
|
[super setFilterPredicate:filterPredicate];
|
2006-04-30 16:05:39 +00:00
|
|
|
|
|
|
|
[self updateIndexesFromRow:0];
|
2006-04-30 15:31:57 +00:00
|
|
|
}
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
- (IBAction)showEntryInFinder:(id)sender
|
2006-05-23 15:12:24 +00:00
|
|
|
{
|
|
|
|
NSWorkspace* ws = [NSWorkspace sharedWorkspace];
|
2006-05-24 18:09:44 +00:00
|
|
|
if ([self selectionIndex] < 0)
|
2006-05-23 15:12:24 +00:00
|
|
|
return;
|
|
|
|
|
2008-02-20 00:44:40 +00:00
|
|
|
NSURL *url = [[[self selectedObjects] objectAtIndex:0] URL];
|
2007-03-09 01:16:06 +00:00
|
|
|
if ([url isFileURL])
|
|
|
|
[ws selectFile:[url path] inFileViewerRootedAtPath:[url path]];
|
2006-05-23 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
2008-02-16 16:13:21 +00:00
|
|
|
- (IBAction)searchByArtist:(id)sender;
|
|
|
|
{
|
|
|
|
PlaylistEntry *entry = [[self arrangedObjects] objectAtIndex:[self selectionIndex]];
|
|
|
|
[spotlightWindowController searchForArtist:[entry artist]];
|
|
|
|
}
|
|
|
|
- (IBAction)searchByAlbum:(id)sender;
|
|
|
|
{
|
|
|
|
PlaylistEntry *entry = [[self arrangedObjects] objectAtIndex:[self selectionIndex]];
|
|
|
|
[spotlightWindowController searchForAlbum:[entry album]];
|
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@end
|