2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
// PlaylistController.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/18/05.
|
2005-07-02 21:02:06 +00:00
|
|
|
// 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"
|
2005-06-02 18:16:43 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
- (id)initWithCoder:(NSCoder *)decoder
|
|
|
|
{
|
|
|
|
self = [super initWithCoder:decoder];
|
|
|
|
|
|
|
|
if (self)
|
|
|
|
{
|
|
|
|
shuffleList = [[NSMutableArray alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
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];
|
|
|
|
if ([info draggingSource] == tableView)
|
|
|
|
{
|
2007-03-09 01:16:06 +00:00
|
|
|
//DNDArrayController handles moving...still need to update the indexes
|
|
|
|
|
|
|
|
int i;
|
2005-06-02 18:16:43 +00:00
|
|
|
NSArray *rows = [NSKeyedUnarchiver unarchiveObjectWithData:[[info draggingPasteboard] dataForType: MovedRowsType]];
|
2007-03-09 01:16:06 +00:00
|
|
|
int firstIndex = [[self indexSetFromRows:rows] firstIndex];
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
if (firstIndex > row)
|
|
|
|
i = row;
|
|
|
|
else
|
|
|
|
i = firstIndex;
|
|
|
|
|
|
|
|
[self updateIndexesFromRow:i];
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row < 0)
|
|
|
|
row = 0;
|
2007-02-17 15:58:39 +00:00
|
|
|
|
|
|
|
// Determine the type of object that was dropped
|
|
|
|
NSArray *supportedtypes = [NSArray arrayWithObjects:NSFilenamesPboardType, iTunesDropType, nil];
|
|
|
|
NSPasteboard *pboard = [info draggingPasteboard];
|
|
|
|
NSString *bestType = [pboard availableTypeFromArray:supportedtypes];
|
|
|
|
|
|
|
|
// 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];
|
|
|
|
|
|
|
|
NSEnumerator *e = [[[info draggingPasteboard] propertyListForType:NSFilenamesPboardType] objectEnumerator];
|
|
|
|
NSString *file;
|
|
|
|
while (file = [e nextObject])
|
|
|
|
{
|
|
|
|
[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];
|
|
|
|
|
2007-02-17 15:58:39 +00:00
|
|
|
NSEnumerator *e = [[tracks allValues] objectEnumerator];
|
|
|
|
NSDictionary *trackInfo;
|
|
|
|
while (trackInfo = [e nextObject]) {
|
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
|
|
|
|
{
|
|
|
|
double tt=0;
|
|
|
|
|
2006-04-29 00:03:28 +00:00
|
|
|
NSEnumerator *enumerator = [[self arrangedObjects] objectEnumerator];
|
2006-04-13 18:40:23 +00:00
|
|
|
PlaylistEntry* pe;
|
|
|
|
|
|
|
|
while (pe = [enumerator nextObject]) {
|
2007-03-14 02:28:30 +00:00
|
|
|
tt += [[pe length] doubleValue];
|
2006-04-13 18:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int sec = (int)(tt/1000.0);
|
|
|
|
[self setTotalTimeDisplay:[NSString stringWithFormat:@"%i:%02i",sec/60, sec%60]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)removeObjectsAtArrangedObjectIndexes:(NSIndexSet *)indexes
|
|
|
|
{
|
2007-03-09 01:16:06 +00:00
|
|
|
NSArray *a = [[self arrangedObjects] objectsAtIndexes:indexes]; //Screw 10.3
|
2005-06-02 18:16:43 +00:00
|
|
|
|
|
|
|
if ([a containsObject:currentEntry])
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
[currentEntry setIndex:[NSNumber numberWithInt:-1]];
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[super removeObjectsAtArrangedObjectIndexes:indexes];
|
|
|
|
[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
|
|
|
|
{
|
|
|
|
//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];
|
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]];
|
|
|
|
[self rearrangeObjects];
|
|
|
|
|
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]];
|
|
|
|
}
|
|
|
|
- (IBAction)takeRepeatFromObject:(id)sender
|
|
|
|
{
|
|
|
|
if( [sender respondsToSelector: @selector(boolValue)] )
|
|
|
|
[self setRepeat: [sender boolValue]];
|
|
|
|
else
|
|
|
|
[self setRepeat: [sender state]];
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
if (repeat == YES)
|
|
|
|
i += [[self arrangedObjects] count];
|
|
|
|
else
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
else if (i >= [[self arrangedObjects] count])
|
|
|
|
{
|
|
|
|
if (repeat == YES)
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (repeat == YES)
|
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
|
|
|
{
|
2006-04-15 13:51:40 +00:00
|
|
|
if (repeat == YES)
|
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
|
|
|
|
{
|
|
|
|
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-03-14 02:28:30 +00:00
|
|
|
return [self entryAtIndex:([[pe index] intValue] + 1)];
|
2006-04-15 13:51:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (PlaylistEntry *)getPrevEntry:(PlaylistEntry *)pe
|
|
|
|
{
|
|
|
|
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
|
|
|
|
{
|
2006-04-15 14:17:46 +00:00
|
|
|
//Fix for removing a track, then pressing prev with repeat turned on
|
2007-03-14 02:28:30 +00:00
|
|
|
if ([[pe index] intValue] == -1)
|
2006-04-15 14:17:46 +00:00
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
return [self entryAtIndex:[[pe index] intValue]];
|
2006-04-15 14:17:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-14 02:28:30 +00:00
|
|
|
return [self entryAtIndex:[[pe index] intValue] - 1];
|
2006-04-15 14:17:46 +00:00
|
|
|
}
|
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]];
|
2005-06-02 18:16:43 +00:00
|
|
|
if (pe == nil)
|
2006-01-29 14:57:48 +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)
|
2006-01-29 14:57:48 +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
|
|
|
//Need to do...when first generated, need to have current entry at the beginning of the list.
|
|
|
|
|
|
|
|
- (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
|
|
|
|
2007-03-14 02:28:30 +00:00
|
|
|
if (currentEntry && [[currentEntry index] intValue] != -1)
|
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;
|
|
|
|
for (i = 1; i < [shuffleList count]; i++)
|
2006-04-15 13:51:40 +00:00
|
|
|
{
|
2007-03-02 01:36:52 +00:00
|
|
|
if (found == NO && [[shuffleList objectAtIndex:i] url] == [currentEntry url])
|
2006-04-15 14:17:46 +00:00
|
|
|
{
|
|
|
|
found = YES;
|
|
|
|
[shuffleList removeObjectAtIndex:i];
|
|
|
|
}
|
|
|
|
|
2007-03-14 02:28:30 +00:00
|
|
|
[[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;
|
|
|
|
}
|
|
|
|
- (void)setRepeat:(BOOL)r
|
|
|
|
{
|
|
|
|
repeat = r;
|
|
|
|
}
|
|
|
|
- (BOOL)repeat
|
|
|
|
{
|
|
|
|
return repeat;
|
|
|
|
}
|
|
|
|
|
2007-05-26 14:09:03 +00:00
|
|
|
- (IBAction)clear:(id)sender
|
|
|
|
{
|
2007-06-05 00:33:30 +00:00
|
|
|
[currentEntry setIndex:[NSNumber numberWithInt:-1]];
|
|
|
|
|
2007-05-26 14:09:03 +00:00
|
|
|
[self removeObjects:[self content]];
|
2007-06-05 00:33:30 +00:00
|
|
|
[self updateTotalTime];
|
|
|
|
|
|
|
|
if (shuffle == YES)
|
|
|
|
[self resetShuffleList];
|
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;
|
|
|
|
|
2007-03-09 01:16:06 +00:00
|
|
|
NSURL *url = [[self entryAtIndex:[self selectionIndex]] url];
|
|
|
|
if ([url isFileURL])
|
|
|
|
[ws selectFile:[url path] inFileViewerRootedAtPath:[url path]];
|
2006-05-23 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@end
|