main.cpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. #include "app.h"
  2. #include "filesystem.h"
  3. #include <QApplication>
  4. #include <QFile>
  5. #include <QTextCodec>
  6. #include <QLockFile>
  7. #include <QtGlobal>
  8. #include <QDebug>
  9. #include <QScreen>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <QThread>
  13. #include <QtConcurrent/QtConcurrentRun>
  14. void myMessageOutput(QtMsgType type, const QMessageLogContext &, const QString &msg)
  15. {
  16. QByteArray localMsg = msg.toUtf8().data();
  17. const char * format = "[" + QDate::currentDate().toString(Qt::ISODate).toUtf8() + " " + QTime::currentTime().toString(Qt::ISODate).toUtf8() + "]";
  18. switch (type) {
  19. case QtDebugMsg:
  20. fprintf(stderr, "%s DEB: %s\n", format, localMsg.constData());
  21. break;
  22. case QtInfoMsg:
  23. fprintf(stderr, "%s INF: %s\n", format, localMsg.constData());
  24. break;
  25. case QtWarningMsg:
  26. fprintf(stderr, "%s WAR: %s\n", format, localMsg.constData());
  27. break;
  28. case QtCriticalMsg:
  29. fprintf(stderr, "%s CRT: %s\n", format, localMsg.constData());
  30. break;
  31. case QtFatalMsg:
  32. fprintf(stderr, "%s FAT: %s\n", format, localMsg.constData());
  33. abort();
  34. }
  35. }
  36. //#define DEBUG
  37. //#define DEBUG_EXPIRE 1523304000 // 2018-09-03 23:00:00
  38. int main(int argc, char *argv[]) {
  39. freopen("log.txt", "w", stdout);
  40. freopen("log.txt", "a", stderr);
  41. if (argc <= 1 || (argc > 1 && std::string(argv[1]) != "-prelaunched")) {
  42. QApplication a(argc, argv);
  43. QMessageBox msgBox;
  44. msgBox.setIcon(QMessageBox::Warning);
  45. #ifdef DEBUG
  46. msgBox.setText("ЭТО ТЕСТОВАЯ ВЕРСИЯ ЛАУНЧЕРА! НЕ ДЛЯ РАСПРОСТРАНЕНИЯ!");
  47. msgBox.exec();
  48. long long cur_time = time(0);
  49. if (cur_time >= DEBUG_EXPIRE)
  50. return 0;
  51. #else
  52. msgBox.setText("Запуск Наследия невозможен без лаунчера. Используйте лаунчер Наследия для запуска приложения!");
  53. msgBox.exec();
  54. a.exit(0);
  55. return 0;
  56. #endif
  57. }
  58. setbuf(stdout, NULL);
  59. setbuf(stderr, NULL);
  60. setvbuf (stdout, NULL, _IONBF, BUFSIZ);
  61. setvbuf (stderr, NULL, _IONBF, BUFSIZ);/**/
  62. qInstallMessageHandler(myMessageOutput);// вывод логов в файл
  63. float scale_factor = 1;
  64. if (!FileSystem::fileExists("dpi.stml")) {
  65. QApplication a(argc, argv);
  66. std::vector<float> dpi_scales = {1, 1.5, 2, 2.5};
  67. float current_dpi = ((QGuiApplication*)QCoreApplication::instance())->primaryScreen()->physicalDotsPerInch() / 96.0;
  68. qDebug() << "No value. Detected " << current_dpi;
  69. float best_scale = 1;
  70. for (float scale : dpi_scales) {
  71. qDebug() << "Looking at " << scale << " Current diff = " << std::abs(current_dpi - scale) << ", best diff = " << std::abs(current_dpi - best_scale);
  72. if (std::abs(current_dpi - scale) < std::abs(current_dpi - best_scale))
  73. best_scale = scale;
  74. }
  75. qDebug() << "Using dpi scale factor " << best_scale;
  76. QFile file("dpi.stml");
  77. file.open(QIODevice::WriteOnly);
  78. QTextStream writeStream(&file);
  79. writeStream << best_scale;
  80. file.close();
  81. QMessageBox msgBox;
  82. msgBox.setIcon(QMessageBox::Information);
  83. msgBox.setText("Первоначальная настройка завершена. Пожалуйста, перезапустите приложение");
  84. msgBox.exec();
  85. a.exit(0);
  86. return 0;
  87. } else {
  88. QFile file("dpi.stml");
  89. file.open(QIODevice::ReadOnly);
  90. QString dpi = file.readLine();
  91. scale_factor = dpi.toDouble();
  92. qDebug() << dpi;
  93. qputenv("QT_SCALE_FACTOR", dpi.toLatin1());
  94. }
  95. QApplication a(argc, argv);
  96. QLockFile lockFile(QDir::temp().absoluteFilePath("rulotro.lock"));
  97. if(!lockFile.tryLock(1)){
  98. QMessageBox msgBox;
  99. msgBox.setIcon(QMessageBox::Warning);
  100. msgBox.setText("Приложение уже запущено.\nРазрешено запускать только один экземпляр приложения.");
  101. msgBox.exec();
  102. return 1;
  103. }
  104. MainWindow w(scale_factor);
  105. auto result = a.exec();
  106. lockFile.unlock();
  107. return result;
  108. }