]> git.sesse.net Git - vlc/blob - modules/gui/skins2/parser/skin_parser.cpp
* parser/builder.cpp, parser/skin_parser.cpp: unique IDs are generated
[vlc] / modules / gui / skins2 / parser / skin_parser.cpp
1 /*****************************************************************************
2  * skin_parser.cpp
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: skin_parser.cpp,v 1.3 2004/03/01 18:33:31 asmax Exp $
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
24 #include "skin_parser.hpp"
25 #include <math.h>
26
27 // Current DTD version
28 #define SKINS_DTD_VERSION "2.0"
29
30
31 SkinParser::SkinParser( intf_thread_t *pIntf, const string &rFileName ):
32     XMLParser( pIntf, rFileName ), m_xOffset( 0 ), m_yOffset( 0 )
33 {
34 }
35
36
37 void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
38 {
39     if( rName == "Anchor" )
40     {
41         const BuilderData::Anchor anchor( atoi( attr["x"] ) + m_xOffset,
42                 atoi( attr["y"] ) + m_yOffset, atoi( attr["range"] ),
43                 atoi( attr["priority"] ), m_curWindowId );
44         m_data.m_listAnchor.push_back( anchor );
45     }
46
47     else if( rName == "Bitmap" )
48     {
49         const BuilderData::Bitmap bitmap( attr["id"] , attr["file"],
50                 ConvertColor( attr["alphacolor"] ) );
51         m_data.m_listBitmap.push_back( bitmap );
52     }
53
54     else if( rName == "Button" )
55     {
56         const BuilderData::Button button( uniqueId( attr["id"] ), atoi( attr["x"] ) +
57                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
58                 attr["rightbottom"], attr["up"], attr["down"], attr["over"],
59                 attr["action"], attr["tooltiptext"], attr["help"], m_curLayer,
60                 m_curWindowId, m_curLayoutId );
61         m_curLayer++;
62         m_data.m_listButton.push_back( button );
63     }
64
65     else if( rName == "CheckBox" )
66     {
67         const BuilderData::Checkbox checkbox( uniqueId( attr["id"] ), atoi( attr["x"] ) +
68                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
69                 attr["rightbottom"], attr["up1"], attr["down1"], attr["over1"],
70                 attr["up2"], attr["down2"], attr["over2"], attr["state"],
71                 attr["action1"], attr["action2"], attr["tooltiptext1"],
72                 attr["tooltiptext2"], attr["help"], m_curLayer, m_curWindowId,
73                 m_curLayoutId );
74         m_curLayer++;
75         m_data.m_listCheckbox.push_back( checkbox );
76     }
77
78     else if( rName == "Font" )
79     {
80         const BuilderData::Font fontData( attr["id"], attr["font"],
81                 atoi( attr["size"] ) );
82         m_data.m_listFont.push_back( fontData );
83     }
84
85     else if( rName == "Group" )
86     {
87         m_xOffset += atoi( attr["x"] );
88         m_yOffset += atoi( attr["y"] );
89         m_xOffsetList.push_back( atoi( attr["x"] ) );
90         m_yOffsetList.push_back( atoi( attr["y"] ) );
91     }
92
93     else if( rName == "Image" )
94     {
95         const BuilderData::Image imageData( uniqueId( attr["id"] ), atoi( attr["x"] ) +
96                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["lefttop"],
97                 attr["rightbottom"], ConvertBoolean( attr["visible"] ),
98                 attr["image"], attr["onclick"], attr["help"], m_curLayer,
99                 m_curWindowId, m_curLayoutId );
100         m_curLayer++;
101         m_data.m_listImage.push_back( imageData );
102     }
103
104     else if( rName == "Layout" )
105     {
106         m_curLayoutId = uniqueId( attr["id"] );
107         const BuilderData::Layout layout( m_curLayoutId, atoi( attr["width"] ),
108                 atoi( attr["height"] ), atoi( attr["minwidth"] ),
109                 atoi( attr["maxwidth"] ), atoi( attr["minheight"] ),
110                 atoi( attr["maxheight"] ), m_curWindowId );
111         m_data.m_listLayout.push_back( layout );
112         m_curLayer = 0;
113     }
114
115     else if( rName == "Playlist" )
116     {
117         m_curListId = uniqueId( attr["id"] );
118         const BuilderData::List listData( m_curListId, atoi( attr["x"] ) +
119                 m_xOffset, atoi( attr["y"] ) + m_yOffset, atoi( attr["width"]),
120                 atoi( attr["height"] ), attr["lefttop"], attr["rightbottom"],
121                 attr["font"], attr["var"], ConvertColor( attr["fgcolor"] ),
122                 ConvertColor( attr["playcolor"] ),
123                 ConvertColor( attr["bgcolor1"] ),
124                 ConvertColor( attr["bgcolor2"] ),
125                 ConvertColor( attr["selcolor"] ), attr["help"],
126                 m_curLayer, m_curWindowId, m_curLayoutId );
127         m_curLayer++;
128         m_data.m_listList.push_back( listData );
129     }
130
131     else if( rName == "RadialSlider" )
132     {
133         const BuilderData::RadialSlider radial( uniqueId( attr["id"] ), attr["visible"],
134                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
135                 attr["lefttop"], attr["rightbottom"], attr["sequence"],
136                 atoi( attr["nbImages"] ), atof( attr["minAngle"] ) * M_PI / 180,
137                 atof( attr["maxAngle"] ) * M_PI / 180, attr["value"],
138                 attr["tooltiptext"], attr["help"], m_curLayer, m_curWindowId,
139                 m_curLayoutId );
140         m_curLayer++;
141         m_data.m_listRadialSlider.push_back( radial );
142     }
143
144     else if( rName == "Slider" )
145     {
146         string newValue = attr["value"];
147         if( m_curListId != "" )
148         {
149             // Slider associated to a list
150             newValue = "playlist.slider";
151         }
152         const BuilderData::Slider slider( uniqueId( attr["id"] ), attr["visible"],
153                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
154                 attr["lefttop"], attr["rightbottom"], attr["up"], attr["down"],
155                 attr["over"], attr["points"], atoi( attr["thickness"] ),
156                 newValue, attr["tooltiptext"], attr["help"], m_curLayer,
157                 m_curWindowId, m_curLayoutId );
158         m_curLayer++;
159         m_data.m_listSlider.push_back( slider );
160     }
161
162     else if( rName == "Text" )
163     {
164         const BuilderData::Text textData( uniqueId( attr["id"] ), atoi( attr["x"] ) +
165                 m_xOffset, atoi( attr["y"] ) + m_yOffset, attr["font"],
166                 attr["text"], atoi( attr["width"] ),
167                 ConvertColor( attr["color"] ), attr["help"], m_curLayer,
168                 m_curWindowId, m_curLayoutId );
169         m_curLayer++;
170         m_data.m_listText.push_back( textData );
171     }
172
173     else if( rName == "Theme" )
174     {
175         // Check the version
176         if( strcmp( attr["version"], SKINS_DTD_VERSION ) )
177         {
178             msg_Err( getIntf(), "Bad theme version : %s (you need version %s)",
179                      attr["version"], SKINS_DTD_VERSION );
180         }
181         const BuilderData::Theme theme( atoi( attr["magnet"] ),
182                 atoi( attr["alpha"] ), atoi( attr["movealpha"] ),
183                 atoi( attr["fadetime"] ) );
184         m_data.m_listTheme.push_back( theme );
185     }
186
187     else if( rName == "ThemeInfo" )
188     {
189         msg_Warn( getIntf(), "skin: %s  author: %s", attr["name"],
190                   attr["author"] );
191     }
192
193     else if( rName == "Window" )
194     {
195         m_curWindowId = uniqueId( attr["id"] );
196         const BuilderData::Window window( m_curWindowId,
197                 atoi( attr["x"] ) + m_xOffset, atoi( attr["y"] ) + m_yOffset,
198                 ConvertBoolean( attr["visible"] ),
199                 ConvertBoolean( attr["dragdrop"] ),
200                 ConvertBoolean( attr["playondrop"] ) );
201         m_data.m_listWindow.push_back( window );
202     }
203 }
204
205
206 void SkinParser::handleEndElement( const string &rName )
207 {
208     if( rName == "Group" )
209     {
210         m_xOffset -= m_xOffsetList.back();
211         m_yOffset -= m_yOffsetList.back();
212         m_xOffsetList.pop_back();
213         m_yOffsetList.pop_back();
214     }
215
216     else if( rName == "Playlist" )
217     {
218         m_curListId = "";
219     }
220 }
221
222
223 bool SkinParser::ConvertBoolean( const char *value ) const
224 {
225     return strcmp( value, "true" ) == 0;
226 }
227
228
229 int SkinParser::ConvertColor( const char *transcolor ) const
230 {
231     unsigned long iRed, iGreen, iBlue;
232     iRed = iGreen = iBlue = 0;
233     sscanf( transcolor, "#%2lX%2lX%2lX", &iRed, &iGreen, &iBlue );
234     return ( iRed << 16 | iGreen << 8 | iBlue );
235 }
236
237 const string SkinParser::generateId() const
238 {
239     static int i = 1;
240
241     char genId[5];
242     snprintf( genId, 4, "%i", i++ );
243
244     string base = "_ReservedId_" + (string)genId;
245
246     return base;
247 }
248
249
250 const string SkinParser::uniqueId( const string &id )
251 {
252     string newId;
253
254     if( m_idSet.find( id ) != m_idSet.end() )
255     {
256         // The id was already used
257         if( id != "none" )
258         {
259             msg_Warn( getIntf(), "Non unique id: %s", id.c_str() );
260         }
261         newId = generateId();
262     }
263     else
264     {
265         // OK, this is a new id
266         newId = id;
267     }
268
269     // Add the id to the set
270     m_idSet.insert( newId );
271
272     return newId;
273 }
274