mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-13 02:39:34 +00:00
Changed: downloadData and downloadClient methods
This commit is contained in:
parent
40cb337c68
commit
a75d70b8bc
2 changed files with 31 additions and 3 deletions
|
@ -97,7 +97,7 @@ void COperationDialog::processNextStep()
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CConfigFile::DownloadData:
|
case CConfigFile::DownloadData:
|
||||||
m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part");
|
downloadData();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CConfigFile::ExtractDownloadedData:
|
case CConfigFile::ExtractDownloadedData:
|
||||||
|
@ -105,7 +105,7 @@ void COperationDialog::processNextStep()
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CConfigFile::DownloadClient:
|
case CConfigFile::DownloadClient:
|
||||||
m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part");
|
downloadClient();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CConfigFile::ExtractDownloadedClient:
|
case CConfigFile::ExtractDownloadedClient:
|
||||||
|
@ -248,7 +248,33 @@ void COperationDialog::onProgressFail(const QString &error)
|
||||||
|
|
||||||
void COperationDialog::onDone()
|
void COperationDialog::onDone()
|
||||||
{
|
{
|
||||||
processNextStep();
|
if (!operationShouldStop()) processNextStep();
|
||||||
|
}
|
||||||
|
|
||||||
|
void COperationDialog::downloadData()
|
||||||
|
{
|
||||||
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
// default server
|
||||||
|
const CServer &server = config->getServer();
|
||||||
|
|
||||||
|
m_currentOperation = QApplication::tr("Download data required for server %1").arg(server.name);
|
||||||
|
m_currentOperationProgressFormat = QApplication::tr("Downloading %1...");
|
||||||
|
|
||||||
|
m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part");
|
||||||
|
}
|
||||||
|
|
||||||
|
void COperationDialog::downloadClient()
|
||||||
|
{
|
||||||
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
// default server
|
||||||
|
const CServer &server = config->getServer();
|
||||||
|
|
||||||
|
m_currentOperation = QApplication::tr("Download client required for server %1").arg(server.name);
|
||||||
|
m_currentOperationProgressFormat = QApplication::tr("Downloading %1...");
|
||||||
|
|
||||||
|
m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part");
|
||||||
}
|
}
|
||||||
|
|
||||||
void COperationDialog::copyServerFiles()
|
void COperationDialog::copyServerFiles()
|
||||||
|
|
|
@ -82,6 +82,8 @@ protected:
|
||||||
void processNextStep();
|
void processNextStep();
|
||||||
|
|
||||||
// operations
|
// operations
|
||||||
|
void downloadData();
|
||||||
|
void downloadClient();
|
||||||
void copyServerFiles();
|
void copyServerFiles();
|
||||||
void copyProfileFiles();
|
void copyProfileFiles();
|
||||||
void extractBnpClient();
|
void extractBnpClient();
|
||||||
|
|
Loading…
Reference in a new issue