2
0

GeneralOptionsTab.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. /*
  2. * GeneralOptionsTab.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "GeneralOptionsTab.h"
  12. #include "CGameInfo.h"
  13. #include "CMusicHandler.h"
  14. #include "CPlayerInterface.h"
  15. #include "CServerHandler.h"
  16. #include "render/IScreenHandler.h"
  17. #include "windows/GUIClasses.h"
  18. #include "../../eventsSDL/InputHandler.h"
  19. #include "../../gui/CGuiHandler.h"
  20. #include "../../gui/WindowHandler.h"
  21. #include "../../widgets/Buttons.h"
  22. #include "../../widgets/Images.h"
  23. #include "../../widgets/Slider.h"
  24. #include "../../widgets/TextControls.h"
  25. #include "../../../lib/CGeneralTextHandler.h"
  26. #include "../../../lib/filesystem/ResourcePath.h"
  27. static void setIntSetting(std::string group, std::string field, int value)
  28. {
  29. Settings entry = settings.write[group][field];
  30. entry->Float() = value;
  31. }
  32. static void setBoolSetting(std::string group, std::string field, bool value)
  33. {
  34. Settings entry = settings.write[group][field];
  35. entry->Bool() = value;
  36. }
  37. static std::string scalingToEntryString( int scaling)
  38. {
  39. return std::to_string(scaling) + '%';
  40. }
  41. static std::string scalingToLabelString( int scaling)
  42. {
  43. std::string string = CGI->generaltexth->translate("vcmi.systemOptions.scalingButton.hover");
  44. boost::replace_all(string, "%p", std::to_string(scaling));
  45. return string;
  46. }
  47. static std::string longTouchToEntryString( int duration)
  48. {
  49. std::string string = CGI->generaltexth->translate("vcmi.systemOptions.longTouchMenu.entry");
  50. boost::replace_all(string, "%d", std::to_string(duration));
  51. return string;
  52. }
  53. static std::string longTouchToLabelString( int duration)
  54. {
  55. std::string string = CGI->generaltexth->translate("vcmi.systemOptions.longTouchButton.hover");
  56. boost::replace_all(string, "%d", std::to_string(duration));
  57. return string;
  58. }
  59. static std::string resolutionToEntryString( int w, int h)
  60. {
  61. std::string string = "%wx%h";
  62. boost::replace_all(string, "%w", std::to_string(w));
  63. boost::replace_all(string, "%h", std::to_string(h));
  64. return string;
  65. }
  66. static std::string resolutionToLabelString( int w, int h)
  67. {
  68. std::string string = CGI->generaltexth->translate("vcmi.systemOptions.resolutionButton.hover");
  69. boost::replace_all(string, "%w", std::to_string(w));
  70. boost::replace_all(string, "%h", std::to_string(h));
  71. return string;
  72. }
  73. GeneralOptionsTab::GeneralOptionsTab()
  74. : InterfaceObjectConfigurable(),
  75. onFullscreenChanged(settings.listen["video"]["fullscreen"])
  76. {
  77. OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
  78. setRedrawParent(true);
  79. addConditional("touchscreen", GH.input().hasTouchInputDevice());
  80. #ifdef VCMI_MOBILE
  81. addConditional("mobile", true);
  82. addConditional("desktop", false);
  83. #else
  84. addConditional("mobile", false);
  85. addConditional("desktop", true);
  86. #endif
  87. const JsonNode config(JsonPath::builtin("config/widgets/settings/generalOptionsTab.json"));
  88. addCallback("spellbookAnimationChanged", [](bool value)
  89. {
  90. setBoolSetting("video", "spellbookAnimation", value);
  91. });
  92. addCallback("setMusic", [this](int value)
  93. {
  94. setIntSetting("general", "music", value);
  95. widget<CSlider>("musicSlider")->redraw();
  96. auto targetLabel = widget<CLabel>("musicValueLabel");
  97. if (targetLabel)
  98. targetLabel->setText(std::to_string(value) + "%");
  99. });
  100. addCallback("setVolume", [this](int value)
  101. {
  102. setIntSetting("general", "sound", value);
  103. widget<CSlider>("soundVolumeSlider")->redraw();
  104. auto targetLabel = widget<CLabel>("soundValueLabel");
  105. if (targetLabel)
  106. targetLabel->setText(std::to_string(value) + "%");
  107. });
  108. //settings that do not belong to base game:
  109. addCallback("fullscreenBorderlessChanged", [this](bool value)
  110. {
  111. setFullscreenMode(value, false);
  112. });
  113. addCallback("fullscreenExclusiveChanged", [this](bool value)
  114. {
  115. setFullscreenMode(value, true);
  116. });
  117. addCallback("setGameResolution", [this](int dummyValue)
  118. {
  119. selectGameResolution();
  120. });
  121. addCallback("setGameScaling", [this](int dummyValue)
  122. {
  123. selectGameScaling();
  124. });
  125. addCallback("setLongTouchDuration", [this](int dummyValue)
  126. {
  127. selectLongTouchDuration();
  128. });
  129. addCallback("framerateChanged", [](bool value)
  130. {
  131. setBoolSetting("video", "showfps", value);
  132. });
  133. addCallback("hapticFeedbackChanged", [](bool value)
  134. {
  135. setBoolSetting("general", "hapticFeedback", value);
  136. });
  137. addCallback("enableUiEnhancementsChanged", [](bool value)
  138. {
  139. setBoolSetting("general", "enableUiEnhancements", value);
  140. });
  141. //moved from "other" tab that is disabled for now to avoid excessible tabs with barely any content
  142. addCallback("availableCreaturesAsDwellingChanged", [=](int value)
  143. {
  144. setBoolSetting("gameTweaks", "availableCreaturesAsDwellingLabel", value > 0);
  145. });
  146. addCallback("compactTownCreatureInfoChanged", [](bool value)
  147. {
  148. setBoolSetting("gameTweaks", "compactTownCreatureInfo", value);
  149. });
  150. build(config);
  151. const auto & currentResolution = settings["video"]["resolution"];
  152. std::shared_ptr<CLabel> scalingLabel = widget<CLabel>("scalingLabel");
  153. scalingLabel->setText(scalingToLabelString(currentResolution["scaling"].Integer()));
  154. std::shared_ptr<CLabel> longTouchLabel = widget<CLabel>("longTouchLabel");
  155. if (longTouchLabel)
  156. longTouchLabel->setText(longTouchToLabelString(settings["general"]["longTouchTimeMilliseconds"].Integer()));
  157. std::shared_ptr<CToggleButton> spellbookAnimationCheckbox = widget<CToggleButton>("spellbookAnimationCheckbox");
  158. spellbookAnimationCheckbox->setSelected(settings["video"]["spellbookAnimation"].Bool());
  159. std::shared_ptr<CToggleButton> fullscreenBorderlessCheckbox = widget<CToggleButton>("fullscreenBorderlessCheckbox");
  160. if (fullscreenBorderlessCheckbox)
  161. fullscreenBorderlessCheckbox->setSelected(settings["video"]["fullscreen"].Bool() && !settings["video"]["realFullscreen"].Bool());
  162. std::shared_ptr<CToggleButton> fullscreenExclusiveCheckbox = widget<CToggleButton>("fullscreenExclusiveCheckbox");
  163. if (fullscreenExclusiveCheckbox)
  164. fullscreenExclusiveCheckbox->setSelected(settings["video"]["fullscreen"].Bool() && settings["video"]["realFullscreen"].Bool());
  165. std::shared_ptr<CToggleButton> framerateCheckbox = widget<CToggleButton>("framerateCheckbox");
  166. framerateCheckbox->setSelected(settings["video"]["showfps"].Bool());
  167. std::shared_ptr<CToggleButton> hapticFeedbackCheckbox = widget<CToggleButton>("hapticFeedbackCheckbox");
  168. if (hapticFeedbackCheckbox)
  169. hapticFeedbackCheckbox->setSelected(settings["general"]["hapticFeedback"].Bool());
  170. std::shared_ptr<CToggleButton> enableUiEnhancementsCheckbox = widget<CToggleButton>("enableUiEnhancementsCheckbox");
  171. if (enableUiEnhancementsCheckbox)
  172. enableUiEnhancementsCheckbox->setSelected(settings["general"]["enableUiEnhancements"].Bool());
  173. std::shared_ptr<CSlider> musicSlider = widget<CSlider>("musicSlider");
  174. musicSlider->scrollTo(CCS->musich->getVolume());
  175. std::shared_ptr<CSlider> volumeSlider = widget<CSlider>("soundVolumeSlider");
  176. volumeSlider->scrollTo(CCS->soundh->getVolume());
  177. std::shared_ptr<CToggleGroup> creatureGrowthAsDwellingPicker = widget<CToggleGroup>("availableCreaturesAsDwellingPicker");
  178. creatureGrowthAsDwellingPicker->setSelected(settings["gameTweaks"]["availableCreaturesAsDwellingLabel"].Bool());
  179. std::shared_ptr<CToggleButton> compactTownCreatureInfo = widget<CToggleButton>("compactTownCreatureInfoCheckbox");
  180. compactTownCreatureInfo->setSelected(settings["gameTweaks"]["compactTownCreatureInfo"].Bool());
  181. std::shared_ptr<CLabel> musicVolumeLabel = widget<CLabel>("musicValueLabel");
  182. musicVolumeLabel->setText(std::to_string(CCS->musich->getVolume()) + "%");
  183. std::shared_ptr<CLabel> soundVolumeLabel = widget<CLabel>("soundValueLabel");
  184. soundVolumeLabel->setText(std::to_string(CCS->soundh->getVolume()) + "%");
  185. updateResolutionSelector();
  186. }
  187. void GeneralOptionsTab::updateResolutionSelector()
  188. {
  189. std::shared_ptr<CButton> resolutionButton = widget<CButton>("resolutionButton");
  190. std::shared_ptr<CLabel> resolutionLabel = widget<CLabel>("resolutionLabel");
  191. if (resolutionButton)
  192. {
  193. if (settings["video"]["fullscreen"].Bool() && !settings["video"]["realFullscreen"].Bool())
  194. resolutionButton->disable();
  195. else
  196. resolutionButton->enable();
  197. }
  198. if (resolutionLabel)
  199. {
  200. Point resolution = GH.screenHandler().getRenderResolution();
  201. resolutionLabel->setText(resolutionToLabelString(resolution.x, resolution.y));
  202. }
  203. }
  204. void GeneralOptionsTab::selectGameResolution()
  205. {
  206. supportedResolutions = GH.screenHandler().getSupportedResolutions();
  207. std::vector<std::string> items;
  208. size_t currentResolutionIndex = 0;
  209. size_t i = 0;
  210. for(const auto & it : supportedResolutions)
  211. {
  212. auto resolutionStr = resolutionToEntryString(it.x, it.y);
  213. if(widget<CLabel>("resolutionLabel")->getText() == resolutionToLabelString(it.x, it.y))
  214. currentResolutionIndex = i;
  215. items.push_back(std::move(resolutionStr));
  216. ++i;
  217. }
  218. GH.windows().createAndPushWindow<CObjectListWindow>(items, nullptr,
  219. CGI->generaltexth->translate("vcmi.systemOptions.resolutionMenu.hover"),
  220. CGI->generaltexth->translate("vcmi.systemOptions.resolutionMenu.help"),
  221. [this](int index)
  222. {
  223. setGameResolution(index);
  224. },
  225. currentResolutionIndex);
  226. }
  227. void GeneralOptionsTab::setGameResolution(int index)
  228. {
  229. assert(index >= 0 && index < supportedResolutions.size());
  230. if ( index < 0 || index >= supportedResolutions.size() )
  231. return;
  232. Point resolution = supportedResolutions[index];
  233. Settings gameRes = settings.write["video"]["resolution"];
  234. gameRes["width"].Float() = resolution.x;
  235. gameRes["height"].Float() = resolution.y;
  236. widget<CLabel>("resolutionLabel")->setText(resolutionToLabelString(resolution.x, resolution.y));
  237. GH.dispatchMainThread([](){
  238. GH.onScreenResize();
  239. });
  240. }
  241. void GeneralOptionsTab::setFullscreenMode(bool on, bool exclusive)
  242. {
  243. if (on == settings["video"]["fullscreen"].Bool() && exclusive == settings["video"]["realFullscreen"].Bool())
  244. return;
  245. setBoolSetting("video", "realFullscreen", exclusive);
  246. setBoolSetting("video", "fullscreen", on);
  247. std::shared_ptr<CToggleButton> fullscreenExclusiveCheckbox = widget<CToggleButton>("fullscreenExclusiveCheckbox");
  248. std::shared_ptr<CToggleButton> fullscreenBorderlessCheckbox = widget<CToggleButton>("fullscreenBorderlessCheckbox");
  249. if (fullscreenBorderlessCheckbox)
  250. fullscreenBorderlessCheckbox->setSelectedSilent(on && !exclusive);
  251. if (fullscreenExclusiveCheckbox)
  252. fullscreenExclusiveCheckbox->setSelectedSilent(on && exclusive);
  253. updateResolutionSelector();
  254. GH.dispatchMainThread([](){
  255. GH.onScreenResize();
  256. });
  257. }
  258. void GeneralOptionsTab::selectGameScaling()
  259. {
  260. supportedScaling.clear();
  261. // generate list of all possible scaling values, with 10% step
  262. // also add one value over maximum, so if player can use scaling up to 123.456% he will be able to select 130%
  263. // and let screen handler clamp that value to actual maximum
  264. auto [minimalScaling, maximalScaling] = GH.screenHandler().getSupportedScalingRange();
  265. for (int i = 0; i <= maximalScaling + 10 - 1; i += 10)
  266. {
  267. if (i >= minimalScaling)
  268. supportedScaling.push_back(i);
  269. }
  270. std::vector<std::string> items;
  271. size_t currentIndex = 0;
  272. size_t i = 0;
  273. for(const auto & it : supportedScaling)
  274. {
  275. auto resolutionStr = scalingToEntryString(it);
  276. if(widget<CLabel>("scalingLabel")->getText() == scalingToLabelString(it))
  277. currentIndex = i;
  278. items.push_back(std::move(resolutionStr));
  279. ++i;
  280. }
  281. GH.windows().createAndPushWindow<CObjectListWindow>(
  282. items,
  283. nullptr,
  284. CGI->generaltexth->translate("vcmi.systemOptions.scalingMenu.hover"),
  285. CGI->generaltexth->translate("vcmi.systemOptions.scalingMenu.help"),
  286. [this](int index)
  287. {
  288. setGameScaling(index);
  289. },
  290. currentIndex
  291. );
  292. }
  293. void GeneralOptionsTab::setGameScaling(int index)
  294. {
  295. assert(index >= 0 && index < supportedScaling.size());
  296. if ( index < 0 || index >= supportedScaling.size() )
  297. return;
  298. int scaling = supportedScaling[index];
  299. Settings gameRes = settings.write["video"]["resolution"];
  300. gameRes["scaling"].Float() = scaling;
  301. widget<CLabel>("scalingLabel")->setText(scalingToLabelString(scaling));
  302. GH.dispatchMainThread([](){
  303. GH.onScreenResize();
  304. });
  305. }
  306. void GeneralOptionsTab::selectLongTouchDuration()
  307. {
  308. longTouchDurations = { 500, 750, 1000, 1250, 1500, 1750, 2000 };
  309. std::vector<std::string> items;
  310. size_t currentIndex = 0;
  311. size_t i = 0;
  312. for(const auto & it : longTouchDurations)
  313. {
  314. auto resolutionStr = longTouchToEntryString(it);
  315. if(widget<CLabel>("longTouchLabel")->getText() == longTouchToLabelString(it))
  316. currentIndex = i;
  317. items.push_back(std::move(resolutionStr));
  318. ++i;
  319. }
  320. GH.windows().createAndPushWindow<CObjectListWindow>(
  321. items,
  322. nullptr,
  323. CGI->generaltexth->translate("vcmi.systemOptions.longTouchMenu.hover"),
  324. CGI->generaltexth->translate("vcmi.systemOptions.longTouchMenu.help"),
  325. [this](int index)
  326. {
  327. setLongTouchDuration(index);
  328. },
  329. currentIndex
  330. );
  331. }
  332. void GeneralOptionsTab::setLongTouchDuration(int index)
  333. {
  334. assert(index >= 0 && index < longTouchDurations.size());
  335. if ( index < 0 || index >= longTouchDurations.size() )
  336. return;
  337. int scaling = longTouchDurations[index];
  338. Settings longTouchTime = settings.write["general"]["longTouchTimeMilliseconds"];
  339. longTouchTime->Float() = scaling;
  340. widget<CLabel>("longTouchLabel")->setText(longTouchToLabelString(scaling));
  341. }