git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Tons of changes. Fixed the iPod problem finally. Added composer to
[MenuTunes.git]
/
MenuController.m
diff --git
a/MenuController.m
b/MenuController.m
index
1c8dd90
..
508237e
100755
(executable)
--- a/
MenuController.m
+++ b/
MenuController.m
@@
-22,7
+22,7
@@
- (NSMenu *)eqMenu;
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
onItem:(id <NSMenuItem>)item;
- (NSMenu *)eqMenu;
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
onItem:(id <NSMenuItem>)item;
-- (BOOL)iPod
AtPath
AutomaticallyUpdates:(NSString *)name;
+- (BOOL)iPod
WithName
AutomaticallyUpdates:(NSString *)name;
@end
@implementation MenuController
@end
@implementation MenuController
@@
-270,6
+270,20
@@
}
}
}
}
+ if ([defaults boolForKey:@"showComposer"]) {
+ NSString *curComposer;
+ NS_DURING
+ curComposer = [[[MainController sharedController] currentRemote] currentSongComposer];
+ NS_HANDLER
+ [[MainController sharedController] networkError:localException];
+ NS_ENDHANDLER
+ ITDebugLog(@"Add Track Composer (\"%@\") menu item.", curComposer);
+ if ( curComposer ) {
+ [menu indentItem:
+ [menu addItemWithTitle:curComposer action:nil keyEquivalent:@""]];
+ }
+ }
+
if ([defaults boolForKey:@"showTrackNumber"]) {
int track;
NS_DURING
if ([defaults boolForKey:@"showTrackNumber"]) {
int track;
NS_DURING
@@
-438,6
+452,7
@@
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
+ ITDebugLog(@"Releasing old submenus.");
[_ratingMenu release];
[_upcomingSongsMenu release];
[_playlistsMenu release];
[_ratingMenu release];
[_upcomingSongsMenu release];
[_playlistsMenu release];
@@
-572,11
+587,9
@@
id <NSMenuItem> tempItem;
ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
int i, j;
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_DURING
playlists = [[[MainController sharedController] currentRemote] playlists];
- /*playlists = [NSArray arrayWithObjects:
- [NSArray arrayWithObjects:@"Library", [NSNumber numberWithInt:-1], @"Library", @"Playlist", nil],
- [NSArray arrayWithObjects:@"Radio", [NSNumber numberWithInt:1], @"Radio", nil], nil];*/
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
@@
-585,13
+598,16
@@
NSArray *curPlaylist = [playlists objectAtIndex:0];
NSString *name = [curPlaylist objectAtIndex:0];
ITDebugLog(@"Adding main source: %@", name);
NSArray *curPlaylist = [playlists objectAtIndex:0];
NSString *name = [curPlaylist objectAtIndex:0];
ITDebugLog(@"Adding main source: %@", name);
- for (i =
2
; i < [curPlaylist count]; i++) {
+ for (i =
3
; i < [curPlaylist count]; i++) {
ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:i]);
tempItem = [playlistsMenu addItemWithTitle:[curPlaylist objectAtIndex:i] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:i]);
tempItem = [playlistsMenu addItemWithTitle:[curPlaylist objectAtIndex:i] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
- [tempItem setTag:i];
+ [tempItem setTag:i
- 1
];
[tempItem setTarget:self];
}
[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) || ([playlists count] - 2 > 0) ) {
[playlistsMenu addItem:[NSMenuItem separatorItem]];
}
@@
-606,26
+622,30
@@
NSMenu *submenu = [[NSMenu alloc] init];
ITDebugLog(@"Adding source: %@", name);
NSMenu *submenu = [[NSMenu alloc] init];
ITDebugLog(@"Adding source: %@", name);
- if ( ([[curPlaylist objectAtIndex:
i] intValue] == ITMTRemoteiPodSource) && [self iPodAtPathAutomaticallyUpdates:[curPlaylist objectAtIndex:j]])
) {
+ if ( ([[curPlaylist objectAtIndex:
1] intValue] == ITMTRemoteiPodSource) && [self iPodWithNameAutomaticallyUpdates:name]
) {
ITDebugLog(@"Invalid iPod source.");
ITDebugLog(@"Invalid iPod source.");
+ [playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""];
} else {
} else {
- for (j =
2
; j < [curPlaylist count]; j++) {
+ for (j =
3
; j < [curPlaylist count]; j++) {
ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:j]);
tempItem = [submenu addItemWithTitle:[curPlaylist objectAtIndex:j] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:j]);
tempItem = [submenu addItemWithTitle:[curPlaylist objectAtIndex:j] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
- [tempItem setTag:(i * 1000) + j];
+ [tempItem setTag:(i * 1000) + j
- 1
];
[tempItem setTarget:self];
}
[[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""] setSubmenu:[submenu autorelease]];
}
[tempItem setTarget:self];
}
[[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""] setSubmenu:[submenu autorelease]];
}
+ ITDebugLog(@"Adding index to the index array.");
+ [indices addObject:[curPlaylist objectAtIndex:2]];
}
}
-
- if ( (source == ITMTRemoteSharedLibrarySource) || (source == ITMTRemoteiPodSource) || (source == ITMTRemoteGenericDeviceSource) || (source == ITMTRemoteCDSource) ){
- tempItem = [playlistsMenu itemAtIndex:
(int)[[[MainController sharedController] currentRemote] currentSourceIndex] + [playlistsMenu numberOfItems] - 5
];
+ ITDebugLog(@"Checking the current source.");
+ if ( (source == ITMTRemoteSharedLibrarySource) || (source == ITMTRemoteiPodSource) || (source == ITMTRemoteGenericDeviceSource) || (source == ITMTRemoteCDSource) )
{
+ tempItem = [playlistsMenu itemAtIndex:
[playlistsMenu numberOfItems] + [indices indexOfObject:[NSNumber numberWithInt:[[[MainController sharedController] currentRemote] currentSourceIndex]]] - [indices count]
];
[tempItem setState:NSOnState];
[[[tempItem submenu] itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
} else if (source == ITMTRemoteLibrarySource && _currentPlaylist) {
[[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
}
[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;
}
ITDebugLog(@"Done Building \"Playlists\" menu");
return playlistsMenu;
}
@@
-981,14
+1001,15
@@
ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);
}
ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);
}
-- (BOOL)iPod
AtPath
AutomaticallyUpdates:(NSString *)name
+- (BOOL)iPod
WithName
AutomaticallyUpdates:(NSString *)name
{
NSArray *volumes = [[NSWorkspace sharedWorkspace] mountedLocalVolumePaths];
NSEnumerator *volEnum = [volumes objectEnumerator];
NSString *nextVolume;
{
NSArray *volumes = [[NSWorkspace sharedWorkspace] mountedLocalVolumePaths];
NSEnumerator *volEnum = [volumes objectEnumerator];
NSString *nextVolume;
-
+ ITDebugLog(@"Looking for an iPod named %@", name);
while ( (nextVolume = [volEnum nextObject]) ) {
while ( (nextVolume = [volEnum nextObject]) ) {
- if ([nextVolume rangeOfString:name options:nil range:NSMakeRange(0, [name length] - 1)].location != NSNotFound) {
+ ITDebugLog(@"- %@", nextVolume);
+ 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"];
NSFileHandle *handle;
NSData *data;
NSString *path = [nextVolume stringByAppendingPathComponent:@"/iPod_Control/iTunes/iTunesPrefs"];
@@
-996,9
+1017,11
@@
ITDebugLog(@"Error, path isn't an iPod! %@", path);
return NO;
}
ITDebugLog(@"Error, path isn't an iPod! %@", path);
return NO;
}
- handle = [NSFileHandle fileHandleForReadingAtPath:name];
+ handle = [NSFileHandle fileHandleForReadingAtPath:path];
+ ITDebugLog(@"File handle: %@", handle);
[handle seekToFileOffset:10];
data = [handle readDataOfLength:1];
[handle seekToFileOffset:10];
data = [handle readDataOfLength:1];
+ ITDebugLog(@"Data: %@", data);
if ( (*((unsigned char*)[data bytes]) == 0x00) ) {
ITDebugLog(@"iPod is manually updated. %@", path);
return NO;
if ( (*((unsigned char*)[data bytes]) == 0x00) ) {
ITDebugLog(@"iPod is manually updated. %@", path);
return NO;
@@
-1011,7
+1034,7
@@
}
}
}
}
}
}
- return
NO
;
+ return
YES
;
}
@end
\ No newline at end of file
}
@end
\ No newline at end of file