- (NSMenu *)playlistsMenu;
- (NSMenu *)eqMenu;
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
- onItem:(NSMenuItem *)item;
+ onItem:(id <NSMenuItem>)item;
+- (BOOL)iPodWithNameAutomaticallyUpdates:(NSString *)name;
@end
@implementation MenuController
NSArray *menuArray = [defaults arrayForKey:@"menu"];
NSEnumerator *enumerator = [menuArray objectEnumerator];
NSString *nextObject;
- NSMenuItem *tempItem;
+ id <NSMenuItem> tempItem;
NSEnumerator *itemEnum;
ITHotKey *hotKey;
NSArray *hotKeys = [[ITHotKeyCenter sharedCenter] allHotKeys];
- (NSMenu *)menuForNoPlayer
{
NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
- NSMenuItem *tempItem;
+ id <NSMenuItem> tempItem;
ITDebugLog(@"Creating menu for when player isn't running.");
NS_DURING
ITDebugLog(@"Add \"Open %@\" menu item.", [[[MainController sharedController] currentRemote] playerSimpleName]);
- (void)rebuildSubmenus
{
ITDebugLog(@"Rebuilding all of the submenus.");
-
NS_DURING
_currentPlaylist = [[[MainController sharedController] currentRemote] currentPlaylistIndex];
_currentTrack = [[[MainController sharedController] currentRemote] currentSongIndex];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
-
+ ITDebugLog(@"Releasing old submenus.");
[_ratingMenu release];
[_upcomingSongsMenu release];
[_playlistsMenu release];
NS_ENDHANDLER
ITDebugLog(@"Building \"Upcoming Songs\" menu.");
-
if (_currentPlaylist && !_playingRadio) {
if (numSongs > 0) {
int i;
-
for (i = _currentTrack + 1; i <= _currentTrack + numSongsInAdvance; i++) {
if (i <= numSongs) {
NSString *curSong;
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
- NSMenuItem *songItem;
+ id <NSMenuItem> songItem;
ITDebugLog(@"Adding song: %@", curSong);
songItem = [upcomingSongsMenu addItemWithTitle:curSong action:@selector(performUpcomingSongsMenuAction:) keyEquivalent:@""];
[songItem setTag:i];
return upcomingSongsMenu;
}
-- (NSMenu *)playlistsMenu
+/*- (NSMenu *)playlistsMenu
{
NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
NSArray *playlists;
- NSMenuItem *tempItem;
+ id <NSMenuItem> tempItem;
ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
int i;
-
NS_DURING
playlists = [[[MainController sharedController] currentRemote] playlists];
NS_HANDLER
}
ITDebugLog(@"Done Building \"Playlists\" menu");
return playlistsMenu;
+}*/
+
+
+- (NSMenu *)playlistsMenu
+{
+ NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
+ NSArray *playlists;
+ id <NSMenuItem> tempItem;
+ ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
+ int i, j;
+ NSMutableArray *indices = [[NSMutableArray alloc] init];
+ NS_DURING
+ playlists = [[[MainController sharedController] currentRemote] playlists];
+ NS_HANDLER
+ [[MainController sharedController] networkError:localException];
+ NS_ENDHANDLER
+ ITDebugLog(@"Building \"Playlists\" menu.");
+ {
+ NSArray *curPlaylist = [playlists objectAtIndex:0];
+ NSString *name = [curPlaylist objectAtIndex:0];
+ ITDebugLog(@"Adding main source: %@", name);
+ for (i = 3; i < [curPlaylist count]; i++) {
+ ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:i]);
+ tempItem = [playlistsMenu addItemWithTitle:[curPlaylist objectAtIndex:i] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
+ [tempItem setTag:i - 1];
+ [tempItem setTarget:self];
+ }
+ ITDebugLog(@"Adding index to the index array.");
+ [indices addObject:[curPlaylist objectAtIndex:2]];
+ }
+ [indices addObject:[[playlists objectAtIndex:1] objectAtIndex:2]];
+ if ( (source == ITMTRemoteRadioSource) || ([playlists count] - 2 > 0) ) {
+ [playlistsMenu addItem:[NSMenuItem separatorItem]];
+ }
+
+ if (source == ITMTRemoteRadioSource) {
+ [[playlistsMenu addItemWithTitle:NSLocalizedString(@"radio", @"Radio") action:@selector(performPlaylistMenuAction:) keyEquivalent:@""] setState:NSOnState];
+ }
+
+ for (i = 2; i < [playlists count]; i++) {
+ NSArray *curPlaylist = [playlists objectAtIndex:i];
+ NSString *name = [curPlaylist objectAtIndex:0];
+ NSMenu *submenu = [[NSMenu alloc] init];
+ ITDebugLog(@"Adding source: %@", name);
+
+ if ([[curPlaylist objectAtIndex:1] intValue] == ITMTRemoteiPodSource) {
+ NSLog(@"We have an iPod!");
+ NSLog(@"This iPod is named %@!", name);
+ NSLog(@"Does it update automagically?");
+ NSLog(@"Result: %i", [self iPodWithNameAutomaticallyUpdates:name]);
+ }
+
+ if ( ([[curPlaylist objectAtIndex:1] intValue] == ITMTRemoteiPodSource) && [self iPodWithNameAutomaticallyUpdates:name] ) {
+ ITDebugLog(@"Invalid iPod source.");
+ } else {
+ for (j = 3; j < [curPlaylist count]; j++) {
+ ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:j]);
+ tempItem = [submenu addItemWithTitle:[curPlaylist objectAtIndex:j] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
+ [tempItem setTag:(i * 1000) + j - 1];
+ [tempItem setTarget:self];
+ }
+ [[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""] setSubmenu:[submenu autorelease]];
+ }
+ ITDebugLog(@"Adding index to the index array.");
+ [indices addObject:[curPlaylist objectAtIndex:2]];
+ }
+ ITDebugLog(@"Checking the current source.");
+ if ( (source == ITMTRemoteSharedLibrarySource) || (source == ITMTRemoteiPodSource) || (source == ITMTRemoteGenericDeviceSource) || (source == ITMTRemoteCDSource) ){
+ tempItem = [playlistsMenu itemAtIndex:[indices indexOfObject:[NSNumber numberWithInt:[[[MainController sharedController] currentRemote] currentSourceIndex]]] + [playlistsMenu numberOfItems] - 3];
+ [tempItem setState:NSOnState];
+ [[[tempItem submenu] itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
+ } else if (source == ITMTRemoteLibrarySource && _currentPlaylist) {
+ [[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
+ }
+ [indices release];
+ ITDebugLog(@"Done Building \"Playlists\" menu");
+ return playlistsMenu;
}
- (NSMenu *)eqMenu
{
NSMenu *eqMenu = [[NSMenu alloc] initWithTitle:@""];
NSArray *eqPresets;
- NSMenuItem *tempItem;
+ id <NSMenuItem> tempItem;
int i;
NS_DURING
}
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
- onItem:(NSMenuItem *)item
+ onItem:(id <NSMenuItem>)item
{
unichar charcode = 'a';
int i;
ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);
}
+- (BOOL)iPodWithNameAutomaticallyUpdates:(NSString *)name
+{
+ NSArray *volumes = [[NSWorkspace sharedWorkspace] mountedLocalVolumePaths];
+ NSEnumerator *volEnum = [volumes objectEnumerator];
+ NSString *nextVolume;
+
+ while ( (nextVolume = [volEnum nextObject]) ) {
+ if ([nextVolume rangeOfString:name options:nil range:NSMakeRange(0, [name length] - 1)].location != NSNotFound) {
+ NSFileHandle *handle;
+ NSData *data;
+ NSString *path = [nextVolume stringByAppendingPathComponent:@"/iPod_Control/iTunes/iTunesPrefs"];
+ if ( ![[NSFileManager defaultManager] fileExistsAtPath:path] ) {
+ ITDebugLog(@"Error, path isn't an iPod! %@", path);
+ return NO;
+ }
+ handle = [NSFileHandle fileHandleForReadingAtPath:name];
+ [handle seekToFileOffset:10];
+ data = [handle readDataOfLength:1];
+ if ( (*((unsigned char*)[data bytes]) == 0x00) ) {
+ ITDebugLog(@"iPod is manually updated. %@", path);
+ return NO;
+ } else if ( ( *((unsigned char*)[data bytes]) == 0x01 ) ) {
+ ITDebugLog(@"iPod is automatically updated. %@", path);
+ return YES;
+ } else {
+ ITDebugLog(@"Error! Value: %h Desc: %@ Path: %@", *((unsigned char*)[data bytes]), [data description], path);
+ return NO;
+ }
+ }
+ }
+ return NO;
+}
+
@end
\ No newline at end of file