config.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. #include "app.h"
  2. #include "filesystem.h"
  3. AConfig::AConfig() {
  4. conffile = QApplication::applicationDirPath() + "/settings.ini";
  5. //conffile = "../settings.ini";
  6. }
  7. AConfig::AConfig(const AConfig&) {
  8. throw QException(); // Выкидываем QException, в случае если
  9. // вообще попытались скопировать объект
  10. }
  11. AConfig& AConfig::operator=(AConfig&) {
  12. throw QException(); // Выкидываем QException, в случае если
  13. // вообще попытались скопировать объект
  14. }
  15. void AConfig::saveConfig(){
  16. QSettings settings( conffile, QSettings::IniFormat );
  17. //Global
  18. settings.setValue("Global/current_theme", "lotro");
  19. settings.setValue("Global/default_theme", "lotro");
  20. //Editor
  21. settings.setValue("Editor/texts", true);
  22. settings.setValue("Editor/fonts", true);
  23. settings.setValue("Editor/images", true);
  24. settings.setValue("Editor/sounds", true);
  25. settings.setValue("Editor/videos", false);
  26. settings.setValue("Editor/loadscreens", true);
  27. settings.setValue("Editor/textures", true);
  28. //Network
  29. settings.setValue("Network/server", "http://translate.lotros.ru");
  30. settings.setValue("Network/coupon", "http://translate.lotros.ru/coupon");
  31. settings.setValue("Network/servers", "http://translate.lotros.ru/servers");
  32. settings.setValue("Network/foot", "http://translate.lotros.ru/profmessage");
  33. settings.setValue("Network/news", "http://translate.lotros.ru/groupware/launcher_news");
  34. settings.setValue("Network/launcher", "http://translate.lotros.ru/upload/launcher");
  35. settings.setValue("Network/releases", "http://translate.lotros.ru/groupware/check_updates");
  36. settings.setValue("Network/info", "http://translate.lotros.ru/paths");
  37. settings.setValue("Network/update", "http://translate.lotros.ru/groupware/update");
  38. // Values
  39. settings.setValue("Values/coupon", "");
  40. settings.setValue("Values/servers", "");
  41. // Local
  42. settings.setValue("Local/file", "client_local_English.dat");
  43. settings.setValue("Local/lang", "en");
  44. //Datetime
  45. settings.setValue("Datetime/texts", "-1");
  46. settings.setValue("Datetime/fonts", "-1");
  47. settings.setValue("Datetime/images", "-1");
  48. settings.setValue("Datetime/sounds", "-1");
  49. settings.setValue("Datetime/videos", "-1");
  50. settings.setValue("Datetime/loadscreens", "-1");
  51. settings.setValue("Datetime/textures", "-1");
  52. //Updates
  53. settings.setValue("Updates/update", false);
  54. settings.setValue("Updates/micro", false);
  55. settings.sync();
  56. }
  57. void AConfig::loadConfig(){
  58. App *app = &App::getInstance();
  59. app->logSectionStart("Загрузка конфигурации");
  60. qInfo("%s:%i: %s", __FILE__, __LINE__, "Находим каталог с игрой");
  61. app->window->ui->lotropathLabel->setText(app->config->getValue("Local", "folder") != "-1" ? app->config->getValue("Local", "folder") : "Выберите папку с игрой");
  62. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Шрифты\"");
  63. app->window->ui->checkFonts->setChecked(app->config->getValue("Editor", "fonts") == "true" ? true : false);
  64. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Тексты\"");
  65. app->window->ui->checkTexts->setChecked(app->config->getValue("Editor", "texts")== "true" ? true : false);
  66. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Карты\"");
  67. app->window->ui->checkMaps->setChecked(app->config->getValue("Editor", "images") == "true" ? true : false);
  68. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Звуки\"");
  69. app->window->ui->checkSounds->setChecked(app->config->getValue("Editor", "sounds")== "true" ? true : false);
  70. app->window->ui->checkVideos->setChecked(app->config->getValue("Editor", "videos") == "true" ? true : false);
  71. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность патча \"Заставки\"");
  72. app->window->ui->checkScreens->setChecked(app->config->getValue("Editor", "screens")== "true" ? true : false);
  73. qInfo("%s:%i: %s", __FILE__, __LINE__, "Проверяем активность микрообновлений");
  74. app->window->ui->checkMicro->setChecked(app->config->getValue("Updates", "micro")== "true" ? true : false);
  75. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  76. app->logSectionEnd();
  77. }
  78. QString AConfig::getSkinFile(){
  79. App *app = &App::getInstance();
  80. QString current_theme = QApplication::applicationDirPath() + "/styles/" + app->config->getValue("Global", "current_theme") + "/skin.ini";
  81. QString default_theme = QApplication::applicationDirPath() + "/styles/" + app->config->getValue("Global", "default_theme") + "/skin.ini";
  82. QString skinfile = FileSystem::fileExists(current_theme) ? current_theme : default_theme;
  83. return skinfile;
  84. }
  85. QString AConfig::getSkinName(){
  86. App *app = &App::getInstance();
  87. QString current_theme = app->config->getValue("Global", "current_theme");
  88. QString default_theme = app->config->getValue("Global", "default_theme");
  89. QString path = QApplication::applicationDirPath() + "/styles/" + current_theme + "/skin.ini";
  90. QString skinname = FileSystem::fileExists(path) ? current_theme : default_theme;
  91. return skinname;
  92. }
  93. void AConfig::loadSkin(){
  94. App *app = &App::getInstance();
  95. app->logSectionStart("Загружаем скин лаунчера");
  96. qInfo("%s:%i: %s", __FILE__, __LINE__, "Определяем активную тему оформления");
  97. QSettings settings( getSkinFile(), QSettings::IniFormat );
  98. QStringList items = settings.childGroups();
  99. QVariant k;
  100. QPushButton butt;
  101. QLabel lab;
  102. qInfo("%s:%i: %s", __FILE__, __LINE__, "Начинаем настройку элементов");
  103. foreach (QString item, items){
  104. qInfo("%s:%i: %s%s", __FILE__, __LINE__, "Устанавливаем настройки для ", item.toUtf8().data());
  105. QWidget* obj = app->window->findChild<QWidget*>(item);
  106. if (obj != nullptr){
  107. obj->installEventFilter(app->window);
  108. settings.beginGroup(item);
  109. if(settings.value("left").toString() != "-1"){
  110. obj->setGeometry(QRect(
  111. settings.value("left").toInt(),
  112. settings.value("top").toInt(),
  113. settings.value("width").toInt(),
  114. settings.value("height").toInt()
  115. ));
  116. }
  117. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": настройка геометрии завершена");
  118. if(settings.value("shadow") != k){
  119. QString color = settings.value("shcolor") != k ? settings.value("shcolor").toString() : "#222";
  120. int blur = settings.value("shblur") != k ? settings.value("shblur").toInt() : 2;
  121. int offset_x = settings.value("shx") != k ? settings.value("shx").toInt() : 1;
  122. int offset_y = settings.value("shy") != k ? settings.value("shy").toInt() : 1;
  123. app->helper->applyShadow(obj, color, blur, offset_x, offset_y);
  124. }
  125. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": настройка теней завершена");
  126. if(settings.value("text") != k){
  127. QString text = settings.value("text").toString();
  128. if(text == "del") text = "";
  129. if(obj->metaObject()->className() == butt.metaObject()->className()){
  130. QPushButton * b = dynamic_cast<QPushButton* >(obj);
  131. b->setText(text);
  132. }
  133. if(obj->metaObject()->className() == lab.metaObject()->className()){
  134. QLabel * l = dynamic_cast<QLabel* >(obj);
  135. l->setText(settings.value("text").toString());
  136. }
  137. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": текст установлен");
  138. }
  139. if(settings.value("align") != k){
  140. QLabel * lab = dynamic_cast<QLabel* >(obj);
  141. if(settings.value("align") == "left") lab->setAlignment(Qt::AlignLeft);
  142. if(settings.value("align") == "center") lab->setAlignment(Qt::AlignCenter);
  143. if(settings.value("align") == "right") lab->setAlignment(Qt::AlignRight);
  144. }
  145. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": настройки позиционирования применены");
  146. settings.endGroup();
  147. } else {
  148. if(item == "mainWindow") {
  149. settings.beginGroup(item);
  150. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": обработка параметров главного окна");
  151. int w = settings.value("width").toInt();
  152. int h = settings.value("height").toInt();
  153. QDesktopWidget desktop;
  154. QRect rect = desktop.availableGeometry(desktop.primaryScreen()); // прямоугольник с размерами экрана
  155. QPoint center = rect.center(); //координаты центра экрана
  156. int x = center.x() - (w/2); // учитываем половину ширины окна
  157. int y = center.y() - (h/2); // .. половину высоты
  158. center.setX(x);
  159. center.setY(y);
  160. app->window->move(center);
  161. settings.endGroup();
  162. }
  163. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": закончен просчет геометрии");
  164. if(item == "htmlColors") {
  165. settings.beginGroup(item);
  166. foreach(QString key, settings.allKeys()){
  167. app->helper->htmlColors.insert(key, settings.value(key).toString());
  168. }
  169. settings.endGroup();
  170. }
  171. qInfo("%s:%i: %s%s", __FILE__, __LINE__, item.toUtf8().data(), ": загружены HTML-цвета");
  172. }
  173. }
  174. qInfo("%s:%i: %s", __FILE__, __LINE__, "Выполнено.");
  175. app->logSectionEnd();
  176. }
  177. QString AConfig::getValue(QString section, QString key){
  178. QSettings settings( conffile, QSettings::IniFormat );
  179. settings.beginGroup(section);
  180. key = settings.value(key, -1).toString();
  181. settings.endGroup();
  182. return key;
  183. }
  184. void AConfig::setValue(QString section, QString key, QString value){
  185. QSettings settings( conffile, QSettings::IniFormat );
  186. settings.beginGroup(section);
  187. settings.setValue(key, value);
  188. settings.sync();
  189. }
  190. void AConfig::deleteKey(QString section, QString key){
  191. QSettings settings( conffile, QSettings::IniFormat );
  192. QStringList keys = settings.childKeys();
  193. settings.beginGroup(section);
  194. if (keys.contains(key)){ settings.remove(key); }
  195. settings.endGroup();
  196. }
  197. void AConfig::deleteSection(QString section){
  198. QSettings settings( conffile, QSettings::IniFormat );
  199. settings.beginGroup(section);
  200. settings.remove("");
  201. settings.endGroup();
  202. }
  203. QStringList AConfig::getLotroPath(){
  204. QStringList paths;
  205. //#if defined(Q_WS_WIN)
  206. // Windows 7
  207. QSettings m("HKEY_CLASSES_ROOT\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\MuiCache", QSettings::NativeFormat);
  208. foreach (QString key, m.allKeys()) {
  209. if(key.contains("TurbineLauncher.exe") && FileSystem::fileExists(key)){
  210. paths.append(key.replace("/TurbineLauncher.exe", ""));
  211. }
  212. }
  213. // Windows 8, 10
  214. QSettings n("HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\12bbe590-c890-11d9-9669-0800200c9a66_is1", QSettings::NativeFormat);
  215. foreach (QString key, n.allKeys()) {
  216. qDebug() << key;
  217. if(key.contains("InstallLocation") || key.contains("installlocation")){
  218. QString folder = n.value(key).toString().replace("\\", "/").replace("/TurbineLauncher.exe", "").replace("\"", "");
  219. if(FileSystem::fileExists(folder + "/TurbineLauncher.exe")) paths.append(folder);
  220. }
  221. }
  222. //#else
  223. // Реализация под Linux
  224. //#endif
  225. return paths;
  226. }
  227. const char * AConfig::getDatPath(int id){
  228. App *app = &App::getInstance();
  229. QStringList dats;
  230. dats << app->config->getValue("Local", "file") << "client_general.dat" << "client_sound.dat" << "client_surface.dat" << "client_highres.dat";
  231. //std::string file = (app->config->getValue("Local", "folder") + "/" + dats.at(id)).toStdString();
  232. return (app->config->getValue("Local", "folder") + "/" + dats.at(id)).toUtf8().data();
  233. }