-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMenuController.m
executable file
·1231 lines (1117 loc) · 50.5 KB
/
MenuController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#import "MenuController.h"
#import "MainController.h"
#import "NetworkController.h"
#import "ITMTRemote.h"
#import "PlaylistNode.h"
#import <ITFoundation/ITDebug.h>
#import <ITKit/ITHotKeyCenter.h>
#import <ITKit/ITHotKey.h>
#import <ITKit/ITKeyCombo.h>
#import <ITKit/ITCategory-NSMenu.h>
#import <ITKit/ITAboutWindowController.h>
@interface MenuController (SubmenuMethods)
- (NSMenu *)ratingMenu;
- (NSMenu *)upcomingSongsMenu;
- (NSMenu *)playlistsMenu;
- (NSMenu *)eqMenu;
- (NSMenu *)artistsMenu;
- (NSMenu *)albumsMenu;
- (void)playlistsMenuAux:(NSMenu *)menu node:(PlaylistNode *)node tagPrefix:(int)p;
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
onItem:(id <NSMenuItem>)item;
- (BOOL)iPodWithNameAutomaticallyUpdates:(NSString *)name;
@end
@implementation MenuController
- (id)init
{
if ( (self = [super init]) ) {
_menuLayout = [[NSMutableArray alloc] initWithCapacity:0];
}
return self;
}
- (NSMenu *)menu
{
NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *menuArray = [defaults arrayForKey:@"menu"];
NSEnumerator *enumerator = [menuArray objectEnumerator];
NSString *nextObject;
id <NSMenuItem> tempItem;
NSEnumerator *itemEnum;
ITHotKey *hotKey;
NSArray *hotKeys = [[ITHotKeyCenter sharedCenter] allHotKeys];
ITMTRemote *mtr = [[MainController sharedController] currentRemote];
int currentSongRating = 0;
//Get the information
NS_DURING
_currentPlaylist = [mtr currentPlaylistIndex];
_playingRadio = ([mtr currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
currentSongRating = ( [mtr currentSongRating] != -1 );
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Reset menu if required.");
//Kill the old submenu items
if ( (tempItem = [_currentMenu itemWithTag:1]) ) {
ITDebugLog(@"Removing \"Song Rating\" submenu.");
[tempItem setSubmenu:nil];
}
if ( (tempItem = [_currentMenu itemWithTag:2]) ) {
ITDebugLog(@"Removing \"Upcoming Songs\" submenu.");
[tempItem setSubmenu:nil];
}
if ( (tempItem = [_currentMenu itemWithTag:3]) ) {
ITDebugLog(@"Removing \"Playlists\" submenu.");
[tempItem setSubmenu:nil];
}
if ( (tempItem = [_currentMenu itemWithTag:4]) ) {
ITDebugLog(@"Removing \"EQ Presets\" submenu.");
[tempItem setSubmenu:nil];
}
if ( (tempItem = [_currentMenu itemWithTag:5]) ) {
ITDebugLog(@"Removing \"Artists\" submenu.");
[tempItem setSubmenu:nil];
}
if ( (tempItem = [_currentMenu itemWithTag:6]) ) {
ITDebugLog(@"Removing \"Albums\" submenu.");
[tempItem setSubmenu:nil];
}
ITDebugLog(@"Begin building menu.");
//create our menu
while ( (nextObject = [enumerator nextObject]) ) {
//Main menu items
if ([nextObject isEqualToString:@"playPause"]) {
ITDebugLog(@"Add \"Play\"/\"Pause\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"play", @"Play")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
[tempItem setTag:MTMenuPlayPauseItem];
[tempItem setTarget:self];
itemEnum = [hotKeys objectEnumerator];
while ( (hotKey = [itemEnum nextObject]) ) {
if ([[hotKey name] isEqualToString:@"PlayPause"]) {
ITKeyCombo *combo = [hotKey keyCombo];
[self setKeyEquivalentForCode:[combo keyCode]
andModifiers:[combo modifiers]
onItem:tempItem];
}
}
ITDebugLog(@"Set \"Play\"/\"Pause\" menu item's title to correct state.");
NS_DURING
switch ([mtr playerPlayingState]) {
case ITMTRemotePlayerPlaying:
[tempItem setTitle:NSLocalizedString(@"pause", @"Pause")];
break;
case ITMTRemotePlayerRewinding:
case ITMTRemotePlayerForwarding:
[tempItem setTitle:NSLocalizedString(@"resume", @"Resume")];
break;
default:
break;
}
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
} else if ([nextObject isEqualToString:@"nextTrack"]) {
ITDebugLog(@"Add \"Next Track\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"nextTrack", @"Next Track")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
itemEnum = [hotKeys objectEnumerator];
while ( (hotKey = [itemEnum nextObject]) ) {
if ([[hotKey name] isEqualToString:@"NextTrack"]) {
ITKeyCombo *combo = [hotKey keyCombo];
[self setKeyEquivalentForCode:[combo keyCode]
andModifiers:[combo modifiers]
onItem:tempItem];
}
}
if (_currentPlaylist) {
[tempItem setTag:MTMenuNextTrackItem];
[tempItem setTarget:self];
}
} else if ([nextObject isEqualToString:@"prevTrack"]) {
ITDebugLog(@"Add \"Previous Track\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"prevTrack", @"Previous Track")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
itemEnum = [hotKeys objectEnumerator];
while ( (hotKey = [itemEnum nextObject]) ) {
if ([[hotKey name] isEqualToString:@"PrevTrack"]) {
ITKeyCombo *combo = [hotKey keyCombo];
[self setKeyEquivalentForCode:[combo keyCode]
andModifiers:[combo modifiers]
onItem:tempItem];
}
}
if (_currentPlaylist) {
[tempItem setTag:MTMenuPreviousTrackItem];
[tempItem setTarget:self];
}
} else if ([nextObject isEqualToString:@"fastForward"]) {
ITDebugLog(@"Add \"Fast Forward\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"fastForward", @"Fast Forward")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
if (_currentPlaylist) {
[tempItem setTag:MTMenuFastForwardItem];
[tempItem setTarget:self];
}
} else if ([nextObject isEqualToString:@"rewind"]) {
ITDebugLog(@"Add \"Rewind\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"rewind", @"Rewind")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
if (_currentPlaylist) {
[tempItem setTag:MTMenuRewindItem];
[tempItem setTarget:self];
}
} else if ([nextObject isEqualToString:@"showPlayer"]) {
ITDebugLog(@"Add \"Show Player\" menu item.");
NS_DURING
tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@",
NSLocalizedString(@"show", @"Show"),
[mtr playerSimpleName]]
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
itemEnum = [hotKeys objectEnumerator];
while ( (hotKey = [itemEnum nextObject]) ) {
if ([[hotKey name] isEqualToString:@"ShowPlayer"]) {
ITKeyCombo *combo = [hotKey keyCombo];
[self setKeyEquivalentForCode:[combo keyCode]
andModifiers:[combo modifiers]
onItem:tempItem];
}
}
[tempItem setTarget:self];
[tempItem setTag:MTMenuShowPlayerItem];
} else if ([nextObject isEqualToString:@"preferences"]) {
ITDebugLog(@"Add \"Preferences...\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
[tempItem setTag:MTMenuPreferencesItem];
[tempItem setTarget:self];
} else if ([nextObject isEqualToString:@"about"]) {
ITDebugLog(@"Add \"About MenuTunes...\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"about", @"About MenuTunes...")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
[tempItem setTag:MTMenuAboutItem];
[tempItem setTarget:self];
} else if ([nextObject isEqualToString:@"quit"]) {
ITDebugLog(@"Add \"Quit\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit")
action:@selector(performMainMenuAction:)
keyEquivalent:@""];
[tempItem setTag:MTMenuQuitItem];
[tempItem setTarget:self];
} else if ([nextObject isEqualToString:@"trackInfo"]) {
ITDebugLog(@"Check to see if a Track is playing...");
//Handle playing radio too
if (_currentTrack != -1 && _currentPlaylist > 0) {
NSString *title = nil;
NS_DURING
title = [mtr currentSongTitle];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"A Track is Playing, Add \"Track Info\" menu items.");
ITDebugLog(@"Add \"Now Playing\" menu item.");
[menu addItemWithTitle:NSLocalizedString(@"nowPlaying", @"Now Playing") action:NULL keyEquivalent:@""];
if ([title length] > 0) {
ITDebugLog(@"Add Track Title (\"%@\") menu item.", title);
[menu indentItem:
[menu addItemWithTitle:title action:nil keyEquivalent:@""]];
}
if (!_playingRadio) {
if ([defaults boolForKey:@"showAlbum"]) {
NSString *curAlbum = nil;
NS_DURING
curAlbum = [mtr currentSongAlbum];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Add Track Album (\"%@\") menu item.", curAlbum);
if ( curAlbum ) {
[menu indentItem:
[menu addItemWithTitle:curAlbum action:nil keyEquivalent:@""]];
}
}
if ([defaults boolForKey:@"showArtist"]) {
NSString *curArtist = nil;
NS_DURING
curArtist = [mtr currentSongArtist];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Add Track Artist (\"%@\") menu item.", curArtist);
if ( curArtist ) {
[menu indentItem:
[menu addItemWithTitle:curArtist action:nil keyEquivalent:@""]];
}
}
if ([defaults boolForKey:@"showComposer"]) {
NSString *curComposer = nil;
NS_DURING
curComposer = [mtr currentSongComposer];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Add Track Composer (\"%@\") menu item.", curComposer);
if ( curComposer ) {
[menu indentItem:
[menu addItemWithTitle:curComposer action:nil keyEquivalent:@""]];
}
}
if ([defaults boolForKey:@"showTrackNumber"]) {
int track = 0;
NS_DURING
track = [mtr currentSongTrack];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Add Track Number (\"Track %i\") menu item.", track);
if ( track > 0 ) {
[menu indentItem:
[menu addItemWithTitle:[NSString stringWithFormat:@"%@ %i", NSLocalizedString(@"track", @"Track"), track] action:nil keyEquivalent:@""]];
}
}
}
NS_DURING
if ([defaults boolForKey:@"showTime"] && ( ([mtr currentSongElapsed] != nil) || ([mtr currentSongLength] != nil) )) {
ITDebugLog(@"Add Track Elapsed (\"%@/%@\") menu item.", [mtr currentSongElapsed], [mtr currentSongLength]);
[menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"%@/%@", [mtr currentSongElapsed], [mtr currentSongLength]] action:nil keyEquivalent:@""]];
}
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
if (!_playingRadio) {
NS_DURING
if ([defaults boolForKey:@"showPlayCount"] && [mtr currentSource] == ITMTRemoteLibrarySource) {
[menu indentItem:[menu addItemWithTitle:[NSString stringWithFormat:@"Play Count: %i", [mtr currentSongPlayCount]] action:nil keyEquivalent:@""]];
}
if ([defaults boolForKey:@"showTrackRating"] && ( [mtr currentSongRating] != -1.0 )) {
NSString *string = nil;
switch ((int)([mtr currentSongRating] * 5)) {
case 0:
string = [NSString stringWithUTF8String:"☆☆☆☆☆"];
break;
case 1:
string = [NSString stringWithUTF8String:"★☆☆☆☆"];
break;
case 2:
string = [NSString stringWithUTF8String:"★★☆☆☆"];
break;
case 3:
string = [NSString stringWithUTF8String:"★★★☆☆"];
break;
case 4:
string = [NSString stringWithUTF8String:"★★★★☆"];
break;
case 5:
string = [NSString stringWithUTF8String:"★★★★★"];
break;
}
ITDebugLog(@"Add Track Rating (\"%@\") menu item.", string);
[menu indentItem:[menu addItemWithTitle:string action:nil keyEquivalent:@""]];
}
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
/*if ([tempItem respondsToSelector:@selector(setAttributedTitle:)] && [defaults boolForKey:@"showAlbumArtwork"] && ![[NetworkController sharedController] isConnectedToServer]) {
NSImage *image = [mtr currentSongAlbumArt];
if (image) {
NSSize oldSize, newSize;
oldSize = [image size];
if (oldSize.width > oldSize.height) newSize = NSMakeSize(110,oldSize.height * (110.0f / oldSize.width));
else newSize = NSMakeSize(oldSize.width * (110.0f / oldSize.height),110);
image = [[[[NSImage alloc] initWithData:[image TIFFRepresentation]] autorelease] imageScaledSmoothlyToSize:newSize];
tempItem = [menu addItemWithTitle:@"" action:nil keyEquivalent:@""];
NSTextAttachment *attachment = [[[NSTextAttachment alloc] init] autorelease];
[[attachment attachmentCell] setImage:image];
NSAttributedString *attrString = [NSAttributedString attributedStringWithAttachment:attachment];
[tempItem setAttributedTitle:attrString];
}
}*/
}
} else {
ITDebugLog(@"No Track is Playing, Add \"No Song\" menu item.");
[menu addItemWithTitle:NSLocalizedString(@"noSong", @"No Song") action:NULL keyEquivalent:@""];
}
} else if ([nextObject isEqualToString:@"separator"]) {
ITDebugLog(@"Add a separator menu item.");
[menu addItem:[NSMenuItem separatorItem]];
//Submenu items
} else if ([nextObject isEqualToString:@"playlists"]) {
ITDebugLog(@"Add \"Playlists\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"playlists", @"Playlists")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_playlistsMenu];
[tempItem setTag:3];
} else if ([nextObject isEqualToString:@"eqPresets"]) {
ITDebugLog(@"Add \"EQ Presets\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"eqPresets", @"EQ Presets")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_eqMenu];
[tempItem setTag:4];
itemEnum = [[_eqMenu itemArray] objectEnumerator];
while ( (tempItem = [itemEnum nextObject]) ) {
[tempItem setState:NSOffState];
}
NS_DURING
[[_eqMenu itemAtIndex:0] setState:[mtr equalizerEnabled] ? NSOnState : NSOffState];
[[_eqMenu itemAtIndex:([mtr currentEQPresetIndex] + 1)] setState:NSOnState];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
} else if ([nextObject isEqualToString:@"songRating"] && currentSongRating) {
ITDebugLog(@"Add \"Song Rating\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"songRating", @"Song Rating")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_ratingMenu];
[tempItem setTag:1];
if (_playingRadio || !_currentPlaylist) {
[tempItem setEnabled:NO];
}
itemEnum = [[_ratingMenu itemArray] objectEnumerator];
while ( (tempItem = [itemEnum nextObject]) ) {
[tempItem setState:NSOffState];
}
NS_DURING
[[_ratingMenu itemAtIndex:([mtr currentSongRating] * 5)] setState:NSOnState];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
} else if ([nextObject isEqualToString:@"upcomingSongs"]) {
ITDebugLog(@"Add \"Upcoming Songs\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"upcomingSongs", @"Upcoming Songs")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_upcomingSongsMenu];
[tempItem setTag:2];
if (_playingRadio || _currentPlaylist < 1) {
[tempItem setEnabled:NO];
}
} else if ([nextObject isEqualToString:@"artists"]) {
ITDebugLog(@"Add \"Artists\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"artists", @"Artists")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_artistsMenu];
[tempItem setTag:5];
} else if ([nextObject isEqualToString:@"albums"]) {
ITDebugLog(@"Add \"Albums\" submenu.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"albums", @"Albums")
action:nil
keyEquivalent:@""];
[tempItem setSubmenu:_albumsMenu];
[tempItem setTag:6];
}
}
ITDebugLog(@"Finished building menu.");
[_currentMenu release];
_currentMenu = menu;
return _currentMenu;
}
- (NSMenu *)menuForNoPlayer
{
NSMenu *menu = [[NSMenu alloc] initWithTitle:@""];
id <NSMenuItem> tempItem = nil;
ITDebugLog(@"Creating menu for when player isn't running.");
NS_DURING
ITDebugLog(@"Add \"Open %@\" menu item.", [[[MainController sharedController] currentRemote] playerSimpleName]);
tempItem = [menu addItemWithTitle:[NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"open", @"Open"), [[[MainController sharedController] currentRemote] playerSimpleName]] action:@selector(performMainMenuAction:) keyEquivalent:@""];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
[tempItem setTag:MTMenuShowPlayerItem];
[tempItem setTarget:self];
ITDebugLog(@"Add a separator menu item.");
[menu addItem:[NSMenuItem separatorItem]];
ITDebugLog(@"Add \"Preferences...\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"preferences", @"Preferences...") action:@selector(performMainMenuAction:) keyEquivalent:@""];
[tempItem setTag:MTMenuPreferencesItem];
[tempItem setTarget:self];
ITDebugLog(@"Add \"Quit\" menu item.");
tempItem = [menu addItemWithTitle:NSLocalizedString(@"quit", @"Quit") action:@selector(performMainMenuAction:) keyEquivalent:@""];
[tempItem setTag:MTMenuQuitItem];
[tempItem setTarget:self];
return [menu autorelease];
}
- (BOOL)rebuildSubmenus
{
NSArray *menu = [[NSUserDefaults standardUserDefaults] arrayForKey:@"menu"];
ITDebugLog(@"Rebuilding all of the submenus.");
NS_DURING
_currentTrack = [[[MainController sharedController] currentRemote] currentSongIndex];
if (_currentTrack > -1) {
_currentPlaylist = [[[MainController sharedController] currentRemote] currentPlaylistIndex];
}
_playingRadio = ([[[MainController sharedController] currentRemote] currentPlaylistClass] == ITMTRemotePlayerRadioPlaylist);
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Releasing old submenus.");
_continue = YES;
ITDebugLog(@" - Rating menu");
[_ratingMenu release];
_ratingMenu = nil;
ITDebugLog(@" - Upcoming songs menu");
[_upcomingSongsMenu release];
_upcomingSongsMenu = nil;
ITDebugLog(@" - Playlists menu");
[_playlistsMenu release];
_playlistsMenu = nil;
ITDebugLog(@" - EQ menu");
[_eqMenu release];
_eqMenu = nil;
ITDebugLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
_ratingMenu = [self ratingMenu];
ITDebugLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
_upcomingSongsMenu = [self upcomingSongsMenu];
if (_continue) {
ITDebugLog(@"Beginning Rebuild of \"Playlists\" submenu.");
_playlistsMenu = [self playlistsMenu];
}
if (_continue) {
ITDebugLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
_eqMenu = [self eqMenu];
}
if (_continue && [menu containsObject:@"artists"]) {
ITDebugLog(@"Releasing artists menu");
[_artistsMenu release];
ITDebugLog(@"Beginning Rebuild of \"Artists\" submenu.");
_artistsMenu = [self artistsMenu];
}
if (_continue && [menu containsObject:@"albums"]) {
ITDebugLog(@"Releasing albums menu");
[_albumsMenu release];
ITDebugLog(@"Beginning Rebuild of \"Albums\" submenu.");
_albumsMenu = [self albumsMenu];
}
ITDebugLog(@"Done rebuilding all of the submenus.");
return _continue;
}
- (NSMenu *)ratingMenu
{
NSMenu *ratingMenu = [[NSMenu alloc] initWithTitle:@""];
NSEnumerator *itemEnum;
id anItem;
int itemTag = 0;
SEL itemSelector = @selector(performRatingMenuAction:);
ITDebugLog(@"Building \"Song Rating\" menu.");
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"☆☆☆☆☆"] action:nil keyEquivalent:@""];
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★☆☆☆☆"] action:nil keyEquivalent:@""];
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★☆☆☆"] action:nil keyEquivalent:@""];
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★☆☆"] action:nil keyEquivalent:@""];
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★☆"] action:nil keyEquivalent:@""];
[ratingMenu addItemWithTitle:[NSString stringWithUTF8String:"★★★★★"] action:nil keyEquivalent:@""];
itemEnum = [[ratingMenu itemArray] objectEnumerator];
while ( (anItem = [itemEnum nextObject]) ) {
ITDebugLog(@"Setting up \"%@\" menu item.", [anItem title]);
[anItem setAction:itemSelector];
[anItem setTarget:self];
[anItem setTag:itemTag];
itemTag += 20;
}
ITDebugLog(@"Done Building \"Song Rating\" menu.");
return ratingMenu;
}
- (NSMenu *)upcomingSongsMenu
{
NSMenu *upcomingSongsMenu;
int numSongs = 0, numSongsInAdvance = [[NSUserDefaults standardUserDefaults] integerForKey:@"SongsInAdvance"];
if (_currentTrack == -1) {
return nil;
}
NS_DURING
numSongs = [[[MainController sharedController] currentRemote] numberOfSongsInPlaylistAtIndex:_currentPlaylist];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
if (numSongs == -1) {
return nil;
}
upcomingSongsMenu = [[NSMenu alloc] initWithTitle:@""];
NS_DURING
ITDebugLog(@"Building \"Upcoming Songs\" menu.");
if (_currentPlaylist && !_playingRadio) {
if (numSongs > 0) {
int i;
for (i = _currentTrack + 1; i <= _currentTrack + numSongsInAdvance && i <= numSongs; i++) {
BOOL enabled = YES;
//Check if the song at this index is enabled for playback. If it isn't, skip over it
NS_DURING
enabled = [[[MainController sharedController] currentRemote] songEnabledAtIndex:i];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
if (enabled) {
NSString *curSong = nil;
NS_DURING
curSong = [[[MainController sharedController] currentRemote] songTitleAtIndex:i];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
id <NSMenuItem> songItem;
ITDebugLog(@"Adding song: %@", curSong);
songItem = [upcomingSongsMenu addItemWithTitle:curSong action:@selector(performUpcomingSongsMenuAction:) keyEquivalent:@""];
[songItem setTag:i];
[songItem setTarget:self];
} else {
numSongsInAdvance++;
}
}
}
if ([upcomingSongsMenu numberOfItems] == 0) {
[upcomingSongsMenu addItemWithTitle:NSLocalizedString(@"noUpcomingSongs", @"No upcoming songs.") action:NULL keyEquivalent:@""];
}
}
ITDebugLog(@"Done Building \"Upcoming Songs\" menu.");
NS_VALUERETURN(upcomingSongsMenu, NSMenu *);
NS_HANDLER
[upcomingSongsMenu release];
_continue = NO;
NS_VALUERETURN(nil, NSMenu *);
NS_ENDHANDLER
}
/*- (NSMenu *)playlistsMenu
{
NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
NSArray *playlists;
id <NSMenuItem> tempItem;
ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
int i;
NS_DURING
playlists = [[[MainController sharedController] currentRemote] playlists];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Building \"Playlists\" menu.");
for (i = 0; i < [playlists count]; i++) {
NSString *curPlaylist = [playlists objectAtIndex:i];
ITDebugLog(@"Adding playlist: %@", curPlaylist);
tempItem = [playlistsMenu addItemWithTitle:curPlaylist action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
[tempItem setTag:i + 1];
[tempItem setTarget:self];
}
if (source == ITMTRemoteRadioSource) {
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"radio", @"Radio") action:NULL keyEquivalent:@""] setState:NSOnState];
} else if (source == ITMTRemoteGenericDeviceSource) {
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"genericDevice", @"Generic Device") action:NULL keyEquivalent:@""] setState:NSOnState];
} else if (source == ITMTRemoteiPodSource) {
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"iPod", @"iPod") action:NULL keyEquivalent:@""] setState:NSOnState];
} else if (source == ITMTRemoteCDSource) {
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"cd", @"CD") action:NULL keyEquivalent:@""] setState:NSOnState];
} else if (source == ITMTRemoteSharedLibrarySource) {
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"sharedLibrary", @"Shared Library") action:NULL keyEquivalent:@""] setState:NSOnState];
} else if (source == ITMTRemoteLibrarySource && _currentPlaylist) {
[[playlistsMenu itemAtIndex:_currentPlaylist - 1] setState:NSOnState];
}
ITDebugLog(@"Done Building \"Playlists\" menu");
return playlistsMenu;
}*/
- (void)playlistsMenuAux:(NSMenu *)menu node:(PlaylistNode *)node tagPrefix:(int)p
{
id <NSMenuItem> tempItem;
int i;
for (i = 0; i < [[node children] count]; i++) {
PlaylistNode *nextNode = [[node children] objectAtIndex:i];
if ([nextNode type] == ITMTFolderNode) {
NSMenu *submenu = [[NSMenu alloc] init];
tempItem = [menu addItemWithTitle:[nextNode name] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
[tempItem setTag:p + [nextNode index] + 1];
[tempItem setTarget:self];
[tempItem setSubmenu:submenu];
[self playlistsMenuAux:[submenu autorelease] node:nextNode tagPrefix:p];
} else {
tempItem = [menu addItemWithTitle:[nextNode name] action:@selector(performPlaylistMenuAction:) keyEquivalent:@""];
[tempItem setTag:p + [nextNode index] + 1];
[tempItem setTarget:self];
}
PlaylistNode *root = node;
while ([root type] == ITMTPlaylistNode || [root type] == ITMTFolderNode) {
root = [root parent];
}
if ([root index] == [[[MainController sharedController] currentRemote] currentSourceIndex] && [nextNode index] == _currentPlaylist) {
[tempItem setState:NSOnState];
}
}
}
- (NSMenu *)playlistsMenu
{
NSMenu *playlistsMenu = [[NSMenu alloc] initWithTitle:@""];
NSArray *playlists = nil;
id <NSMenuItem> tempItem;
ITMTRemotePlayerSource source = [[[MainController sharedController] currentRemote] currentSource];
int i;
NSMutableArray *indices = [[NSMutableArray alloc] init];
NS_DURING
playlists = [[[MainController sharedController] currentRemote] playlists];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
if (!playlists) {
[playlistsMenu release];
return nil;
}
NS_DURING
ITDebugLog(@"Building \"Playlists\" menu.");
{
//First we add the main Library source, since it is guaranteed to be there.
PlaylistNode *library = [playlists objectAtIndex:0];
ITDebugLog(@"Adding main source: %@", [library name]);
[self playlistsMenuAux:playlistsMenu node:library tagPrefix:0];
ITDebugLog(@"Adding index to the index array.");
[indices addObject:[NSNumber numberWithInt:[library index]]];
}
//Next go through the other sources
if ([playlists count] > 1) {
//Add the radio source if it is playing
if ([[playlists objectAtIndex:1] sourceType] == ITMTRemoteRadioSource) {
[indices addObject:[NSNumber numberWithInt:[[playlists objectAtIndex:1] index]]];
if (source == ITMTRemoteRadioSource) {
[playlistsMenu addItem:[NSMenuItem separatorItem]];
[[playlistsMenu addItemWithTitle:NSLocalizedString(@"radio", @"Radio") action:@selector(performPlaylistMenuAction:) keyEquivalent:@""] setState:NSOnState];
} else if ([playlists count] > 2) {
[playlistsMenu addItem:[NSMenuItem separatorItem]];
}
}
//Add other sources as needed (shared music, iPods, CDs)
for (i = [playlists count] - 1; i > 1 ; i--) {
PlaylistNode *nextSource = [playlists objectAtIndex:i];
if ([nextSource type] != ITMTRemoteRadioSource) {
NSString *name = [nextSource name];
ITDebugLog(@"Adding source: %@", name);
if ( ([nextSource type] == ITMTRemoteiPodSource) && [self iPodWithNameAutomaticallyUpdates:name] ) {
ITDebugLog(@"Invalid iPod source.");
[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""];
} else {
NSMenu *menu = [[NSMenu alloc] init];
[[playlistsMenu addItemWithTitle:name action:NULL keyEquivalent:@""] setSubmenu:[menu autorelease]];
[self playlistsMenuAux:menu node:nextSource tagPrefix:(i * 1000)];
}
ITDebugLog(@"Adding index to the index array.");
[indices addObject:[NSNumber numberWithInt:[nextSource index]]];
}
}
}
NS_DURING
if (_currentPlaylist != -1) {
if ( (source == ITMTRemoteSharedLibrarySource) || (source == ITMTRemoteiPodSource) || (source == ITMTRemoteGenericDeviceSource) || (source == ITMTRemoteCDSource) ) {
tempItem = [playlistsMenu itemAtIndex:[playlistsMenu numberOfItems] + [indices indexOfObject:[NSNumber numberWithInt:[[[MainController sharedController] currentRemote] currentSourceIndex]]] - [indices count]];
[tempItem setState:NSOnState];
}
}
NS_HANDLER
NS_ENDHANDLER
[indices release];
tempItem = [playlistsMenu addItemWithTitle:NSLocalizedString(@"refresh", @"Refresh") action:@selector(rebuildSubmenus) keyEquivalent:@""];
[tempItem setTarget:self];
[tempItem setImage:[NSImage imageNamed:@"ChasingArrow"]];
ITDebugLog(@"Done Building \"Playlists\" menu");
NS_VALUERETURN(playlistsMenu, NSMenu *);
NS_HANDLER
[playlistsMenu release];
_continue = NO;
NS_VALUERETURN(nil, NSMenu *);
NS_ENDHANDLER
}
- (NSMenu *)eqMenu
{
NSMenu *eqMenu = [[NSMenu alloc] initWithTitle:@""];
NSArray *eqPresets = nil;
id <NSMenuItem> tempItem;
int i;
NS_DURING
eqPresets = [[[MainController sharedController] currentRemote] eqPresets];
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Building \"EQ Presets\" menu.");
tempItem = [eqMenu addItemWithTitle:@"Enabled" action:@selector(performEqualizerMenuAction:) keyEquivalent:@""];
[tempItem setTag:-1];
[tempItem setTarget:self];
[eqMenu addItem:[NSMenuItem separatorItem]];
for (i = 0; i < [eqPresets count]; i++) {
NSString *name;
if ( ( name = [eqPresets objectAtIndex:i] ) ) {
ITDebugLog(@"Adding EQ Preset: %@", name);
tempItem = [eqMenu addItemWithTitle:name
action:@selector(performEqualizerMenuAction:)
keyEquivalent:@""];
[tempItem setTag:i];
[tempItem setTarget:self];
}
}
ITDebugLog(@"Done Building \"EQ Presets\" menu");
return eqMenu;
}
- (NSMenu *)artistsMenu
{
NSMenu *artistsMenu = [[NSMenu alloc] initWithTitle:@"Artists"];
NSEnumerator *artistsEnumerator;
NSString *nextArtist;
id <NSMenuItem> tempItem;
ITDebugLog(@"Building \"Artists\" menu.");
NS_DURING
artistsEnumerator = [[[[MainController sharedController] currentRemote] artists] objectEnumerator];
while ( (nextArtist = [artistsEnumerator nextObject]) ) {
tempItem = [artistsMenu addItemWithTitle:nextArtist action:@selector(performBrowseMenuAction:) keyEquivalent:@""];
[tempItem setTarget:self];
}
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Done Building \"Artists\" menu");
return artistsMenu;
}
- (NSMenu *)albumsMenu
{
NSMenu *albumsMenu = [[NSMenu alloc] initWithTitle:@"Albums"];
NSEnumerator *albumsEnumerator;
NSString *nextAlbum;
id <NSMenuItem> tempItem;
ITDebugLog(@"Building \"Albums\" menu.");
NS_DURING
albumsEnumerator = [[[[MainController sharedController] currentRemote] albums] objectEnumerator];
while ( (nextAlbum = [albumsEnumerator nextObject]) ) {
tempItem = [albumsMenu addItemWithTitle:nextAlbum action:@selector(performBrowseMenuAction:) keyEquivalent:@""];
[tempItem setTarget:self];
}
NS_HANDLER
[[MainController sharedController] networkError:localException];
NS_ENDHANDLER
ITDebugLog(@"Done Building \"Albums\" menu");
return albumsMenu;
}
- (void)performMainMenuAction:(id)sender
{
switch ( [sender tag] )
{
case MTMenuPlayPauseItem:
ITDebugLog(@"Performing Menu Action: Play/Pause");
[[MainController sharedController] playPause];
break;
case MTMenuFastForwardItem:
ITDebugLog(@"Performing Menu Action: Fast Forward");
[[MainController sharedController] fastForward];
break;
case MTMenuRewindItem:
ITDebugLog(@"Performing Menu Action: Rewind");
[[MainController sharedController] rewind];
break;
case MTMenuPreviousTrackItem:
ITDebugLog(@"Performing Menu Action: Previous Track");
[[MainController sharedController] prevSong];
break;
case MTMenuNextTrackItem:
ITDebugLog(@"Performing Menu Action: Next Track");
[[MainController sharedController] nextSong];
break;
case MTMenuShowPlayerItem:
ITDebugLog(@"Performing Menu Action: Show Main Interface");
[[MainController sharedController] showPlayer];
break;
case MTMenuPreferencesItem:
ITDebugLog(@"Performing Menu Action: Preferences...");
[[MainController sharedController] showPreferences];
break;
case MTMenuAboutItem:
ITDebugLog(@"Performing Menu Action: About MenuTunes...");
[[ITAboutWindowController sharedController] showAboutWindow];
break;
case MTMenuQuitItem:
ITDebugLog(@"Performing Menu Action: Quit");
[[MainController sharedController] quitMenuTunes];
break;
default:
ITDebugLog(@"Performing Menu Action: Unimplemented Menu Item OR Child-bearing Menu Item");
break;
}
}
- (void)performRatingMenuAction:(id)sender
{
ITDebugLog(@"Rating action selected on item with tag %i", [sender tag]);
[[MainController sharedController] selectSongRating:[sender tag]];
}
- (void)performPlaylistMenuAction:(id)sender
{
ITDebugLog(@"Playlist action selected on item with tag %i", [sender tag]);
[[MainController sharedController] selectPlaylistAtIndex:[sender tag]];
}
- (void)performEqualizerMenuAction:(id)sender
{
ITDebugLog(@"EQ action selected on item with tag %i", [sender tag]);
[[MainController sharedController] selectEQPresetAtIndex:[sender tag]];
}
- (void)performUpcomingSongsMenuAction:(id)sender
{
ITDebugLog(@"Song action selected on item with tag %i", [sender tag]);
[[MainController sharedController] selectSongAtIndex:[sender tag]];
}
- (void)performBrowseMenuAction:(id)sender
{
ITDebugLog(@"Browse action selected on item named %@", [sender title]);
/*
** 1 - Artist
** 2 - Album
** 3 - Genre?
*/
[[MainController sharedController] makePlaylistWithTerm:[sender title] ofType:(([[[sender menu] title] isEqualToString:@"Artists"]) ? 1 : 2)];
}
- (void)updateMenu
{
ITDebugLog(@"Update Menu");
[_currentMenu update];
}
- (BOOL)validateMenuItem:(id <NSMenuItem>)menuItem
{
return YES;
}
//This is never used I know, keep it though
- (NSString *)systemUIColor
{
NSDictionary *tmpDict;
NSNumber *tmpNumber;
if ( (tmpDict = [NSDictionary dictionaryWithContentsOfFile:[@"~/Library/Preferences/.GlobalPreferences.plist" stringByExpandingTildeInPath]]) ) {
if ( (tmpNumber = [tmpDict objectForKey:@"AppleAquaColorVariant"]) ) {
if ( ([tmpNumber intValue] == 1) ) {
return @"Aqua";
} else {
return @"Graphite";
}
} else {
return @"Aqua";
}
} else {
return @"Aqua";
}
}
- (void)setKeyEquivalentForCode:(short)code andModifiers:(long)modifiers
onItem:(id <NSMenuItem>)item
{
unichar charcode = 'a';
int i;
long cocoaModifiers = 0;
static long carbonToCocoa[6][2] =
{
{ cmdKey, NSCommandKeyMask },
{ optionKey, NSAlternateKeyMask },
{ controlKey, NSControlKeyMask },
{ shiftKey, NSShiftKeyMask },
};
ITDebugLog(@"Setting Key Equivelent on menu item \"%@\".", [item title]);
for (i = 0; i < 6; i++) {
if (modifiers & carbonToCocoa[i][0]) {
cocoaModifiers += carbonToCocoa[i][1];
}
}
[item setKeyEquivalentModifierMask:cocoaModifiers];
//Missing key combos for some keys. Must find them later.
switch (code)
{