Programming Plugins in C

From wiki.jriver.com
Revision as of 18:23, 13 December 2008 by PaulSinnema (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Prerequisites[edit]

  • Media Center 12.0.213 or higher

Create a new plugin[edit]

Use the description of Mr ChriZ to create a new Plugin. http://yabb.jriver.com/interact/index.php?topic=32294.0

Autoresizing of plugin[edit]

Draw a Panel upon the UserControl and do the following:

  • Set 'Dock' Property to 'Fill'.
  • Set 'Autosize' Property to 'False'

Your Panel will now automatically be resized to fit into the MC Plugin Area. Anything you put upon the Panel can scale to the size of the Panel using the 'Anchor' or 'Dock' Properties. Don't use the 'Autosize' Property!

Registering the Event handler[edit]

C# Example: Registering the MJEvent handler. Note: more information regarding event handling can be found in the topic Media_Center_Automation.

public void Init ( MediaCenter.MCAutomation mcRef )
{
    try
    {
        this.mcRef = mcRef;
        // This tells MC to also call our MJEvent method
        this.mcRef.FireMJEvent += new IMJAutomationEvents_FireMJEventEventHandler ( MJEvent );    
    }
    catch (Exception e)
    {
        errorHandler ( e );
    }
    //Placing anything outside of this
    //try catch may cause MC to fail to open.
    //Play safe and insert it try area! 
}

private void errorHandler (Exception e)
{
    MessageBox.Show ( "A Fatal error has occured:-" + e.Message +
            "\n The Failure Occured" +
            "\n In Class Object " + e.Source +
            "\n when calling Method " + e.TargetSite +
            "\n \n The following Inner Exception was caused" + e.InnerException +
            "\n \n The Stack Trace Follows: \n\n" + e.StackTrace );
    this.Enabled = false;
}

Handling an event[edit]

C# Example: handle events fired by MC.

private void MJEvent(String s1 , String s2, String s3 )
{
    switch (s1)
    {
        case "MJEvent type: MCCommand":
            switch (s2)
            {
                case "MCC: NOTIFY_TRACK_CHANGE":
                    // Your code here
                    break;
 
               case "MCC: NOTIFY_PLAYERSTATE_CHANGE":
                    // Your code here
                    break;

               case "MCC: NOTIFY_PLAYLIST_ADDED":
                    // Your code here
                    break;
 
                case "MCC: NOTIFY_PLAYLIST_INFO_CHANGED":
                    // Your code here
                    break;
 
                case "MCC: NOTIFY_PLAYLIST_FILES_CHANGED":
                    // Your code here
                    break;
 
                case "MCC: NOTIFY_PLAYLIST_REMOVED":
                    // Your code here
                    break;
 
                case "MCC: NOTIFY_PLAYLIST_COLLECTION_CHANGED":
                    // Your code here
                    break;
 
                case "MCC: NOTIFY_PLAYLIST_PROPERTIES_CHANGED":
                    // Your code here
                    break;

                case "MCC: NOTIFY_SKIN_CHANGED":
                    // Your code here
                    break;

               default:
                    // Unknown (new?) event
                    break;
            }
 
            break;
 
        default:
            // Unknown (new?) type
            break;
    }
}