mainwindow.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. #include "mainwindow.h"
  2. #include "filesystem.h"
  3. #include "aconfig.h"
  4. #include "anetwork.h"
  5. #include "gameres.h"
  6. #include "downloadmanager.h"
  7. #include "skin.h"
  8. #include <QBitmap>
  9. #include <QMovie>
  10. #include <QGraphicsDropShadowEffect>
  11. #include <QCloseEvent>
  12. #include <QClipboard>
  13. #include <QFileDialog>
  14. MainWindow::MainWindow( QMainWindow* parent )
  15. : QMainWindow(parent, Qt::Window | Qt::FramelessWindowHint)
  16. , ui(new Ui::MainWindow)
  17. , dx(0)
  18. , dy(0) {
  19. }
  20. void MainWindow::setupWindow() {
  21. ui->setupUi(this);
  22. if(!FileSystem::fileExists(QApplication::applicationDirPath() + "/settings.ini"))
  23. AConfig::getInstance()->saveConfig();
  24. loadConfig();
  25. QString skin = Skin::getInstance()->getSkinName();
  26. setWindowIcon(QIcon(":/res/styles/" + skin + "/icon6.png"));
  27. QCoreApplication::setOrganizationName(ORGANIZATION_NAME);
  28. QCoreApplication::setOrganizationDomain(ORGANIZATION_DOMAIN);
  29. QCoreApplication::setApplicationName(APPLICATION_NAME);
  30. setWindowTitle("ВКО: Наследие");
  31. // Проводим подготовку к запуску
  32. Skin::getInstance()->loadSkin();
  33. loadNews();
  34. ANetwork::getInstance()->getFootMessage();
  35. ANetwork::getInstance()->getServers();
  36. ANetwork::getInstance()->getCoupon();
  37. loadHelp();
  38. setAbout();
  39. Skin::getInstance()->findSkins();
  40. //app->helper->setPatchsDates();
  41. qInfo("%s:%i: %s", __FILE__, __LINE__, "Оформляем главное окно.");
  42. QPixmap maskPix(":/res/styles/" + skin + "/bg.png");
  43. QPixmap maskPixLocal(QApplication::applicationDirPath() + " /styles/" + skin + "/bg.png");
  44. maskPix = maskPix.isNull() ? maskPixLocal : maskPix;
  45. this->setMask(maskPix.mask());
  46. qInfo("%s:%i: %s", __FILE__, __LINE__, "Устанавливаем анимации.");
  47. QMovie * movie = new QMovie(":/res/styles/" + skin + "/loader.gif");
  48. ui->loader->setMovie(movie);
  49. movie->setScaledSize(QSize(ui->loader->width(), ui->loader->height()));
  50. movie->start();
  51. connect(ui->skinSelect, SIGNAL(currentIndexChanged(int)), this, SLOT(saveSkin()));
  52. }
  53. void MainWindow::addComboItem(QComboBox* combo, QString itemName, QIcon* icon){
  54. combo->insertItem(0, itemName);
  55. combo->setItemIcon(0, *icon);
  56. }
  57. void MainWindow::saveLocale(int locale, QPushButton * button){
  58. QString file;
  59. if(locale == 0) file = "client_local_English.dat";
  60. if(locale == 1) file = "client_local_DE.dat";
  61. if(locale == 2) file = "client_local_FR.dat";
  62. if(FileSystem::fileExists(AConfig::getInstance()->getValue("Local", "folder") + "/" + file)){
  63. ui->enButton->setEnabled(true);
  64. ui->deButton->setEnabled(true);
  65. ui->frButton->setEnabled(true);
  66. button->setEnabled(false);
  67. AConfig::getInstance()->setValue("Local", "file", file);
  68. } else {
  69. QString text = "Данная локализация отсутствует";
  70. QString info = "В настоящий момент вы не можете выбрать данную опцию, поскольку файл " + file + " отсутствует в вашем игровом клиенте. Чтобы скачать его, запустите официальный лаунчер, выберите желаемый язык в верхней правой части окна и дождитесь, когда загрузка необходимых файлов завершится.";
  71. myDialogBox(text, info, "OK", "Отмена", "gandalf.png", "", "", 400, 220, true, false);
  72. }
  73. }
  74. void MainWindow::loadConfig() {
  75. qInfo("%s:%i: %s", __FILE__, __LINE__, "Находим каталог с игрой");
  76. ui->lotropathLabel->setText(AConfig::getInstance()->getValue("Local", "folder") != "-1" ? AConfig::getInstance()->getValue("Local", "folder") : "Выберите папку с игрой");
  77. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Шрифты\"");
  78. ui->checkFonts->setChecked(AConfig::getInstance()->getValue("Editor", "fonts") == "true" ? true : false);
  79. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Тексты\"");
  80. ui->checkTexts->setChecked(AConfig::getInstance()->getValue("Editor", "texts")== "true" ? true : false);
  81. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Карты\"");
  82. ui->checkMaps->setChecked(AConfig::getInstance()->getValue("Editor", "images") == "true" ? true : false);
  83. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Звуки\"");
  84. ui->checkSounds->setChecked(AConfig::getInstance()->getValue("Editor", "sounds")== "true" ? true : false);
  85. ui->checkVideos->setChecked(AConfig::getInstance()->getValue("Editor", "videos") == "true" ? true : false);
  86. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Заставки\"");
  87. ui->checkScreens->setChecked(AConfig::getInstance()->getValue("Editor", "screens")== "true" ? true : false);
  88. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность микрообновлений");
  89. ui->checkMicro->setChecked(AConfig::getInstance()->getValue("Updates", "micro")== "true" ? true : false);
  90. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  91. }
  92. void MainWindow::loadNews(){
  93. qInfo("Загружаем новости");
  94. qInfo("%s:%i: %s", __FILE__, __LINE__, "Загрузка новостей с сайта");
  95. QString response = ANetwork::getInstance()->query(AConfig::getInstance()->getValue("Network", "news"));
  96. if (response == "error"){
  97. qInfo("%s:%i: %s", __FILE__, __LINE__, "Отсутствует связь с сервером. Прервано.");
  98. return;
  99. }
  100. QStringList data = response.split(":::");
  101. qInfo("%s:%i: %s%s", __FILE__, __LINE__, "Получено новостей - ", QString::number(data.count()).toStdString().c_str());
  102. int counter = 1;
  103. foreach(QString news, data){
  104. qInfo("%s:%i: %s%s", __FILE__, __LINE__, "Начинаем размещение новости №", QString::number(counter).toStdString().c_str());
  105. QStringList item = news.split("|");
  106. QLabel* image = ui->newsbox->findChild<QLabel*>("news" + QString::number(counter) + "Image");
  107. QLabel* title = ui->newsbox->findChild<QLabel*>("news" + QString::number(counter) + "Title");
  108. QLabel* teaser = ui->newsbox->findChild<QLabel*>("news" + QString::number(counter) + "Teaser");
  109. qInfo("%s:%i: %s", __FILE__, __LINE__, "Устанавливаем миниатюру новости");
  110. QByteArray bytes = ANetwork::getInstance()->query_binary(item[0]);
  111. QImage img(36, 36, QImage::Format_Indexed8);
  112. img.loadFromData(bytes);
  113. QString skin = Skin::getInstance()->getSkinName();
  114. if(img.bits() == nullptr){
  115. qInfo("%s:%i: %s", __FILE__, __LINE__, "Миниатюра не найдена, устанавливаем заглушку");
  116. img.load(":/res/styles/" + skin + "/nophoto.jpg");
  117. }
  118. image->setPixmap(QPixmap::fromImage(img));
  119. qInfo("%s:%i: %s", __FILE__, __LINE__, "Применяем HTML-цвета");
  120. QString hrefcolor = htmlColors.contains("a") ? htmlColors.lowerBound("a").value() : "blue";
  121. QString html = "<a href=\"" + item[3] +"\" style=\"color:" + hrefcolor + "; text-decoration:none;\">" + item[1] + "</a>";
  122. qInfo("%s:%i: %s", __FILE__, __LINE__, "Размещаем тексты");
  123. title->setText(html);
  124. teaser->setText(item[2]);
  125. counter = counter + 1;
  126. }
  127. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  128. }
  129. void MainWindow::loadHelp(){
  130. qInfo("Создание справки");
  131. QFile file(QApplication::applicationDirPath() + "/readme.html");
  132. if(file.open(QFile::ReadOnly | QFile::Text)){
  133. qInfo("%s:%i: %s", __FILE__, __LINE__, "Справка загружена. Устанавливаем HTML-цвета и выводим.");
  134. ui->textBrowser->setHtml("");
  135. QString content = file.readAll();
  136. stylehtml = "<style>";
  137. for(auto e : htmlColors.keys()){
  138. stylehtml = stylehtml + e + "{color:" + htmlColors.value(e) + ";}";
  139. }
  140. QFile styleF;
  141. QString skin = Skin::getInstance()->getSkinName();
  142. styleF.setFileName(QApplication::applicationDirPath() + "/styles/" + skin + "/readme.css");
  143. if(styleF.open(QFile::ReadOnly)){
  144. stylehtml = "<html><head><style type=\"text/css\">" + stylehtml + styleF.readAll();
  145. }
  146. stylehtml = stylehtml + "</style></head>";
  147. ui->textBrowser->setHtml(stylehtml + content);
  148. ui->textBrowser->document()->setDefaultStyleSheet(styleF.readAll());
  149. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  150. } else {
  151. qWarning("%s:%i: %s", __FILE__, __LINE__, "Не удалось получить информацию с сервера");
  152. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  153. }
  154. }
  155. MainWindow::~MainWindow() {
  156. delete ui;
  157. }
  158. void MainWindow::applyShadow(QWidget * obj, QString color, int blur, int offset_x, int offset_y){
  159. QGraphicsDropShadowEffect *pLabelTextShadowEffect = new QGraphicsDropShadowEffect(obj);
  160. pLabelTextShadowEffect->setColor(QColor(color));
  161. pLabelTextShadowEffect->setBlurRadius(blur);
  162. pLabelTextShadowEffect->setOffset(offset_x, offset_y);
  163. obj->setGraphicsEffect(pLabelTextShadowEffect);
  164. }
  165. void MainWindow::closeEvent(QCloseEvent *e) {
  166. if (state == "busy") e->ignore();
  167. }
  168. void MainWindow::mouseMoveEvent( QMouseEvent* e ) {
  169. if( e->buttons() | Qt::LeftButton ) {
  170. QPoint pt=mapFromGlobal(QCursor::pos());
  171. QWidget* child=childAt(pt);
  172. if (child == 0) {
  173. setGeometry(pos().x() + ( e->x() - dx ), pos().y() + ( e->y() - dy ), width(), height());
  174. return;
  175. }
  176. QString cname = child->metaObject()->className();
  177. if (cname != "QPushButton" && cname != "QComboBox"){ // отключаем перетягивание при наведение на активные элементы
  178. setGeometry(pos().x() + ( e->x() - dx ), pos().y() + ( e->y() - dy ), width(), height());
  179. } else {
  180. dx = e->x();
  181. dy = e->y();
  182. }
  183. }
  184. }
  185. void MainWindow::mousePressEvent( QMouseEvent* e ) {
  186. if( e->button() == Qt::LeftButton ) {
  187. dx = e->x();
  188. dy = e->y();
  189. setCursor( Qt::OpenHandCursor );
  190. }
  191. }
  192. void MainWindow::mouseReleaseEvent( QMouseEvent* e ) {
  193. if( e->button() == Qt::LeftButton ) {
  194. setCursor( Qt::ArrowCursor );
  195. dx = e->x();
  196. dy = e->y();
  197. }
  198. }
  199. void MainWindow::minimize() {
  200. setWindowState(Qt::WindowMinimized);
  201. }
  202. bool MainWindow::eventFilter(QObject *obj, QEvent *event){
  203. if(state == "busy") return false;
  204. if(obj->objectName() == "mainButton"){
  205. this->ui->hintLabel->setText("Применение патчей");
  206. this->ui->exthintLabel->setText("На данной странице показан список патчей и прогресс их применения");
  207. }
  208. if(obj->objectName() == "optButton"){
  209. this->ui->hintLabel->setText("Настройки лаунчера");
  210. this->ui->exthintLabel->setText("Управление параметрами применения патчей и запуском игры");
  211. }
  212. if(obj->objectName() == "newsButton"){
  213. this->ui->hintLabel->setText("Новости проекта");
  214. this->ui->exthintLabel->setText("Актуальная информация из нашего цеха русификации LotRO");
  215. }
  216. if(obj->objectName() == "helpButton"){
  217. this->ui->hintLabel->setText("Справочная информация");
  218. this->ui->exthintLabel->setText("Полезная информация о программе русификации, настройках и использовании");
  219. }
  220. if(obj->objectName() == "aboutButton"){
  221. this->ui->hintLabel->setText("О нас");
  222. this->ui->exthintLabel->setText("Информация о разработчиках, переводчиках и других хороших людях");
  223. }
  224. if(obj->objectName() == "enterButton"){
  225. this->ui->hintLabel->setText("Запуск игры");
  226. this->ui->exthintLabel->setText("Создание портала в мир Средиземья");
  227. }
  228. if(obj->objectName() == "couponButton"){
  229. this->ui->hintLabel->setText("Купон скидки");
  230. this->ui->exthintLabel->setText("Нажмите, чтобы скопировать код купона в буфер обмена");
  231. }
  232. return false;
  233. }
  234. void MainWindow::on_mainButton_clicked(){
  235. checkTab("mainbox");
  236. ui->titleLabel->setText("Патчи");
  237. if(state != "busy") ANetwork::getInstance()->getPatches();
  238. }
  239. void MainWindow::on_optButton_clicked(){
  240. checkTab("optbox");
  241. ui->titleLabel->setText("Настройки");
  242. }
  243. void MainWindow::on_newsButton_clicked(){
  244. checkTab("newsbox");
  245. ui->titleLabel->setText("Новости");
  246. }
  247. void MainWindow::on_helpButton_clicked(){
  248. checkTab("helpbox");
  249. ui->titleLabel->setText("Справка");
  250. }
  251. void MainWindow::on_aboutButton_clicked(){
  252. checkTab("aboutbox");
  253. ui->titleLabel->setText("О нас");
  254. }
  255. void MainWindow::on_enterButton_clicked(){
  256. ui->startbox->setGeometry(0, 0, width(), height());
  257. QSettings settings(Skin::getInstance()->getSkinFile(), QSettings::IniFormat);
  258. settings.beginGroup("mainWindow");
  259. int left = (settings.value("width").toInt() - ui->startframe->width())/2;
  260. int top = (settings.value("height").toInt() - ui->startframe->height())/2;
  261. ui->startframe->setGeometry(QRect(left, top, ui->startframe->width(), ui->startframe->height()));
  262. settings.endGroup();
  263. QString file = AConfig::getInstance()->getValue("Local", "file");
  264. if (file == "client_local_English.dat") file = "goenr.png";
  265. if (file == "client_local_DE.dat") file = "goderr.png";
  266. if (file == "client_local_FR.dat") file = "gofrr.png";
  267. QString skin = Skin::getInstance()->getSkinName();
  268. QString bname = ":/res/styles/" + skin + "/" + file;
  269. QPixmap isset(bname);
  270. bname = isset.isNull() ? app_folder + "styles/" + skin + "/" + file : bname;
  271. ui->goOriginal->setStyleSheet("QPushButton#goOriginal { border-image: url(" + bname + ") 0 0 0 0 stretch stretch;}");
  272. ui->startbox->show();
  273. }
  274. void MainWindow::on_goCancel_clicked(){
  275. ui->startbox->hide();
  276. }
  277. void MainWindow::on_goOriginal_clicked(){
  278. ui->goProgress->show();
  279. GameRes::getInstance()->setGameLocale("Original");
  280. //connect(GameRes::getInstance(), SIGNAL(GameRes::getInstance()->setGameLocaleFinished()), GameRes::getInstance(), SLOT(GameRes::getInstance()->startGame()));
  281. }
  282. void MainWindow::on_goLocal_clicked(){
  283. ui->goProgress->show();
  284. GameRes::getInstance()->setGameLocale("RU");
  285. //connect(GameRes::getInstance(), SIGNAL(GameRes::getInstance()->setGameLocaleFinished()), GameRes::getInstance(), SLOT(GameRes::getInstance()->startGame()));
  286. }
  287. void MainWindow::on_minimizeButton_clicked(){
  288. setWindowState(Qt::WindowMinimized);
  289. }
  290. void MainWindow::on_closeButton_clicked(){
  291. this->close();
  292. }
  293. void MainWindow::on_couponButton_clicked(){
  294. QApplication::clipboard()->setText(ui->couponButton->text());
  295. ui->exthintLabel->setText("Код скопирован.");
  296. }
  297. void MainWindow::on_enButton_clicked(){
  298. saveLocale(0, ui->enButton);
  299. AConfig::getInstance()->setValue("Local", "lang", "en");
  300. }
  301. void MainWindow::on_deButton_clicked(){
  302. saveLocale(1, this->ui->deButton);
  303. AConfig::getInstance()->setValue("Local", "lang", "de");
  304. }
  305. void MainWindow::on_frButton_clicked(){
  306. saveLocale(2, this->ui->frButton);
  307. AConfig::getInstance()->setValue("Local", "lang", "fr");
  308. }
  309. void MainWindow::saveSkin(){
  310. QString new_theme = ui->skinSelect->currentText();
  311. if(Skin::getInstance()->getSkinName() != new_theme){
  312. AConfig::getInstance()->setValue("Global", "current_theme", new_theme);
  313. Skin::getInstance()->replaceSkin(new_theme);
  314. }
  315. }
  316. void MainWindow::on_checkFonts_stateChanged(int arg1){
  317. AConfig::getInstance()->setValue("Editor", "fonts", arg1 ? "true" : "false");
  318. }
  319. void MainWindow::on_checkTexts_stateChanged(int arg1){
  320. AConfig::getInstance()->setValue("Editor", "texts", arg1 ? "true" : "false");;
  321. DownloadManager::getInstance()->abortDownload("texts");
  322. }
  323. void MainWindow::on_checkSounds_stateChanged(int arg1){
  324. AConfig::getInstance()->setValue("Editor", "sounds", arg1 ? "true" : "false");
  325. DownloadManager::getInstance()->abortDownload("sounds");
  326. }
  327. void MainWindow::on_checkMaps_stateChanged(int arg1){
  328. AConfig::getInstance()->setValue("Editor", "images", arg1 ? "true" : "false");
  329. DownloadManager::getInstance()->abortDownload("images");
  330. }
  331. void MainWindow::on_checkScreens_stateChanged(int arg1){
  332. AConfig::getInstance()->setValue("Editor", "screens", arg1 ? "true" : "false");
  333. DownloadManager::getInstance()->abortDownload("screens");
  334. }
  335. void MainWindow::on_checkVideos_stateChanged(int arg1){
  336. AConfig::getInstance()->setValue("Editor", "videos", arg1 ? "true" : "false");
  337. DownloadManager::getInstance()->abortDownload("videos");
  338. }
  339. void MainWindow::on_checkMicro_stateChanged(int arg1){
  340. AConfig::getInstance()->setValue("Updates", "micro", arg1 ? "true" : "false");
  341. }
  342. void MainWindow::on_lotropathButton_clicked(){
  343. QString path = QFileDialog::getExistingDirectory(0, "Выберите папку с игрой");
  344. if(path != "" && FileSystem::fileExists(path + "/TurbineLauncher.exe")) {
  345. ui->lotropathLabel->setText(path);
  346. AConfig::getInstance()->setValue("Local", "folder", path);
  347. } else {
  348. QString text = "Выбрана неверная папка";
  349. QString info = "<p>Убедитесь, что выбранный вами каталог является папкой игры и содержит такие файлы как TurbineLauncher.exe и client_local_English.dat.</p>";
  350. myDialogBox(text, info, "OK", "Отмена", "gandalf.png", "", "", 400, 160, true, false);
  351. }
  352. }
  353. void MainWindow::on_designButton_clicked(){
  354. Skin::getInstance()->replaceSkin(Skin::getInstance()->getSkinName());
  355. }
  356. void MainWindow::on_repairButton_clicked(){
  357. AConfig::getInstance()->deleteSection("Applied");
  358. GameRes::getInstance()->applyAll();
  359. checkTab("mainbox");
  360. }
  361. void MainWindow::on_okButton_clicked(){
  362. //QStringList commands = app->helper->dialog_ok_answer.split(" ");
  363. // foreach(QString command, commands){
  364. // if(command == "close"){
  365. // ui->dialogbox->hide();
  366. // }
  367. // if(command == "gamefind"){
  368. // QStringList folders = app->config->getLotroPath();
  369. // if(folders.count() > 1){
  370. // QString text = "Результаты поиска";
  371. // QString info = "Найдены следующие папки в которых установлена игра:<br/><br/><br/><br/><br/>Выберите нужную папку и нажмите «Далее»<br/>";
  372. // app->helper->myDialogBox(text, info, "Далее", "Отмена", "gandalf.png", "writefolder", "", 530, 200, true, false);
  373. // ui->dialogList->setGeometry(QRect(
  374. // ui->dialogImage->rect().right() + 10,
  375. // ui->dialogHeader->rect().bottom()+40, 417, 50));
  376. // foreach(QString f, folders) new QListWidgetItem(f, ui->dialogList);
  377. // ui->dialogList->show();
  378. // } else {
  379. // if(folders.count() == 1){
  380. // ui->lotropathLabel->setText(folders.first());
  381. // app->config->setValue("Local", "folder", folders.first());
  382. // this->ui->dialogbox->hide();
  383. // QString text = "Завершающий этап";
  384. // QString info = "Необходимые приготовления завершены. Сейчас вы будете перенаправлены в раздел «Настройки», где сможете выбрать патчи, которые хотите установить. После этого перейдите в раздел «Патчи» для начала их загрузки и применения.";
  385. // app->helper->myDialogBox(text, info, "OK", "Отмена", "gandalf.png", "close gotooptions", "",400, 200, true, false);
  386. // } else {
  387. // QString text = "Завершающий этап";
  388. // QString info = "Обнаружить каталог игры автоматически не удалось. Сейчас вы будете перенаправлены в раздел «Настройки», где сможете вручную выбрать каталог игры и патчи, которые хотите установить. После этого перейдите в раздел «Патчи» для начала их загрузки и применения.";
  389. // app->helper->myDialogBox(text, info, "OK", "Отмена", "gandalf.png", "close gotooptions", "",450, 200, true, false);
  390. // }
  391. // }
  392. // qDebug() << folders;
  393. // }
  394. // if(command == "writefolder"){
  395. // if(ui->dialogList->currentItem()){
  396. // QString path = ui->dialogList->currentItem()->text();qDebug() << path;
  397. // ui->lotropathLabel->setText(path);
  398. // app->config->setValue("Local", "folder", path);
  399. // ui->dialogList->clear();
  400. // ui->dialogList->hide();
  401. // this->ui->dialogbox->hide();
  402. // QString text = "Завершающий этап";
  403. // QString info = "Необходимые приготовления завершены. Сейчас вы будете перенаправлены в раздел «Настройки», где сможете выбрать патчи, которые хотите установить. После этого перейдите в раздел «Патчи» для начала их загрузки и применения.";
  404. // app->helper->myDialogBox(text, info, "OK", "Отмена", "gandalf.png", "close gotooptions", "",400, 200, true, false);
  405. // } else {
  406. // break;
  407. // }
  408. // }
  409. // if(command == "gotooptions"){
  410. // app->helper->checkTab("optbox");
  411. // app->config->setValue("Local", "runfirst", "1");
  412. // app->helper->setState("free");
  413. // }
  414. // if(command == "applypaths"){
  415. // app->ready = true;
  416. // app->config->deleteSection("Applied");
  417. // app->network->getPaths();
  418. // app->helper->checkTab("mainbox");
  419. // }
  420. // if(command == "loaddatfile"){
  421. // app->config->deleteSection("Applied");
  422. // QString filename = app->config->getDatPath(0);
  423. // qInfo("%s:%i: %s%s", __FILE__, __LINE__, "Удаляем файл: ", app->helper->stringToChar(filename));
  424. // app->helper->closeDatFile(0);
  425. // if(QFile::remove(filename)){
  426. // app->helper->startGame();
  427. // qApp->exit();
  428. // }
  429. // }
  430. // }
  431. }
  432. void MainWindow::on_cancelButton_clicked(){
  433. // QStringList commands = app->helper->dialog_cancel_answer.split(" ");
  434. // foreach(QString command, commands){
  435. // if(command == "close") this->ui->dialogbox->hide();
  436. // }
  437. }
  438. void MainWindow::checkTab(QString tabname){
  439. QList<QGroupBox *> boxes = findChildren<QGroupBox *> ();
  440. foreach (QGroupBox * box, boxes){
  441. if(box->parent()->objectName() == "centralWidget"){
  442. QLabel* boximage = findChild<QLabel*>(box->objectName() + "Image");
  443. if(box->objectName() == tabname){
  444. box->show();
  445. if(boximage != nullptr) boximage->show();
  446. } else {
  447. box->hide();
  448. if(boximage != nullptr) boximage->hide();
  449. }
  450. }
  451. }
  452. ui->serversbox->show();
  453. }
  454. void MainWindow::myDialogBox(QString text, QString info, QString okText, QString cancelText, QString image, QString okAnswer, QString cancelAnswer,
  455. int w, int h, bool textshadow = false, bool is_cancel = false){
  456. if(okAnswer == "") okAnswer = "close";
  457. //app->helper->dialog_ok_answer = okAnswer;
  458. if(cancelAnswer == "") cancelAnswer = "close";
  459. //app->helper->dialog_cancel_answer = cancelAnswer;
  460. ui->okButton->setText(okText);
  461. ui->cancelButton->setText(cancelText);
  462. ui->dialogbox->setGeometry(0, 0, width(), height());
  463. QSettings settings(Skin::getInstance()->getSkinFile(), QSettings::IniFormat );
  464. settings.beginGroup("mainWindow");
  465. int left = (settings.value("width").toInt() - w)/2;
  466. int top = (settings.value("height").toInt() - h)/2;
  467. ui->dialog->setGeometry(QRect(left, top, w, h));
  468. settings.endGroup();
  469. int image_height = ui->dialog->rect().height() - ui->dialogHeader->rect().height();
  470. ui->dialogImage->setGeometry(0,
  471. ui->dialogHeader->rect().bottom(),
  472. image_height/2 ,image_height
  473. );
  474. QString skin = Skin::getInstance()->getSkinName();
  475. QString iconpath = "";
  476. iconpath = FileSystem::fileExists("styles/" + skin + "/" + image) ? "styles/" + skin + "/" + image : ":/res/styles/" + skin + "/" + image;
  477. QPixmap icon(iconpath);
  478. ui->dialogImage->setPixmap(icon.scaled(ui->dialogImage->width(), ui->dialogImage->height()));
  479. if(icon.isNull()){
  480. ui->dialogImage->setGeometry(QRect(10, 10, 10, 10));
  481. }
  482. ui->dialogHeader->setGeometry(
  483. ui->dialogHeader->rect().left(),
  484. ui->dialogHeader->rect().top(),
  485. ui->dialog->rect().width(),
  486. ui->dialogHeader->rect().height()
  487. );
  488. ui->dialogInfo->setGeometry(ui->dialogImage->rect().right(),
  489. ui->dialogHeader->rect().bottom(),
  490. ui->dialog->rect().width() - ui->dialogImage->rect().width()-7,
  491. image_height - ui->cancelButton->height()
  492. );
  493. if(is_cancel){
  494. ui->cancelButton->setGeometry(
  495. ui->dialog->rect().left() + ui->dialog->width() - ui->cancelButton->width() - 20,
  496. ui->dialog->rect().bottom() - ui->cancelButton->height() - 10,
  497. ui->cancelButton->width(),
  498. ui->cancelButton->height()
  499. );
  500. ui->okButton->setGeometry(
  501. ui->dialog->rect().left() + ui->dialog->width() - ui->cancelButton->width() - ui->cancelButton->width() - 40,
  502. ui->dialog->rect().bottom() - ui->cancelButton->height() - 10,
  503. ui->cancelButton->width(),
  504. ui->cancelButton->height()
  505. );
  506. } else {
  507. ui->cancelButton->setGeometry(-1000,-1000, ui->cancelButton->width(), ui->cancelButton->height());
  508. ui->okButton->setGeometry(
  509. ui->dialog->rect().left() + ui->dialog->width() - ui->cancelButton->width() - 20,
  510. ui->dialog->rect().bottom() - ui->cancelButton->height() - 10,
  511. ui->cancelButton->width(),
  512. ui->cancelButton->height()
  513. );
  514. }
  515. ui->dialogHeader->setText(text);
  516. ui->dialogInfo->setText(info);
  517. ui->dialogImage->setText("");
  518. ui->dialogbox->show();
  519. }
  520. void MainWindow::setAbout(){
  521. qInfo("%s:%i: %s", __FILE__, __LINE__, "Размещаем информацию о хороших людях.");
  522. ui->programmerslist->setText("Gi1dor, coder");
  523. ui->designerslist->setText("Чирик, valyot, Quilanar, Eodoro");
  524. ui->translatorslist->setText("Arissa, unnamedartist, valyot, Чирик, Eodoro, Ferdik, Tukbard, Alcassar, Satenskyhou, Quilanar, Коралан, Invizet, taiki_exe, Rhymer, Takhizis, Lauraldo, seventhgate027, Kerita, Хилко, Leodgar, Juolukka, Auruman, Drazgar, Tondred, Foldoren, Exildil, Anormir, Василий Волков, Andoriel, Felicer, noldohini, Gi1dor, Progylkin, Arkwendir, Bara Norkins, Siltier, Maxsikr, Nahkrin, Nick_os, Razverg, ENDrain, ToX4SHOW, Jeyolin, Frenni, Коралан, Palmuch, Marty");
  525. ui->helperslist->setText("Menelhad, Мурзилка, Pastor, Alvees, Mirta, иван петров, vensys, Arkelas, Чеширская Улыбка, Shanishka70 ");
  526. }