GeneralOptionsTab.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  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/ResourceID.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. type |= REDRAW_PARENT;
  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(ResourceID("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. //moved from "other" tab that is disabled for now to avoid excessible tabs with barely any content
  134. addCallback("availableCreaturesAsDwellingChanged", [=](int value)
  135. {
  136. setBoolSetting("gameTweaks", "availableCreaturesAsDwellingLabel", value > 0);
  137. });
  138. addCallback("compactTownCreatureInfoChanged", [](bool value)
  139. {
  140. setBoolSetting("gameTweaks", "compactTownCreatureInfo", value);
  141. });
  142. build(config);
  143. const auto & currentResolution = settings["video"]["resolution"];
  144. std::shared_ptr<CLabel> scalingLabel = widget<CLabel>("scalingLabel");
  145. scalingLabel->setText(scalingToLabelString(currentResolution["scaling"].Integer()));
  146. std::shared_ptr<CLabel> longTouchLabel = widget<CLabel>("longTouchLabel");
  147. if (longTouchLabel)
  148. longTouchLabel->setText(longTouchToLabelString(settings["general"]["longTouchTimeMilliseconds"].Integer()));
  149. std::shared_ptr<CToggleButton> spellbookAnimationCheckbox = widget<CToggleButton>("spellbookAnimationCheckbox");
  150. spellbookAnimationCheckbox->setSelected(settings["video"]["spellbookAnimation"].Bool());
  151. std::shared_ptr<CToggleButton> fullscreenBorderlessCheckbox = widget<CToggleButton>("fullscreenBorderlessCheckbox");
  152. if (fullscreenBorderlessCheckbox)
  153. fullscreenBorderlessCheckbox->setSelected(settings["video"]["fullscreen"].Bool() && !settings["video"]["realFullscreen"].Bool());
  154. std::shared_ptr<CToggleButton> fullscreenExclusiveCheckbox = widget<CToggleButton>("fullscreenExclusiveCheckbox");
  155. if (fullscreenExclusiveCheckbox)
  156. fullscreenExclusiveCheckbox->setSelected(settings["video"]["fullscreen"].Bool() && settings["video"]["realFullscreen"].Bool());
  157. std::shared_ptr<CToggleButton> framerateCheckbox = widget<CToggleButton>("framerateCheckbox");
  158. framerateCheckbox->setSelected(settings["video"]["showfps"].Bool());
  159. std::shared_ptr<CSlider> musicSlider = widget<CSlider>("musicSlider");
  160. musicSlider->scrollTo(CCS->musich->getVolume());
  161. std::shared_ptr<CSlider> volumeSlider = widget<CSlider>("soundVolumeSlider");
  162. volumeSlider->scrollTo(CCS->soundh->getVolume());
  163. std::shared_ptr<CToggleGroup> creatureGrowthAsDwellingPicker = widget<CToggleGroup>("availableCreaturesAsDwellingPicker");
  164. creatureGrowthAsDwellingPicker->setSelected(settings["gameTweaks"]["availableCreaturesAsDwellingLabel"].Bool());
  165. std::shared_ptr<CToggleButton> compactTownCreatureInfo = widget<CToggleButton>("compactTownCreatureInfoCheckbox");
  166. compactTownCreatureInfo->setSelected(settings["gameTweaks"]["compactTownCreatureInfo"].Bool());
  167. std::shared_ptr<CLabel> musicVolumeLabel = widget<CLabel>("musicValueLabel");
  168. musicVolumeLabel->setText(std::to_string(CCS->musich->getVolume()) + "%");
  169. std::shared_ptr<CLabel> soundVolumeLabel = widget<CLabel>("soundValueLabel");
  170. soundVolumeLabel->setText(std::to_string(CCS->soundh->getVolume()) + "%");
  171. updateResolutionSelector();
  172. }
  173. void GeneralOptionsTab::updateResolutionSelector()
  174. {
  175. std::shared_ptr<CButton> resolutionButton = widget<CButton>("resolutionButton");
  176. std::shared_ptr<CLabel> resolutionLabel = widget<CLabel>("resolutionLabel");
  177. if (settings["video"]["fullscreen"].Bool() && !settings["video"]["realFullscreen"].Bool())
  178. {
  179. if (resolutionButton)
  180. resolutionButton->disable();
  181. if (resolutionLabel)
  182. resolutionLabel->setText(resolutionToLabelString(GH.screenDimensions().x, GH.screenDimensions().y));
  183. }
  184. else
  185. {
  186. const auto & currentResolution = settings["video"]["resolution"];
  187. if (resolutionButton)
  188. resolutionButton->enable();
  189. if (resolutionLabel)
  190. resolutionLabel->setText(resolutionToLabelString(currentResolution["width"].Integer(), currentResolution["height"].Integer()));
  191. }
  192. }
  193. void GeneralOptionsTab::selectGameResolution()
  194. {
  195. supportedResolutions = GH.screenHandler().getSupportedResolutions();
  196. std::vector<std::string> items;
  197. size_t currentResolutionIndex = 0;
  198. size_t i = 0;
  199. for(const auto & it : supportedResolutions)
  200. {
  201. auto resolutionStr = resolutionToEntryString(it.x, it.y);
  202. if(widget<CLabel>("resolutionLabel")->getText() == resolutionToLabelString(it.x, it.y))
  203. currentResolutionIndex = i;
  204. items.push_back(std::move(resolutionStr));
  205. ++i;
  206. }
  207. GH.windows().createAndPushWindow<CObjectListWindow>(items, nullptr,
  208. CGI->generaltexth->translate("vcmi.systemOptions.resolutionMenu.hover"),
  209. CGI->generaltexth->translate("vcmi.systemOptions.resolutionMenu.help"),
  210. [this](int index)
  211. {
  212. setGameResolution(index);
  213. },
  214. currentResolutionIndex);
  215. }
  216. void GeneralOptionsTab::setGameResolution(int index)
  217. {
  218. assert(index >= 0 && index < supportedResolutions.size());
  219. if ( index < 0 || index >= supportedResolutions.size() )
  220. return;
  221. Point resolution = supportedResolutions[index];
  222. Settings gameRes = settings.write["video"]["resolution"];
  223. gameRes["width"].Float() = resolution.x;
  224. gameRes["height"].Float() = resolution.y;
  225. widget<CLabel>("resolutionLabel")->setText(resolutionToLabelString(resolution.x, resolution.y));
  226. }
  227. void GeneralOptionsTab::setFullscreenMode(bool on, bool exclusive)
  228. {
  229. setBoolSetting("video", "realFullscreen", exclusive);
  230. setBoolSetting("video", "fullscreen", on);
  231. std::shared_ptr<CToggleButton> fullscreenExclusiveCheckbox = widget<CToggleButton>("fullscreenExclusiveCheckbox");
  232. std::shared_ptr<CToggleButton> fullscreenBorderlessCheckbox = widget<CToggleButton>("fullscreenBorderlessCheckbox");
  233. if (fullscreenBorderlessCheckbox)
  234. fullscreenBorderlessCheckbox->setSelected(on && !exclusive);
  235. if (fullscreenExclusiveCheckbox)
  236. fullscreenExclusiveCheckbox->setSelected(on && exclusive);
  237. updateResolutionSelector();
  238. }
  239. void GeneralOptionsTab::selectGameScaling()
  240. {
  241. supportedScaling.clear();
  242. // generate list of all possible scaling values, with 10% step
  243. // also add one value over maximum, so if player can use scaling up to 123.456% he will be able to select 130%
  244. // and let screen handler clamp that value to actual maximum
  245. auto [minimalScaling, maximalScaling] = GH.screenHandler().getSupportedScalingRange();
  246. for (int i = 0; i <= maximalScaling + 10 - 1; i += 10)
  247. {
  248. if (i >= minimalScaling)
  249. supportedScaling.push_back(i);
  250. }
  251. std::vector<std::string> items;
  252. size_t currentIndex = 0;
  253. size_t i = 0;
  254. for(const auto & it : supportedScaling)
  255. {
  256. auto resolutionStr = scalingToEntryString(it);
  257. if(widget<CLabel>("scalingLabel")->getText() == scalingToLabelString(it))
  258. currentIndex = i;
  259. items.push_back(std::move(resolutionStr));
  260. ++i;
  261. }
  262. GH.windows().createAndPushWindow<CObjectListWindow>(
  263. items,
  264. nullptr,
  265. CGI->generaltexth->translate("vcmi.systemOptions.scalingMenu.hover"),
  266. CGI->generaltexth->translate("vcmi.systemOptions.scalingMenu.help"),
  267. [this](int index)
  268. {
  269. setGameScaling(index);
  270. },
  271. currentIndex
  272. );
  273. }
  274. void GeneralOptionsTab::setGameScaling(int index)
  275. {
  276. assert(index >= 0 && index < supportedScaling.size());
  277. if ( index < 0 || index >= supportedScaling.size() )
  278. return;
  279. int scaling = supportedScaling[index];
  280. Settings gameRes = settings.write["video"]["resolution"];
  281. gameRes["scaling"].Float() = scaling;
  282. widget<CLabel>("scalingLabel")->setText(scalingToLabelString(scaling));
  283. }
  284. void GeneralOptionsTab::selectLongTouchDuration()
  285. {
  286. longTouchDurations = { 500, 750, 1000, 1250, 1500, 1750, 2000 };
  287. std::vector<std::string> items;
  288. size_t currentIndex = 0;
  289. size_t i = 0;
  290. for(const auto & it : longTouchDurations)
  291. {
  292. auto resolutionStr = longTouchToEntryString(it);
  293. if(widget<CLabel>("longTouchLabel")->getText() == longTouchToLabelString(it))
  294. currentIndex = i;
  295. items.push_back(std::move(resolutionStr));
  296. ++i;
  297. }
  298. GH.windows().createAndPushWindow<CObjectListWindow>(
  299. items,
  300. nullptr,
  301. CGI->generaltexth->translate("vcmi.systemOptions.longTouchMenu.hover"),
  302. CGI->generaltexth->translate("vcmi.systemOptions.longTouchMenu.help"),
  303. [this](int index)
  304. {
  305. setLongTouchDuration(index);
  306. },
  307. currentIndex
  308. );
  309. }
  310. void GeneralOptionsTab::setLongTouchDuration(int index)
  311. {
  312. assert(index >= 0 && index < longTouchDurations.size());
  313. if ( index < 0 || index >= longTouchDurations.size() )
  314. return;
  315. int scaling = longTouchDurations[index];
  316. Settings longTouchTime = settings.write["general"]["longTouchTimeMilliseconds"];
  317. longTouchTime->Float() = scaling;
  318. widget<CLabel>("longTouchLabel")->setText(longTouchToLabelString(scaling));
  319. }