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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "Skin.h"
#include "AddonManager.h"
#include "LangInfo.h"
#include "Util.h"
#include "filesystem/File.h"
#include "filesystem/SpecialProtocol.h"
#include "guilib/WindowIDs.h"
#include "settings/Setting.h"
#include "settings/Settings.h"
#include "utils/URIUtils.h"
#include "utils/log.h"
#include "utils/StringUtils.h"
// fallback for new skin resolution code
#include "filesystem/Directory.h"
using namespace std;
using namespace XFILE;
#define SKIN_MIN_VERSION 2.1f
boost::shared_ptr<ADDON::CSkinInfo> g_SkinInfo;
namespace ADDON
{
CSkinInfo::CSkinInfo(const AddonProps &props, const RESOLUTION_INFO &resolution)
: CAddon(props), m_defaultRes(resolution)
{
}
CSkinInfo::CSkinInfo(const cp_extension_t *ext)
: CAddon(ext)
{
ELEMENTS elements;
if (CAddonMgr::Get().GetExtElements(ext->configuration, "res", elements))
{
for (ELEMENTS::iterator i = elements.begin(); i != elements.end(); ++i)
{
int width = atoi(CAddonMgr::Get().GetExtValue(*i, "@width"));
int height = atoi(CAddonMgr::Get().GetExtValue(*i, "@height"));
bool defRes = CAddonMgr::Get().GetExtValue(*i, "@default").Equals("true");
CStdString folder = CAddonMgr::Get().GetExtValue(*i, "@folder");
float aspect = 0;
CStdStringArray fracs;
CStdString strAspect = CAddonMgr::Get().GetExtValue(*i, "@aspect");
StringUtils::SplitString(strAspect, ":", fracs);
if (fracs.size() == 2)
aspect = (float)(atof(fracs[0].c_str())/atof(fracs[1].c_str()));
if (width > 0 && height > 0)
{
RESOLUTION_INFO res(width, height, aspect, folder);
res.strId = strAspect; // for skin usage, store aspect string in strId
if (defRes)
m_defaultRes = res;
m_resolutions.push_back(res);
}
}
}
else
{ // no resolutions specified -> backward compatibility
CStdString defaultWide = CAddonMgr::Get().GetExtValue(ext->configuration, "@defaultwideresolution");
if (defaultWide.IsEmpty())
defaultWide = CAddonMgr::Get().GetExtValue(ext->configuration, "@defaultresolution");
TranslateResolution(defaultWide, m_defaultRes);
}
CStdString str = CAddonMgr::Get().GetExtValue(ext->configuration, "@effectslowdown");
if (!str.IsEmpty())
m_effectsSlowDown = (float)atof(str.c_str());
else
m_effectsSlowDown = 1.f;
str = CAddonMgr::Get().GetExtValue(ext->configuration, "@debugging");
m_debugging = !strcmp(str.c_str(), "true");
LoadStartupWindows(ext);
m_Version = 2.11;
}
CSkinInfo::~CSkinInfo()
{
}
AddonPtr CSkinInfo::Clone() const
{
return AddonPtr(new CSkinInfo(*this));
}
struct closestRes
{
closestRes(const RESOLUTION_INFO &target) : m_target(target) { };
bool operator()(const RESOLUTION_INFO &i, const RESOLUTION_INFO &j)
{
float diff = fabs(i.DisplayRatio() - m_target.DisplayRatio()) - fabs(j.DisplayRatio() - m_target.DisplayRatio());
if (diff < 0) return true;
if (diff > 0) return false;
diff = fabs((float)i.iHeight - m_target.iHeight) - fabs((float)j.iHeight - m_target.iHeight);
if (diff < 0) return true;
if (diff > 0) return false;
return fabs((float)i.iWidth - m_target.iWidth) < fabs((float)j.iWidth - m_target.iWidth);
}
RESOLUTION_INFO m_target;
};
void CSkinInfo::Start()
{
if (!m_resolutions.size())
{ // try falling back to whatever resolutions exist in the directory
CFileItemList items;
CDirectory::GetDirectory(Path(), items, "", DIR_FLAG_NO_FILE_DIRS);
for (int i = 0; i < items.Size(); i++)
{
RESOLUTION_INFO res;
if (items[i]->m_bIsFolder && TranslateResolution(items[i]->GetLabel(), res))
m_resolutions.push_back(res);
}
}
if (!m_resolutions.empty())
{
// find the closest resolution
const RESOLUTION_INFO &target = g_graphicsContext.GetResInfo();
RESOLUTION_INFO& res = *std::min_element(m_resolutions.begin(), m_resolutions.end(), closestRes(target));
m_currentAspect = res.strId;
}
}
CStdString CSkinInfo::GetSkinPath(const CStdString& strFile, RESOLUTION_INFO *res, const CStdString& strBaseDir /* = "" */) const
{
if (m_resolutions.empty())
return ""; // invalid skin
CStdString strPathToUse = Path();
if (!strBaseDir.IsEmpty())
strPathToUse = strBaseDir;
// if the caller doesn't care about the resolution just use a temporary
RESOLUTION_INFO tempRes;
if (!res)
res = &tempRes;
// find the closest resolution
const RESOLUTION_INFO &target = g_graphicsContext.GetResInfo();
*res = *std::min_element(m_resolutions.begin(), m_resolutions.end(), closestRes(target));
CStdString strPath = URIUtils::AddFileToFolder(strPathToUse, res->strMode);
strPath = URIUtils::AddFileToFolder(strPath, strFile);
if (CFile::Exists(strPath))
return strPath;
// use the default resolution
*res = m_defaultRes;
strPath = URIUtils::AddFileToFolder(strPathToUse, res->strMode);
strPath = URIUtils::AddFileToFolder(strPath, strFile);
return strPath;
}
bool CSkinInfo::HasSkinFile(const CStdString &strFile) const
{
return CFile::Exists(GetSkinPath(strFile));
}
double CSkinInfo::GetMinVersion()
{
return SKIN_MIN_VERSION;
}
void CSkinInfo::LoadIncludes()
{
CStdString includesPath = CSpecialProtocol::TranslatePathConvertCase(GetSkinPath("includes.xml"));
CLog::Log(LOGINFO, "Loading skin includes from %s", includesPath.c_str());
m_includes.ClearIncludes();
m_includes.LoadIncludes(includesPath);
}
void CSkinInfo::ResolveIncludes(TiXmlElement *node, std::map<int, bool>* xmlIncludeConditions /* = NULL */)
{
if(xmlIncludeConditions)
xmlIncludeConditions->clear();
m_includes.ResolveIncludes(node, xmlIncludeConditions);
}
int CSkinInfo::GetStartWindow() const
{
int windowID = CSettings::Get().GetInt("lookandfeel.startupwindow");
assert(m_startupWindows.size());
for (vector<CStartupWindow>::const_iterator it = m_startupWindows.begin(); it != m_startupWindows.end(); it++)
{
if (windowID == (*it).m_id)
return windowID;
}
// return our first one
return m_startupWindows[0].m_id;
}
bool CSkinInfo::LoadStartupWindows(const cp_extension_t *ext)
{
m_startupWindows.clear();
m_startupWindows.push_back(CStartupWindow(WINDOW_HOME, "513"));
m_startupWindows.push_back(CStartupWindow(WINDOW_PVR, "19180"));
m_startupWindows.push_back(CStartupWindow(WINDOW_PROGRAMS, "0"));
m_startupWindows.push_back(CStartupWindow(WINDOW_PICTURES, "1"));
m_startupWindows.push_back(CStartupWindow(WINDOW_MUSIC, "2"));
m_startupWindows.push_back(CStartupWindow(WINDOW_VIDEOS, "3"));
m_startupWindows.push_back(CStartupWindow(WINDOW_FILES, "7"));
m_startupWindows.push_back(CStartupWindow(WINDOW_SETTINGS_MENU, "5"));
m_startupWindows.push_back(CStartupWindow(WINDOW_WEATHER, "8"));
return true;
}
void CSkinInfo::GetSkinPaths(std::vector<CStdString> &paths) const
{
RESOLUTION_INFO res;
GetSkinPath("Home.xml", &res);
if (!res.strMode.empty())
paths.push_back(URIUtils::AddFileToFolder(Path(), res.strMode));
if (res.strMode != m_defaultRes.strMode)
paths.push_back(URIUtils::AddFileToFolder(Path(), m_defaultRes.strMode));
}
bool CSkinInfo::TranslateResolution(const CStdString &name, RESOLUTION_INFO &res)
{
if (name.Equals("pal"))
res = RESOLUTION_INFO(720, 576, 4.0f/3, "pal");
else if (name.Equals("pal16x9"))
res = RESOLUTION_INFO(720, 576, 16.0f/9, "pal16x9");
else if (name.Equals("ntsc"))
res = RESOLUTION_INFO(720, 480, 4.0f/3, "ntsc");
else if (name.Equals("ntsc16x9"))
res = RESOLUTION_INFO(720, 480, 16.0f/9, "ntsc16x9");
else if (name.Equals("720p"))
res = RESOLUTION_INFO(1280, 720, 0, "720p");
else if (name.Equals("1080i"))
res = RESOLUTION_INFO(1920, 1080, 0, "1080i");
else
return false;
return true;
}
int CSkinInfo::GetFirstWindow() const
{
int startWindow = GetStartWindow();
if (HasSkinFile("Startup.xml"))
startWindow = WINDOW_STARTUP_ANIM;
return startWindow;
}
bool CSkinInfo::IsInUse() const
{
// Could extend this to prompt for reverting to the standard skin perhaps
return CSettings::Get().GetString("lookandfeel.skin") == ID();
}
const INFO::CSkinVariableString* CSkinInfo::CreateSkinVariable(const CStdString& name, int context)
{
return m_includes.CreateSkinVariable(name, context);
}
void CSkinInfo::SettingOptionsSkinColorsFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string ¤t)
{
CStdString settingValue = ((const CSettingString*)setting)->GetValue();
// Remove the .xml extension from the Themes
if (URIUtils::HasExtension(settingValue, ".xml"))
URIUtils::RemoveExtension(settingValue);
current = "SKINDEFAULT";
// There is a default theme (just defaults.xml)
// any other *.xml files are additional color themes on top of this one.
// add the default label
list.push_back(make_pair(g_localizeStrings.Get(15109), "SKINDEFAULT")); // the standard defaults.xml will be used!
// Search for colors in the Current skin!
vector<string> vecColors;
string strPath = URIUtils::AddFileToFolder(g_SkinInfo->Path(), "colors");
CFileItemList items;
CDirectory::GetDirectory(CSpecialProtocol::TranslatePathConvertCase(strPath), items, ".xml");
// Search for Themes in the Current skin!
for (int i = 0; i < items.Size(); ++i)
{
CFileItemPtr pItem = items[i];
if (!pItem->m_bIsFolder && !StringUtils::EqualsNoCase(pItem->GetLabel(), "defaults.xml"))
{ // not the default one
vecColors.push_back(pItem->GetLabel().Mid(0, pItem->GetLabel().size() - 4));
}
}
sort(vecColors.begin(), vecColors.end(), sortstringbyname());
for (int i = 0; i < (int) vecColors.size(); ++i)
list.push_back(make_pair(vecColors[i], vecColors[i]));
// try to find the best matching value
for (vector< pair<string, string> >::const_iterator it = list.begin(); it != list.end(); ++it)
{
if (StringUtils::EqualsNoCase(it->second, settingValue))
current = settingValue;
}
}
void CSkinInfo::SettingOptionsSkinFontsFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string ¤t)
{
CStdString settingValue = ((const CSettingString*)setting)->GetValue();
bool currentValueSet = false;
std::string strPath = g_SkinInfo->GetSkinPath("Font.xml");
CXBMCTinyXML xmlDoc;
if (!xmlDoc.LoadFile(strPath))
{
CLog::Log(LOGERROR, "FillInSkinFonts: Couldn't load %s", strPath.c_str());
return;
}
TiXmlElement* pRootElement = xmlDoc.RootElement();
std::string strValue = pRootElement->ValueStr();
if (strValue != "fonts")
{
CLog::Log(LOGERROR, "FillInSkinFonts: file %s doesn't start with <fonts>", strPath.c_str());
return;
}
const TiXmlNode *pChild = pRootElement->FirstChild();
strValue = pChild->ValueStr();
if (strValue == "fontset")
{
while (pChild)
{
strValue = pChild->ValueStr();
if (strValue == "fontset")
{
const char* idAttr = ((TiXmlElement*) pChild)->Attribute("id");
const char* idLocAttr = ((TiXmlElement*) pChild)->Attribute("idloc");
const char* unicodeAttr = ((TiXmlElement*) pChild)->Attribute("unicode");
bool isUnicode = (unicodeAttr && stricmp(unicodeAttr, "true") == 0);
bool isAllowed = true;
if (g_langInfo.ForceUnicodeFont() && !isUnicode)
isAllowed = false;
if (idAttr != NULL && isAllowed)
{
if (idLocAttr)
list.push_back(make_pair(g_localizeStrings.Get(atoi(idLocAttr)), idAttr));
else
list.push_back(make_pair(idAttr, idAttr));
if (StringUtils::EqualsNoCase(idAttr, settingValue.c_str()))
currentValueSet = true;
}
}
pChild = pChild->NextSibling();
}
}
else
{
// Since no fontset is defined, there is no selection of a fontset, so disable the component
list.push_back(make_pair(g_localizeStrings.Get(13278), ""));
current = "";
currentValueSet = true;
}
if (!currentValueSet)
current = list[0].second;
}
void CSkinInfo::SettingOptionsSkinSoundFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string ¤t)
{
CStdString settingValue = ((const CSettingString*)setting)->GetValue();
current = "SKINDEFAULT";
//find skins...
CFileItemList items;
CDirectory::GetDirectory("special://xbmc/sounds/", items);
CDirectory::GetDirectory("special://home/sounds/", items);
vector<string> vecSoundSkins;
for (int i = 0; i < items.Size(); i++)
{
CFileItemPtr pItem = items[i];
if (pItem->m_bIsFolder)
{
if (StringUtils::EqualsNoCase(pItem->GetLabel(), ".svn") ||
StringUtils::EqualsNoCase(pItem->GetLabel(), "fonts") ||
StringUtils::EqualsNoCase(pItem->GetLabel(), "media"))
continue;
vecSoundSkins.push_back(pItem->GetLabel());
}
}
list.push_back(make_pair(g_localizeStrings.Get(474), "OFF"));
list.push_back(make_pair(g_localizeStrings.Get(15109), "SKINDEFAULT"));
sort(vecSoundSkins.begin(), vecSoundSkins.end(), sortstringbyname());
for (unsigned int i = 0; i < vecSoundSkins.size(); i++)
list.push_back(make_pair(vecSoundSkins[i], vecSoundSkins[i]));
// try to find the best matching value
for (vector< pair<string, string> >::const_iterator it = list.begin(); it != list.end(); ++it)
{
if (StringUtils::EqualsNoCase(it->second, settingValue))
current = settingValue;
}
}
void CSkinInfo::SettingOptionsSkinThemesFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string ¤t)
{
// get the choosen theme and remove the extension from the current theme (backward compat)
CStdString settingValue = ((const CSettingString*)setting)->GetValue();
URIUtils::RemoveExtension(settingValue);
current = "SKINDEFAULT";
// there is a default theme (just Textures.xpr/xbt)
// any other *.xpr|*.xbt files are additional themes on top of this one.
// add the default Label
list.push_back(make_pair(g_localizeStrings.Get(15109), "SKINDEFAULT")); // the standard Textures.xpr/xbt will be used
// search for themes in the current skin!
vector<CStdString> vecTheme;
CUtil::GetSkinThemes(vecTheme);
// sort the themes for GUI and list them
for (int i = 0; i < (int) vecTheme.size(); ++i)
list.push_back(make_pair(vecTheme[i], vecTheme[i]));
// try to find the best matching value
for (vector< pair<string, string> >::const_iterator it = list.begin(); it != list.end(); ++it)
{
if (StringUtils::EqualsNoCase(it->second, settingValue))
current = settingValue;
}
}
void CSkinInfo::SettingOptionsStartupWindowsFiller(const CSetting *setting, std::vector< std::pair<std::string, int> > &list, int ¤t)
{
int settingValue = ((const CSettingInt *)setting)->GetValue();
current = -1;
const vector<CStartupWindow> &startupWindows = g_SkinInfo->GetStartupWindows();
for (vector<CStartupWindow>::const_iterator it = startupWindows.begin(); it != startupWindows.end(); it++)
{
string windowName = it->m_name;
if (StringUtils::IsNaturalNumber(windowName))
windowName = g_localizeStrings.Get(atoi(windowName.c_str()));
int windowID = it->m_id;
list.push_back(make_pair(windowName, windowID));
if (settingValue == windowID)
current = settingValue;
}
// if the current value hasn't been properly set, set it to the first window in the list
if (current < 0)
current = list[0].second;
}
} /*namespace ADDON*/
|