5 // Created by Joseph Spiros on Wed Apr 30 2003.
6 // Copyright (c) 2003 iThink Software. All rights reserved.
9 #import "MenuController.h"
10 #import "MainController.h"
11 #import "NetworkController.h"
12 #import "ITMTRemote.h"
13 #import <ITFoundation/ITDebug.h>
14 #import <ITKit/ITHotKeyCenter.h>
15 #import <ITKit/ITHotKey.h>
16 #import <ITKit/ITKeyCombo.h>
17 #import <ITKit/ITCategory-NSMenu.h>
19 @interface MenuController (SubmenuMethods)
20 - (NSMenu *)ratingMenu;
21 - (NSMenu *)upcomingSongsMenu;
22 - (NSMenu *)playlistsMenu;
24 - (NSMenu *)artistsMenu;
25 - (NSMenu *)albumsMenu;
26 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
27 onItem:(id <NSMenuItem>)item;
28 - (BOOL)iPodWithNameAutomaticallyUpdates:(NSString *)name;
31 @implementation MenuController
35 if ( (self = [super init]) ) {
36 _menuLayout = [[NSMutableArray alloc] initWithCapacity:0];
43 NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
44 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
45 NSArray *menuArray = [defaults arrayForKey:@"menu"];
46 NSEnumerator *enumerator = [menuArray objectEnumerator];
48 id <NSMenuItem> tempItem;
49 NSEnumerator *itemEnum;
51 NSArray *hotKeys = [[ITHotKeyCenter sharedCenter] allHotKeys];
52 ITMTRemote *mtr = [[MainController sharedController] currentRemote];
53 int currentSongRating = 0;
57 _currentPlaylist = [mtr currentPlaylistIndex];
58 _playingRadio = ([mtr currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
59 currentSongRating = ( [mtr currentSongRating] != -1 );
61 [[MainController sharedController] networkError:localException];
64 ITDebugLog(@"Reset menu if required.");
66 //Kill the old submenu items
67 if ( (tempItem = [_currentMenu itemWithTag:1]) ) {
68 ITDebugLog(@"Removing \"Song Rating\" submenu.");
69 [tempItem setSubmenu:nil];
72 if ( (tempItem = [_currentMenu itemWithTag:2]) ) {
73 ITDebugLog(@"Removing \"Upcoming Songs\" submenu.");
74 [tempItem setSubmenu:nil];
77 if ( (tempItem = [_currentMenu itemWithTag:3]) ) {
78 ITDebugLog(@"Removing \"Playlists\" submenu.");
79 [tempItem setSubmenu:nil];
82 if ( (tempItem = [_currentMenu itemWithTag:4]) ) {
83 ITDebugLog(@"Removing \"EQ Presets\" submenu.");
84 [tempItem setSubmenu:nil];
87 if ( (tempItem = [_currentMenu itemWithTag:5]) ) {
88 ITDebugLog(@"Removing \"Artists\" submenu.");
89 [tempItem setSubmenu:nil];
92 if ( (tempItem = [_currentMenu itemWithTag:6]) ) {
93 ITDebugLog(@"Removing \"Albums\" submenu.");
94 [tempItem setSubmenu:nil];
97 ITDebugLog(@"Begin building menu.");
100 while ( (nextObject = [enumerator nextObject]) ) {
102 if ([nextObject isEqualToString:@"playPause"]) {
103 ITDebugLog(@"Add \"Play\"/\"Pause\" menu item.");
104 tempItem = [menu addItemWithTitle:NSLocalizedString(@"play", @"Play")
105 action:@selector(performMainMenuAction:)
107 [tempItem setTag:MTMenuPlayPauseItem];
108 [tempItem setTarget:self];
110 itemEnum = [hotKeys objectEnumerator];
111 while ( (hotKey = [itemEnum nextObject]) ) {
112 if ([[hotKey name] isEqualToString:@"PlayPause"]) {
113 ITKeyCombo *combo = [hotKey keyCombo];
114 [self setKeyEquivalentForCode:[combo keyCode]
115 andModifiers:[combo modifiers]
120 ITDebugLog(@"Set \"Play\"/\"Pause\" menu item's title to correct state.");
122 switch ([mtr playerPlayingState]) {
123 case ITMTRemotePlayerPlaying:
124 [tempItem setTitle:NSLocalizedString(@"pause", @"Pause")];
126 case ITMTRemotePlayerRewinding:
127 case ITMTRemotePlayerForwarding:
128 [tempItem setTitle:NSLocalizedString(@"resume", @"Resume")];
134 [[MainController sharedController] networkError:localException];
136 } else if ([nextObject isEqualToString:@"nextTrack"]) {
137 ITDebugLog(@"Add \"Next Track\" menu item.");
138 tempItem = [menu addItemWithTitle:NSLocalizedString(@"nextTrack", @"Next Track")
139 action:@selector(performMainMenuAction:)
142 itemEnum = [hotKeys objectEnumerator];
143 while ( (hotKey = [itemEnum nextObject]) ) {
144 if ([[hotKey name] isEqualToString:@"NextTrack"]) {
145 ITKeyCombo *combo = [hotKey keyCombo];
146 [self setKeyEquivalentForCode:[combo keyCode]
147 andModifiers:[combo modifiers]
152 if (_currentPlaylist) {
153 [tempItem setTag:MTMenuNextTrackItem];
154 [tempItem setTarget:self];
156 } else if ([nextObject isEqualToString:@"prevTrack"]) {
157 ITDebugLog(@"Add \"Previous Track\" menu item.");
158 tempItem = [menu addItemWithTitle:NSLocalizedString(@"prevTrack", @"Previous Track")
159 action:@selector(performMainMenuAction:)
162 itemEnum = [hotKeys objectEnumerator];
163 while ( (hotKey = [itemEnum nextObject]) ) {
164 if ([[hotKey name] isEqualToString:@"PrevTrack"]) {
165 ITKeyCombo *combo = [hotKey keyCombo];
166 [self setKeyEquivalentForCode:[combo keyCode]
167 andModifiers:[combo modifiers]
172 if (_currentPlaylist) {
173 [tempItem setTag:MTMenuPreviousTrackItem];
174 [tempItem setTarget:self];
176 } else if ([nextObject isEqualToString:@"fastForward"]) {
177 ITDebugLog(@"Add \"Fast Forward\" menu item.");
178 tempItem = [menu addItemWithTitle:NSLocalizedString(@"fastForward", @"Fast Forward")
179 action:@selector(performMainMenuAction:)
181 if (_currentPlaylist) {
182 [tempItem setTag:MTMenuFastForwardItem];
183 [tempItem setTarget:self];
185 } else if ([nextObject isEqualToString:@"rewind"]) {
186 ITDebugLog(@"Add \"Rewind\" menu item.");
187 tempItem = [menu addItemWithTitle:NSLocalizedString(@"rewind", @"Rewind")
188 action:@selector(performMainMenuAction:)
190 if (_currentPlaylist) {
191 [tempItem setTag:MTMenuRewindItem];
192 [tempItem setTarget:self];
194 } else if ([nextObject isEqualToString:@"showPlayer"]) {
195 ITDebugLog(@"Add \"Show Player\" menu item.");
197 tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@",
198 NSLocalizedString(@"show", @"Show"),
199 [mtr playerSimpleName]]
200 action:@selector(performMainMenuAction:)
203 [[MainController sharedController] networkError:localException];
206 itemEnum = [hotKeys objectEnumerator];
207 while ( (hotKey = [itemEnum nextObject]) ) {
208 if ([[hotKey name] isEqualToString:@"ShowPlayer"]) {
209 ITKeyCombo *combo = [hotKey keyCombo];
210 [self setKeyEquivalentForCode:[combo keyCode]
211 andModifiers:[combo modifiers]
216 [tempItem setTarget:self];
217 [tempItem setTag:MTMenuShowPlayerItem];
218 } else if ([nextObject isEqualToString:@"preferences"]) {
219 ITDebugLog(@"Add \"Preferences...\" menu item.");
220 tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...")
221 action:@selector(performMainMenuAction:)
223 [tempItem setTag:MTMenuPreferencesItem];
224 [tempItem setTarget:self];
225 } else if ([nextObject isEqualToString:@"quit"]) {
226 if ([[MainController sharedController] blingBling] == NO) {
227 ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
228 tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
229 [tempItem setTag:MTMenuRegisterItem];
230 [tempItem setTarget:self];
232 ITDebugLog(@"Add \"Quit\" menu item.");
233 tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit")
234 action:@selector(performMainMenuAction:)
236 [tempItem setTag:MTMenuQuitItem];
237 [tempItem setTarget:self];
238 } else if ([nextObject isEqualToString:@"trackInfo"]) {
239 ITDebugLog(@"Check to see if a Track is playing...");
240 //Handle playing radio too
241 if (_currentPlaylist) {
242 NSString *title = nil;
244 title = [mtr currentSongTitle];
246 [[MainController sharedController] networkError:localException];
248 ITDebugLog(@"A Track is Playing, Add \"Track Info\" menu items.");
249 ITDebugLog(@"Add \"Now Playing\" menu item.");
250 [menu addItemWithTitle:NSLocalizedString(@"nowPlaying", @"Now Playing") action:NULL keyEquivalent:@""];
252 if ([title length] > 0) {
253 ITDebugLog(@"Add Track Title (\"%@\") menu item.", title);
255 [menu addItemWithTitle:title action:nil keyEquivalent:@""]];
258 if (!_playingRadio) {
259 if ([defaults boolForKey:@"showAlbum"]) {
260 NSString *curAlbum = nil;
262 curAlbum = [mtr currentSongAlbum];
264 [[MainController sharedController] networkError:localException];
266 ITDebugLog(@"Add Track Album (\"%@\") menu item.", curAlbum);
269 [menu addItemWithTitle:curAlbum action:nil keyEquivalent:@""]];
273 if ([defaults boolForKey:@"showArtist"]) {
274 NSString *curArtist = nil;
276 curArtist = [mtr currentSongArtist];
278 [[MainController sharedController] networkError:localException];
280 ITDebugLog(@"Add Track Artist (\"%@\") menu item.", curArtist);
283 [menu addItemWithTitle:curArtist action:nil keyEquivalent:@""]];
287 if ([defaults boolForKey:@"showComposer"]) {
288 NSString *curComposer = nil;
290 curComposer = [mtr currentSongComposer];
292 [[MainController sharedController] networkError:localException];
294 ITDebugLog(@"Add Track Composer (\"%@\") menu item.", curComposer);
297 [menu addItemWithTitle:curComposer action:nil keyEquivalent:@""]];
301 if ([defaults boolForKey:@"showTrackNumber"]) {
304 track = [mtr currentSongTrack];
306 [[MainController sharedController] networkError:localException];
308 ITDebugLog(@"Add Track Number (\"Track %i\") menu item.", track);
311 [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %i", NSLocalizedString(@"track", @"Track"), track] action:nil keyEquivalent:@""]];
317 if ([defaults boolForKey:@"showTime"] && ( ([mtr currentSongElapsed] != nil) || ([mtr currentSongLength] != nil) )) {
318 ITDebugLog(@"Add Track Elapsed (\"%@/%@\") menu item.", [mtr currentSongElapsed], [mtr currentSongLength]);
319 [menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"%@/%@", [mtr currentSongElapsed], [mtr currentSongLength]] action:nil keyEquivalent:@""]];
322 [[MainController sharedController] networkError:localException];
325 if (!_playingRadio) {
327 if ([defaults boolForKey:@"showPlayCount"] && [mtr currentSource] == ITMTRemoteLibrarySource) {
328 [menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"Play Count: %i", [mtr currentSongPlayCount]] action:nil keyEquivalent:@""]];
330 if ([defaults boolForKey:@"showTrackRating"] && ( [mtr currentSongRating] != -1.0 )) {
331 NSString *string = nil;
332 switch ((int)([mtr currentSongRating] * 5)) {
334 string = [NSString stringWithUTF8String:"☆☆☆☆☆"];
337 string = [NSString stringWithUTF8String:"★☆☆☆☆"];
340 string = [NSString stringWithUTF8String:"★★☆☆☆"];
343 string = [NSString stringWithUTF8String:"★★★☆☆"];
346 string = [NSString stringWithUTF8String:"★★★★☆"];
349 string = [NSString stringWithUTF8String:"★★★★★"];
352 ITDebugLog(@"Add Track Rating (\"%@\") menu item.", string);
353 [menu indentItem:[menu addItemWithTitle:string action:nil keyEquivalent:@""]];
356 [[MainController sharedController] networkError:localException];
359 /*if ([tempItem respondsToSelector:@selector(setAttributedTitle:)] && [defaults boolForKey:@"showAlbumArtwork"] && ![[NetworkController sharedController] isConnectedToServer]) {
360 NSImage *image = [mtr currentSongAlbumArt];
362 NSSize oldSize, newSize;
363 oldSize = [image size];
364 if (oldSize.width > oldSize.height) newSize = NSMakeSize(110,oldSize.height * (110.0f / oldSize.width));
365 else newSize = NSMakeSize(oldSize.width * (110.0f / oldSize.height),110);
366 image = [[[[NSImage alloc] initWithData:[image TIFFRepresentation]] autorelease] imageScaledSmoothlyToSize:newSize];
368 tempItem = [menu addItemWithTitle:@"" action:nil keyEquivalent:@""];
369 NSTextAttachment *attachment = [[[NSTextAttachment alloc] init] autorelease];
370 [[attachment attachmentCell] setImage:image];
371 NSAttributedString *attrString = [NSAttributedString attributedStringWithAttachment:attachment];
372 [tempItem setAttributedTitle:attrString];
377 ITDebugLog(@"No Track is Playing, Add \"No Song\" menu item.");
378 [menu addItemWithTitle:NSLocalizedString(@"noSong", @"No Song") action:NULL keyEquivalent:@""];
380 } else if ([nextObject isEqualToString:@"separator"]) {
381 ITDebugLog(@"Add a separator menu item.");
382 [menu addItem:[NSMenuItem separatorItem]];
384 } else if ([nextObject isEqualToString:@"playlists"]) {
385 ITDebugLog(@"Add \"Playlists\" submenu.");
386 tempItem = [menu addItemWithTitle:NSLocalizedString(@"playlists", @"Playlists")
389 [tempItem setSubmenu:_playlistsMenu];
391 } else if ([nextObject isEqualToString:@"eqPresets"]) {
392 ITDebugLog(@"Add \"EQ Presets\" submenu.");
393 tempItem = [menu addItemWithTitle:NSLocalizedString(@"eqPresets", @"EQ Presets")
396 [tempItem setSubmenu:_eqMenu];
399 itemEnum = [[_eqMenu itemArray] objectEnumerator];
400 while ( (tempItem = [itemEnum nextObject]) ) {
401 [tempItem setState:NSOffState];
404 [[_eqMenu itemAtIndex:0] setState:[mtr equalizerEnabled] ? NSOnState : NSOffState];
405 [[_eqMenu itemAtIndex:([mtr currentEQPresetIndex] + 1)] setState:NSOnState];
407 [[MainController sharedController] networkError:localException];
409 } else if ([nextObject isEqualToString:@"songRating"] && currentSongRating) {
410 ITDebugLog(@"Add \"Song Rating\" submenu.");
411 tempItem = [menu addItemWithTitle:NSLocalizedString(@"songRating", @"Song Rating")
414 [tempItem setSubmenu:_ratingMenu];
416 if (_playingRadio || !_currentPlaylist) {
417 [tempItem setEnabled:NO];
420 itemEnum = [[_ratingMenu itemArray] objectEnumerator];
421 while ( (tempItem = [itemEnum nextObject]) ) {
422 [tempItem setState:NSOffState];
426 [[_ratingMenu itemAtIndex:([mtr currentSongRating] * 5)] setState:NSOnState];
428 [[MainController sharedController] networkError:localException];
430 } else if ([nextObject isEqualToString:@"upcomingSongs"]) {
431 ITDebugLog(@"Add \"Upcoming Songs\" submenu.");
432 tempItem = [menu addItemWithTitle:NSLocalizedString(@"upcomingSongs", @"Upcoming Songs")
435 [tempItem setSubmenu:_upcomingSongsMenu];
437 if (_playingRadio || !_currentPlaylist) {
438 [tempItem setEnabled:NO];
440 } else if ([nextObject isEqualToString:@"artists"]) {
441 ITDebugLog(@"Add \"Artists\" submenu.");
442 tempItem = [menu addItemWithTitle:NSLocalizedString(@"artists", @"Artists")
445 [tempItem setSubmenu:_artistsMenu];
447 } else if ([nextObject isEqualToString:@"albums"]) {
448 ITDebugLog(@"Add \"Albums\" submenu.");
449 tempItem = [menu addItemWithTitle:NSLocalizedString(@"albums", @"Albums")
452 [tempItem setSubmenu:_albumsMenu];
456 ITDebugLog(@"Finished building menu.");
457 [_currentMenu release];
462 - (NSMenu *)menuForNoPlayer
464 NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
465 id <NSMenuItem> tempItem = nil;
466 ITDebugLog(@"Creating menu for when player isn't running.");
468 ITDebugLog(@"Add \"Open %@\" menu item.", [[[MainController sharedController] currentRemote] playerSimpleName]);
469 tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"open", @"Open"), [[[MainController sharedController] currentRemote] playerSimpleName]] action:@selector(performMainMenuAction:) keyEquivalent:@""];
471 [[MainController sharedController] networkError:localException];
473 [tempItem setTag:MTMenuShowPlayerItem];
474 [tempItem setTarget:self];
475 ITDebugLog(@"Add a separator menu item.");
476 [menu addItem:[NSMenuItem separatorItem]];
477 ITDebugLog(@"Add \"Preferences...\" menu item.");
478 tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
479 [tempItem setTag:MTMenuPreferencesItem];
480 [tempItem setTarget:self];
481 if ([[MainController sharedController] blingBling] == NO) {
482 ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
483 tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
484 [tempItem setTag:MTMenuRegisterItem];
485 [tempItem setTarget:self];
487 ITDebugLog(@"Add \"Quit\" menu item.");
488 tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit") action:@selector(performMainMenuAction:) keyEquivalent:@""];
489 [tempItem setTag:MTMenuQuitItem];
490 [tempItem setTarget:self];
491 return [menu autorelease];
494 - (BOOL)rebuildSubmenus
496 NSArray *menu = [[NSUserDefaults standardUserDefaults] arrayForKey:@"menu"];
497 ITDebugLog(@"Rebuilding all of the submenus.");
499 _currentPlaylist = [[[MainController sharedController] currentRemote] currentPlaylistIndex];
500 _currentTrack = [[[MainController sharedController] currentRemote] currentSongIndex];
501 _playingRadio = ([[[MainController sharedController] currentRemote] currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
503 [[MainController sharedController] networkError:localException];
505 ITDebugLog(@"Releasing old submenus.");
507 ITDebugLog(@" - Rating menu");
508 [_ratingMenu release];
510 ITDebugLog(@" - Upcoming songs menu");
511 [_upcomingSongsMenu release];
512 _upcomingSongsMenu = nil;
513 ITDebugLog(@" - Playlists menu");
514 [_playlistsMenu release];
515 _playlistsMenu = nil;
516 ITDebugLog(@" - EQ menu");
520 ITDebugLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
521 _ratingMenu = [self ratingMenu];
522 ITDebugLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
523 _upcomingSongsMenu = [self upcomingSongsMenu];
525 ITDebugLog(@"Beginning Rebuild of \"Playlists\" submenu.");
526 _playlistsMenu = [self playlistsMenu];
529 ITDebugLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
530 _eqMenu = [self eqMenu];
533 if (_continue && [menu containsObject:@"artists"]) {
534 ITDebugLog(@"Releasing artists menu");
535 [_artistsMenu release];
536 ITDebugLog(@"Beginning Rebuild of \"Artists\" submenu.");
537 _artistsMenu = [self artistsMenu];
540 if (_continue && [menu containsObject:@"albums"]) {
541 ITDebugLog(@"Releasing albums menu");
542 [_albumsMenu release];
543 ITDebugLog(@"Beginning Rebuild of \"Albums\" submenu.");
544 _albumsMenu = [self albumsMenu];
546 ITDebugLog(@"Done rebuilding all of the submenus.");
550 - (NSMenu *)ratingMenu
552 NSMenu *ratingMenu = [[NSMenu alloc] initWithTitle:@""];
553 NSEnumerator *itemEnum;
556 SEL itemSelector = @selector(performRatingMenuAction:);
558 ITDebugLog(@"Building \"Song Rating\" menu.");
560 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"☆☆☆☆☆"] action:nil keyEquivalent:@""];
561 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★☆☆☆☆"] action:nil keyEquivalent:@""];
562 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★☆☆☆"] action:nil keyEquivalent:@""];
563 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★☆☆"] action:nil keyEquivalent:@""];
564 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★☆"] action:nil keyEquivalent:@""];
565 [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★★"] action:nil keyEquivalent:@""];
567 itemEnum = [[ratingMenu itemArray] objectEnumerator];
568 while ( (anItem = [itemEnum nextObject]) ) {
569 ITDebugLog(@"Setting up \"%@\" menu item.", [anItem title]);
570 [anItem setAction:itemSelector];
571 [anItem setTarget:self];
572 [anItem setTag:itemTag];
575 ITDebugLog(@"Done Building \"Song Rating\" menu.");
579 - (NSMenu *)upcomingSongsMenu
581 NSMenu *upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
582 int numSongs = 0, numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
584 numSongs = [[[MainController sharedController] currentRemote] numberOfSongsInPlaylistAtIndex:_currentPlaylist];
586 [[MainController sharedController] networkError:localException];
589 if (numSongs == -1) {
590 [upcomingSongsMenu release];
594 ITDebugLog(@"Building \"Upcoming Songs\" menu.");
595 if (_currentPlaylist && !_playingRadio) {
598 for (i = _currentTrack + 1; i <= _currentTrack + numSongsInAdvance; i++) {
600 NSString *curSong = nil;
602 curSong = [[[MainController sharedController] currentRemote] songTitleAtIndex:i];
604 [[MainController sharedController] networkError:localException];
606 id <NSMenuItem> songItem;
607 ITDebugLog(@"Adding song: %@", curSong);
608 songItem = [upcomingSongsMenu addItemWithTitle:curSong action:@selector(performUpcomingSongsMenuAction:) keyEquivalent:@""];
610 [songItem setTarget:self];
617 if ([upcomingSongsMenu numberOfItems] == 0) {
618 [upcomingSongsMenu addItemWithTitle:NSLocalizedString(@"noUpcomingSongs", @"No upcoming songs.") action:NULL keyEquivalent:@""];
621 ITDebugLog(@"Done Building \"Upcoming Songs\" menu.");
622 NS_VALUERETURN(upcomingSongsMenu, NSMenu *);
624 [upcomingSongsMenu release];
626 NS_VALUERETURN(nil, NSMenu *);
630 /*- (NSMenu *)playlistsMenu
632 NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
634 id <NSMenuItem> tempItem;
635 ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
638 playlists = [[[MainController sharedController] currentRemote] playlists];
640 [[MainController sharedController] networkError:localException];
643 ITDebugLog(@"Building \"Playlists\" menu.");
645 for (i = 0; i < [playlists count]; i++) {
646 NSString *curPlaylist = [playlists objectAtIndex:i];
647 ITDebugLog(@"Adding playlist: %@", curPlaylist);
648 tempItem = [playlistsMenu addItemWithTitle:curPlaylist action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
649 [tempItem setTag:i + 1];
650 [tempItem setTarget:self];
653 if (source == ITMTRemoteRadioSource) {
654 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"radio", @"Radio") action:NULL keyEquivalent:@""] setState:NSOnState];
655 } else if (source == ITMTRemoteGenericDeviceSource) {
656 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"genericDevice", @"Generic Device") action:NULL keyEquivalent:@""] setState:NSOnState];
657 } else if (source == ITMTRemoteiPodSource) {
658 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"iPod", @"iPod") action:NULL keyEquivalent:@""] setState:NSOnState];
659 } else if (source == ITMTRemoteCDSource) {
660 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"cd", @"CD") action:NULL keyEquivalent:@""] setState:NSOnState];
661 } else if (source == ITMTRemoteSharedLibrarySource) {
662 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"sharedLibrary", @"Shared Library") action:NULL keyEquivalent:@""] setState:NSOnState];
663 } else if (source == ITMTRemoteLibrarySource && _currentPlaylist) {
664 [[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
666 ITDebugLog(@"Done Building \"Playlists\" menu");
667 return playlistsMenu;
671 - (NSMenu *)playlistsMenu
673 NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
674 NSArray *playlists = nil;
675 id <NSMenuItem> tempItem;
676 ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
678 NSMutableArray *indices = [[NSMutableArray alloc] init];
680 playlists = [[[MainController sharedController] currentRemote] playlists];
682 [[MainController sharedController] networkError:localException];
686 [playlistsMenu release];
691 ITDebugLog(@"Building \"Playlists\" menu.");
693 NSArray *curPlaylist = [playlists objectAtIndex:0];
694 NSString *name = [curPlaylist objectAtIndex:0];
695 ITDebugLog(@"Adding main source: %@", name);
696 for (i = 3; i < [curPlaylist count]; i++) {
697 ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:i]);
698 tempItem = [playlistsMenu addItemWithTitle:[curPlaylist objectAtIndex:i] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
699 [tempItem setTag:i - 1];
700 [tempItem setTarget:self];
702 ITDebugLog(@"Adding index to the index array.");
703 [indices addObject:[curPlaylist objectAtIndex:2]];
705 if ([playlists count] > 1) {
706 if ([[[playlists objectAtIndex:1] objectAtIndex:1] intValue] == ITMTRemoteRadioSource) {
707 [indices addObject:[[playlists objectAtIndex:1] objectAtIndex:2]];
708 if (source == ITMTRemoteRadioSource) {
709 [playlistsMenu addItem:[NSMenuItem separatorItem]];
710 [[playlistsMenu addItemWithTitle:NSLocalizedString(@"radio", @"Radio") action:@selector(performPlaylistMenuAction:) keyEquivalent:@""] setState:NSOnState];
713 [playlistsMenu addItem:[NSMenuItem separatorItem]];
717 if ([playlists count] > 1) {
718 for (i = 1; i < [playlists count]; i++) {
719 NSArray *curPlaylist = [playlists objectAtIndex:i];
720 if ([[curPlaylist objectAtIndex:1] intValue] != ITMTRemoteRadioSource) {
721 NSString *name = [curPlaylist objectAtIndex:0];
722 NSMenu *submenu = [[NSMenu alloc] init];
723 ITDebugLog(@"Adding source: %@", name);
725 if ( ([[curPlaylist objectAtIndex:1] intValue] == ITMTRemoteiPodSource) && [self iPodWithNameAutomaticallyUpdates:name] ) {
726 ITDebugLog(@"Invalid iPod source.");
727 [playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""];
729 for (j = 3; j < [curPlaylist count]; j++) {
730 ITDebugLog(@"Adding playlist: %@", [curPlaylist objectAtIndex:j]);
731 tempItem = [submenu addItemWithTitle:[curPlaylist objectAtIndex:j] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
732 [tempItem setTag:(i * 1000) + j - 1];
733 [tempItem setTarget:self];
735 [[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""] setSubmenu:[submenu autorelease]];
737 ITDebugLog(@"Adding index to the index array.");
738 [indices addObject:[curPlaylist objectAtIndex:2]];
742 ITDebugLog(@"Checking the current source.");
744 if ( (source == ITMTRemoteSharedLibrarySource) || (source == ITMTRemoteiPodSource) || (source == ITMTRemoteGenericDeviceSource) || (source == ITMTRemoteCDSource) ) {
745 tempItem = [playlistsMenu itemAtIndex:[playlistsMenu numberOfItems] + [indices indexOfObject:[NSNumber numberWithInt:[[[MainController sharedController] currentRemote] currentSourceIndex]]] - [indices count]];
746 [tempItem setState:NSOnState];
747 [[[tempItem submenu] itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
748 } else if (source == ITMTRemoteLibrarySource && _currentPlaylist) {
749 [[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
754 tempItem = [playlistsMenu addItemWithTitle:NSLocalizedString(@"refresh", @"Refresh") action:@selector(rebuildSubmenus) keyEquivalent:@""];
755 [tempItem setTarget:self];
756 [tempItem setImage:[NSImage imageNamed:@"ChasingArrow"]];
757 ITDebugLog(@"Done Building \"Playlists\" menu");
758 NS_VALUERETURN(playlistsMenu, NSMenu *);
760 [playlistsMenu release];
762 NS_VALUERETURN(nil, NSMenu *);
768 NSMenu *eqMenu = [[NSMenu alloc] initWithTitle:@""];
769 NSArray *eqPresets = nil;
770 id <NSMenuItem> tempItem;
774 eqPresets = [[[MainController sharedController] currentRemote] eqPresets];
776 [[MainController sharedController] networkError:localException];
779 ITDebugLog(@"Building \"EQ Presets\" menu.");
781 tempItem = [eqMenu addItemWithTitle:@"Enabled" action:@selector(performEqualizerMenuAction:) keyEquivalent:@""];
782 [tempItem setTag:-1];
783 [tempItem setTarget:self];
784 [eqMenu addItem:[NSMenuItem separatorItem]];
786 for (i = 0; i < [eqPresets count]; i++) {
788 if ( ( name = [eqPresets objectAtIndex:i] ) ) {
789 ITDebugLog(@"Adding EQ Preset: %@", name);
790 tempItem = [eqMenu addItemWithTitle:name
791 action:@selector(performEqualizerMenuAction:)
794 [tempItem setTarget:self];
797 ITDebugLog(@"Done Building \"EQ Presets\" menu");
801 - (NSMenu *)artistsMenu
803 NSMenu *artistsMenu = [[NSMenu alloc] initWithTitle:@"Artists"];
804 NSEnumerator *artistsEnumerator;
805 NSString *nextArtist;
806 id <NSMenuItem> tempItem;
807 ITDebugLog(@"Building \"Artists\" menu.");
809 artistsEnumerator = [[[[MainController sharedController] currentRemote] artists] objectEnumerator];
810 while ( (nextArtist = [artistsEnumerator nextObject]) ) {
811 tempItem = [artistsMenu addItemWithTitle:nextArtist action:@selector(performBrowseMenuAction:) keyEquivalent:@""];
812 [tempItem setTarget:self];
815 [[MainController sharedController] networkError:localException];
817 ITDebugLog(@"Done Building \"Artists\" menu");
821 - (NSMenu *)albumsMenu
823 NSMenu *albumsMenu = [[NSMenu alloc] initWithTitle:@"Albums"];
824 NSEnumerator *albumsEnumerator;
826 id <NSMenuItem> tempItem;
827 ITDebugLog(@"Building \"Albums\" menu.");
829 albumsEnumerator = [[[[MainController sharedController] currentRemote] albums] objectEnumerator];
830 while ( (nextAlbum = [albumsEnumerator nextObject]) ) {
831 tempItem = [albumsMenu addItemWithTitle:nextAlbum action:@selector(performBrowseMenuAction:) keyEquivalent:@""];
832 [tempItem setTarget:self];
835 [[MainController sharedController] networkError:localException];
837 ITDebugLog(@"Done Building \"Albums\" menu");
841 - (void)performMainMenuAction:(id)sender
843 switch ( [sender tag] )
845 case MTMenuPlayPauseItem:
846 ITDebugLog(@"Performing Menu Action: Play/Pause");
847 [[MainController sharedController] playPause];
849 case MTMenuFastForwardItem:
850 ITDebugLog(@"Performing Menu Action: Fast Forward");
851 [[MainController sharedController] fastForward];
853 case MTMenuRewindItem:
854 ITDebugLog(@"Performing Menu Action: Rewind");
855 [[MainController sharedController] rewind];
857 case MTMenuPreviousTrackItem:
858 ITDebugLog(@"Performing Menu Action: Previous Track");
859 [[MainController sharedController] prevSong];
861 case MTMenuNextTrackItem:
862 ITDebugLog(@"Performing Menu Action: Next Track");
863 [[MainController sharedController] nextSong];
865 case MTMenuShowPlayerItem:
866 ITDebugLog(@"Performing Menu Action: Show Main Interface");
867 [[MainController sharedController] showPlayer];
869 case MTMenuPreferencesItem:
870 ITDebugLog(@"Performing Menu Action: Preferences...");
871 [[MainController sharedController] showPreferences];
874 ITDebugLog(@"Performing Menu Action: Quit");
875 [[MainController sharedController] quitMenuTunes];
877 case MTMenuRegisterItem:
878 ITDebugLog(@"Performing Menu Action: Register");
879 [[MainController sharedController] blingNow];
882 ITDebugLog(@"Performing Menu Action: Unimplemented Menu Item OR Child-bearing Menu Item");
887 - (void)performRatingMenuAction:(id)sender
889 ITDebugLog(@"Rating action selected on item with tag %i", [sender tag]);
890 [[MainController sharedController] selectSongRating:[sender tag]];
893 - (void)performPlaylistMenuAction:(id)sender
895 ITDebugLog(@"Playlist action selected on item with tag %i", [sender tag]);
896 [[MainController sharedController] selectPlaylistAtIndex:[sender tag]];
899 - (void)performEqualizerMenuAction:(id)sender
901 ITDebugLog(@"EQ action selected on item with tag %i", [sender tag]);
902 [[MainController sharedController] selectEQPresetAtIndex:[sender tag]];
905 - (void)performUpcomingSongsMenuAction:(id)sender
907 ITDebugLog(@"Song action selected on item with tag %i", [sender tag]);
908 [[MainController sharedController] selectSongAtIndex:[sender tag]];
911 - (void)performBrowseMenuAction:(id)sender
913 ITDebugLog(@"Browse action selected on item named %@", [sender title]);
919 [[MainController sharedController] makePlaylistWithTerm:[sender title] ofType:(([[[sender menu] title] isEqualToString:@"Artists"]) ? 1 : 2)];
924 ITDebugLog(@"Update Menu");
925 [_currentMenu update];
928 - (BOOL)validateMenuItem:(id <NSMenuItem>)menuItem
933 //This is never used I know, keep it though
934 - (NSString *)systemUIColor
936 NSDictionary *tmpDict;
938 if ( (tmpDict = [NSDictionary dictionaryWithContentsOfFile:[@"~/Library/Preferences/.GlobalPreferences.plist" stringByExpandingTildeInPath]]) ) {
939 if ( (tmpNumber = [tmpDict objectForKey:@"AppleAquaColorVariant"]) ) {
940 if ( ([tmpNumber intValue] == 1) ) {
953 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
954 onItem:(id <NSMenuItem>)item
956 unichar charcode = 'a';
958 long cocoaModifiers = 0;
959 static long carbonToCocoa[6][2] =
961 { cmdKey, NSCommandKeyMask },
962 { optionKey, NSAlternateKeyMask },
963 { controlKey, NSControlKeyMask },
964 { shiftKey, NSShiftKeyMask },
967 ITDebugLog(@"Setting Key Equivelent on menu item \"%@\".", [item title]);
969 for (i = 0; i < 6; i++) {
970 if (modifiers & carbonToCocoa[i][0]) {
971 cocoaModifiers += carbonToCocoa[i][1];
974 [item setKeyEquivalentModifierMask:cocoaModifiers];
976 //Missing key combos for some keys. Must find them later.
980 ITDebugLog(@"Keycode for menu item \"%@\": 36 (Return)", [item title]);
985 ITDebugLog(@"Keycode for menu item \"%@\": 48 (Tab)", [item title]);
992 ITDebugLog(@"Keycode for menu item \"%@\": 49 (Space)", [item title]);
993 // Haven't tested this, though it should work.
994 // This doesn't work. :'(
996 //[[NSString stringWithString:@"Space"] getCharacters:&buffer];
998 /*MenuRef menuRef = _NSGetCarbonMenu([item menu]);
999 ITDebugLog(@"%@", menuRef);
1000 SetMenuItemCommandKey(menuRef, 0, NO, 49);
1001 SetMenuItemModifiers(menuRef, 0, kMenuNoCommandModifier);
1002 SetMenuItemKeyGlyph(menuRef, 0, kMenuBlankGlyph);
1005 [[NSString stringWithString:@" "] getCharacters:&buffer]; // this will have to do for now :(
1011 ITDebugLog(@"Keycode for menu item \"%@\": 51 (Delete)", [item title]);
1012 charcode = NSDeleteFunctionKey;
1016 ITDebugLog(@"Keycode for menu item \"%@\": 53 (Escape)", [item title]);
1021 ITDebugLog(@"Keycode for menu item \"%@\": 71 (Escape)", [item title]);
1026 ITDebugLog(@"Keycode for menu item \"%@\": 76 (Return)", [item title]);
1031 ITDebugLog(@"Keycode for menu item \"%@\": 96 (F5)", [item title]);
1032 charcode = NSF5FunctionKey;
1036 ITDebugLog(@"Keycode for menu item \"%@\": 97 (F6)", [item title]);
1037 charcode = NSF6FunctionKey;
1041 ITDebugLog(@"Keycode for menu item \"%@\": 98 (F7)", [item title]);
1042 charcode = NSF7FunctionKey;
1046 ITDebugLog(@"Keycode for menu item \"%@\": 99 (F3)", [item title]);
1047 charcode = NSF3FunctionKey;
1051 ITDebugLog(@"Keycode for menu item \"%@\": 100 (F8)", [item title]);
1052 charcode = NSF8FunctionKey;
1056 ITDebugLog(@"Keycode for menu item \"%@\": 101 (F9)", [item title]);
1057 charcode = NSF9FunctionKey;
1061 ITDebugLog(@"Keycode for menu item \"%@\": 103 (F11)", [item title]);
1062 charcode = NSF11FunctionKey;
1066 ITDebugLog(@"Keycode for menu item \"%@\": 105 (F13)", [item title]);
1067 charcode = NSF13FunctionKey;
1071 ITDebugLog(@"Keycode for menu item \"%@\": 107 (F14)", [item title]);
1072 charcode = NSF14FunctionKey;
1076 ITDebugLog(@"Keycode for menu item \"%@\": 109 (F10)", [item title]);
1077 charcode = NSF10FunctionKey;
1081 ITDebugLog(@"Keycode for menu item \"%@\": 111 (F12)", [item title]);
1082 charcode = NSF12FunctionKey;
1086 ITDebugLog(@"Keycode for menu item \"%@\": 113 (F13)", [item title]);
1087 charcode = NSF13FunctionKey;
1091 ITDebugLog(@"Keycode for menu item \"%@\": 114 (Insert)", [item title]);
1092 charcode = NSInsertFunctionKey;
1096 ITDebugLog(@"Keycode for menu item \"%@\": 115 (Home)", [item title]);
1097 charcode = NSHomeFunctionKey;
1101 ITDebugLog(@"Keycode for menu item \"%@\": 116 (PgUp)", [item title]);
1102 charcode = NSPageUpFunctionKey;
1106 ITDebugLog(@"Keycode for menu item \"%@\": 117 (Delete)", [item title]);
1107 charcode = NSDeleteFunctionKey;
1111 ITDebugLog(@"Keycode for menu item \"%@\": 118 (F4)", [item title]);
1112 charcode = NSF4FunctionKey;
1116 ITDebugLog(@"Keycode for menu item \"%@\": 119 (End)", [item title]);
1117 charcode = NSEndFunctionKey;
1121 ITDebugLog(@"Keycode for menu item \"%@\": 120 (F2)", [item title]);
1122 charcode = NSF2FunctionKey;
1126 ITDebugLog(@"Keycode for menu item \"%@\": 121 (PgDown)", [item title]);
1127 charcode = NSPageDownFunctionKey;
1131 ITDebugLog(@"Keycode for menu item \"%@\": 122 (F1)", [item title]);
1132 charcode = NSF1FunctionKey;
1136 ITDebugLog(@"Keycode for menu item \"%@\": 123 (Left Arrow)", [item title]);
1137 charcode = NSLeftArrowFunctionKey;
1141 ITDebugLog(@"Keycode for menu item \"%@\": 124 (Right Arrow)", [item title]);
1142 charcode = NSRightArrowFunctionKey;
1146 ITDebugLog(@"Keycode for menu item \"%@\": 125 (Down Arrow)", [item title]);
1147 charcode = NSDownArrowFunctionKey;
1151 ITDebugLog(@"Keycode for menu item \"%@\": 126 (Up Arrow)", [item title]);
1152 charcode = NSUpArrowFunctionKey;
1156 if (charcode == 'a') {
1157 unsigned long state;
1162 kchr = (Ptr) GetScriptVariable(smCurrentScript, smKCHRCache);
1163 keyTrans = KeyTranslate(kchr, code, &state);
1164 charCode = keyTrans;
1165 ITDebugLog(@"Keycode for menu item \"%@\": %i (%c)", [item title], code, charCode);
1166 [item setKeyEquivalent:[NSString stringWithCString:&charCode length:1]];
1167 } else if (charcode != 'b') {
1168 [item setKeyEquivalent:[NSString stringWithCharacters:&charcode length:1]];
1170 ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);
1173 - (BOOL)iPodWithNameAutomaticallyUpdates:(NSString *)name
1175 NSArray *volumes = [[NSWorkspace sharedWorkspace] mountedLocalVolumePaths];
1176 NSEnumerator *volEnum = [volumes objectEnumerator];
1177 NSString *nextVolume;
1178 ITDebugLog(@"Looking for an iPod named %@", name);
1179 while ( (nextVolume = [volEnum nextObject]) ) {
1180 ITDebugLog(@"- %@", nextVolume);
1181 if ([nextVolume rangeOfString:name options:nil /*range:NSMakeRange(0, [name length] - 1)*/].location != NSNotFound) {
1182 NSFileHandle *handle;
1184 NSString *path = [nextVolume stringByAppendingPathComponent:@"/iPod_Control/iTunes/iTunesPrefs"];
1185 if ( ![[NSFileManager defaultManager] fileExistsAtPath:path] ) {
1186 ITDebugLog(@"Error, path isn't an iPod! %@", path);
1189 handle = [NSFileHandle fileHandleForReadingAtPath:path];
1190 ITDebugLog(@"File handle: %@", handle);
1191 [handle seekToFileOffset:10];
1192 data = [handle readDataOfLength:1];
1193 ITDebugLog(@"Data: %@", data);
1194 if ( (*((unsigned char*)[data bytes]) == 0x00) ) {
1195 ITDebugLog(@"iPod is manually updated. %@", path);
1197 } else if ( ( *((unsigned char*)[data bytes]) == 0x01 ) ) {
1198 ITDebugLog(@"iPod is automatically updated. %@", path);
1201 ITDebugLog(@"Error! Value: %h Desc: %@ Path: %@", *((unsigned char*)[data bytes]), [data description], path);