Reverting to previous API... again. :\
authorJoseph Spiros <joseph.spiros@ithinksw.com>
Sun, 7 Sep 2003 22:52:09 +0000 (22:52 +0000)
committerJoseph Spiros <joseph.spiros@ithinksw.com>
Sun, 7 Sep 2003 22:52:09 +0000 (22:52 +0000)
ITMTRemote.h
ITMTRemote.m
iTunesRemote.h
iTunesRemote.m

index 05f54f9..2c27199 100755 (executable)
-/****************************************
-    ITMTRemote 1.0 (MenuTunes Remotes)
-    ITMTRemote.h
-    
-    Responsibility:
-        Joseph Spiros <joseph.spiros@ithinksw.com>
-    
-    Copyright (c) 2002 - 2003 by iThink Software.
-    All Rights Reserved.
-****************************************/
+/*
+ *  MenuTunes
+ *  ITMTRemote
+ *    Plugin definition for audio player control via MenuTunes
+ *
+ *  Original Author : Matt Judy <mjudy@ithinksw.com>
+ *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *
+ *  Copyright (c) 2002 - 2003 iThink Software.
+ *  All Rights Reserved
+ *
+ *     This header defines the Objective-C protocol which all MenuTunes Remote
+ *  plugins must implement.  To build a remote, create a subclass of this
+ *  object, and implement each method in the @protocol below.
+ *
+ */
 
+/*!
+ * @header ITMTRemote
+ * @discussion This header defines the Objective-C protocol which all MenuTunes Remote plugins must implement.  To build a remote, create a subclass of the ITMTRemote object, and implement each method in the ITMTRemote protocol.
+ */
 #import <Cocoa/Cocoa.h>
 
+/*!
+ * @enum ITMTRemotePlayerRunningState
+ * @abstract Possible running states for the remote's player.
+ * @discussion Used in fuctions that report or take the running state of the remote's player application.
+ * @constant ITMTRemotePlayerNotRunning The remote's player isn't running.
+ * @constant ITMTRemotePlayerLaunching The remote's player is starting up, or is running, but not yet accepting remote commands.
+ * @constant ITMTRemotePlayerRunning The remote's player is running, and as such, is accepting remote commands.
+ */
 typedef enum {
-    ITMTNameProperty,
-    ITMTImageProperty
-} ITMTGenericProperty;
-
-typedef enum {
-    ITMTRemoteNameProperty,
-    ITMTRemoteImageProperty,
-    ITMTRemoteAuthorProperty,
-    ITMTRemoteDescriptionProperty,
-    ITMTRemoteURLProperty,
-    ITMTRemoteCopyrightProperty,
-    ITMTRemoteActivationStringProperty,
-    ITMTRemoteDeactivationStringProperty
-} ITMTRemoteProperty;
-
-typedef enum {
-    ITMTTrackTitle,
-    ITMTTrackArtist,
-    ITMTTrackComposer,
-    ITMTTrackYear,
-    ITMTTrackImage,
-    ITMTTrackAlbum,
-    ITMTTrackNumber,
-    ITMTTrackTotal,
-    ITMTDiscNumber,
-    ITMTDiscTotal,
-    ITMTTrackComments,
-    ITMTTrackGenre,
-    ITMTTrackRating,
-    ITMTTrackHash
-} ITMTTrackProperty;
-
-/*!
-    @typedef ITMTPlayerStyle
-    @constant ITMTSinglePlayerStyle Like iTunes, One player controls all available songs.
-    @constant ITMTMultiplePlayerStyle Like Audion, Multiple players control multiple playlists.
-    @constant ITMTSinglePlayerSinglePlaylistStyle Like *Amp, XMMS. Not recommended, but instead, developers are urged to use ITMTSinglePlayerStyle with emulated support for multiple playlists.
-*/
-typedef enum {
-    ITMTSinglePlayerStyle,
-    ITMTMultiplePlayerStyle,
-    ITMTSinglePlayerSinglePlaylistStyle
-} ITMTPlayerStyle;
+    ITMTRemotePlayerNotRunning = -1,
+    ITMTRemotePlayerLaunching,
+    ITMTRemotePlayerRunning
+} ITMTRemotePlayerRunningState;
 
+/*!
+ * @enum ITMTRemotePlayerPlayingState
+ * @abstract Possible playing states for the remote's player.
+ * @discussion Used in functions that report or take the playing state of the remote's player application.
+ * @constant ITMTRemotePlayerStopped The remote's player is stopped.
+ * @constant ITMTRemotePlayerPaused The remote's player is paused.
+ * @constant ITMTRemotePlayerPlaying The remote's player is playing.
+ * @constant ITMTRemotePlayerRewinding The remote's player is rewinding.
+ * @constant ITMTRemotePlayerForwarding The remote's player is forwarding.
+ */
 typedef enum {
-    ITMT32HzEqualizerBandLevel,
-    ITMT64HzEqualizerBandLevel,
-    ITMT125HzEqualizerBandLevel,
-    ITMT250HzEqualizerBandLevel,
-    ITMT500HzEqualizerBandLevel,
-    ITMT1kHzEqualizerBandLevel,
-    ITMT2kHzEqualizerBandLevel,
-    ITMT4kHzEqualizerBandLevel,
-    ITMT8kHzEqualizerBandLevel,
-    ITMT16kHzEqualizerBandLevel,
-    ITMTEqualizerPreampLevel
-} ITMTEqualizerLevel;
+    ITMTRemotePlayerStopped = -1,
+    ITMTRemotePlayerPaused,
+    ITMTRemotePlayerPlaying,
+    ITMTRemotePlayerRewinding,
+    ITMTRemotePlayerForwarding
+} ITMTRemotePlayerPlayingState;
 
+/*!
+ * @enum ITMTRemotePlayerPlaylistClass
+ * @abstract Possible playlist classes used by a remote's player
+ * @discussion Used in functions that report the class of a playlist to MenuTunes. While we borrow the terms/descriptions from iTunes, these should work fine with any other player. If your player doesn't support a given type of playlist, then just return ITMTRemotePlayerPlaylist.
+ * @constant ITMTRemotePlayerLibraryPlaylist For players that have one playlist that contains all of a user's music, or for players that don't have the concept of multiple playlists, this is the class for that "Master" list.
+ * @constant ITMTRemotePlayerPlaylist The generic playlist. Created and maintained by the user.
+ * @constant ITMTRemotePlayerSmartPlaylist A smart playlist is a playlist who's contents are dynamic, based on a set of criteria or updated by a script. These are usually not edited directly by the user, but instead maintained by the player.
+ * @constant ITMTRemotePlayerRadioPlaylist This is for when playing tracks off of (online) radio stations.
+ */
 typedef enum {
-    ITMTTrackStopped = -1,
-    ITMTTrackPaused,
-    ITMTTrackPlaying,
-    ITMTTrackForwarding,
-    ITMTTrackRewinding
-} ITMTTrackState;
+    ITMTRemotePlayerLibraryPlaylist = -1,
+    ITMTRemotePlayerPlaylist,
+    ITMTRemotePlayerSmartPlaylist,
+    ITMTRemotePlayerRadioPlaylist
+} ITMTRemotePlayerPlaylistClass;
 
+/*!
+ * @enum ITMTRemotePlayerRepeatMode
+ * @abstract Possible repeat modes for the remote's player.
+ * @discussion Used in functions that report or set the remote's player's repeat mode.
+ * @constant ITMTRemotePlayerRepeatOff The player plays all of the songs in a playlist through to the end, and then stops.
+ * @constant ITMTRemotePlayerRepeatAll The player plays all of the songs in a playlist through to the end, and then starts over again from the beginning.
+ * @constant ITMTRemotePlayerRepeatOne The player loops playing the selected song.
+ */
 typedef enum {
-    ITMTRepeatNoneMode,
-    ITMTRepeatOneMode,
-    ITMTRepeatAllMode
-} ITMTRepeatMode;
-
-@class ITMTRemote, ITMTPlayer, ITMTPlaylist, ITMTTrack, ITMTEqualizer;
+    ITMTRemotePlayerRepeatOff = -1,
+    ITMTRemotePlayerRepeatAll,
+    ITMTRemotePlayerRepeatOne
+} ITMTRemotePlayerRepeatMode;
 
+/*!
+ * @protocol ITMTRemote
+ * @discussion The Objective-C protocol which all MenuTunes remotes must implement.
+ */
 @protocol ITMTRemote
+
+/*!
+ * @method remote
+ * @abstract Returns an autoreleased instance of the remote.
+ * @discussion Should be very quick and compact.
+ *
+ * EXAMPLE:<br>
+ * + (id)remote<br>
+ * {<br>
+ * &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return [[[MyRemote alloc] init] autorelease];<br>
+ * }
+ *
+ * @result An instance of the remote.
+ */
 + (id)remote;
 
-- (id)valueOfProperty:(ITMTRemoteProperty)property;
+/*!
+ * @method remoteTitle
+ * @abstract Returns the remote's title/name.
+ * @discussion This title is shown while the user is selecting which remote to use. This is for informational purposes only.
+ * @result An NSString containing the title/name of the remote.
+ */
+- (NSString *)remoteTitle;
 
-- (NSDictionary *)propertiesAndValues;
+/*!
+ * @method remoteInformation
+ * @abstract Returns the remote's information.
+ * @discussion Information on the remote that the user will see when selecting which remote to use. The information returned here has no bearing on how the remote works, it's simply here for informing the user.
+ * @result An NSString containing the information for the remote.
+ */
+- (NSString *)remoteInformation;
 
-- (ITMTPlayerStyle)playerStyle;
+/*!
+ * @method remoteIcon
+ * @abstract Returns the remote's icon.
+ * @discussion This icon is shown while the user is selecting which remote to use. Typically, this is the remote's player's application icon, however it can be anything you like.
+ * @result An NSImage containing the icon of the remote.
+ */
+- (NSImage *)remoteIcon;
 
-- (BOOL)activate;
-- (BOOL)deactivate;
+/*!
+ * @method begin
+ * @abstract Sent when the remote should begin operation.
+ * @result A result code signifying success.
+ */
+- (BOOL)begin;
 
-- (ITMTPlayer *)currentPlayer;
-- (BOOL)selectPlayer:(ITMTPlayer *)player;
-- (NSArray *)players;
-@end
+/*!
+ * @method halt
+ * @abstract Sent when the remote should cease operation.
+ * @result A result code signifying success.
+ */
+- (BOOL)halt;
 
-@interface ITMTRemote : NSObject <ITMTRemote>
-@end
+/*!
+ * @method playerFullName
+ * @abstract Returns the remote's player's application filename.
+ * @discussion This string should be the name typically used by the remote's player's application bundle/file. For example, Panic's Audion audio player is known simply as "Audion", however, the application bundle is called "Audion 3" for version 3 of their application. This should return "Audion 3", not simply "Audion". See playerSimpleName.
+ * @result An NSString containing the remote's player's application filename
+ */
+- (NSString *)playerFullName;
 
 /*!
-    @protocol ITMTPlayer
   @abstract Object representation for a controlled player.
   @discussion Object representation for a controlled player. Players can be defined as things that control playlist(s) objects, a pool of track objects, and possibly, equalizer objects.
-*/
-@protocol ITMTPlayer
-- (BOOL)writable;
+ * @method playerSimpleName
* @abstract Returns the simplified name of the remote's player.
* @discussion This is the name used in the User Interface for when referring to the remote's player. Continuing the example from the playerFullName method, this method would return simply "Audion", as that is how the player is known.
+ * @result An NSString containing the simplified name of the remote's player.
+ */
+- (NSString *)playerSimpleName;
 
-- (BOOL)show;
+/*!
+ * @method capabilities
+ * @abstract Returns a dictionary defining the capabilities of the remote and it's player.
+ * @discussion Discussion Forthcoming.
+ * @result An NSDictionary defining the capabilities of the remote and it's player.
+ */
+- (NSDictionary *)capabilities;
 
-- (BOOL)setValue:(id)value forProperty:(ITMTGenericProperty)property;
-- (id)valueOfProperty:(ITMTGenericProperty)property;
-- (NSDictionary *)propertiesAndValues;
+/*!
+ * @method showPrimaryInterface
+ */
+- (BOOL)showPrimaryInterface;
 
-- (ITMTRemote *)remote;
+/*!
+ * @method playerRunningState
+ * @abstract Returns the running state of the remote's player.
+ * @discussion While most remotes will use only ITMTRemotePlayerNotRunning or ITMTRemotePlayerRunning, we have included support for ITMTRemotePlayerLaunching (see ITMTRemotePlayerRunningState) for remotes that want the most precise control over their player's process managment.
+ * @result An ITMTRemotePlayerRunningState defining the running state of the remote's player.
+ */
+- (ITMTRemotePlayerRunningState)playerRunningState;
 
-- (ITMTPlaylist *)currentPlaylist;
-- (BOOL)selectPlaylist:(ITMTPlaylist *)playlist;
-- (ITMTTrack *)currentTrack;
-- (BOOL)selectTrack:(ITMTTrack *)track;
-- (ITMTEqualizer *)currentEqualizer;
-- (BOOL)selectEqualizer:(ITMTEqualizer *)equalizer;
+/*!
+ * @method playerPlayingState
+ */
+- (ITMTRemotePlayerPlayingState)playerPlayingState;
 
+/*!
+ * @method playlists
+ */
 - (NSArray *)playlists;
 
-- (NSArray *)tracks;
-- (ITMTPlaylist *)libraryPlaylist;
+/*!
+ * @method numberOfSongsInPlaylistAtIndex:
+ */
+- (int)numberOfSongsInPlaylistAtIndex:(int)index;
 
-- (NSArray *)equalizers;
+/*!
+ * @method currentPlaylistClass
+ */
+- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass;
 
-- (ITMTRepeatMode)repeatMode;
-- (BOOL)setRepeatMode:(ITMTRepeatMode)repeatMode;
+/*!
+ * @method currentPlaylistIndex
+ */
+- (int)currentPlaylistIndex;
 
-- (BOOL)shuffleEnabled;
-- (BOOL)enableShuffle:(BOOL)shuffle;
-@end
+/*!
+ * @method songTitleAtIndex:
+ */
+- (NSString *)songTitleAtIndex:(int)index;
 
-@interface ITMTPlayer : NSObject <ITMTPlayer>
-@end
+/*!
+ * @method currentAlbumTrackCount:
+ */
+- (int)currentAlbumTrackCount;
 
-@protocol ITMTPlaylist
-- (BOOL)isEqualToPlaylist:(ITMTPlaylist *)playlist;
+/*!
+ * @method currentSongTrack:
+ */
+- (int)currentSongTrack;
 
-- (BOOL)writable;
+/*!
+ * @method playerStateUniqueIdentifier:
+ */
+- (NSString *)playerStateUniqueIdentifier;
 
-- (BOOL)show;
+/*!
+ * @method currentSongIndex
+ */
+- (int)currentSongIndex;
 
-- (BOOL)setValue:(id)value forProperty:(ITMTGenericProperty)property;
-- (id)valueOfProperty:(ITMTGenericProperty)property;
-- (NSDictionary *)propertiesAndValues;
+/*!
+ * @method currentSongTitle
+ */
+- (NSString *)currentSongTitle;
 
-- (ITMTPlayer *)player;
+/*!
+ * @method currentSongArtist
+ */
+- (NSString *)currentSongArtist;
 
-- (BOOL)addTrack:(ITMTTrack *)track;
-- (BOOL)insertTrack:(ITMTTrack *)track atIndex:(int)index;
+/*!
+ * @method currentSongAlbum
+ */
+- (NSString *)currentSongAlbum;
 
-- (BOOL)removeTrack:(ITMTTrack *)item;
-- (BOOL)removeTrackAtIndex:(int)index;
+/*!
+ * @method currentSongGenre
+ */
+- (NSString *)currentSongGenre;
 
-- (ITMTTrack *)trackAtIndex:(int)index;
+/*!
+ * @method currentSongLength
+ */
+- (NSString *)currentSongLength;
 
-- (int)indexOfTrack:(ITMTTrack *)track;
-- (ITMTTrack *)trackWithProperty:(ITMTTrackProperty)property ofValue:(id)value allowPartialMatch:(BOOL)partial;
-- (NSArray *)tracksWithProperty:(ITMTTrackProperty)property ofValue:(id)value allowPartialMatches:(BOOL)partial;
-- (int)indexOfTrackWithProperty:(ITMTTrackProperty)property ofValue:(id)value allowPartialMatch:(BOOL)partial;
-- (NSArray *)indexesOfTracksWithProperty:(ITMTTrackProperty)property ofValue:(id)value allowPartialMatches:(BOOL)partial;
+/*!
+ * @method currentSongRemaining
+ */
+- (NSString *)currentSongRemaining;
 
-- (int)trackCount;
-- (NSArray *)tracks;
+/*!
+ * @method currentSongRating
+ */
+- (float)currentSongRating;
 
-- (ITMTTrack *)currentTrack;
-- (int)indexOfCurrentTrack;
+/*!
+ * @method setCurrentSongRating:
+ */
+- (BOOL)setCurrentSongRating:(float)rating;
 
-- (BOOL)selectTrack:(ITMTTrack *)track;
-- (BOOL)selectTrackAtIndex:(int)index;
+/*!
+ * @method eqPresets
+ */
+- (NSArray *)eqPresets;
 
-- (BOOL)selectNextTrack;
-- (BOOL)selectPreviousTrack;
-@end
+/*!
+ * @method currentEQPresetIndex
+ */
+- (int)currentEQPresetIndex;
 
-@interface ITMTPlaylist : NSObject <ITMTPlaylist>
-@end
+/*!
+ * @method volume
+ */
+- (float)volume;
 
-@protocol ITMTTrack
-- (BOOL)isEqualToTrack:(ITMTTrack *)track;
+/*!
+ * @method setVolume:
+ */
+- (BOOL)setVolume:(float)volume;
 
-- (BOOL)writable;
+/*!
+ * @method shuffleEnabled
+ */
+- (BOOL)shuffleEnabled;
 
-- (BOOL)addToPlaylist:(ITMTPlaylist *)playlist;
-- (BOOL)addToPlaylist:(ITMTPlaylist *)playlist atIndex:(int)index;
+/*!
+ * @method setShuffleEnabled:
+ */
+- (BOOL)setShuffleEnabled:(BOOL)enabled;
 
-- (ITMTPlayer *)player;
-- (NSArray *)playlists;
-- (ITMTPlaylist *)currentPlaylist;
-- (BOOL)setCurrentPlaylist:(ITMTPlaylist *)playlist;
+/*!
+ * @method repeatMode
+ */
+- (ITMTRemotePlayerRepeatMode)repeatMode;
 
-- (BOOL)setValue:(id)value forProperty:(ITMTTrackProperty)property;
-- (id)valueOfProperty:(ITMTTrackProperty)property;
-- (NSDictionary *)propertiesAndValues;
+/*!
+ * @method setRepeatMode:
+ */
+- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode;
 
-- (BOOL)setState:(ITMTTrackState)state;
-- (ITMTTrackState)state;
-@end
+/*!
+ * @method play
+ */
+- (BOOL)play;
 
-@interface ITMTTrack : NSObject <ITMTTrack>
-@end
+/*!
+ * @method pause
+ */
+- (BOOL)pause;
+
+/*!
+ * @method goToNextSong
+ */
+- (BOOL)goToNextSong;
 
-@protocol ITMTEqualizer
-- (BOOL)writable;
+/*!
+ * @method goToPreviousSong
+ */
+- (BOOL)goToPreviousSong;
 
-- (ITMTPlayer *)player;
+/*!
+ * @method forward
+ */
+- (BOOL)forward;
+
+/*!
+ * @method rewind
+ */
+- (BOOL)rewind;
+
+/*!
+ * @method switchToPlaylistAtIndex:
+ */
+- (BOOL)switchToPlaylistAtIndex:(int)index;
+
+/*!
+ * @method switchToSongAtIndex:
+ */
+- (BOOL)switchToSongAtIndex:(int)index;
+
+/*!
+ * @method switchToEQAtIndex:
+ */
+- (BOOL)switchToEQAtIndex:(int)index;
 
-- (float)dBForLevel:(ITMTEqualizerLevel)level;
-- (BOOL)setdB:(float)dB forLevel:(ITMTEqualizerLevel)level;
 @end
 
-@interface ITMTEqualizer : NSObject <ITMTEqualizer>
-@end
\ No newline at end of file
+/*!
+ * @class ITMTRemote
+ */
+@interface ITMTRemote : NSObject <ITMTRemote>
+
+@end
index f67ab66..3337e55 100755 (executable)
@@ -1,5 +1,257 @@
-/* Copyright (c) 2002 - 2003 by iThink Software. All Rights Reserved. */
-
 #import "ITMTRemote.h"
 
-// Put Implementations of Default Classes Here Soon!
+@implementation ITMTRemote
+
++ (id)remote
+{
+    return nil;
+}
+
+- (NSString *)remoteTitle
+{
+    return nil;
+}
+
+- (NSString *)remoteInformation
+{
+    return nil;
+}
+
+- (NSImage *)remoteIcon
+{
+    return nil;
+}
+
+- (BOOL)begin
+{
+    return NO;
+}
+
+- (BOOL)halt
+{
+    return NO;
+}
+
+- (NSString *)playerFullName
+{
+    return nil;
+}
+
+- (NSString *)playerSimpleName
+{
+    return nil;
+}
+
+- (NSDictionary *)capabilities
+{
+    return [NSDictionary dictionaryWithObjectsAndKeys:
+                [NSNumber numberWithBool: NO], @"Remote", // Set this to YES for a valid remote, otherwise the remote will be unusable.
+                [NSNumber numberWithBool: NO], @"Basic Track Control",
+                [NSNumber numberWithBool: NO], @"Track Information",
+                [NSNumber numberWithBool: NO], @"Track Navigation",
+                [NSNumber numberWithBool: NO], @"Upcoming Songs",
+                [NSNumber numberWithBool: NO], @"Playlists",
+                [NSNumber numberWithBool: NO], @"Volume",
+                [NSNumber numberWithBool: NO], @"Shuffle",
+                [NSNumber numberWithBool: NO], @"Repeat Modes",
+                [NSNumber numberWithBool: NO], @"Equalizer",
+                [NSNumber numberWithBool: NO], @"Track Rating",
+                nil];
+}
+
+- (BOOL)showPrimaryInterface
+{
+    return NO;
+}
+
+- (ITMTRemotePlayerRunningState)playerRunningState
+{
+    return nil;
+}
+
+- (ITMTRemotePlayerPlayingState)playerPlayingState
+{
+    return nil;
+}
+
+- (NSArray *)playlists
+{
+    return nil;
+}
+
+- (int)numberOfSongsInPlaylistAtIndex:(int)index
+{
+    return nil;
+}
+
+- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
+{
+    return nil;
+}
+
+- (int)currentPlaylistIndex
+{
+    return nil;
+}
+
+- (NSString *)songTitleAtIndex:(int)index
+{
+    return nil;
+}
+
+- (int)currentAlbumTrackCount
+{
+    return nil;
+}
+
+- (int)currentSongTrack
+{
+    return nil;
+}
+
+- (NSString *)playerStateUniqueIdentifier
+{
+    return nil;
+}
+
+- (int)currentSongIndex
+{
+    return nil;
+}
+
+- (NSString *)currentSongTitle
+{
+    return nil;
+}
+
+- (NSString *)currentSongArtist
+{
+    return nil;
+}
+
+- (NSString *)currentSongAlbum
+{
+    return nil;
+}
+
+- (NSString *)currentSongGenre
+{
+    return nil;
+}
+
+- (NSString *)currentSongLength
+{
+    return nil;
+}
+
+- (NSString *)currentSongRemaining
+{
+    return nil;
+}
+
+- (float)currentSongRating
+{
+    return nil;
+}
+
+- (BOOL)setCurrentSongRating:(float)rating
+{
+    return NO;
+}
+
+/* - (BOOL)equalizerEnabled
+{
+    return NO;
+}
+
+- (BOOL)setEqualizerEnabled:(BOOL)enabled
+{
+    return NO;
+} */
+
+- (NSArray *)eqPresets
+{
+    return nil;
+}
+
+- (int)currentEQPresetIndex
+{
+    return nil;
+}
+
+- (float)volume
+{
+    return nil;
+}
+
+- (BOOL)setVolume:(float)volume
+{
+    return NO;
+}
+
+- (BOOL)shuffleEnabled
+{
+    return NO;
+}
+
+- (BOOL)setShuffleEnabled:(BOOL)enabled
+{
+    return NO;
+}
+
+- (ITMTRemotePlayerRepeatMode)repeatMode
+{
+    return ITMTRemotePlayerRepeatOff;
+}
+
+- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
+{
+    return NO;
+}
+
+- (BOOL)play
+{
+    return NO;
+}
+
+- (BOOL)pause
+{
+    return NO;
+}
+
+- (BOOL)goToNextSong
+{
+    return NO;
+}
+
+- (BOOL)goToPreviousSong
+{
+    return NO;
+}
+
+- (BOOL)forward
+{
+    return NO;
+}
+
+- (BOOL)rewind
+{
+    return NO;
+}
+
+- (BOOL)switchToPlaylistAtIndex:(int)index
+{
+    return NO;
+}
+
+- (BOOL)switchToSongAtIndex:(int)index
+{
+    return NO;
+}
+
+- (BOOL)switchToEQAtIndex:(int)index
+{
+    return NO;
+}
+
+@end
index 9408c63..992eb49 100755 (executable)
@@ -1,20 +1,20 @@
 //
-//  iTunesRemote.h
+//  iTunesRemoteControl.h
 //  MenuTunes
 //
-//  Created by Joseph Spiros on Sat Sep 06 2003.
-//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
+//  Created by Matt L. Judy on Sun Jan 05 2003.
+//  Copyright (c) 2003 NibFile.com. All rights reserved.
 //
 
+
 #import <Cocoa/Cocoa.h>
 #import <Carbon/Carbon.h>
-
 #import <ITMTRemote/ITMTRemote.h>
+#import <ITFoundation/ITFoundation.h>
 
-@interface iTunesRemote : ITMTRemote <ITMTRemote> {
-    ProcessSerialNumber        _currentPSN;
-    iTunesPlayer _player;
-    BOOL _activated;
+@interface iTunesRemote : ITMTRemote <ITMTRemote>
+{
+    ProcessSerialNumber savedPSN;
 }
 - (ProcessSerialNumber)iTunesPSN;
 @end
index 5781211..5a64303 100755 (executable)
-/* Copyright (c) 2002 - 2003 by iThink Software. All Rights Reserved. */
-
 #import "iTunesRemote.h"
 
-
 @implementation iTunesRemote
 
-+ (id)remote {
++ (id)remote
+{
     return [[[iTunesRemote alloc] init] autorelease];
 }
 
-- (id)valueOfProperty:(ITMTRemoteProperty)property {
-    // Get from Info.plist
-    return nil;
+- (NSString *)remoteTitle
+{
+    return @"iTunes Remote";
 }
 
-- (NSDictionary *)propertiesAndValues {
-    // Get from Info.plist
+- (NSString *)remoteInformation
+{
+    return @"Default MenuTunes plugin to control iTunes, by iThink Software.";
+}
+
+- (NSImage *)remoteIcon
+{
     return nil;
 }
 
-- (ITMTPlayerStyle)playerStyle {
-    return ITMTSinglePlayerStyle;
+- (BOOL)begin
+{
+    savedPSN = [self iTunesPSN];
+    return YES;
 }
 
-- (BOOL)activate {
-    if ( !_activated ) {
-        if ( [self iTunesIsRunning] ) {
-            _currentPSN = [self iTunesPSN];
-        } else {
-            if ( [self launchiTunes] ) {
-                _currentPSN = [self iTunesPSN];
-            } else {
-                return NO;
-            }
-        }
-        if ( ( _player = [iTunesPlayer sharedPlayerForRemote:self] ) ) {
-            _activated = YES;
-            return YES;
+- (BOOL)halt
+{
+    return YES;
+}
+
+- (NSString *)playerFullName
+{
+    return @"iTunes";
+}
+
+- (NSString *)playerSimpleName
+{
+    return @"iTunes";
+}
+
+- (NSDictionary *)capabilities
+{
+    return [NSDictionary dictionaryWithObjectsAndKeys:
+                [NSNumber numberWithBool: YES], @"Remote",
+                [NSNumber numberWithBool: YES], @"Basic Track Control",
+                [NSNumber numberWithBool: YES], @"Track Information",
+                [NSNumber numberWithBool: YES], @"Track Navigation",
+                [NSNumber numberWithBool: YES], @"Upcoming Songs",
+                [NSNumber numberWithBool: YES], @"Playlists",
+                [NSNumber numberWithBool: YES], @"Volume",
+                [NSNumber numberWithBool: YES], @"Shuffle",
+                [NSNumber numberWithBool: YES], @"Repeat Modes",
+                [NSNumber numberWithBool: YES], @"Equalizer",
+                [NSNumber numberWithBool: YES], @"Track Rating",
+                nil];
+}
+
+- (BOOL)showPrimaryInterface
+{
+    // Make this into AppleEvents... shouldn't be too hard, I'm just too tired to do it right now.
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:@"data:long(1), '----':obj { form:'prop', want:type('prop'), seld:type('pisf'), from:'null'() }" eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    // Still have to convert these to AEs:
+    // set visible of browser window 1 to true
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:@"data:long(1), ----:obj { form:'prop', want:'prop', seld:'pvis', from:obj { form:'indx', want:'cBrW', seld:1, from:'null'() } }" eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    // set minimized of browser window 1 to false
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:@"data:long(0), ----:obj { form:'prop', want:'prop', seld:'pMin', from:obj { form:'indx', want:'cBrW', seld:1, from:'null'() } }" eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+
+    return NO;
+}
+
+- (ITMTRemotePlayerRunningState)playerRunningState
+{
+    NSArray *apps = [[NSWorkspace sharedWorkspace] launchedApplications];
+    int i;
+    int count = [apps count];
+    
+    for (i = 0; i < count; i++) {
+        if ([[[apps objectAtIndex:i] objectForKey:@"NSApplicationName"] isEqualToString:@"iTunes"]) {
+            return ITMTRemotePlayerRunning;
         }
-    } else {
-        return NO;
     }
+    return ITMTRemotePlayerNotRunning;
 }
 
-- (BOOL)deactivate {
-    if ( _activated ) {
-        _currentPSN = kNoProcess;
-        _player = nil;
-        _activated = NO;
-        return YES;
-    } else {
-        return NO;
+- (ITMTRemotePlayerPlayingState)playerPlayingState
+{
+    long result = [[ITAppleEventCenter sharedCenter] sendAEWithSendStringForNumber:@"'----':obj { form:'prop', want:type('prop'), seld:type('pPlS'), from:'null'() }" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    
+    switch (result)
+    {
+        default:
+        case 'kPSS':
+            return ITMTRemotePlayerStopped;
+        case 'kPSP':
+            return ITMTRemotePlayerPlaying;
+        case 'kPSp':
+            return ITMTRemotePlayerPaused;
+        case 'kPSR':
+            return ITMTRemotePlayerRewinding;
+        case 'kPSF':
+            return ITMTRemotePlayerForwarding;
     }
+    
+    return ITMTRemotePlayerStopped;
 }
 
-- (ITMTPlayer *)currentPlayer {
-    if (_activated) {
-        return _player;
-    } else {
-        return nil;
+- (NSArray *)playlists
+{
+    long i = 0;
+    const signed long numPlaylists = [[ITAppleEventCenter sharedCenter] sendAEWithSendStringForNumber:@"kocl:type('cPly'), '----':()" eventClass:@"core" eventID:@"cnte" appPSN:savedPSN];
+    NSMutableArray *playlists = [[NSMutableArray alloc] initWithCapacity:numPlaylists];
+    
+    for (i = 1; i <= numPlaylists; i++) {
+        const long j = i;
+        NSString *sendStr = [NSString stringWithFormat:@"'----':obj { form:'prop', want:type('prop'), seld:type('pnam'), from:obj { form:'indx', want:type('cPly'), seld:long(%lu), from:'null'() } }",(unsigned long)j];
+        NSString *theObj = [[ITAppleEventCenter sharedCenter] sendAEWithSendString:sendStr eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+        [playlists addObject:theObj];
     }
+    return [playlists autorelease];
+}
+
+- (int)numberOfSongsInPlaylistAtIndex:(int)index
+{
+    return [[ITAppleEventCenter sharedCenter] sendAEWithSendStringForNumber:[NSString stringWithFormat:@"kocl:type('cTrk'), '----':obj { form:'indx', want:type('cPly'), seld:long(%lu), from:'null'() }",index] eventClass:@"core" eventID:@"cnte" appPSN:savedPSN];
+}
+
+- (ITMTRemotePlayerPlaylistClass)currentPlaylistClass
+{
+    int realResult = [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pcls" fromObjectByKey:@"pPla" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    
+
+    switch (realResult)
+          {
+          case 'cLiP':
+                 return ITMTRemotePlayerLibraryPlaylist;
+                 break;
+          case 'cRTP':
+                 return ITMTRemotePlayerRadioPlaylist;
+                 break;
+          default:
+                 return ITMTRemotePlayerPlaylist;
+          }
+}
+
+- (int)currentPlaylistIndex
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pidx" fromObjectByKey:@"pPla" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)songTitleAtIndex:(int)index
+{
+    return [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"'----':obj { form:'prop', want:type('prop'), seld:type('pnam'), from:obj { form:'indx', want:type('cTrk'), seld:long(%lu), from:obj { form:'prop', want:type('prop'), seld:type('pPla'), from:'null'() } } }",index] eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (int)currentAlbumTrackCount
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pTrC" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (int)currentSongTrack
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pTrN" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
 }
 
-- (NSArray *)players {
-    if (_activated) {
-        return [NSArray arrayWithObject:_player];
-    } else {
-        return nil;
+- (NSString *)playerStateUniqueIdentifier
+{
+    return [NSString stringWithFormat:@"%i-%i", [self currentPlaylistIndex], [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pDID" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN]];
+}
+
+- (int)currentSongIndex
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKeyForNumber:@"pidx" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongTitle
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKey:@"pnam" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongArtist
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKey:@"pArt" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongAlbum
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKey:@"pAlb" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongGenre
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKey:@"pGen" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongLength
+{
+    return [[ITAppleEventCenter sharedCenter] sendTwoTierAEWithRequestedKey:@"pTim" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+}
+
+- (NSString *)currentSongRemaining
+{
+    long duration = [[ITAppleEventCenter sharedCenter]
+                        sendTwoTierAEWithRequestedKeyForNumber:@"pDur" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    long current = [[ITAppleEventCenter sharedCenter]
+                        sendAEWithRequestedKeyForNumber:@"pPos" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+
+    return [[NSNumber numberWithLong:duration - current] stringValue];
+}
+
+- (float)currentSongRating
+{
+    return (float)[[ITAppleEventCenter sharedCenter]
+                sendTwoTierAEWithRequestedKeyForNumber:@"pRte" fromObjectByKey:@"pTrk" eventClass:@"core" eventID:@"getd" appPSN:savedPSN] / 100.0;
+}
+
+- (BOOL)setCurrentSongRating:(float)rating
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"data:long(%lu), '----':obj { form:'prop', want:type('prop'), seld:type('pRte'), from:obj { form:'indx', want:type('cTrk'), seld:long(%lu), from:obj { form:'prop', want:type('prop'), seld:type('pPla'), from:'null'() } } }",(long)(rating*100),[self currentSongIndex]] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    return YES;
+}
+
+/* - (BOOL)equalizerEnabled
+{
+    int thingy = [[ITAppleEventCenter sharedCenter] sendAEWithSendStringForNumber:@"'----':obj { form:type('prop'), want:type('prop'), seld:type('pEQ '), from:() }" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    NSLog(@"Debug equalizerEnabled: %i", thingy);
+    return thingy;
+}
+
+- (BOOL)setEqualizerEnabled:(BOOL)enabled
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"data:long(%lu), '----':obj { form:'prop', want:type('prop'), seld:type('pEQ '), from:'null'() }",enabled] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    return YES;
+} */
+
+- (NSArray *)eqPresets
+{
+    int i;
+    long numPresets = [[ITAppleEventCenter sharedCenter] sendAEWithSendStringForNumber:@"kocl:type('cEQP'), '----':(), &subj:()" eventClass:@"core" eventID:@"cnte" appPSN:savedPSN];
+    NSMutableArray *presets = [[NSMutableArray alloc] initWithCapacity:numPresets];
+    
+    for (i = 1; i <= numPresets; i++) {
+        NSString *theObj = [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"'----':obj { form:'prop', want:type('prop'), seld:type('pnam'), from:obj { form:'indx', want:type('cEQP'), seld:long(%lu), from:'null'() } }",i] eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+        if (theObj) {
+            [presets addObject:theObj];
+        }
     }
+    return [presets autorelease];
 }
 
-#pragma mark -
-#pragma mark INTERNAL METHODS
-#pragma mark -
+- (int)currentEQPresetIndex
+{
+    int result;
+    result = [[ITAppleEventCenter sharedCenter]
+                sendTwoTierAEWithRequestedKeyForNumber:@"pidx" fromObjectByKey:@"pEQP" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    return result;
+}
 
-- (BOOL)launchiTunes {
-    return NO;
+- (float)volume
+{
+    return (float)[[ITAppleEventCenter sharedCenter] sendAEWithRequestedKeyForNumber:@"pVol" eventClass:@"core" eventID:@"getd" appPSN:savedPSN] / 100;
 }
 
-- (BOOL)iTunesIsRunning {
+- (BOOL)setVolume:(float)volume
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"data:long(%lu), '----':obj { form:'prop', want:type('prop'), seld:type('pVol'), from:'null'() }",(long)(volume*100)] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
     return NO;
 }
 
+- (BOOL)shuffleEnabled
+{
+    int result = [[ITAppleEventCenter sharedCenter]
+                sendTwoTierAEWithRequestedKeyForNumber:@"pShf" fromObjectByKey:@"pPla" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+    return result;
+}
+
+- (BOOL)setShuffleEnabled:(BOOL)enabled
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"data:long(%lu) ----:obj { form:'prop', want:type('prop'), seld:type('pShf'), from:obj { form:'prop', want:type('prop'), seld:type('pPla'), from:'null'() } }",(unsigned long)enabled] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    return YES;
+}
+
+- (ITMTRemotePlayerRepeatMode)repeatMode
+{
+    FourCharCode m00f = 0;
+    int result = 0;
+    m00f = [[ITAppleEventCenter sharedCenter]
+                sendTwoTierAEWithRequestedKeyForNumber:@"pRpt" fromObjectByKey:@"pPla" eventClass:@"core" eventID:@"getd" appPSN:savedPSN];
+
+    switch (m00f)
+          {
+          case 'kRp0':
+                 result = ITMTRemotePlayerRepeatOff;
+                 break;
+          case 'kRp1':
+                 result = ITMTRemotePlayerRepeatOne;
+                 break;
+          case 'kRpA':
+                 result = ITMTRemotePlayerRepeatAll;
+                 break;
+          }
+    
+    return result;
+}
+
+- (BOOL)setRepeatMode:(ITMTRemotePlayerRepeatMode)repeatMode
+{
+    char *m00f = NULL;
+    switch (repeatMode)
+          {
+          case ITMTRemotePlayerRepeatOff:
+                 m00f = "kRp0";
+                 break;
+          case ITMTRemotePlayerRepeatOne:
+                 m00f = "kRp1";
+                 break;
+          case ITMTRemotePlayerRepeatAll:
+                 m00f = "kRpA";
+                 break;
+          }
+
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"data:type('%s') ----:obj { form:'prop', want:type('pRpt'), seld:type('pShf'), from:obj { form:'prop', want:type('prop'), seld:type('pPla'), from:'null'() } }",m00f] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)play
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Play" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)pause
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Paus" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)goToNextSong
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Next" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)goToPreviousSong
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Prev" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)forward
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Fast" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)rewind
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithEventClass:@"hook" eventID:@"Rwnd" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)switchToPlaylistAtIndex:(int)index
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"'----':obj { form:'indx', want:type('cPly'), seld:long(%lu), from:() }",index] eventClass:@"hook" eventID:@"Play" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)switchToSongAtIndex:(int)index
+{
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"'----':obj { form:'indx', want:type('cTrk'), seld:long(%lu), from:obj { form:'prop', want:type('prop'), seld:type('pPla'), from:() } }",index] eventClass:@"hook" eventID:@"Play" appPSN:savedPSN];
+    return YES;
+}
+
+- (BOOL)switchToEQAtIndex:(int)index
+{
+    // index should count from 0, but itunes counts from 1, so let's add 1.
+    [[ITAppleEventCenter sharedCenter] sendAEWithSendString:[NSString stringWithFormat:@"'----':obj { form:'prop', want:type('prop'), seld:type('pEQP'), from:'null'() }, data:obj { form:'indx', want:type('cEQP'), seld:long(%lu), from:'null'() }",(index+1)] eventClass:@"core" eventID:@"setd" appPSN:savedPSN];
+    return YES;
+}
+
 - (ProcessSerialNumber)iTunesPSN
 {
+    /*NSArray *apps = [[NSWorkspace sharedWorkspace] launchedApplications];
+    ProcessSerialNumber number;
+    int i;
+    int count = [apps count];
+    
+    number.highLongOfPSN = kNoProcess;
+    
+    for (i = 0; i < count; i++)
+    {
+        NSDictionary *curApp = [apps objectAtIndex:i];
+        
+        if ([[curApp objectForKey:@"NSApplicationName"] isEqualToString:@"iTunes"])
+        {
+            number.highLongOfPSN = [[curApp objectForKey:
+                @"NSApplicationProcessSerialNumberHigh"] intValue];
+            number.lowLongOfPSN = [[curApp objectForKey:
+                @"NSApplicationProcessSerialNumberLow"] intValue];
+        }
+    }
+    return number;*/
     ProcessSerialNumber number;
     number.highLongOfPSN = kNoProcess;
     number.lowLongOfPSN = 0;