settings.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #ifndef SETTINGS_H
  2. #define SETTINGS_H
  3. #include <QSettings>
  4. namespace Settings
  5. {
  6. static QMap<QString, QVariant> defaults = {
  7. // General info
  8. {"General/UI_scale", "100"},
  9. {"General/CurrentInitStage", "0"},
  10. {"General/MicroUpdates", false},
  11. {"General/PatchDownloadDir", "data"},
  12. // Lotro Manager
  13. {"Lotro/game_path", "none"},
  14. {"Lotro/original_locale", "English"},
  15. {"Lotro/skip_raw_download", "True"},
  16. {"Lotro/no_splash_screen", "True"},
  17. // Databases download settings
  18. {"DatabaseDownload/text", false}, // TextsPatch
  19. {"DatabaseDownload/font", false}, // TextsPatch
  20. {"DatabaseDownload/image", false}, // GraphicsPatch
  21. {"DatabaseDownload/loadscreen", false}, // GraphicsPatch
  22. {"DatabaseDownload/texture", false}, // GraphicsPatch
  23. {"DatabaseDownload/sound", false}, // SoundsPatch
  24. {"DatabaseDownload/video", false}, // VideosPatch
  25. // Flags, meaning that database is fresh and needs to be installed
  26. {"DatabaseUpdated/text", false}, // TextsPatch
  27. {"DatabaseUpdated/font", false}, // TextsPatch
  28. {"DatabaseUpdated/image", false}, // GraphicsPatch
  29. {"DatabaseUpdated/loadscreen", false}, // GraphicsPatch
  30. {"DatabaseUpdated/texture", false}, // GraphicsPatch
  31. {"DatabaseUpdated/sound", false}, // SoundsPatch
  32. {"DatabaseUpdated/video", false}, // VideosPatch
  33. // Localisation components
  34. {"Components/fonts", false}, // TextsPatch
  35. {"Components/texts_main", false}, // TextsPatch
  36. {"Components/texts_items", false}, // TextsPatch
  37. {"Components/texts_emotes", false}, // TextsPatch
  38. {"Components/maps", false}, // ImagesPatch
  39. {"Components/loadscreens", false}, // ImagesPatch
  40. {"Components/textures", false}, // ImagesPatch
  41. {"Components/sounds", false}, // SoundsPatch
  42. {"Components/videos", false}, // VideosPatch
  43. // Network
  44. {"Network/site_url", "http://translate.lotros.ru/"},
  45. {"Network/forum_url", "http://lotros.ru/"},
  46. {"Network/discord_url", "https://discord.gg/j25MdKR"},
  47. {"Network/add_report_url", "http://translate.lotros.ru/bugs/add"},
  48. {"Network/donate_url", "http://translate.lotros.ru/donate"},
  49. {"Network/game_servers_status", "http://translate.lotros.ru/servers.txt"},
  50. {"Network/game_servers_message", "http://translate.lotros.ru/profmessage.txt"},
  51. {"Network/weekly_code_url", "http://translate.lotros.ru/coupon.txt"},
  52. {"Network/news_list_url", "http://translate.lotros.ru/groupware/launcher_news/30/1"},
  53. {"Network/patch_updates_url", "http://translate.lotros.ru/groupware/check_updates"}
  54. };
  55. static void setDefaultSettings()
  56. {
  57. QSettings settings;
  58. foreach (QString key, defaults.keys()) {
  59. settings.setValue(key, defaults[key]);
  60. }
  61. }
  62. static QVariant getValue(QString key) {
  63. QSettings settings;
  64. return settings.value(key, defaults[key]);
  65. }
  66. static void setValue(QString key, QVariant value) {
  67. QSettings settings;
  68. settings.setValue(key, value);
  69. }
  70. }
  71. #endif // SETTINGS_H