2 #import "PreferencesController.h"
3 #import "HotKeyCenter.h"
4 #import "StatusWindow.h"
6 @interface MenuTunes(Private)
7 - (ITMTRemote *)loadRemote;
9 - (void)rebuildUpcomingSongsMenu;
10 - (void)rebuildPlaylistMenu;
11 - (void)rebuildEQPresetsMenu;
14 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
15 onItem:(NSMenuItem *)item;
19 @implementation MenuTunes
21 /*************************************************************************/
23 #pragma mark INITIALIZATION METHODS
24 /*************************************************************************/
28 if ( ( self = [super init] ) ) {
29 remoteArray = [[NSMutableArray alloc] initWithCapacity:1];
30 statusWindow = [StatusWindow sharedWindow];
35 - (void)applicationDidFinishLaunching:(NSNotification *)note
37 currentRemote = [self loadRemote];
38 [currentRemote begin];
40 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(remotePlayerTerminated:) name:@"ITMTRemoteAppDidTerminateNotification" object:nil];
41 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(remotePlayerLaunched:) name:@"ITMTRemoteAppDidLaunchNotification" object:nil];
43 [self registerDefaultsIfNeeded];
45 menu = [[NSMenu alloc] initWithTitle:@""];
47 if ( ( [currentRemote playerRunningStatus] == ITMTRemotePlayerRunning ) ) {
48 [self remotePlayerLaunched:nil];
50 [self remotePlayerTerminated:nil];
53 statusItem = [[ITStatusItem alloc] initWithStatusBar:[NSStatusBar systemStatusBar]
54 withLength:NSSquareStatusItemLength];
56 [statusItem setImage:[NSImage imageNamed:@"menu"]];
57 [statusItem setAlternateImage:[NSImage imageNamed:@"selected_image"]];
58 [statusItem setMenu:menu];
59 // Below line of code is for creating builds for Beta Testers
60 // [statusItem setToolTip:@[NSString stringWithFormat:@"This Nontransferable Beta (Built on %s) of iThink Software's MenuTunes is Registered to: Beta Tester (betatester@somedomain.com).",__DATE__]];
63 - (ITMTRemote *)loadRemote
65 NSString *folderPath = [[NSBundle mainBundle] builtInPlugInsPath];
68 NSArray *bundlePathList = [NSBundle pathsForResourcesOfType:@"remote" inDirectory:folderPath];
69 NSEnumerator *enumerator = [bundlePathList objectEnumerator];
72 while ( (bundlePath = [enumerator nextObject]) ) {
73 NSBundle* remoteBundle = [NSBundle bundleWithPath:bundlePath];
76 Class remoteClass = [remoteBundle principalClass];
78 if ([remoteClass conformsToProtocol:@protocol(ITMTRemote)] &&
79 [remoteClass isKindOfClass:[NSObject class]]) {
81 id remote = [remoteClass remote];
82 [remoteArray addObject:remote];
87 // if ( [remoteArray count] > 0 ) { // UNCOMMENT WHEN WE HAVE > 1 PLUGIN
88 // if ( [remoteArray count] > 1 ) {
89 // [remoteArray sortUsingSelector:@selector(sortAlpha:)];
91 // [self loadModuleAccessUI]; //Comment out this line to disable remote visibility
94 // NSLog(@"%@", [remoteArray objectAtIndex:0]); //DEBUG
95 return [remoteArray objectAtIndex:0];
99 /*************************************************************************/
101 #pragma mark INSTANCE METHODS
102 /*************************************************************************/
104 - (void)registerDefaultsIfNeeded
106 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
107 if (![defaults objectForKey:@"menu"]) {
109 NSMutableDictionary *loginwindow;
110 NSMutableArray *loginarray;
114 [NSArray arrayWithObjects:
128 @"Current Track Info",
129 nil] forKey:@"menu"];
131 [defaults synchronize];
132 loginwindow = [[defaults persistentDomainForName:@"loginwindow"] mutableCopy];
133 loginarray = [loginwindow objectForKey:@"AutoLaunchedApplicationDictionary"];
135 for (i = 0; i < [loginarray count]; i++) {
136 NSDictionary *tempDict = [loginarray objectAtIndex:i];
137 if ([[[tempDict objectForKey:@"Path"] lastPathComponent] isEqualToString:[[[NSBundle mainBundle] bundlePath] lastPathComponent]]) {
144 //We must fix it so it is no longer suxy
146 if (NSRunInformationalAlertPanel(@"Auto-launch MenuTunes", @"Would you like MenuTunes to automatically launch at login?", @"Yes", @"No", nil) == NSOKButton) {
147 AEDesc scriptDesc, resultDesc;
148 NSString *script = [NSString stringWithFormat:@"tell application \"System Events\"\nmake new login item at end of login items with properties {path:\"%@\", kind:\"APPLICATION\"}\nend tell", [[NSBundle mainBundle] bundlePath]];
149 ComponentInstance asComponent = OpenDefaultComponent(kOSAComponentType, kAppleScriptSubtype);
151 AECreateDesc(typeChar, [script cString], [script cStringLength],
154 OSADoScript(asComponent, &scriptDesc, kOSANullScript, typeChar, kOSAModeCanInteract, &resultDesc);
156 AEDisposeDesc(&scriptDesc);
157 AEDisposeDesc(&resultDesc);
159 CloseComponent(asComponent);
164 if (![defaults integerForKey:@"SongsInAdvance"])
166 [defaults setInteger:5 forKey:@"SongsInAdvance"];
169 if (![defaults objectForKey:@"showName"]) {
170 [defaults setBool:YES forKey:@"showName"];
173 if (![defaults objectForKey:@"showArtist"]) {
174 [defaults setBool:YES forKey:@"showArtist"];
177 if (![defaults objectForKey:@"showAlbum"]) {
178 [defaults setBool:NO forKey:@"showAlbum"];
181 if (![defaults objectForKey:@"showTime"]) {
182 [defaults setBool:NO forKey:@"showTime"];
186 //Recreate the status item menu
189 NSArray *myMenu = [[NSUserDefaults standardUserDefaults] arrayForKey:@"menu"];
194 lastPlaylistIndex = -1;
195 didHaveAlbumName = ([[currentRemote currentSongAlbum] length] > 0);
196 didHaveArtistName = ([[currentRemote currentSongArtist] length] > 0);
198 while ([menu numberOfItems] > 0) {
199 [menu removeItemAtIndex:0];
202 playPauseMenuItem = nil;
203 upcomingSongsItem = nil;
204 songRatingMenuItem = nil;
206 [playlistMenu release];
212 for (i = 0; i < [myMenu count]; i++) {
213 NSString *item = [myMenu objectAtIndex:i];
214 if ([item isEqualToString:@"Play/Pause"]) {
215 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"PlayPause"];
216 playPauseMenuItem = [menu addItemWithTitle:@"Play"
217 action:@selector(playPause:)
219 [playPauseMenuItem setTarget:self];
222 [self setKeyEquivalentForCode:[tempCombo keyCode]
223 andModifiers:[tempCombo modifiers] onItem:playPauseMenuItem];
226 } else if ([item isEqualToString:@"Next Track"]) {
227 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"NextTrack"];
228 NSMenuItem *nextTrack = [menu addItemWithTitle:@"Next Track"
229 action:@selector(nextSong:)
232 [nextTrack setTarget:self];
234 [self setKeyEquivalentForCode:[tempCombo keyCode]
235 andModifiers:[tempCombo modifiers] onItem:nextTrack];
238 } else if ([item isEqualToString:@"Previous Track"]) {
239 KeyCombo *tempCombo = [[NSUserDefaults standardUserDefaults] keyComboForKey:@"PrevTrack"];
240 NSMenuItem *prevTrack = [menu addItemWithTitle:@"Previous Track"
241 action:@selector(prevSong:)
244 [prevTrack setTarget:self];
246 [self setKeyEquivalentForCode:[tempCombo keyCode]
247 andModifiers:[tempCombo modifiers] onItem:prevTrack];
250 } else if ([item isEqualToString:@"Fast Forward"]) {
251 [[menu addItemWithTitle:@"Fast Forward"
252 action:@selector(fastForward:)
253 keyEquivalent:@""] setTarget:self];
254 } else if ([item isEqualToString:@"Rewind"]) {
255 [[menu addItemWithTitle:@"Rewind"
256 action:@selector(rewind:)
257 keyEquivalent:@""] setTarget:self];
258 } else if ([item isEqualToString:@"Upcoming Songs"]) {
259 upcomingSongsItem = [menu addItemWithTitle:@"Upcoming Songs"
262 } else if ([item isEqualToString:@"Playlists"]) {
263 playlistItem = [menu addItemWithTitle:@"Playlists"
266 } else if ([item isEqualToString:@"EQ Presets"]) {
267 eqItem = [menu addItemWithTitle:@"EQ Presets"
270 } else if ([item isEqualToString:@"PreferencesÉ"]) {
271 [[menu addItemWithTitle:@"PreferencesÉ"
272 action:@selector(showPreferences:)
273 keyEquivalent:@""] setTarget:self];
274 } else if ([item isEqualToString:@"Quit"]) {
275 [[menu addItemWithTitle:@"Quit"
276 action:@selector(quitMenuTunes:)
277 keyEquivalent:@""] setTarget:self];
278 } else if ([item isEqualToString:@"Current Track Info"]) {
279 trackInfoIndex = [menu numberOfItems];
280 [menu addItemWithTitle:@"No Song"
283 } else if ([item isEqualToString:@"Song Rating"]) {
284 songRatingMenuItem = [menu addItemWithTitle:@"Song Rating"
287 } else if ([item isEqualToString:@"<separator>"]) {
288 [menu addItem:[NSMenuItem separatorItem]];
292 [self timerUpdate]; //Updates dynamic info in the menu
298 //Updates the menu with current player state, song, and upcoming songs
301 NSMenuItem *menuItem;
302 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
304 if ( ( isAppRunning == ITMTRemotePlayerNotRunning ) ) {
308 if (upcomingSongsItem) {
309 [self rebuildUpcomingSongsMenu];
313 [self rebuildPlaylistMenu];
317 [self rebuildEQPresetsMenu];
319 if (trackInfoIndex > -1) {
320 NSString *curSongName, *curAlbumName = @"", *curArtistName = @"";
321 curSongName = [currentRemote currentSongTitle];
323 if ([defaults boolForKey:@"showAlbum"]) {
324 curAlbumName = [currentRemote currentSongAlbum];
327 if ([defaults boolForKey:@"showArtist"]) {
328 curArtistName = [currentRemote currentSongArtist];
331 if ([curSongName length] > 0) {
332 int index = [menu indexOfItemWithTitle:@"Now Playing"];
334 if ([defaults boolForKey:@"showName"]) {
335 [menu removeItemAtIndex:index + 1];
337 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
338 [menu removeItemAtIndex:index + 1];
340 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
341 [menu removeItemAtIndex:index + 1];
343 if ([defaults boolForKey:@"showTime"]) {
344 [menu removeItemAtIndex:index + 1];
348 if (!isPlayingRadio) {
349 if ([defaults boolForKey:@"showTime"]) {
350 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", [currentRemote currentSongLength]]
353 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
357 if ([curArtistName length] > 0) {
358 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curArtistName]
361 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
365 if ([curAlbumName length] > 0) {
366 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curAlbumName]
369 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
373 if (songRatingMenuItem) {
374 int rating = (int)[currentRemote currentSongRating] * 10;
377 for (i = 0; i < 5; i++) {
378 [[ratingMenu itemAtIndex:i] setState:NSOffState];
383 [[ratingMenu itemAtIndex:5] setState:NSOnState];
386 [[ratingMenu itemAtIndex:4] setState:NSOnState];
389 [[ratingMenu itemAtIndex:3] setState:NSOnState];
392 [[ratingMenu itemAtIndex:2] setState:NSOnState];
395 [[ratingMenu itemAtIndex:1] setState:NSOnState];
398 [[ratingMenu itemAtIndex:0] setState:NSOnState];
404 if ([defaults boolForKey:@"showName"]) {
405 menuItem = [[NSMenuItem alloc] initWithTitle:[NSString stringWithFormat:@" %@", curSongName]
408 [menu insertItem:menuItem atIndex:trackInfoIndex + 1];
413 menuItem = [[NSMenuItem alloc] initWithTitle:@"Now Playing" action:nil keyEquivalent:@""];
414 [menu removeItemAtIndex:[menu indexOfItemWithTitle:@"No Song"]];
415 [menu insertItem:menuItem atIndex:trackInfoIndex];
418 [songRatingMenuItem setSubmenu:ratingMenu];
419 [songRatingMenuItem setEnabled:YES];
421 } else if ([menu indexOfItemWithTitle:@"No Song"] == -1) {
422 [menu removeItemAtIndex:trackInfoIndex];
424 if ([defaults boolForKey:@"showName"] == YES) {
425 [menu removeItemAtIndex:trackInfoIndex];
428 if ([defaults boolForKey:@"showTime"] == YES) {
429 [menu removeItemAtIndex:trackInfoIndex];
432 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
433 [menu removeItemAtIndex:trackInfoIndex];
436 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
437 [menu removeItemAtIndex:trackInfoIndex];
440 menuItem = [[NSMenuItem alloc] initWithTitle:@"No Song" action:nil keyEquivalent:@""];
441 [menu insertItem:menuItem atIndex:trackInfoIndex];
445 if ([defaults boolForKey:@"showArtist"]) {
446 didHaveArtistName = (([curArtistName length] > 0) ? YES : NO);
449 if ([defaults boolForKey:@"showAlbum"]) {
450 didHaveAlbumName = (([curAlbumName length] > 0) ? YES : NO);
455 //Rebuild the upcoming songs submenu. Can be improved a lot.
456 - (void)rebuildUpcomingSongsMenu
458 int curIndex = [currentRemote currentPlaylistIndex];
459 int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:curIndex];
460 int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
462 if (!isPlayingRadio) {
464 int curTrack = [currentRemote currentSongIndex];
467 [upcomingSongsMenu release];
468 upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
469 [upcomingSongsItem setSubmenu:upcomingSongsMenu];
470 [upcomingSongsItem setEnabled:YES];
472 for (i = curTrack + 1; i <= curTrack + numSongsInAdvance; i++) {
474 NSString *curSong = [currentRemote songTitleAtIndex:i];
475 NSMenuItem *songItem;
476 songItem = [[NSMenuItem alloc] initWithTitle:curSong action:@selector(playTrack:) keyEquivalent:@""];
477 [songItem setTarget:self];
478 [songItem setRepresentedObject:[NSNumber numberWithInt:i]];
479 [upcomingSongsMenu addItem:songItem];
487 [upcomingSongsItem setSubmenu:nil];
488 [upcomingSongsItem setEnabled:NO];
492 - (void)rebuildPlaylistMenu
494 NSArray *playlists = [currentRemote playlists];
495 int i, curPlaylist = [currentRemote currentPlaylistIndex];
497 if (isPlayingRadio) {
500 if (playlistMenu && ([playlists count] == [playlistMenu numberOfItems]))
503 [playlistMenu release];
504 playlistMenu = [[NSMenu alloc] initWithTitle:@""];
506 for (i = 0; i < [playlists count]; i++) {
507 NSString *playlistName = [playlists objectAtIndex:i];
508 NSMenuItem *tempItem;
509 tempItem = [[NSMenuItem alloc] initWithTitle:playlistName action:@selector(selectPlaylist:) keyEquivalent:@""];
510 [tempItem setTarget:self];
511 [tempItem setRepresentedObject:[NSNumber numberWithInt:i + 1]];
512 [playlistMenu addItem:tempItem];
515 [playlistItem setSubmenu:playlistMenu];
516 [playlistItem setEnabled:YES];
519 [[playlistMenu itemAtIndex:curPlaylist - 1] setState:NSOnState];
523 //Build a menu with the list of all available EQ presets
524 - (void)rebuildEQPresetsMenu
526 NSArray *eqPresets = [currentRemote eqPresets];
527 NSMenuItem *enabledItem;
530 if (eqMenu && ([[currentRemote eqPresets] count] == [eqMenu numberOfItems]))
534 eqMenu = [[NSMenu alloc] initWithTitle:@""];
536 enabledItem = [eqMenu addItemWithTitle:@"Disabled"
537 action:@selector(toggleEqualizer)
540 if ([currentRemote equalizerEnabled] == NO) {
541 [enabledItem setState:NSOnState];
544 [eqMenu addItem:[NSMenuItem separatorItem]];
546 for (i = 0; i < [eqPresets count]; i++) {
547 NSString *setName = [eqPresets objectAtIndex:i];
548 NSMenuItem *tempItem;
550 tempItem = [[NSMenuItem alloc] initWithTitle:setName action:@selector(selectEQPreset:) keyEquivalent:@""];
551 [tempItem setTarget:self];
552 [tempItem setRepresentedObject:[NSNumber numberWithInt:i]];
553 [eqMenu addItem:tempItem];
557 [eqItem setSubmenu:eqMenu];
559 [[eqMenu itemAtIndex:[currentRemote currentEQPresetIndex] + 1] setState:NSOnState];
564 [[HotKeyCenter sharedCenter] removeHotKey:@"PlayPause"];
565 [[HotKeyCenter sharedCenter] removeHotKey:@"NextTrack"];
566 [[HotKeyCenter sharedCenter] removeHotKey:@"PrevTrack"];
567 [[HotKeyCenter sharedCenter] removeHotKey:@"TrackInfo"];
568 [[HotKeyCenter sharedCenter] removeHotKey:@"UpcomingSongs"];
573 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
575 if ([defaults objectForKey:@"PlayPause"] != nil) {
576 [[HotKeyCenter sharedCenter] addHotKey:@"PlayPause"
577 combo:[defaults keyComboForKey:@"PlayPause"]
578 target:self action:@selector(playPause:)];
581 if ([defaults objectForKey:@"NextTrack"] != nil) {
582 [[HotKeyCenter sharedCenter] addHotKey:@"NextTrack"
583 combo:[defaults keyComboForKey:@"NextTrack"]
584 target:self action:@selector(nextSong:)];
587 if ([defaults objectForKey:@"PrevTrack"] != nil) {
588 [[HotKeyCenter sharedCenter] addHotKey:@"PrevTrack"
589 combo:[defaults keyComboForKey:@"PrevTrack"]
590 target:self action:@selector(prevSong:)];
593 if ([defaults objectForKey:@"TrackInfo"] != nil) {
594 [[HotKeyCenter sharedCenter] addHotKey:@"TrackInfo"
595 combo:[defaults keyComboForKey:@"TrackInfo"]
596 target:self action:@selector(showCurrentTrackInfo)];
599 if ([defaults objectForKey:@"UpcomingSongs"] != nil) {
600 [[HotKeyCenter sharedCenter] addHotKey:@"UpcomingSongs"
601 combo:[defaults keyComboForKey:@"UpcomingSongs"]
602 target:self action:@selector(showUpcomingSongs)];
606 //Called when the timer fires.
609 int playlist = [currentRemote currentPlaylistIndex];
610 ITMTRemotePlayerState playerState = [currentRemote playerState];
612 if ((playlist > 0) || playerState != ITMTRemotePlayerStopped) {
613 int trackPlayingIndex = [currentRemote currentSongIndex];
615 if (trackPlayingIndex != lastSongIndex) {
616 BOOL wasPlayingRadio = isPlayingRadio;
617 isPlayingRadio = [[currentRemote classOfPlaylistAtIndex:playlist] isEqualToString:@"radio tuner playlist"];
619 if (isPlayingRadio && !wasPlayingRadio) {
621 for (i = 0; i < [playlistMenu numberOfItems]; i++)
623 [[playlistMenu itemAtIndex:i] setState:NSOffState];
626 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
629 if (wasPlayingRadio) {
630 NSMenuItem *temp = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
631 [menu insertItem:temp atIndex:trackInfoIndex + 1];
636 lastSongIndex = trackPlayingIndex;
638 if (playlist != lastPlaylistIndex) {
639 BOOL wasPlayingRadio = isPlayingRadio;
640 isPlayingRadio = [[currentRemote classOfPlaylistAtIndex:playlist] isEqualToString:@"radio tuner playlist"];
642 if (isPlayingRadio && !wasPlayingRadio) {
644 for (i = 0; i < [playlistMenu numberOfItems]; i++) {
645 [[playlistMenu itemAtIndex:i] setState:NSOffState];
649 if (wasPlayingRadio) {
650 NSMenuItem *temp = [[NSMenuItem alloc] initWithTitle:@"" action:NULL keyEquivalent:@""];
651 [menu insertItem:temp atIndex:trackInfoIndex + 1];
655 if (!isPlayingRadio) {
657 for (i = 0; i < [playlistMenu numberOfItems]; i++)
659 [[playlistMenu itemAtIndex:i] setState:NSOffState];
661 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
665 lastSongIndex = trackPlayingIndex;
666 lastPlaylistIndex = playlist;
669 //Update Play/Pause menu item
670 if (playPauseMenuItem){
671 if (playerState == ITMTRemotePlayerPlaying) {
672 [playPauseMenuItem setTitle:@"Pause"];
674 [playPauseMenuItem setTitle:@"Play"];
677 } else if ((lastPlaylistIndex > 0) && (playlist == 0)) {
678 NSMenuItem *menuItem;
679 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
680 //Remote the now playing item and add no song item
681 [menu removeItemAtIndex:trackInfoIndex];
683 if ([defaults boolForKey:@"showName"] == YES) {
684 [menu removeItemAtIndex:trackInfoIndex];
687 if ([defaults boolForKey:@"showTime"] == YES) {
688 [menu removeItemAtIndex:trackInfoIndex];
691 if (didHaveArtistName && [defaults boolForKey:@"showArtist"]) {
692 [menu removeItemAtIndex:trackInfoIndex];
695 if (didHaveAlbumName && [defaults boolForKey:@"showAlbum"]) {
696 [menu removeItemAtIndex:trackInfoIndex];
699 [playPauseMenuItem setTitle:@"Play"];
701 didHaveArtistName = NO;
702 didHaveAlbumName = NO;
703 lastPlaylistIndex = -1;
706 [upcomingSongsItem setSubmenu:nil];
707 [upcomingSongsItem setEnabled:NO];
709 [songRatingMenuItem setSubmenu:nil];
710 [songRatingMenuItem setEnabled:NO];
712 menuItem = [[NSMenuItem alloc] initWithTitle:@"No Song" action:nil keyEquivalent:@""];
713 [menu insertItem:menuItem atIndex:trackInfoIndex];
718 - (void)remotePlayerLaunched:(NSNotification *)note
720 isAppRunning = ITMTRemotePlayerRunning;
723 [NSThread detachNewThreadSelector:@selector(runTimerInNewThread) toTarget:self withObject:nil];
725 [self rebuildMenu]; //Rebuild the menu since no songs will be playing
727 [self rebuildPlaylistMenu];
730 [self rebuildEQPresetsMenu];
732 [statusItem setMenu:menu]; //Set the menu back to the main one
735 - (void)runTimerInNewThread
737 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
738 NSRunLoop *runLoop = [NSRunLoop currentRunLoop];
739 refreshTimer = [[NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(timerUpdate) userInfo:nil repeats:YES] retain];
744 - (void)remotePlayerTerminated:(NSNotification *)note
746 isAppRunning = ITMTRemotePlayerNotRunning;
749 menu = [[NSMenu alloc] initWithTitle:@""];
750 [menu addItemWithTitle:@"Audio Player" action:NULL keyEquivalent:@""];
751 [menu addItemWithTitle:@"Not Running" action:NULL keyEquivalent:@""];
752 [menu addItem:[NSMenuItem separatorItem]];
753 [[menu addItemWithTitle:@"Preferences" action:@selector(showPreferences:) keyEquivalent:@""] setTarget:self];
754 [[menu addItemWithTitle:@"Quit" action:@selector(quitMenuTunes:) keyEquivalent:@""] setTarget:self];
755 [statusItem setMenu:menu];
757 [refreshTimer invalidate];
758 [refreshTimer release];
765 // Selectors - called from status item menu
769 // Plugin dependent selectors
771 - (void)playTrack:(id)sender
773 [currentRemote switchToSongAtIndex:[[sender representedObject] intValue]];
777 - (void)selectPlaylist:(id)sender
779 int playlist = [[sender representedObject] intValue];
780 if (!isPlayingRadio) {
781 int curPlaylist = [currentRemote currentPlaylistIndex];
782 if (curPlaylist > 0) {
783 [[playlistMenu itemAtIndex:curPlaylist - 1] setState:NSOffState];
786 [currentRemote switchToPlaylistAtIndex:playlist];
787 [[playlistMenu itemAtIndex:playlist - 1] setState:NSOnState];
791 - (void)selectEQPreset:(id)sender
793 int curSet = [currentRemote currentEQPresetIndex];
794 int item = [[sender representedObject] intValue];
795 [currentRemote switchToEQAtIndex:item];
796 [[eqMenu itemAtIndex:curSet - 1] setState:NSOffState];
797 [[eqMenu itemAtIndex:item - 1] setState:NSOnState];
800 - (void)playPause:(id)sender
802 ITMTRemotePlayerState state = [currentRemote playerState];
804 if (state == ITMTRemotePlayerPlaying) {
805 [currentRemote pause];
806 [playPauseMenuItem setTitle:@"Play"];
807 } else if ((state == ITMTRemotePlayerForwarding) || (state == ITMTRemotePlayerRewinding)) {
808 [currentRemote pause];
809 [currentRemote play];
811 [currentRemote play];
812 [playPauseMenuItem setTitle:@"Pause"];
816 - (void)nextSong:(id)sender
818 [currentRemote goToNextSong];
821 - (void)prevSong:(id)sender
823 [currentRemote goToPreviousSong];
826 - (void)fastForward:(id)sender
828 [currentRemote forward];
829 [playPauseMenuItem setTitle:@"Play"];
832 - (void)rewind:(id)sender
834 [currentRemote rewind];
835 [playPauseMenuItem setTitle:@"Play"];
838 - (void)toggleEqualizer
840 [currentRemote setEqualizerEnabled:![currentRemote equalizerEnabled]];
843 - (IBAction)setSongRating:(id)sender
845 NSLog(@"%f", [currentRemote currentSongRating]);
846 NSLog(@"%f", (float)[sender tag] / 100.0);
847 [currentRemote setCurrentSongRating:(float)[sender tag] / 100.0];
852 // Plugin independent selectors
855 - (void)quitMenuTunes:(id)sender
857 [NSApp terminate:self];
860 - (void)showPreferences:(id)sender
862 if (!prefsController) {
863 prefsController = [[PreferencesController alloc] initWithMenuTunes:self];
868 - (void)closePreferences
870 if ( ( isAppRunning == ITMTRemotePlayerRunning) ) {
873 [prefsController release];
874 prefsController = nil;
879 // Show Current Track Info And Show Upcoming Songs Floaters
883 - (void)showCurrentTrackInfo
885 NSString *trackName = [currentRemote currentSongTitle];
886 if (!statusWindow && [trackName length]) {
887 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
888 NSString *stringToShow = @"";
890 if ([defaults boolForKey:@"showName"]) {
891 if ([defaults boolForKey:@"showArtist"]) {
892 NSString *trackArtist = [currentRemote currentSongArtist];
893 trackName = [NSString stringWithFormat:@"%@ - %@", trackArtist, trackName];
895 stringToShow = [stringToShow stringByAppendingString:trackName];
896 stringToShow = [stringToShow stringByAppendingString:@"\n"];
899 if ([defaults boolForKey:@"showAlbum"]) {
900 NSString *trackAlbum = [currentRemote currentSongAlbum];
901 if ([trackAlbum length]) {
902 stringToShow = [stringToShow stringByAppendingString:trackAlbum];
903 stringToShow = [stringToShow stringByAppendingString:@"\n"];
907 if ([defaults boolForKey:@"showTime"]) {
908 NSString *trackTime = [currentRemote currentSongLength];
909 if ([trackTime length]) {
910 stringToShow = [NSString stringWithFormat:@"%@Total Time: %@\n", stringToShow, trackTime];
915 int trackTimeLeft = [[currentRemote currentSongRemaining] intValue];
916 int minutes = trackTimeLeft / 60, seconds = trackTimeLeft % 60;
918 stringToShow = [stringToShow stringByAppendingString:
919 [NSString stringWithFormat:@"Time Remaining: %i:0%i", minutes, seconds]];
921 stringToShow = [stringToShow stringByAppendingString:
922 [NSString stringWithFormat:@"Time Remaining: %i:%i", minutes, seconds]];
926 [statusWindow setText:stringToShow];
927 [NSTimer scheduledTimerWithTimeInterval:3.0
929 selector:@selector(fadeAndCloseStatusWindow)
935 - (void)showUpcomingSongs
937 int curPlaylist = [currentRemote currentPlaylistIndex];
939 int numSongs = [currentRemote numberOfSongsInPlaylistAtIndex:curPlaylist];
942 int numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
943 int curTrack = [currentRemote currentSongIndex];
945 NSString *songs = @"";
947 statusWindow = [ITTransientStatusWindow sharedWindow];
948 for (i = curTrack + 1; i <= curTrack + numSongsInAdvance; i++) {
950 NSString *curSong = [currentRemote songTitleAtIndex:i];
951 songs = [songs stringByAppendingString:curSong];
952 songs = [songs stringByAppendingString:@"\n"];
955 [statusWindow setText:songs];
956 [NSTimer scheduledTimerWithTimeInterval:3.0
958 selector:@selector(fadeAndCloseStatusWindow)
965 - (void)fadeAndCloseStatusWindow
967 [statusWindow orderOut:self];
970 - (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
971 onItem:(NSMenuItem *)item
973 unichar charcode = 'a';
975 long cocoaModifiers = 0;
976 static long carbonToCocoa[6][2] =
978 { cmdKey, NSCommandKeyMask },
979 { optionKey, NSAlternateKeyMask },
980 { controlKey, NSControlKeyMask },
981 { shiftKey, NSShiftKeyMask },
984 for (i = 0; i < 6; i++) {
985 if (modifiers & carbonToCocoa[i][0]) {
986 cocoaModifiers += carbonToCocoa[i][1];
989 [item setKeyEquivalentModifierMask:cocoaModifiers];
991 //Missing key combos for some keys. Must find them later.
1005 /*MenuRef menuRef = _NSGetCarbonMenu([item menu]);
1006 NSLog(@"%@", menuRef);
1007 SetMenuItemCommandKey(menuRef, 0, NO, 49);
1008 SetMenuItemModifiers(menuRef, 0, kMenuNoCommandModifier);
1009 SetMenuItemKeyGlyph(menuRef, 0, kMenuBlankGlyph);
1015 charcode = NSDeleteFunctionKey;
1031 charcode = NSF5FunctionKey;
1035 charcode = NSF6FunctionKey;
1039 charcode = NSF7FunctionKey;
1043 charcode = NSF3FunctionKey;
1047 charcode = NSF8FunctionKey;
1051 charcode = NSF9FunctionKey;
1055 charcode = NSF11FunctionKey;
1059 charcode = NSF3FunctionKey;
1063 charcode = NSF14FunctionKey;
1067 charcode = NSF10FunctionKey;
1071 charcode = NSF12FunctionKey;
1075 charcode = NSF13FunctionKey;
1079 charcode = NSInsertFunctionKey;
1083 charcode = NSHomeFunctionKey;
1087 charcode = NSPageUpFunctionKey;
1091 charcode = NSDeleteFunctionKey;
1095 charcode = NSF4FunctionKey;
1099 charcode = NSEndFunctionKey;
1103 charcode = NSF2FunctionKey;
1107 charcode = NSPageDownFunctionKey;
1111 charcode = NSF1FunctionKey;
1115 charcode = NSLeftArrowFunctionKey;
1119 charcode = NSRightArrowFunctionKey;
1123 charcode = NSDownArrowFunctionKey;
1127 charcode = NSUpArrowFunctionKey;
1131 if (charcode == 'a') {
1132 unsigned long state;
1137 kchr = (Ptr) GetScriptVariable(smCurrentScript, smKCHRCache);
1138 keyTrans = KeyTranslate(kchr, code, &state);
1139 charCode = keyTrans;
1140 [item setKeyEquivalent:[NSString stringWithCString:&charCode length:1]];
1141 } else if (charcode != 'b') {
1142 [item setKeyEquivalent:[NSString stringWithCharacters:&charcode length:1]];
1146 /*************************************************************************/
1148 #pragma mark NSApplication DELEGATE METHODS
1149 /*************************************************************************/
1151 - (void)applicationWillTerminate:(NSNotification *)note
1153 [self clearHotKeys];
1154 [[NSStatusBar systemStatusBar] removeStatusItem:statusItem];
1158 /*************************************************************************/
1160 #pragma mark DEALLOCATION METHODS
1161 /*************************************************************************/
1166 [refreshTimer invalidate];
1167 [refreshTimer release];
1170 [currentRemote halt];
1171 [statusItem release];