edf7fb398a73d39642e6042d53996d461dc5b573
[MenuTunes.git] / MenuController.m
1 //
2 //  MenuController.m
3 //  MenuTunes
4 //
5 //  Created by Joseph Spiros on Wed Apr 30 2003.
6 //  Copyright (c) 2003 iThink Software. All rights reserved.
7 //
8
9 #import "MenuController.h"
10 #import "MainController.h"
11 #import <ITFoundation/ITDebug.h>
12 #import <ITKit/ITHotKeyCenter.h>
13 #import <ITKit/ITHotKey.h>
14 #import <ITKit/ITKeyCombo.h>
15 #import <ITKit/ITCategory-NSMenu.h>
16
17 @interface MenuController (SubmenuMethods)
18 - (NSMenu *)ratingMenu;
19 - (NSMenu *)upcomingSongsMenu;
20 - (NSMenu *)playlistsMenu;
21 - (NSMenu *)eqMenu;
22 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
23         onItem:(NSMenuItem *)item;
24 @end
25
26 @implementation MenuController
27
28 - (id)init
29 {
30     if ( (self = [super init]) ) {
31         _menuLayout = [[NSMutableArray alloc] initWithCapacity:0];
32     }
33     return self;
34 }
35
36 - (NSMenu *)menu
37 {
38     NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
39     NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
40     NSArray *menuArray = [defaults arrayForKey:@"menu"];
41     NSEnumerator *enumerator = [menuArray objectEnumerator];
42     NSString *nextObject;
43     NSMenuItem *tempItem;
44     NSEnumerator *itemEnum;
45     ITHotKey *hotKey;
46     NSArray *hotKeys = [[ITHotKeyCenter sharedCenter] allHotKeys];
47     
48     //Get the information
49     _currentPlaylist = [currentRemote currentPlaylistIndex];
50     _playingRadio = ([currentRemote currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
51     
52     ITDebugLog(@"Reset menu if required.");
53     
54     //Kill the old submenu items
55     if ( (tempItem = [_currentMenu itemWithTag:1]) ) {
56         ITDebugLog(@"Removing \"Song Rating\" submenu.");
57         [tempItem setSubmenu:nil];
58     }
59     
60     if ( (tempItem = [_currentMenu itemWithTag:2]) ) {
61         ITDebugLog(@"Removing \"Upcoming Songs\" submenu.");
62         [tempItem setSubmenu:nil];
63     }
64     
65     if ( (tempItem = [_currentMenu itemWithTag:3]) ) {
66         ITDebugLog(@"Removing \"Playlists\" submenu.");
67         [tempItem setSubmenu:nil];
68     }
69     
70     if ( (tempItem = [_currentMenu itemWithTag:4]) ) {
71         ITDebugLog(@"Removing \"EQ Presets\" submenu.");
72         [tempItem setSubmenu:nil];
73     }
74     
75     ITDebugLog(@"Begin building menu.");
76     
77     //create our menu
78     while ( (nextObject = [enumerator nextObject]) ) {
79         //Main menu items
80         if ([nextObject isEqualToString:@"playPause"]) {
81             ITDebugLog(@"Add \"Play\"/\"Pause\" menu item.");
82             tempItem = [menu addItemWithTitle:NSLocalizedString(@"play", @"Play")
83                     action:@selector(performMainMenuAction:)
84                     keyEquivalent:@""];
85             [tempItem setTag:MTMenuPlayPauseItem];
86             [tempItem setTarget:self];
87             
88             itemEnum = [hotKeys objectEnumerator];
89             while ( (hotKey = [itemEnum nextObject]) ) {
90                 if ([[hotKey name] isEqualToString:@"PlayPause"]) {
91                     ITKeyCombo *combo = [hotKey keyCombo];
92                     [self setKeyEquivalentForCode:[combo keyCode]
93                           andModifiers:[combo modifiers]
94                           onItem:tempItem];
95                 }
96             }
97             
98             ITDebugLog(@"Set \"Play\"/\"Pause\" menu item's title to correct state.");
99             switch ([currentRemote playerPlayingState]) {
100                 case ITMTRemotePlayerPlaying:
101                     [tempItem setTitle:NSLocalizedString(@"pause", @"Pause")];
102                 break;
103                 case ITMTRemotePlayerRewinding:
104                 case ITMTRemotePlayerForwarding:
105                     [tempItem setTitle:NSLocalizedString(@"resume", @"Resume")];
106                 break;
107                 default:
108                 break;
109             }
110         } else if ([nextObject isEqualToString:@"nextTrack"]) {
111             ITDebugLog(@"Add \"Next Track\" menu item.");
112             tempItem = [menu addItemWithTitle:NSLocalizedString(@"nextTrack", @"Next Track")
113                     action:@selector(performMainMenuAction:)
114                     keyEquivalent:@""];
115             
116             itemEnum = [hotKeys objectEnumerator];
117             while ( (hotKey = [itemEnum nextObject]) ) {
118                 if ([[hotKey name] isEqualToString:@"NextTrack"]) {
119                     ITKeyCombo *combo = [hotKey keyCombo];
120                     [self setKeyEquivalentForCode:[combo keyCode]
121                           andModifiers:[combo modifiers]
122                           onItem:tempItem];
123                 }
124             }
125             
126             if (_currentPlaylist) {
127                 [tempItem setTag:MTMenuNextTrackItem];
128                 [tempItem setTarget:self];
129             }
130         } else if ([nextObject isEqualToString:@"prevTrack"]) {
131             ITDebugLog(@"Add \"Previous Track\" menu item.");
132             tempItem = [menu addItemWithTitle:NSLocalizedString(@"prevTrack", @"Previous Track")
133                     action:@selector(performMainMenuAction:)
134                     keyEquivalent:@""];
135             
136             itemEnum = [hotKeys objectEnumerator];
137             while ( (hotKey = [itemEnum nextObject]) ) {
138                 if ([[hotKey name] isEqualToString:@"PrevTrack"]) {
139                     ITKeyCombo *combo = [hotKey keyCombo];
140                     [self setKeyEquivalentForCode:[combo keyCode]
141                           andModifiers:[combo modifiers]
142                           onItem:tempItem];
143                 }
144             }
145             
146             if (_currentPlaylist) {
147                 [tempItem setTag:MTMenuPreviousTrackItem];
148                 [tempItem setTarget:self];
149             }
150         } else if ([nextObject isEqualToString:@"fastForward"]) {
151             ITDebugLog(@"Add \"Fast Forward\" menu item.");
152             tempItem = [menu addItemWithTitle:NSLocalizedString(@"fastForward", @"Fast Forward")
153                     action:@selector(performMainMenuAction:)
154                     keyEquivalent:@""];
155             if (_currentPlaylist) {
156                 [tempItem setTag:MTMenuFastForwardItem];
157                 [tempItem setTarget:self];
158             }
159         } else if ([nextObject isEqualToString:@"rewind"]) {
160             ITDebugLog(@"Add \"Rewind\" menu item.");
161             tempItem = [menu addItemWithTitle:NSLocalizedString(@"rewind", @"Rewind")
162                     action:@selector(performMainMenuAction:)
163                     keyEquivalent:@""];
164             if (_currentPlaylist) {
165                 [tempItem setTag:MTMenuRewindItem];
166                 [tempItem setTarget:self];
167             }
168         } else if ([nextObject isEqualToString:@"showPlayer"]) {
169             ITDebugLog(@"Add \"Show Player\" menu item.");
170             tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@",
171                             NSLocalizedString(@"show", @"Show"),
172                             [[[MainController sharedController] currentRemote] playerSimpleName]]
173                     action:@selector(performMainMenuAction:)
174                     keyEquivalent:@""];
175             
176             itemEnum = [hotKeys objectEnumerator];
177             while ( (hotKey = [itemEnum nextObject]) ) {
178                 if ([[hotKey name] isEqualToString:@"ShowPlayer"]) {
179                     ITKeyCombo *combo = [hotKey keyCombo];
180                     [self setKeyEquivalentForCode:[combo keyCode]
181                           andModifiers:[combo modifiers]
182                           onItem:tempItem];
183                 }
184             }
185             
186             [tempItem setTarget:self];
187             [tempItem setTag:MTMenuShowPlayerItem];
188         } else if ([nextObject isEqualToString:@"preferences"]) {
189             ITDebugLog(@"Add \"Preferences...\" menu item.");
190             tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...")
191                     action:@selector(performMainMenuAction:)
192                     keyEquivalent:@""];
193             [tempItem setTag:MTMenuPreferencesItem];
194             [tempItem setTarget:self];
195         } else if ([nextObject isEqualToString:@"quit"]) {
196             ITDebugLog(@"Add \"Quit\" menu item.");
197             if ([[MainController sharedController] blingBling] == NO) {
198                 ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
199                 tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
200                 [tempItem setTag:MTMenuRegisterItem];
201                 [tempItem setTarget:self];
202             }
203             tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit")
204                     action:@selector(performMainMenuAction:)
205                     keyEquivalent:@""];
206             [tempItem setTag:MTMenuQuitItem];
207             [tempItem setTarget:self];
208         } else if ([nextObject isEqualToString:@"trackInfo"]) {
209             ITDebugLog(@"Check to see if a Track is playing...");
210             //Handle playing radio too
211             if (_currentPlaylist) {
212                 NSString *title = [currentRemote currentSongTitle];
213                 ITDebugLog(@"A Track is Playing, Add \"Track Info\" menu items.");
214                 ITDebugLog(@"Add \"Now Playing\" menu item.");
215                 [menu addItemWithTitle:NSLocalizedString(@"nowPlaying", @"Now Playing") action:NULL keyEquivalent:@""];
216                 
217                 if ([title length] > 0) {
218                     ITDebugLog(@"Add Track Title (\"%@\") menu item.", title);
219                     [menu indentItem:
220                         [menu addItemWithTitle:title action:nil keyEquivalent:@""]];
221                 }
222                 
223                 if (!_playingRadio) {
224                     if ([defaults boolForKey:@"showAlbum"]) {
225                         NSString *curAlbum = [currentRemote currentSongAlbum];
226                         ITDebugLog(@"Add Track Album (\"%@\") menu item.", curAlbum);
227                         if ( curAlbum ) {
228                             [menu indentItem:
229                                 [menu addItemWithTitle:curAlbum action:nil keyEquivalent:@""]];
230                         }
231                     }
232                     
233                     if ([defaults boolForKey:@"showArtist"]) {
234                         NSString *curArtist = [currentRemote currentSongArtist];
235                         ITDebugLog(@"Add Track Artist (\"%@\") menu item.", curArtist);
236                         if ( curArtist ) {
237                             [menu indentItem:
238                                 [menu addItemWithTitle:curArtist action:nil keyEquivalent:@""]];
239                         }
240                     }
241                     
242                     if ([defaults boolForKey:@"showTrackNumber"]) {
243                         int track = [currentRemote currentSongTrack];
244                         ITDebugLog(@"Add Track Number (\"Track %i\") menu item.", track);
245                         if ( track ) {
246                             [menu indentItem:
247                                 [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %i", NSLocalizedString(@"track", @"Track"), track] action:nil keyEquivalent:@""]];
248                         }
249                     }
250                     
251                     if ([defaults boolForKey:@"showTime"]) {
252                         int left = [[currentRemote currentSongElapsed] intValue];
253                         NSString *elapsed = [NSString stringWithFormat:@"%i:%02i", left / 60, left % 60];
254                         ITDebugLog(@"Add Track Elapsed (\"%@/%@\") menu item.", elapsed, [currentRemote currentSongLength]);
255                         [menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"%@/%@", elapsed, [currentRemote currentSongLength]] action:nil keyEquivalent:@""]];
256                     }
257                     
258                     if ([defaults boolForKey:@"showTrackRating"]) {
259                         NSString *string = nil;
260                         switch ((int)([currentRemote currentSongRating] * 5)) {
261                             case 0:
262                                 string = [NSString stringWithUTF8String:"☆☆☆☆☆"];
263                             break;
264                             case 1:
265                                 string = [NSString stringWithUTF8String:"★☆☆☆☆"];
266                             break;
267                             case 2:
268                                 string = [NSString stringWithUTF8String:"★★☆☆☆"];
269                             break;
270                             case 3:
271                                 string = [NSString stringWithUTF8String:"★★★☆☆"];
272                             break;
273                             case 4:
274                                 string = [NSString stringWithUTF8String:"★★★★☆"];
275                             break;
276                             case 5:
277                                 string = [NSString stringWithUTF8String:"★★★★★"];
278                             break;
279                         }
280                         ITDebugLog(@"Add Track Rating (\"%@\") menu item.", string);
281                         [menu indentItem:[menu addItemWithTitle:string action:nil keyEquivalent:@""]];
282                     }
283                 }
284             } else {
285                 ITDebugLog(@"No Track is Playing, Add \"No Song\" menu item.");
286                 [menu addItemWithTitle:NSLocalizedString(@"noSong", @"No Song") action:NULL keyEquivalent:@""];
287             }
288         } else if ([nextObject isEqualToString:@"separator"]) {
289             ITDebugLog(@"Add a separator menu item.");
290             [menu addItem:[NSMenuItem separatorItem]];
291         //Submenu items
292         } else if ([nextObject isEqualToString:@"playlists"]) {
293             ITDebugLog(@"Add \"Playlists\" submenu.");
294             tempItem = [menu addItemWithTitle:NSLocalizedString(@"playlists", @"Playlists")
295                     action:nil
296                     keyEquivalent:@""];
297             [tempItem setSubmenu:_playlistsMenu];
298             [tempItem setTag:3];
299         } else if ([nextObject isEqualToString:@"eqPresets"]) {
300             ITDebugLog(@"Add \"EQ Presets\" submenu.");
301             tempItem = [menu addItemWithTitle:NSLocalizedString(@"eqPresets", @"EQ Presets")
302                     action:nil
303                     keyEquivalent:@""];
304             [tempItem setSubmenu:_eqMenu];
305             [tempItem setTag:4];
306             
307             itemEnum = [[_eqMenu itemArray] objectEnumerator];
308             while ( (tempItem = [itemEnum nextObject]) ) {
309                 [tempItem setState:NSOffState];
310             }
311             [[_eqMenu itemAtIndex:([currentRemote currentEQPresetIndex] - 1)] setState:NSOnState];
312         }
313         
314         if (!_playingRadio) {
315             if ([nextObject isEqualToString:@"songRating"]) {
316                 ITDebugLog(@"Add \"Song Rating\" submenu.");
317                 tempItem = [menu addItemWithTitle:NSLocalizedString(@"songRating", @"Song Rating")
318                         action:nil
319                         keyEquivalent:@""];
320                 [tempItem setSubmenu:_ratingMenu];
321                 [tempItem setTag:1];
322                 if (_playingRadio || !_currentPlaylist) {
323                     [tempItem setEnabled:NO];
324                 }
325                 
326                 itemEnum = [[_ratingMenu itemArray] objectEnumerator];
327                 while ( (tempItem = [itemEnum nextObject]) ) {
328                     [tempItem setState:NSOffState];
329                 }
330                 
331                 [[_ratingMenu itemAtIndex:([currentRemote currentSongRating] * 5)] setState:NSOnState];
332             } else if ([nextObject isEqualToString:@"upcomingSongs"]) {
333                 ITDebugLog(@"Add \"Upcoming Songs\" submenu.");
334                 tempItem = [menu addItemWithTitle:NSLocalizedString(@"upcomingSongs", @"Upcoming Songs")
335                         action:nil
336                         keyEquivalent:@""];
337                 [tempItem setSubmenu:_upcomingSongsMenu];
338                 [tempItem setTag:2];
339                 if (_playingRadio || !_currentPlaylist) {
340                     [tempItem setEnabled:NO];
341                 }
342             }
343         }
344     }
345     ITDebugLog(@"Finished building menu.");
346     [_currentMenu release];
347     _currentMenu = menu;
348     return _currentMenu;
349 }
350
351 - (NSMenu *)menuForNoPlayer
352 {
353     NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
354     NSMenuItem *tempItem;
355     ITDebugLog(@"Creating menu for when player isn't running.");
356     ITDebugLog(@"Add \"Open %@\" menu item.", [[[MainController sharedController] currentRemote] playerSimpleName]);
357     tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"open", @"Open"), [[[MainController sharedController] currentRemote] playerSimpleName]] action:@selector(performMainMenuAction:) keyEquivalent:@""];
358     [tempItem setTag:MTMenuShowPlayerItem];
359     [tempItem setTarget:self];
360     ITDebugLog(@"Add a separator menu item.");
361     [menu addItem:[NSMenuItem separatorItem]];
362     ITDebugLog(@"Add \"Preferences...\" menu item.");
363     tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
364     [tempItem setTag:MTMenuPreferencesItem];
365     [tempItem setTarget:self];
366     if ([[MainController sharedController] blingBling] == NO) {
367         ITDebugLog(@"Add \"Register MenuTunes...\" menu item.");
368         tempItem = [menu addItemWithTitle:NSLocalizedString(@"register", @"Register MenuTunes...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
369         [tempItem setTag:MTMenuRegisterItem];
370         [tempItem setTarget:self];
371     }
372     ITDebugLog(@"Add \"Quit\" menu item.");
373     tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit") action:@selector(performMainMenuAction:) keyEquivalent:@""];
374     [tempItem setTag:MTMenuQuitItem];
375     [tempItem setTarget:self];
376     return [menu autorelease];
377 }
378
379 - (void)rebuildSubmenus
380 {
381     ITDebugLog(@"Rebuilding all of the submenus.");
382     
383     currentRemote = [[MainController sharedController] currentRemote];
384     _currentPlaylist = [currentRemote currentPlaylistIndex];
385     _currentTrack = [currentRemote currentSongIndex];
386     _playingRadio = ([currentRemote currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
387     
388     [_ratingMenu release];
389     [_upcomingSongsMenu release];
390     [_playlistsMenu release];
391     [_eqMenu release];
392     ITDebugLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
393     _ratingMenu = [self ratingMenu];
394     ITDebugLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
395     _upcomingSongsMenu = [self upcomingSongsMenu];
396     ITDebugLog(@"Beginning Rebuild of \"Playlists\" submenu.");
397     _playlistsMenu = [self playlistsMenu];
398     ITDebugLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
399     _eqMenu = [self eqMenu];
400     ITDebugLog(@"Done rebuilding all of the submenus.");
401 }
402
403 - (NSMenu *)ratingMenu
404 {
405     NSMenu *ratingMenu = [[NSMenu alloc] initWithTitle:@""];
406     NSEnumerator *itemEnum;
407     id  anItem;
408     int itemTag = 0;
409     SEL itemSelector = @selector(performRatingMenuAction:);
410     
411     ITDebugLog(@"Building \"Song Rating\" menu.");
412     
413     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"☆☆☆☆☆"] action:nil keyEquivalent:@""];
414     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★☆☆☆☆"] action:nil keyEquivalent:@""];
415     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★☆☆☆"] action:nil keyEquivalent:@""];
416     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★☆☆"] action:nil keyEquivalent:@""];
417     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★☆"] action:nil keyEquivalent:@""];
418     [ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★★"] action:nil keyEquivalent:@""];
419     
420     itemEnum = [[ratingMenu itemArray] objectEnumerator];
421     while ( (anItem = [itemEnum nextObject]) ) {
422         ITDebugLog(@"Setting up \"%@\" menu item.", [anItem title]);
423         [anItem setAction:itemSelector];
424         [anItem setTarget:self];
425         [anItem setTag:itemTag];
426         itemTag += 20;
427     }
428     ITDebugLog(@"Done Building \"Song Rating\" menu.");
429     return ratingMenu;
430 }
431
432 - (NSMenu *)upcomingSongsMenu
433 {
434     NSMenu *upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
435     int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:_currentPlaylist];
436     int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
437     
438     ITDebugLog(@"Building \"Upcoming Songs\" menu.");
439     
440     if (_currentPlaylist && !_playingRadio) {
441         if (numSongs > 0) {
442             int i;
443
444             for (i = _currentTrack + 1; i <= _currentTrack + numSongsInAdvance; i++) {
445                 if (i <= numSongs) {
446                     NSString *curSong = [currentRemote songTitleAtIndex:i];
447                     NSMenuItem *songItem;
448                     ITDebugLog(@"Adding song: %@", curSong);
449                     songItem = [upcomingSongsMenu addItemWithTitle:curSong action:@selector(performUpcomingSongsMenuAction:) keyEquivalent:@""];
450                     [songItem setTag:i];
451                     [songItem setTarget:self];
452                 } else {
453                     break;
454                 }
455             }
456         }
457     }
458     ITDebugLog(@"Done Building \"Upcoming Songs\" menu.");
459     return upcomingSongsMenu;
460 }
461
462 - (NSMenu *)playlistsMenu
463 {
464     NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
465     NSArray *playlists = [currentRemote playlists];
466     NSMenuItem *tempItem;
467     int i;
468     
469     ITDebugLog(@"Building \"Playlists\" menu.");
470     
471     for (i = 0; i < [playlists count]; i++) {
472         NSString *curPlaylist = [playlists objectAtIndex:i];
473         ITDebugLog(@"Adding playlist: %@", curPlaylist);
474         tempItem = [playlistsMenu addItemWithTitle:curPlaylist action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
475         [tempItem setTag:i + 1];
476         [tempItem setTarget:self];
477     }
478     
479     if (!_playingRadio && _currentPlaylist) {
480         [[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
481     }
482     ITDebugLog(@"Done Building \"Playlists\" menu");
483     return playlistsMenu;
484 }
485
486 - (NSMenu *)eqMenu
487 {
488     NSMenu *eqMenu = [[NSMenu alloc] initWithTitle:@""];
489     NSArray *eqPresets = [currentRemote eqPresets];
490     NSMenuItem *tempItem;
491     int i;
492     
493     ITDebugLog(@"Building \"EQ Presets\" menu.");
494     
495     for (i = 0; i < [eqPresets count]; i++) {
496         NSString *name;
497            if ( ( name = [eqPresets objectAtIndex:i] ) ) {
498             ITDebugLog(@"Adding EQ Preset: %@", name);
499             tempItem = [eqMenu addItemWithTitle:name
500                     action:@selector(performEqualizerMenuAction:)
501                     keyEquivalent:@""];
502             [tempItem setTag:i];
503             [tempItem setTarget:self];
504            }
505     }
506     ITDebugLog(@"Done Building \"EQ Presets\" menu");
507     return eqMenu;
508 }
509
510 - (void)performMainMenuAction:(id)sender
511 {
512     switch ( [sender tag] )
513     {
514         case MTMenuPlayPauseItem:
515             ITDebugLog(@"Performing Menu Action: Play/Pause");
516             [[MainController sharedController] playPause];
517             break;
518         case MTMenuFastForwardItem:
519             ITDebugLog(@"Performing Menu Action: Fast Forward");
520             [[MainController sharedController] fastForward];
521             break;
522         case MTMenuRewindItem:
523             ITDebugLog(@"Performing Menu Action: Rewind");
524             [[MainController sharedController] rewind];
525             break;
526         case MTMenuPreviousTrackItem:
527             ITDebugLog(@"Performing Menu Action: Previous Track");
528             [[MainController sharedController] prevSong];
529             break;
530         case MTMenuNextTrackItem:
531             ITDebugLog(@"Performing Menu Action: Next Track");
532             [[MainController sharedController] nextSong];
533             break;
534         case MTMenuShowPlayerItem:
535             ITDebugLog(@"Performing Menu Action: Show Main Interface");
536             [[MainController sharedController] showPlayer];
537             break;
538         case MTMenuPreferencesItem:
539             ITDebugLog(@"Performing Menu Action: Preferences...");
540             [[MainController sharedController] showPreferences];
541             break;
542         case MTMenuQuitItem:
543             ITDebugLog(@"Performing Menu Action: Quit");
544             [[MainController sharedController] quitMenuTunes];
545             break;
546         case MTMenuRegisterItem:
547             ITDebugLog(@"Performing Menu Action: Register");
548             [[MainController sharedController] blingNow];
549             break;
550         default:
551             ITDebugLog(@"Performing Menu Action: Unimplemented Menu Item OR Child-bearing Menu Item");
552             break;
553     }
554 }
555
556 - (void)performRatingMenuAction:(id)sender
557 {
558     ITDebugLog(@"Rating action selected on item with tag %i", [sender tag]);
559     [[MainController sharedController] selectSongRating:[sender tag]];
560 }
561
562 - (void)performPlaylistMenuAction:(id)sender
563 {
564     ITDebugLog(@"Playlist action selected on item with tag %i", [sender tag]);
565     [[MainController sharedController] selectPlaylistAtIndex:[sender tag]];
566 }
567
568 - (void)performEqualizerMenuAction:(id)sender
569 {
570     ITDebugLog(@"EQ action selected on item with tag %i", [sender tag]);
571     [[MainController sharedController] selectEQPresetAtIndex:[sender tag]];
572 }
573
574 - (void)performUpcomingSongsMenuAction:(id)sender
575 {
576     ITDebugLog(@"Song action selected on item with tag %i", [sender tag]);
577     [[MainController sharedController] selectSongAtIndex:[sender tag]];
578 }
579
580 - (void)updateMenu
581 {
582     ITDebugLog(@"Update Menu");
583     [_currentMenu update];
584 }
585
586 - (BOOL)validateMenuItem:(id <NSMenuItem>)menuItem
587 {
588     return YES;
589 }
590
591 //This is never used I know, keep it though
592 - (NSString *)systemUIColor
593 {
594     NSDictionary *tmpDict;
595     NSNumber *tmpNumber;
596     if ( (tmpDict = [NSDictionary dictionaryWithContentsOfFile:[@"~/Library/Preferences/.GlobalPreferences.plist" stringByExpandingTildeInPath]]) ) {
597         if ( (tmpNumber = [tmpDict objectForKey:@"AppleAquaColorVariant"]) ) {
598             if ( ([tmpNumber intValue] == 1) ) {
599                 return @"Aqua";
600             } else {
601                 return @"Graphite";
602             }
603         } else {
604             return @"Aqua";
605         }
606     } else {
607         return @"Aqua";
608     }
609 }
610
611 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
612         onItem:(NSMenuItem *)item
613 {
614     unichar charcode = 'a';
615     int i;
616     long cocoaModifiers = 0;
617     static long carbonToCocoa[6][2] = 
618     {
619         { cmdKey, NSCommandKeyMask },
620         { optionKey, NSAlternateKeyMask },
621         { controlKey, NSControlKeyMask },
622         { shiftKey, NSShiftKeyMask },
623     };
624     
625     ITDebugLog(@"Setting Key Equivelent on menu item \"%@\".", [item title]);
626     
627     for (i = 0; i < 6; i++) {
628         if (modifiers & carbonToCocoa[i][0]) {
629             cocoaModifiers += carbonToCocoa[i][1];
630         }
631     }
632     [item setKeyEquivalentModifierMask:cocoaModifiers];
633     
634     //Missing key combos for some keys. Must find them later.
635     switch (code)
636     {
637         case 36:
638             ITDebugLog(@"Keycode for menu item \"%@\": 36 (Return)", [item title]);
639             charcode = '\r';
640         break;
641         
642         case 48:
643             ITDebugLog(@"Keycode for menu item \"%@\": 48 (Tab)", [item title]);
644             charcode = '\t';
645         break;
646         
647         //Space -- ARGH!
648         case 49:
649         {
650             ITDebugLog(@"Keycode for menu item \"%@\": 49 (Space)", [item title]);
651             // Haven't tested this, though it should work.
652             // This doesn't work. :'(
653             //unichar buffer;
654             //[[NSString stringWithString:@"Space"] getCharacters:&buffer];
655             //charcode = buffer;
656             /*MenuRef menuRef = _NSGetCarbonMenu([item menu]);
657             ITDebugLog(@"%@", menuRef);
658             SetMenuItemCommandKey(menuRef, 0, NO, 49);
659             SetMenuItemModifiers(menuRef, 0, kMenuNoCommandModifier);
660             SetMenuItemKeyGlyph(menuRef, 0, kMenuBlankGlyph);
661             charcode = 'b';*/
662             unichar buffer;
663             [[NSString stringWithString:@"_"] getCharacters:&buffer]; // this will have to do for now :(
664             charcode = buffer;
665         }
666         break;
667         
668         case 51:
669             ITDebugLog(@"Keycode for menu item \"%@\": 51 (Delete)", [item title]);
670             charcode = NSDeleteFunctionKey;
671         break;
672         
673         case 53:
674             ITDebugLog(@"Keycode for menu item \"%@\": 53 (Escape)", [item title]);
675             charcode = '\e';
676         break;
677         
678         case 71:
679             ITDebugLog(@"Keycode for menu item \"%@\": 71 (Escape)", [item title]);
680             charcode = '\e';
681         break;
682         
683         case 76:
684             ITDebugLog(@"Keycode for menu item \"%@\": 76 (Return)", [item title]);
685             charcode = '\r';
686         break;
687         
688         case 96:
689             ITDebugLog(@"Keycode for menu item \"%@\": 96 (F5)", [item title]);
690             charcode = NSF5FunctionKey;
691         break;
692         
693         case 97:
694             ITDebugLog(@"Keycode for menu item \"%@\": 97 (F6)", [item title]);
695             charcode = NSF6FunctionKey;
696         break;
697         
698         case 98:
699             ITDebugLog(@"Keycode for menu item \"%@\": 98 (F7)", [item title]);
700             charcode = NSF7FunctionKey;
701         break;
702         
703         case 99:
704             ITDebugLog(@"Keycode for menu item \"%@\": 99 (F3)", [item title]);
705             charcode = NSF3FunctionKey;
706         break;
707         
708         case 100:
709             ITDebugLog(@"Keycode for menu item \"%@\": 100 (F8)", [item title]);
710             charcode = NSF8FunctionKey;
711         break;
712         
713         case 101:
714             ITDebugLog(@"Keycode for menu item \"%@\": 101 (F9)", [item title]);
715             charcode = NSF9FunctionKey;
716         break;
717         
718         case 103:
719             ITDebugLog(@"Keycode for menu item \"%@\": 103 (F11)", [item title]);
720             charcode = NSF11FunctionKey;
721         break;
722         
723         case 105:
724             ITDebugLog(@"Keycode for menu item \"%@\": 105 (F3)", [item title]);
725             charcode = NSF3FunctionKey;
726         break;
727         
728         case 107:
729             ITDebugLog(@"Keycode for menu item \"%@\": 107 (F14)", [item title]);
730             charcode = NSF14FunctionKey;
731         break;
732         
733         case 109:
734             ITDebugLog(@"Keycode for menu item \"%@\": 109 (F10)", [item title]);
735             charcode = NSF10FunctionKey;
736         break;
737         
738         case 111:
739             ITDebugLog(@"Keycode for menu item \"%@\": 111 (F12)", [item title]);
740             charcode = NSF12FunctionKey;
741         break;
742         
743         case 113:
744             ITDebugLog(@"Keycode for menu item \"%@\": 113 (F13)", [item title]);
745             charcode = NSF13FunctionKey;
746         break;
747         
748         case 114:
749             ITDebugLog(@"Keycode for menu item \"%@\": 114 (Insert)", [item title]);
750             charcode = NSInsertFunctionKey;
751         break;
752         
753         case 115:
754             ITDebugLog(@"Keycode for menu item \"%@\": 115 (Home)", [item title]);
755             charcode = NSHomeFunctionKey;
756         break;
757         
758         case 116:
759             ITDebugLog(@"Keycode for menu item \"%@\": 116 (PgUp)", [item title]);
760             charcode = NSPageUpFunctionKey;
761         break;
762         
763         case 117:
764             ITDebugLog(@"Keycode for menu item \"%@\": 117 (Delete)", [item title]);
765             charcode = NSDeleteFunctionKey;
766         break;
767         
768         case 118:
769             ITDebugLog(@"Keycode for menu item \"%@\": 118 (F4)", [item title]);
770             charcode = NSF4FunctionKey;
771         break;
772         
773         case 119:
774             ITDebugLog(@"Keycode for menu item \"%@\": 119 (End)", [item title]);
775             charcode = NSEndFunctionKey;
776         break;
777         
778         case 120:
779             ITDebugLog(@"Keycode for menu item \"%@\": 120 (F2)", [item title]);
780             charcode = NSF2FunctionKey;
781         break;
782         
783         case 121:
784             ITDebugLog(@"Keycode for menu item \"%@\": 121 (PgDown)", [item title]);
785             charcode = NSPageDownFunctionKey;
786         break;
787         
788         case 122:
789             ITDebugLog(@"Keycode for menu item \"%@\": 122 (F1)", [item title]);
790             charcode = NSF1FunctionKey;
791         break;
792         
793         case 123:
794             ITDebugLog(@"Keycode for menu item \"%@\": 123 (Left Arrow)", [item title]);
795             charcode = NSLeftArrowFunctionKey;
796         break;
797         
798         case 124:
799             ITDebugLog(@"Keycode for menu item \"%@\": 124 (Right Arrow)", [item title]);
800             charcode = NSRightArrowFunctionKey;
801         break;
802         
803         case 125:
804             ITDebugLog(@"Keycode for menu item \"%@\": 125 (Down Arrow)", [item title]);
805             charcode = NSDownArrowFunctionKey;
806         break;
807         
808         case 126:
809             ITDebugLog(@"Keycode for menu item \"%@\": 126 (Up Arrow)", [item title]);
810             charcode = NSUpArrowFunctionKey;
811         break;
812     }
813     
814     if (charcode == 'a') {
815         unsigned long state;
816         long keyTrans;
817         char charCode;
818         Ptr kchr;
819         state = 0;
820         kchr = (Ptr) GetScriptVariable(smCurrentScript, smKCHRCache);
821         keyTrans = KeyTranslate(kchr, code, &state);
822         charCode = keyTrans;
823         ITDebugLog(@"Keycode for menu item \"%@\": %i (%c)", [item title], code, charCode);
824         [item setKeyEquivalent:[NSString stringWithCString:&charCode length:1]];
825     } else if (charcode != 'b') {
826         [item setKeyEquivalent:[NSString stringWithCharacters:&charcode length:1]];
827     }
828     ITDebugLog(@"Done setting key equivalent on menu item: %@", [item title]);
829 }
830
831 @end