skin_parser.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:13k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * skin_parser.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: skin_parser.cpp 7646 2004-05-12 18:56:51Z ipkiss $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "skin_parser.hpp"
  24. #include "../src/os_factory.hpp"
  25. #include <math.h>
  26. #include <libxml/catalog.h>
  27. #include <sys/stat.h>
  28. // Current DTD version
  29. #define SKINS_DTD_VERSION "2.0"
  30. // Static variable to avoid initializing catalogs twice
  31. bool SkinParser::m_initialized = false;
  32. SkinParser::SkinParser( intf_thread_t *pIntf, const string &rFileName,
  33.                         const string &rPath ):
  34.     XMLParser( pIntf, rFileName ), m_xOffset( 0 ), m_yOffset( 0 ),
  35.     m_path( rPath )
  36. {
  37.     // Avoid duplicate initialization (mutex needed ?)
  38.     if( !m_initialized )
  39.     {
  40.         // Get the resource path and look for the DTD
  41.         OSFactory *pOSFactory = OSFactory::instance( getIntf() );
  42.         const list<string> &resPath = pOSFactory->getResourcePath();
  43.         const string &sep = pOSFactory->getDirSeparator();
  44.         list<string>::const_iterator it;
  45.         struct stat statBuf;
  46.         // Try to load the catalog first (needed at least on win32 where
  47.         // we don't have a default catalog)
  48.         for( it = resPath.begin(); it != resPath.end(); it++ )
  49.         {
  50.             string catalog_path = (*it) + sep + "skin.catalog";
  51.             if( !stat( catalog_path.c_str(), &statBuf ) )
  52.             {
  53.                 msg_Dbg( getIntf(), "Using catalog %s", catalog_path.c_str() );
  54.                 xmlLoadCatalog( catalog_path.c_str() );
  55.                 break;
  56.             }
  57.         }
  58.         if( it == resPath.end() )
  59.         {
  60.             // Ok, try the default one
  61.             xmlInitializeCatalog();
  62.         }
  63.         for( it = resPath.begin(); it != resPath.end(); it++ )
  64.         {
  65.             string path = (*it) + sep + "skin.dtd";
  66.             if( !stat( path.c_str(), &statBuf ) )
  67.             {
  68.                 // DTD found
  69.                 msg_Dbg( getIntf(), "Using DTD %s", path.c_str() );
  70.                 // Add an entry in the default catalog
  71.                 xmlCatalogAdd( (xmlChar*)"public",
  72.                                (xmlChar*)("-//VideoLAN//DTD VLC Skins V"
  73.                                           SKINS_DTD_VERSION "//EN"),
  74.                                (xmlChar*)path.c_str() );
  75.                 break;
  76.             }
  77.         }
  78.         if( it == resPath.end() )
  79.         {
  80.             msg_Err( getIntf(), "Cannot find the skins DTD !");
  81.         }
  82.         m_initialized = true;
  83.     }
  84. }
  85. void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
  86. {
  87.     if( rName == "Anchor" )
  88.     {
  89.         const BuilderData::Anchor anchor( atoi( attr["x"] ) + m_xOffset,
  90.                 atoi( attr["y"] ) + m_yOffset, atoi( attr["range"] ),
  91.                 atoi( attr["priority"] ), attr["points"], m_curLayoutId );
  92.         m_data.m_listAnchor.push_back( anchor );
  93.     }
  94.     else if( rName == "Bitmap" )
  95.     {
  96.         const BuilderData::Bitmap bitmap( uniqueId( attr["id"] ),
  97.                 convertFileName( attr["file"] ),
  98.                 convertColor( attr["alphacolor"] ) );
  99.         m_data.m_listBitmap.push_back( bitmap );
  100.     }
  101.     else if( rName == "BitmapFont" )
  102.     {
  103.         const BuilderData::BitmapFont font( uniqueId( attr["id"] ),
  104.                 convertFileName( attr["file"] ),
  105.                 attr["type"] );
  106.         m_data.m_listBitmapFont.push_back( font );
  107.     }
  108.     else if( rName == "Button" )
  109.     {
  110.         const BuilderData::Button button( uniqueId( attr["id"] ), atoi( attr["x"] ) +
  111.                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
  112.                 attr["rightbottom"], attr["visible"], attr["up"], attr["down"],
  113.                 attr["over"], attr["action"], attr["tooltiptext"], attr["help"],
  114.                 m_curLayer, m_curWindowId, m_curLayoutId );
  115.         m_curLayer++;
  116.         m_data.m_listButton.push_back( button );
  117.     }
  118.     else if( rName == "Checkbox" )
  119.     {
  120.         const BuilderData::Checkbox checkbox( uniqueId( attr["id"] ), atoi( attr["x"] ) +
  121.                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
  122.                 attr["rightbottom"], attr["visible"], attr["up1"], attr["down1"], attr["over1"],
  123.                 attr["up2"], attr["down2"], attr["over2"], attr["state"],
  124.                 attr["action1"], attr["action2"], attr["tooltiptext1"],
  125.                 attr["tooltiptext2"], attr["help"], m_curLayer, m_curWindowId,
  126.                 m_curLayoutId );
  127.         m_curLayer++;
  128.         m_data.m_listCheckbox.push_back( checkbox );
  129.     }
  130.     else if( rName == "Font" )
  131.     {
  132.         const BuilderData::Font fontData( uniqueId( attr["id"] ),
  133.                 convertFileName( attr["file"] ),
  134.                 atoi( attr["size"] ) );
  135.         m_data.m_listFont.push_back( fontData );
  136.     }
  137.     else if( rName == "Group" )
  138.     {
  139.         m_xOffset += atoi( attr["x"] );
  140.         m_yOffset += atoi( attr["y"] );
  141.         m_xOffsetList.push_back( atoi( attr["x"] ) );
  142.         m_yOffsetList.push_back( atoi( attr["y"] ) );
  143.     }
  144.     else if( rName == "Image" )
  145.     {
  146.         const BuilderData::Image imageData( uniqueId( attr["id"] ), atoi( attr["x"] ) +
  147.                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
  148.                 attr["rightbottom"], attr["visible"],
  149.                 attr["image"], attr["action"], attr["help"], m_curLayer,
  150.                 m_curWindowId, m_curLayoutId );
  151.         m_curLayer++;
  152.         m_data.m_listImage.push_back( imageData );
  153.     }
  154.     else if( rName == "Layout" )
  155.     {
  156.         m_curLayoutId = uniqueId( attr["id"] );
  157.         const BuilderData::Layout layout( m_curLayoutId, atoi( attr["width"] ),
  158.                 atoi( attr["height"] ), atoi( attr["minwidth"] ),
  159.                 atoi( attr["maxwidth"] ), atoi( attr["minheight"] ),
  160.                 atoi( attr["maxheight"] ), m_curWindowId );
  161.         m_data.m_listLayout.push_back( layout );
  162.         m_curLayer = 0;
  163.     }
  164.     else if( rName == "Playlist" )
  165.     {
  166.         m_curListId = uniqueId( attr["id"] );
  167.         const BuilderData::List listData( m_curListId, atoi( attr["x"] ) +
  168.                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["visible"],
  169.                 atoi( attr["width"]), atoi( attr["height"] ),
  170.                 attr["lefttop"], attr["rightbottom"],
  171.                 attr["font"], "playlist", convertColor( attr["fgcolor"] ),
  172.                 convertColor( attr["playcolor"] ),
  173.                 convertColor( attr["bgcolor1"] ),
  174.                 convertColor( attr["bgcolor2"] ),
  175.                 convertColor( attr["selcolor"] ), attr["help"],
  176.                 m_curLayer, m_curWindowId, m_curLayoutId );
  177.         m_curLayer++;
  178.         m_data.m_listList.push_back( listData );
  179.     }
  180.     else if( rName == "RadialSlider" )
  181.     {
  182.         const BuilderData::RadialSlider radial( uniqueId( attr["id"] ),
  183.                 attr["visible"],
  184.                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
  185.                 attr["lefttop"], attr["rightbottom"], attr["sequence"],
  186.                 atoi( attr["nbImages"] ), atof( attr["minAngle"] ) * M_PI / 180,
  187.                 atof( attr["maxAngle"] ) * M_PI / 180, attr["value"],
  188.                 attr["tooltiptext"], attr["help"], m_curLayer, m_curWindowId,
  189.                 m_curLayoutId );
  190.         m_curLayer++;
  191.         m_data.m_listRadialSlider.push_back( radial );
  192.     }
  193.     else if( rName == "Slider" )
  194.     {
  195.         string newValue = attr["value"];
  196.         if( m_curListId != "" )
  197.         {
  198.             // Slider associated to a list
  199.             newValue = "playlist.slider";
  200.         }
  201.         const BuilderData::Slider slider( uniqueId( attr["id"] ),
  202.                 attr["visible"],
  203.                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
  204.                 attr["lefttop"], attr["rightbottom"], attr["up"], attr["down"],
  205.                 attr["over"], attr["points"], atoi( attr["thickness"] ),
  206.                 newValue, attr["tooltiptext"], attr["help"], m_curLayer,
  207.                 m_curWindowId, m_curLayoutId );
  208.         m_curLayer++;
  209.         m_data.m_listSlider.push_back( slider );
  210.     }
  211.     else if( rName == "Text" )
  212.     {
  213.         const BuilderData::Text textData( uniqueId( attr["id"] ),
  214.                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
  215.                 attr["visible"], attr["font"],
  216.                 attr["text"], atoi( attr["width"] ),
  217.                 convertColor( attr["color"] ), attr["help"], m_curLayer,
  218.                 m_curWindowId, m_curLayoutId );
  219.         m_curLayer++;
  220.         m_data.m_listText.push_back( textData );
  221.     }
  222.     else if( rName == "Theme" )
  223.     {
  224.         // Check the version
  225.         if( strcmp( attr["version"], SKINS_DTD_VERSION ) )
  226.         {
  227.             msg_Err( getIntf(), "Bad theme version : %s (you need version %s)",
  228.                      attr["version"], SKINS_DTD_VERSION );
  229.             m_errors = true;
  230.             return;
  231.         }
  232.         const BuilderData::Theme theme( attr["tooltipfont"],
  233.                 atoi( attr["magnet"] ),
  234.                 convertInRange( attr["alpha"], 1, 255, "alpha" ),
  235.                 convertInRange( attr["movealpha"], 1, 255, "movealpha" ) );
  236.         m_data.m_listTheme.push_back( theme );
  237.     }
  238.     else if( rName == "ThemeInfo" )
  239.     {
  240.         msg_Info( getIntf(), "skin: %s  author: %s", attr["name"],
  241.                   attr["author"] );
  242.     }
  243.     else if( rName == "Video" )
  244.     {
  245.         const BuilderData::Video videoData( uniqueId( attr["id"] ),
  246.                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
  247.                 atoi( attr["width"] ), atoi( attr["height" ]),
  248.                 attr["lefttop"], attr["rightbottom"],
  249.                 attr["visible"], attr["help"], m_curLayer,
  250.                 m_curWindowId, m_curLayoutId );
  251.         m_curLayer++;
  252.         m_data.m_listVideo.push_back( videoData );
  253.     }
  254.     else if( rName == "Window" )
  255.     {
  256.         m_curWindowId = uniqueId( attr["id"] );
  257.         const BuilderData::Window window( m_curWindowId,
  258.                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
  259.                 convertBoolean( attr["visible"] ),
  260.                 convertBoolean( attr["dragdrop"] ),
  261.                 convertBoolean( attr["playondrop"] ) );
  262.         m_data.m_listWindow.push_back( window );
  263.     }
  264. }
  265. void SkinParser::handleEndElement( const string &rName )
  266. {
  267.     if( rName == "Group" )
  268.     {
  269.         m_xOffset -= m_xOffsetList.back();
  270.         m_yOffset -= m_yOffsetList.back();
  271.         m_xOffsetList.pop_back();
  272.         m_yOffsetList.pop_back();
  273.     }
  274.     else if( rName == "Playlist" )
  275.     {
  276.         m_curListId = "";
  277.     }
  278. }
  279. bool SkinParser::convertBoolean( const char *value ) const
  280. {
  281.     return strcmp( value, "true" ) == 0;
  282. }
  283. int SkinParser::convertColor( const char *transcolor ) const
  284. {
  285.     unsigned long iRed, iGreen, iBlue;
  286.     iRed = iGreen = iBlue = 0;
  287.     sscanf( transcolor, "#%2lX%2lX%2lX", &iRed, &iGreen, &iBlue );
  288.     return ( iRed << 16 | iGreen << 8 | iBlue );
  289. }
  290. string SkinParser::convertFileName( const char *fileName ) const
  291. {
  292.     return m_path + string( fileName );
  293. }
  294. int SkinParser::convertInRange( const char *value, int minValue, int maxValue,
  295.                                 const string &rAttribute ) const
  296. {
  297.     int intValue = atoi( value );
  298.     if( intValue < minValue )
  299.     {
  300.         msg_Warn( getIntf(), "Value of "%s" attribute (%i) is out of the "
  301.                   "expected range [%i, %i], using %i instead",
  302.                   rAttribute.c_str(), intValue, minValue, maxValue, minValue );
  303.         return minValue;
  304.     }
  305.     else if( intValue > maxValue )
  306.     {
  307.         msg_Warn( getIntf(), "Value of "%s" attribute (%i) is out of the "
  308.                   "expected range [%i, %i], using %i instead",
  309.                   rAttribute.c_str(), intValue, minValue, maxValue, maxValue );
  310.         return maxValue;
  311.     }
  312.     else
  313.     {
  314.         return intValue;
  315.     }
  316. }
  317. const string SkinParser::generateId() const
  318. {
  319.     static int i = 1;
  320.     char genId[5];
  321.     snprintf( genId, 4, "%i", i++ );
  322.     string base = "_ReservedId_" + (string)genId;
  323.     return base;
  324. }
  325. const string SkinParser::uniqueId( const string &id )
  326. {
  327.     string newId;
  328.     if( m_idSet.find( id ) != m_idSet.end() )
  329.     {
  330.         // The id was already used
  331.         if( id != "none" )
  332.         {
  333.             msg_Warn( getIntf(), "Non unique id: %s", id.c_str() );
  334.         }
  335.         newId = generateId();
  336.     }
  337.     else
  338.     {
  339.         // OK, this is a new id
  340.         newId = id;
  341.     }
  342.     // Add the id to the set
  343.     m_idSet.insert( newId );
  344.     return newId;
  345. }