2015-06-04 16:29:25 +02:00
|
|
|
#include <vdr/interface.h>
|
2015-05-30 16:43:59 +02:00
|
|
|
#include "libcore/curlfuncs.h"
|
2014-09-27 09:25:14 +02:00
|
|
|
#include "setup.h"
|
|
|
|
|
2015-06-04 10:57:25 +02:00
|
|
|
// --- cInstallManager -----------------------------------------------------------
|
|
|
|
cInstallManager::cInstallManager(void) {
|
|
|
|
installing = false;
|
|
|
|
updating = false;
|
|
|
|
runningInst = NULL;
|
|
|
|
installationStart = 0;
|
|
|
|
lastInstallDuration = -1;
|
|
|
|
timeout = 120; //2 Minutes timeout
|
|
|
|
currentSkin = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
cInstallManager::~cInstallManager(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cInstallManager::StartInstallation(string skin) {
|
|
|
|
runningInst = config.GetSkinRepo(skin);
|
|
|
|
if (!runningInst) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
installing = true;
|
|
|
|
installationStart = cTimeMs::Now();
|
|
|
|
runningInst->Install(*config.installerSkinPath, config.vdrThemesPath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cInstallManager::StartUpdate(string skin) {
|
|
|
|
runningInst = config.GetSkinRepo(skin);
|
|
|
|
if (!runningInst || runningInst->Type() != rtGit) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
updating = true;
|
|
|
|
installationStart = cTimeMs::Now();
|
|
|
|
runningInst->Update(*config.installerSkinPath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cInstallManager::Finished(void) {
|
|
|
|
if (!runningInst)
|
|
|
|
return true;
|
|
|
|
if (runningInst->InstallationFinished()) {
|
|
|
|
installing = false;
|
|
|
|
updating = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cInstallManager::SuccessfullyInstalled(void) {
|
|
|
|
if (!runningInst)
|
|
|
|
return false;
|
|
|
|
bool ok = runningInst->SuccessfullyInstalled();
|
|
|
|
runningInst = NULL;
|
|
|
|
return ok;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cInstallManager::SuccessfullyUpdated(void) {
|
|
|
|
if (!runningInst)
|
|
|
|
return false;
|
|
|
|
bool ok = runningInst->SuccessfullyUpdated();
|
|
|
|
runningInst = NULL;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cInstallManager::Duration(void) {
|
|
|
|
return (cTimeMs::Now() - installationStart) / 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cInstallManager::ProcessInstallationStatus(void) {
|
|
|
|
if (Installing()) {
|
|
|
|
if (Finished()) {
|
|
|
|
if (SuccessfullyInstalled()) {
|
|
|
|
config.AddNewSkinRef(currentSkin);
|
|
|
|
Skins.Message(mtStatus, tr("Skin successfully installed"));
|
|
|
|
} else {
|
|
|
|
Skins.Message(mtError, tr("Skin NOT successfully installed"));
|
|
|
|
}
|
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
|
|
|
} else {
|
|
|
|
int duration = Duration();
|
|
|
|
if (duration > timeout) {
|
|
|
|
Skins.Message(mtError, tr("Timeout"));
|
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
|
|
|
} else if (duration != lastInstallDuration) {
|
|
|
|
Skins.Message(mtStatus, *cString::sprintf("%s (%d %s)...", tr("Installing Skin"), duration, tr("sec")));
|
|
|
|
lastInstallDuration = duration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (Updating()) {
|
|
|
|
if (Finished()) {
|
|
|
|
if (SuccessfullyUpdated()) {
|
|
|
|
Skins.Message(mtStatus, tr("Skin successfully updated"));
|
2015-06-05 07:34:45 +02:00
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
2015-06-04 10:57:25 +02:00
|
|
|
} else {
|
|
|
|
Skins.Message(mtStatus, tr("Skin already up to date"));
|
2015-06-05 07:34:45 +02:00
|
|
|
return osContinue;
|
|
|
|
}
|
2015-06-04 10:57:25 +02:00
|
|
|
} else {
|
|
|
|
int duration = Duration();
|
|
|
|
if (duration > timeout) {
|
|
|
|
Skins.Message(mtError, tr("Timeout"));
|
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
|
|
|
} else if (duration != lastInstallDuration) {
|
|
|
|
Skins.Message(mtStatus, *cString::sprintf("%s (%d %s)...", tr("Updating Skin from Git"), duration, tr("sec")));
|
|
|
|
lastInstallDuration = duration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cSkinDesignerSetup -----------------------------------------------------------
|
2014-09-27 09:25:14 +02:00
|
|
|
cSkinDesignerSetup::cSkinDesignerSetup() {
|
2015-01-20 09:29:16 +01:00
|
|
|
numLogosPerSizeInitial = config.numLogosPerSizeInitial;
|
|
|
|
limitLogoCache = config.limitLogoCache;
|
|
|
|
numLogosMax = config.numLogosMax;
|
|
|
|
debugImageLoading = config.debugImageLoading;
|
|
|
|
rerunAmount = config.rerunAmount;
|
|
|
|
rerunDistance = config.rerunDistance;
|
|
|
|
rerunMaxChannel = config.rerunMaxChannel;
|
|
|
|
blockFlush = config.blockFlush;
|
2015-05-10 12:55:23 +02:00
|
|
|
framesPerSecond = config.framesPerSecond;
|
2014-10-18 09:11:11 +02:00
|
|
|
menuDisplayStyle[0] = tr("after one another");
|
|
|
|
menuDisplayStyle[1] = tr("at one go");
|
2014-09-27 09:25:14 +02:00
|
|
|
Setup();
|
|
|
|
}
|
|
|
|
|
2015-06-04 10:57:25 +02:00
|
|
|
cSkinDesignerSetup::~cSkinDesignerSetup(void) {
|
2015-01-31 11:46:06 +01:00
|
|
|
config.setupCloseDoReload = true;
|
2014-09-27 09:25:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cSkinDesignerSetup::Setup(void) {
|
|
|
|
int current = Current();
|
|
|
|
Clear();
|
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
SkinSetup();
|
2015-05-30 16:43:59 +02:00
|
|
|
InstallSkins();
|
2015-01-20 09:29:16 +01:00
|
|
|
PluginSetup();
|
|
|
|
ImageCacheStatistics();
|
2014-10-18 09:11:11 +02:00
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
SetCurrent(Get(current));
|
|
|
|
Display();
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cSkinDesignerSetup::ProcessKey(eKeys Key) {
|
2015-06-04 10:57:25 +02:00
|
|
|
eOSState state = ProcessInstallationStatus();
|
|
|
|
if (state == osEnd)
|
|
|
|
return osEnd;
|
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
bool hadSubMenu = HasSubMenu();
|
2015-06-04 10:57:25 +02:00
|
|
|
state = cMenuSetupPage::ProcessKey(Key);
|
2015-01-20 09:29:16 +01:00
|
|
|
if (hadSubMenu && Key == kOk) {
|
2015-01-20 14:26:28 +01:00
|
|
|
Store();
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
2015-06-04 10:57:25 +02:00
|
|
|
|
2015-06-04 16:29:25 +02:00
|
|
|
if (!hadSubMenu && (Key == kOk || Key == kUp || Key == kDown || Key == kLeft || Key == kRight || Key == kRed || Key == kYellow)) {
|
2015-05-30 16:43:59 +02:00
|
|
|
SetHelp(NULL, NULL, NULL, NULL);
|
|
|
|
cOsdItem *current = Get(Current());
|
|
|
|
cSkinMenuItem *skinMenuItem = dynamic_cast<cSkinMenuItem*>(current);
|
|
|
|
if (!skinMenuItem)
|
|
|
|
return state;
|
|
|
|
eItemType type = skinMenuItem->Type();
|
2015-06-04 10:57:25 +02:00
|
|
|
currentSkin = skinMenuItem->GetSkinName();
|
2015-05-30 16:43:59 +02:00
|
|
|
// KEY OK
|
|
|
|
if ((Key == kOk)) {
|
|
|
|
if (type == itSkinSetup) {
|
2015-07-09 00:14:42 +02:00
|
|
|
state = AddSubMenu(new cSkindesignerSkinSetup(currentSkin, "", ""));
|
2015-05-30 16:43:59 +02:00
|
|
|
} else if (type == itNoSkinSetup) {
|
|
|
|
state = osContinue;
|
|
|
|
} else if (type == itSkinRepo) {
|
|
|
|
Skins.Message(mtStatus, tr("Downloading Skin Screenshots..."));
|
2015-06-04 10:57:25 +02:00
|
|
|
cSkindesignerSkinPreview *prev = new cSkindesignerSkinPreview(currentSkin);
|
2015-05-30 16:43:59 +02:00
|
|
|
Skins.Message(mtStatus, NULL);
|
|
|
|
state = AddSubMenu(prev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Menu Moves
|
|
|
|
if (Key == kUp || Key == kDown || Key == kLeft || Key == kRight) {
|
|
|
|
if (type == itSkinRepo) {
|
|
|
|
SetHelp(tr("Install Skin"), NULL, NULL, NULL);
|
|
|
|
} else if (type == itSkinSetup || type == itNoSkinSetup) {
|
2015-06-04 10:57:25 +02:00
|
|
|
cSkinRepo *repo = config.GetSkinRepo(currentSkin);
|
2015-06-04 16:29:25 +02:00
|
|
|
if (repo) {
|
|
|
|
if (repo->Type() == rtGit)
|
2015-06-13 15:10:34 +02:00
|
|
|
SetHelp(tr("Update"), NULL, tr("Delete Skin"), NULL);
|
2015-06-04 16:29:25 +02:00
|
|
|
else
|
|
|
|
SetHelp(NULL, NULL, tr("Delete Skin"), NULL);
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// KEY RED
|
|
|
|
if (Key == kRed) {
|
|
|
|
if (type == itSkinRepo) {
|
2015-06-04 10:57:25 +02:00
|
|
|
Skins.Message(mtStatus, *cString::sprintf("%s ...", tr("Installing Skin")));
|
|
|
|
StartInstallation(currentSkin);
|
2015-05-30 16:43:59 +02:00
|
|
|
} else if (type == itSkinSetup || type == itNoSkinSetup) {
|
2015-06-04 10:57:25 +02:00
|
|
|
bool gitAvailable = StartUpdate(currentSkin);
|
|
|
|
if (gitAvailable) {
|
|
|
|
Skins.Message(mtStatus, *cString::sprintf("%s ...", tr("Updating Skin from Git")));
|
2015-05-30 16:43:59 +02:00
|
|
|
} else {
|
2015-06-04 10:57:25 +02:00
|
|
|
Skins.Message(mtStatus, tr("No Git Repsoitory available"));
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-04 16:29:25 +02:00
|
|
|
// KEY YELLOW
|
|
|
|
if (Key == kYellow) {
|
|
|
|
if (type == itSkinSetup || type == itNoSkinSetup) {
|
|
|
|
if (config.SkinActive(currentSkin)) {
|
|
|
|
Skins.Message(mtError, tr("Skin is running and can't be deleted"));
|
|
|
|
} else if (Interface->Confirm(*cString::sprintf("%s?", tr("Really delete skin")))) {
|
|
|
|
config.DeleteSkin(currentSkin);
|
|
|
|
Skins.Message(mtStatus, tr("Skin deleted"));
|
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
|
|
|
}
|
|
|
|
state = osContinue;
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSkinDesignerSetup::Store(void) {
|
|
|
|
config.numLogosPerSizeInitial = numLogosPerSizeInitial;
|
|
|
|
config.limitLogoCache = limitLogoCache;
|
|
|
|
config.numLogosMax = numLogosMax;
|
|
|
|
config.debugImageLoading = debugImageLoading;
|
|
|
|
config.rerunAmount = rerunAmount;
|
|
|
|
config.rerunDistance = rerunDistance;
|
|
|
|
config.rerunMaxChannel = rerunMaxChannel;
|
|
|
|
config.blockFlush = blockFlush;
|
2015-05-10 12:55:23 +02:00
|
|
|
config.framesPerSecond = framesPerSecond;
|
2015-01-20 09:29:16 +01:00
|
|
|
|
|
|
|
config.InitSetupIterator();
|
|
|
|
cSkinSetup *skinSetup = NULL;
|
2015-01-31 11:46:06 +01:00
|
|
|
while (skinSetup = config.GetNextSkinSetup()) {
|
2015-01-20 09:29:16 +01:00
|
|
|
string skin = skinSetup->GetSkin();
|
|
|
|
skinSetup->InitParameterIterator();
|
|
|
|
cSkinSetupParameter *param = NULL;
|
2015-01-31 11:46:06 +01:00
|
|
|
while (param = skinSetup->GetNextParameter()) {
|
2015-01-20 14:26:28 +01:00
|
|
|
cString paramName = cString::sprintf("%s.%s", skin.c_str(), param->name.c_str());
|
|
|
|
SetupStore(*paramName, param->value);
|
|
|
|
config.UpdateSkinSetupParameter(*paramName, param->value);
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
config.UpdateGlobals();
|
|
|
|
|
|
|
|
SetupStore("DebugImageLoading", debugImageLoading);
|
|
|
|
SetupStore("LimitChannelLogoCache", limitLogoCache);
|
|
|
|
SetupStore("NumberLogosInitially", numLogosPerSizeInitial);
|
|
|
|
SetupStore("NumberLogosMax", numLogosMax);
|
|
|
|
SetupStore("RerunAmount", rerunAmount);
|
|
|
|
SetupStore("RerunDistance", rerunDistance);
|
|
|
|
SetupStore("RerunMaxChannel", rerunMaxChannel);
|
|
|
|
SetupStore("BlockFlush", blockFlush);
|
2015-05-10 12:55:23 +02:00
|
|
|
SetupStore("FramesPerSecond", framesPerSecond);
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
2014-10-11 10:39:41 +02:00
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
cOsdItem *cSkinDesignerSetup::InfoItem(const char *label) {
|
|
|
|
cOsdItem *item;
|
|
|
|
item = new cOsdItem(cString::sprintf("---------------- %s ----------------", tr(label)));
|
|
|
|
item->SetSelectable(false);
|
|
|
|
return item;
|
|
|
|
}
|
2014-10-11 10:39:41 +02:00
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
void cSkinDesignerSetup::PluginSetup(void) {
|
2015-01-27 17:46:21 +01:00
|
|
|
Add(InfoItem(tr("Plugin Setup")));
|
2014-10-11 10:39:41 +02:00
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
Add(new cMenuEditStraItem(tr("Menu Item display method"), &blockFlush, 2, menuDisplayStyle));
|
2015-05-10 12:55:23 +02:00
|
|
|
Add(new cMenuEditIntItem(tr("Frames per Second (fading and shifting)"), &framesPerSecond, 10, 100));
|
2014-09-27 09:25:14 +02:00
|
|
|
|
2015-01-27 17:46:21 +01:00
|
|
|
Add(InfoItem(tr("Reruns")));
|
2015-01-20 09:29:16 +01:00
|
|
|
Add(new cMenuEditIntItem(tr("Maximum number of reruns to display"), &rerunAmount, 1, 100));
|
|
|
|
Add(new cMenuEditIntItem(tr("Minimum timely distance of rerun (in hours)"), &rerunDistance, 0, 1000));
|
2015-01-27 17:46:21 +01:00
|
|
|
Add(new cMenuEditIntItem(tr("Limit Channel Numbers"), &rerunMaxChannel, 0, 1000, tr("no limit")));
|
2015-01-20 09:29:16 +01:00
|
|
|
|
2015-01-27 17:46:21 +01:00
|
|
|
Add(InfoItem(tr("Image Loading")));
|
2015-01-20 09:29:16 +01:00
|
|
|
Add(new cMenuEditBoolItem(tr("Debug Image Loading"), &debugImageLoading));
|
|
|
|
Add(new cMenuEditBoolItem(tr("Limit Channel Logo Cache"), &limitLogoCache));
|
|
|
|
Add(new cMenuEditIntItem(tr("Number to cache initially (per size)"), &numLogosPerSizeInitial, 0, 1000));
|
|
|
|
Add(new cMenuEditIntItem(tr("Number to cache in maximum"), &numLogosMax, 0, 1000));
|
|
|
|
}
|
2014-09-27 09:25:14 +02:00
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
void cSkinDesignerSetup::ImageCacheStatistics(void) {
|
2014-10-04 10:10:04 +02:00
|
|
|
if (!imgCache) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-27 17:46:21 +01:00
|
|
|
Add(InfoItem(tr("Cache Statistics")));
|
2014-09-27 09:25:14 +02:00
|
|
|
int sizeIconCache = 0;
|
|
|
|
int numIcons = 0;
|
|
|
|
imgCache->GetIconCacheSize(numIcons, sizeIconCache);
|
|
|
|
cString iconCacheInfo = cString::sprintf("%s %d %s - %s %d %s", tr("cached"), numIcons, tr("icons"), tr("size"), sizeIconCache, tr("byte"));
|
|
|
|
Add(new cOsdItem(*iconCacheInfo));
|
|
|
|
cList<cOsdItem>::Last()->SetSelectable(false);
|
|
|
|
|
|
|
|
int sizeLogoCache = 0;
|
|
|
|
int numLogos = 0;
|
|
|
|
imgCache->GetLogoCacheSize(numLogos, sizeLogoCache);
|
|
|
|
cString logoCacheInfo = cString::sprintf("%s %d %s - %s %d %s", tr("cached"), numLogos, tr("logos"), tr("size"), sizeLogoCache, tr("byte"));
|
|
|
|
Add(new cOsdItem(*logoCacheInfo));
|
|
|
|
cList<cOsdItem>::Last()->SetSelectable(false);
|
|
|
|
|
|
|
|
int sizeSkinpartCache = 0;
|
|
|
|
int numSkinparts = 0;
|
|
|
|
imgCache->GetSkinpartsCacheSize(numSkinparts, sizeSkinpartCache);
|
|
|
|
cString skinpartCacheInfo = cString::sprintf("%s %d %s - %s %d %s", tr("cached"), numSkinparts, tr("skinparts"), tr("size"), sizeSkinpartCache, tr("byte"));
|
|
|
|
Add(new cOsdItem(*skinpartCacheInfo));
|
|
|
|
cList<cOsdItem>::Last()->SetSelectable(false);
|
2015-01-20 09:29:16 +01:00
|
|
|
}
|
2014-09-27 09:25:14 +02:00
|
|
|
|
2015-05-30 16:43:59 +02:00
|
|
|
void cSkinDesignerSetup::SkinSetup(void) {
|
|
|
|
Add(InfoItem(tr("Skin Setup")));
|
|
|
|
|
|
|
|
config.InitSkinIterator();
|
|
|
|
string skin = "";
|
|
|
|
while (config.GetSkin(skin)) {
|
|
|
|
cSkinSetup *skinSetup = config.GetSkinSetup(skin);
|
|
|
|
if (!skinSetup) {
|
|
|
|
Add(new cSkinMenuItem(skin.c_str(), *cString::sprintf("%s %s\t(%s)", tr("Skin"), skin.c_str(), tr("has no setup")), itNoSkinSetup));
|
|
|
|
} else {
|
|
|
|
Add(new cSkinMenuItem(skin.c_str(), *cString::sprintf("%s %s", tr("Skin"), skin.c_str()), itSkinSetup));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSkinDesignerSetup::InstallSkins(void) {
|
|
|
|
Add(InfoItem(tr("Install new skins")));
|
|
|
|
|
|
|
|
config.InitSkinRepoIterator();
|
|
|
|
cSkinRepo *repo = NULL;
|
|
|
|
while (repo = config.GetNextSkinRepo()) {
|
|
|
|
if (config.SkinInstalled(repo->Name()))
|
|
|
|
continue;
|
|
|
|
Add(new cSkinMenuItem(repo->Name(), *cString::sprintf("%s %s", tr("Preview Skin"), repo->Name().c_str()), itSkinRepo));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cSkinMenuItem -----------------------------------------------------------
|
|
|
|
cSkinMenuItem::cSkinMenuItem(string skinName, string displayText, eItemType type) : cOsdItem(displayText.c_str()) {
|
|
|
|
this->skinName = skinName;
|
|
|
|
this->type = type;
|
|
|
|
}
|
2015-01-31 11:46:06 +01:00
|
|
|
|
2015-05-30 16:43:59 +02:00
|
|
|
// --- cSkinSetupSubMenu -----------------------------------------------------------
|
2015-01-31 11:46:06 +01:00
|
|
|
cSkinSetupSubMenu::cSkinSetupSubMenu(string name, string displayText) : cOsdItem(displayText.c_str()) {
|
|
|
|
this->name = name;
|
2015-07-09 00:14:42 +02:00
|
|
|
this->displayText = displayText;
|
2015-01-31 11:46:06 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
// --- cSkindesignerSkinSetup -----------------------------------------------------------
|
|
|
|
|
2015-07-09 00:14:42 +02:00
|
|
|
cSkindesignerSkinSetup::cSkindesignerSkinSetup(string skin, string menu, string header) :
|
|
|
|
cOsdMenu(*cString::sprintf("%s: %s \"%s\" %s", trVDR("Setup"), tr("Skin"), skin.c_str(), header.c_str()), 30) {
|
2015-04-29 18:25:38 +02:00
|
|
|
SetMenuCategory(mcPluginSetup);
|
2015-01-20 09:29:16 +01:00
|
|
|
this->skin = skin;
|
2015-07-09 00:14:42 +02:00
|
|
|
this->menu = menu;
|
2015-01-20 09:29:16 +01:00
|
|
|
Set();
|
2014-09-27 09:25:14 +02:00
|
|
|
}
|
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
cSkindesignerSkinSetup::~cSkindesignerSkinSetup() {
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cSkindesignerSkinSetup::ProcessKey(eKeys Key) {
|
2015-06-04 10:57:25 +02:00
|
|
|
eOSState state = ProcessInstallationStatus();
|
|
|
|
if (state == osEnd)
|
|
|
|
return osEnd;
|
|
|
|
state = cOsdMenu::ProcessKey(Key);
|
2015-01-20 09:29:16 +01:00
|
|
|
if (state == osUnknown) {
|
|
|
|
switch (Key) {
|
2015-01-31 11:46:06 +01:00
|
|
|
case kOk: {
|
|
|
|
cOsdItem *current = Get(Current());
|
|
|
|
cSkinSetupSubMenu *subMenuItem = dynamic_cast<cSkinSetupSubMenu*>(current);
|
|
|
|
if (subMenuItem) {
|
2015-07-09 00:14:42 +02:00
|
|
|
state = AddSubMenu(new cSkindesignerSkinSetup(skin, subMenuItem->GetName(), subMenuItem->GetDisplayText()));
|
2015-01-31 11:46:06 +01:00
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
return osBack;
|
2015-06-04 16:29:25 +02:00
|
|
|
}
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
|
|
|
case kRed: {
|
2015-06-04 10:57:25 +02:00
|
|
|
bool gitAvailable = StartUpdate(skin);
|
|
|
|
if (gitAvailable) {
|
|
|
|
Skins.Message(mtStatus, *cString::sprintf("%s ...", tr("Updating Skin from Git")));
|
2015-05-30 16:43:59 +02:00
|
|
|
} else {
|
2015-06-04 10:57:25 +02:00
|
|
|
Skins.Message(mtStatus, tr("No Git Repsoitory available"));
|
2015-01-31 11:46:06 +01:00
|
|
|
}
|
2015-06-04 16:29:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// KEY YELLOW
|
|
|
|
case kYellow: {
|
|
|
|
if (config.SkinActive(skin)) {
|
|
|
|
Skins.Message(mtError, tr("Skin is running and can't be deleted"));
|
|
|
|
} else if (Interface->Confirm(*cString::sprintf("%s?", tr("Really delete skin")))) {
|
|
|
|
config.DeleteSkin(skin);
|
|
|
|
Skins.Message(mtStatus, tr("Skin deleted"));
|
|
|
|
cCondWait::SleepMs(1000);
|
|
|
|
return osEnd;
|
|
|
|
}
|
|
|
|
state = osContinue;
|
|
|
|
break;
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
|
|
|
default:
|
2015-01-20 09:29:16 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-09-27 09:25:14 +02:00
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2015-01-20 09:29:16 +01:00
|
|
|
void cSkindesignerSkinSetup::Set(void) {
|
2015-07-09 00:14:42 +02:00
|
|
|
cSkinSetupMenu *setupMenu = config.GetSkinSetupMenu(skin, menu);
|
|
|
|
if (!setupMenu) {
|
2015-01-20 09:29:16 +01:00
|
|
|
return;
|
2015-01-31 11:46:06 +01:00
|
|
|
}
|
2015-05-30 16:43:59 +02:00
|
|
|
|
|
|
|
cSkinRepo *repo = config.GetSkinRepo(skin);
|
2015-06-04 16:29:25 +02:00
|
|
|
if (repo) {
|
|
|
|
if (repo->Type() == rtGit)
|
2015-06-13 15:10:34 +02:00
|
|
|
SetHelp(tr("Update"), NULL, tr("Delete Skin"), NULL);
|
2015-06-04 16:29:25 +02:00
|
|
|
else
|
|
|
|
SetHelp(NULL, NULL, tr("Delete Skin"), NULL);
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
|
|
|
|
2015-07-09 00:14:42 +02:00
|
|
|
setupMenu->InitParameterIterator();
|
2015-01-20 09:29:16 +01:00
|
|
|
cSkinSetupParameter *param = NULL;
|
2015-07-09 00:14:42 +02:00
|
|
|
while (param = setupMenu->GetNextParameter(false)) {
|
2015-01-20 09:29:16 +01:00
|
|
|
if (param->type == sptInt) {
|
|
|
|
Add(new cMenuEditIntItem(param->displayText.c_str(), ¶m->value, param->min, param->max));
|
|
|
|
} else if (param->type == sptBool) {
|
|
|
|
Add(new cMenuEditBoolItem(param->displayText.c_str(), ¶m->value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-09 00:14:42 +02:00
|
|
|
setupMenu->InitSubmenuIterator();
|
2015-01-31 11:46:06 +01:00
|
|
|
cSkinSetupMenu *subMenu = NULL;
|
2015-07-09 00:14:42 +02:00
|
|
|
while (subMenu = setupMenu->GetNextSubMenu(false)) {
|
2015-01-31 11:46:06 +01:00
|
|
|
Add(new cSkinSetupSubMenu(subMenu->GetName(), subMenu->GetDisplayText()));
|
|
|
|
}
|
2015-01-27 17:46:21 +01:00
|
|
|
}
|
2015-05-30 16:43:59 +02:00
|
|
|
|
|
|
|
// --- cSkindesignerSkinPreview -----------------------------------------------------------
|
|
|
|
|
|
|
|
cSkindesignerSkinPreview::cSkindesignerSkinPreview(string skinName) :
|
|
|
|
cSkindesignerOsdMenu(*cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), skinName.c_str())) {
|
2015-06-04 10:57:25 +02:00
|
|
|
currentSkin = skinName;
|
2015-05-30 16:43:59 +02:00
|
|
|
SetPluginName("setup");
|
|
|
|
FirstCallCleared();
|
|
|
|
Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
cSkindesignerSkinPreview::~cSkindesignerSkinPreview() {
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cSkindesignerSkinPreview::ProcessKey(eKeys Key) {
|
2015-06-04 10:57:25 +02:00
|
|
|
eOSState state = ProcessInstallationStatus();
|
|
|
|
if (state == osEnd)
|
|
|
|
return osEnd;
|
|
|
|
state = cOsdMenu::ProcessKey(Key);
|
2015-05-30 16:43:59 +02:00
|
|
|
switch (Key) {
|
|
|
|
case kOk:
|
|
|
|
case kBack:
|
|
|
|
state = osBack;
|
|
|
|
break;
|
|
|
|
case kLeft: {
|
|
|
|
TextKeyLeft();
|
|
|
|
state = osContinue;
|
|
|
|
break;
|
|
|
|
} case kRight: {
|
|
|
|
TextKeyRight();
|
|
|
|
state = osContinue;
|
|
|
|
break;
|
|
|
|
} case kUp: {
|
|
|
|
TextKeyUp();
|
|
|
|
state = osContinue;
|
|
|
|
break;
|
|
|
|
} case kDown: {
|
|
|
|
TextKeyDown();
|
|
|
|
state = osContinue;
|
|
|
|
break;
|
|
|
|
} case kRed: {
|
2015-06-04 10:57:25 +02:00
|
|
|
StartInstallation(currentSkin);
|
|
|
|
state = osContinue;
|
2015-05-30 16:43:59 +02:00
|
|
|
break;
|
|
|
|
} default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSkindesignerSkinPreview::Display(void) {
|
|
|
|
SetHelp(tr("Install Skin"), NULL, NULL, NULL);
|
2015-06-04 10:57:25 +02:00
|
|
|
skindesignerapi::cSkindesignerOsdMenu::Display();
|
2015-05-30 16:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cSkindesignerSkinPreview::Set(void) {
|
|
|
|
SetPluginMenu(0, skindesignerapi::mtText);
|
|
|
|
ClearTokens();
|
|
|
|
Clear();
|
|
|
|
|
2015-06-04 10:57:25 +02:00
|
|
|
cSkinRepo *skinRepo = config.GetSkinRepo(currentSkin);
|
2015-05-30 16:43:59 +02:00
|
|
|
if (!skinRepo) {
|
2015-06-04 10:57:25 +02:00
|
|
|
esyslog("skindesigner: no valid skin repository found for skin %s", currentSkin.c_str());
|
2015-05-30 16:43:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-04 10:57:25 +02:00
|
|
|
AddStringToken("menuheader", *cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), currentSkin.c_str()));
|
|
|
|
AddStringToken("skinname", currentSkin);
|
2015-05-30 16:43:59 +02:00
|
|
|
AddStringToken("author", skinRepo->Author());
|
2015-06-04 10:57:25 +02:00
|
|
|
|
2015-05-30 16:43:59 +02:00
|
|
|
stringstream plainText;
|
2015-06-04 10:57:25 +02:00
|
|
|
plainText << *cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), currentSkin.c_str()) << "\n\n";
|
2015-05-30 16:43:59 +02:00
|
|
|
plainText << tr("Author") << ": " << skinRepo->Author() << "\n";
|
|
|
|
|
|
|
|
plainText << tr("Used Fonts") << ": \n";
|
|
|
|
vector<string> specialFonts = skinRepo->SpecialFonts();
|
|
|
|
for (vector<string>::iterator it = specialFonts.begin(); it != specialFonts.end(); it++) {
|
|
|
|
map<string,string> usedFonts;
|
|
|
|
usedFonts.insert(pair<string,string>("fonts[name]", *it));
|
|
|
|
usedFonts.insert(pair<string,string>("fonts[installed]", CheckFontInstalled(*it)));
|
|
|
|
AddLoopToken("fonts", usedFonts);
|
|
|
|
plainText << *it << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
plainText << tr("Supported Plugins") << ": \n";
|
|
|
|
vector<string> supportedPlugins = skinRepo->SupportedPlugins();
|
|
|
|
for (vector<string>::iterator it = supportedPlugins.begin(); it != supportedPlugins.end(); it++) {
|
|
|
|
map<string,string> plugins;
|
|
|
|
plugins.insert(pair<string,string>("plugins[name]", *it));
|
|
|
|
AddLoopToken("plugins", plugins);
|
|
|
|
plainText << *it << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
SetText(plainText.str().c_str());
|
|
|
|
|
|
|
|
vector< pair < string, string > > screenshots = skinRepo->Screenshots();
|
|
|
|
int i = 0;
|
|
|
|
for (vector< pair < string, string > >::iterator it = screenshots.begin(); it != screenshots.end(); it++) {
|
|
|
|
string url = it->second;
|
|
|
|
string imgType = ".jpg";
|
|
|
|
if (url.find(".png") != string::npos)
|
|
|
|
imgType = ".png";
|
|
|
|
stringstream tempName;
|
2015-06-04 10:57:25 +02:00
|
|
|
tempName << "/tmp/screenshot_" << currentSkin << "_" << i++ << imgType;
|
2015-05-30 16:43:59 +02:00
|
|
|
dsyslog("skindesigner: download screenshot name %s url %s", tempName.str().c_str(), url.c_str());
|
|
|
|
CurlGetUrlFile(url.c_str(), tempName.str().c_str());
|
|
|
|
map<string,string> img;
|
|
|
|
img.insert(pair<string,string>("screenshots[desc]", it->first));
|
|
|
|
img.insert(pair<string,string>("screenshots[path]", tempName.str()));
|
|
|
|
AddLoopToken("screenshots", img);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string cSkindesignerSkinPreview::CheckFontInstalled(string fontName) {
|
|
|
|
if (fontManager->FontInstalled(fontName))
|
|
|
|
return "1";
|
|
|
|
return "0";
|
|
|
|
}
|