InterfaceObjectConfigurable.cpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. /*
  2. * InterfaceBuilder.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 "InterfaceObjectConfigurable.h"
  12. #include "../CGameInfo.h"
  13. #include "../CPlayerInterface.h"
  14. #include "../gui/CGuiHandler.h"
  15. #include "../gui/ShortcutHandler.h"
  16. #include "../gui/Shortcut.h"
  17. #include "../render/Graphics.h"
  18. #include "../render/IFont.h"
  19. #include "../widgets/CComponent.h"
  20. #include "../widgets/ComboBox.h"
  21. #include "../widgets/Buttons.h"
  22. #include "../widgets/CTextInput.h"
  23. #include "../widgets/GraphicalPrimitiveCanvas.h"
  24. #include "../widgets/ObjectLists.h"
  25. #include "../widgets/Slider.h"
  26. #include "../widgets/TextControls.h"
  27. #include "../windows/GUIClasses.h"
  28. #include "../windows/InfoWindows.h"
  29. #include "../../lib/constants/StringConstants.h"
  30. #include "../../lib/json/JsonUtils.h"
  31. #include "../../lib/texts/CGeneralTextHandler.h"
  32. #include "../../lib/filesystem/ResourcePath.h"
  33. InterfaceObjectConfigurable::InterfaceObjectConfigurable(const JsonNode & config, int used, Point offset):
  34. InterfaceObjectConfigurable(used, offset)
  35. {
  36. build(config);
  37. }
  38. InterfaceObjectConfigurable::InterfaceObjectConfigurable(int used, Point offset):
  39. CIntObject(used, offset)
  40. {
  41. REGISTER_BUILDER("picture", &InterfaceObjectConfigurable::buildPicture);
  42. REGISTER_BUILDER("image", &InterfaceObjectConfigurable::buildImage);
  43. REGISTER_BUILDER("texture", &InterfaceObjectConfigurable::buildTexture);
  44. REGISTER_BUILDER("animation", &InterfaceObjectConfigurable::buildAnimation);
  45. REGISTER_BUILDER("label", &InterfaceObjectConfigurable::buildLabel);
  46. REGISTER_BUILDER("multiLineLabel", &InterfaceObjectConfigurable::buildMultiLineLabel);
  47. REGISTER_BUILDER("toggleGroup", &InterfaceObjectConfigurable::buildToggleGroup);
  48. REGISTER_BUILDER("toggleButton", &InterfaceObjectConfigurable::buildToggleButton);
  49. REGISTER_BUILDER("button", &InterfaceObjectConfigurable::buildButton);
  50. REGISTER_BUILDER("labelGroup", &InterfaceObjectConfigurable::buildLabelGroup);
  51. REGISTER_BUILDER("slider", &InterfaceObjectConfigurable::buildSlider);
  52. REGISTER_BUILDER("layout", &InterfaceObjectConfigurable::buildLayout);
  53. REGISTER_BUILDER("comboBox", &InterfaceObjectConfigurable::buildComboBox);
  54. REGISTER_BUILDER("textInput", &InterfaceObjectConfigurable::buildTextInput);
  55. REGISTER_BUILDER("graphicalPrimitive", &InterfaceObjectConfigurable::buildGraphicalPrimitive);
  56. REGISTER_BUILDER("transparentFilledRectangle", &InterfaceObjectConfigurable::buildTransparentFilledRectangle);
  57. REGISTER_BUILDER("textBox", &InterfaceObjectConfigurable::buildTextBox);
  58. }
  59. void InterfaceObjectConfigurable::registerBuilder(const std::string & type, BuilderFunction f)
  60. {
  61. builders[type] = f;
  62. }
  63. void InterfaceObjectConfigurable::addCallback(const std::string & callbackName, std::function<void(int)> callback)
  64. {
  65. callbacks_int[callbackName] = callback;
  66. }
  67. void InterfaceObjectConfigurable::addCallback(const std::string & callbackName, std::function<void(std::string)> callback)
  68. {
  69. callbacks_string[callbackName] = callback;
  70. }
  71. void InterfaceObjectConfigurable::deleteWidget(const std::string & name)
  72. {
  73. auto iter = widgets.find(name);
  74. if(iter != widgets.end())
  75. widgets.erase(iter);
  76. }
  77. void InterfaceObjectConfigurable::loadCustomBuilders(const JsonNode & config)
  78. {
  79. for(auto & item : config.Struct())
  80. {
  81. std::string typeName = item.first;
  82. JsonNode baseConfig = item.second;
  83. auto const & functor = [this, baseConfig](const JsonNode & widgetConfig) -> std::shared_ptr<CIntObject>
  84. {
  85. JsonNode actualConfig = widgetConfig;
  86. JsonUtils::mergeCopy(actualConfig, baseConfig);
  87. return this->buildWidget(actualConfig);
  88. };
  89. registerBuilder(typeName, functor);
  90. }
  91. }
  92. void InterfaceObjectConfigurable::build(const JsonNode &config)
  93. {
  94. OBJECT_CONSTRUCTION;
  95. logGlobal->debug("Building configurable interface object");
  96. auto * items = &config;
  97. if(config.getType() == JsonNode::JsonType::DATA_STRUCT)
  98. {
  99. if (!config["library"].isNull())
  100. {
  101. if (config["library"].isString())
  102. {
  103. const JsonNode library(JsonPath::fromJson(config["library"]));
  104. loadCustomBuilders(library);
  105. }
  106. if (config["library"].isVector())
  107. {
  108. for (auto const & entry : config["library"].Vector())
  109. {
  110. const JsonNode library(JsonPath::fromJson(entry));
  111. loadCustomBuilders(library);
  112. }
  113. }
  114. }
  115. loadCustomBuilders(config["customTypes"]);
  116. for(auto & item : config["variables"].Struct())
  117. {
  118. logGlobal->debug("Read variable named %s", item.first);
  119. variables[item.first] = item.second;
  120. }
  121. items = &config["items"];
  122. }
  123. for(const auto & item : items->Vector())
  124. addWidget(item["name"].String(), buildWidget(item));
  125. // load only if set
  126. if (!config["width"].isNull())
  127. pos.w = config["width"].Integer();
  128. if (!config["height"].isNull())
  129. pos.h = config["height"].Integer();
  130. }
  131. void InterfaceObjectConfigurable::addConditional(const std::string & name, bool active)
  132. {
  133. conditionals[name] = active;
  134. }
  135. void InterfaceObjectConfigurable::addWidget(const std::string & namePreferred, std::shared_ptr<CIntObject> widget)
  136. {
  137. static const std::string unnamedObjectPrefix = "__widget_";
  138. std::string nameActual;
  139. if (widgets.count(namePreferred) == 0)
  140. nameActual = namePreferred;
  141. else
  142. logGlobal->error("Duplicated widget name: '%s'", namePreferred);
  143. if (nameActual.empty())
  144. nameActual = unnamedObjectPrefix + std::to_string(unnamedObjectId++);
  145. logGlobal->debug("Building widget with name %s", nameActual);
  146. widgets[nameActual] = widget;
  147. }
  148. std::string InterfaceObjectConfigurable::readText(const JsonNode & config) const
  149. {
  150. if(config.isNull())
  151. return "";
  152. std::string s = config.String();
  153. if(s.empty())
  154. return s;
  155. logGlobal->debug("Reading text from translations by key: %s", s);
  156. return CGI->generaltexth->translate(s);
  157. }
  158. Point InterfaceObjectConfigurable::readPosition(const JsonNode & config) const
  159. {
  160. Point p;
  161. logGlobal->debug("Reading point");
  162. p.x = config["x"].Integer();
  163. p.y = config["y"].Integer();
  164. return p;
  165. }
  166. Rect InterfaceObjectConfigurable::readRect(const JsonNode & config) const
  167. {
  168. Rect p;
  169. logGlobal->debug("Reading rect");
  170. p.x = config["x"].Integer();
  171. p.y = config["y"].Integer();
  172. p.w = config["w"].Integer();
  173. p.h = config["h"].Integer();
  174. return p;
  175. }
  176. ETextAlignment InterfaceObjectConfigurable::readTextAlignment(const JsonNode & config) const
  177. {
  178. logGlobal->debug("Reading text alignment");
  179. if(!config.isNull())
  180. {
  181. if(config.String() == "center")
  182. return ETextAlignment::CENTER;
  183. if(config.String() == "left")
  184. return ETextAlignment::TOPLEFT;
  185. if(config.String() == "right")
  186. return ETextAlignment::BOTTOMRIGHT;
  187. }
  188. logGlobal->debug("Unknown text alignment attribute");
  189. return ETextAlignment::CENTER;
  190. }
  191. ColorRGBA InterfaceObjectConfigurable::readColor(const JsonNode & config) const
  192. {
  193. logGlobal->debug("Reading color");
  194. if(!config.isNull())
  195. {
  196. if(config.isString())
  197. {
  198. if(config.String() == "yellow")
  199. return Colors::YELLOW;
  200. if(config.String() == "white")
  201. return Colors::WHITE;
  202. if(config.String() == "gold")
  203. return Colors::METALLIC_GOLD;
  204. if(config.String() == "green")
  205. return Colors::GREEN;
  206. if(config.String() == "orange")
  207. return Colors::ORANGE;
  208. if(config.String() == "bright-yellow")
  209. return Colors::BRIGHT_YELLOW;
  210. }
  211. if(config.isVector())
  212. {
  213. const auto & asVector = config.Vector();
  214. if(asVector.size() == 4)
  215. return ColorRGBA(asVector[0].Integer(), asVector[1].Integer(), asVector[2].Integer(), asVector[3].Integer());
  216. if(asVector.size() == 3)
  217. return ColorRGBA(asVector[0].Integer(), asVector[1].Integer(), asVector[2].Integer());
  218. }
  219. }
  220. logGlobal->debug("Unknown color attribute");
  221. return Colors::DEFAULT_KEY_COLOR;
  222. }
  223. PlayerColor InterfaceObjectConfigurable::readPlayerColor(const JsonNode & config) const
  224. {
  225. logGlobal->debug("Reading PlayerColor");
  226. if(!config.isNull() && config.isString())
  227. return PlayerColor(PlayerColor::decode(config.String()));
  228. logGlobal->debug("Unknown PlayerColor attribute");
  229. return PlayerColor::CANNOT_DETERMINE;
  230. }
  231. EFonts InterfaceObjectConfigurable::readFont(const JsonNode & config) const
  232. {
  233. logGlobal->debug("Reading font");
  234. if(!config.isNull())
  235. {
  236. if(config.String() == "big")
  237. return EFonts::FONT_BIG;
  238. if(config.String() == "medium")
  239. return EFonts::FONT_MEDIUM;
  240. if(config.String() == "small")
  241. return EFonts::FONT_SMALL;
  242. if(config.String() == "tiny")
  243. return EFonts::FONT_TINY;
  244. if(config.String() == "calisto")
  245. return EFonts::FONT_CALLI;
  246. }
  247. logGlobal->debug("Unknown font attribute");
  248. return EFonts::FONT_TIMES;
  249. }
  250. std::pair<std::string, std::string> InterfaceObjectConfigurable::readHintText(const JsonNode & config) const
  251. {
  252. logGlobal->debug("Reading hint text");
  253. std::pair<std::string, std::string> result;
  254. if(!config.isNull())
  255. {
  256. if(config.getType() == JsonNode::JsonType::DATA_STRUCT)
  257. {
  258. result.first = readText(config["hover"]);
  259. result.second = readText(config["help"]);
  260. return result;
  261. }
  262. if(config.getType() == JsonNode::JsonType::DATA_STRING)
  263. {
  264. logGlobal->debug("Reading hint text (help) from generaltext handler:%sd", config.String());
  265. result.first = CGI->generaltexth->translate( config.String(), "hover");
  266. result.second = CGI->generaltexth->translate( config.String(), "help");
  267. }
  268. }
  269. return result;
  270. }
  271. EShortcut InterfaceObjectConfigurable::readHotkey(const JsonNode & config) const
  272. {
  273. logGlobal->debug("Reading hotkey");
  274. if(config.getType() != JsonNode::JsonType::DATA_STRING)
  275. {
  276. logGlobal->error("Invalid hotket format in interface configuration! Expected string!", config.String());
  277. return EShortcut::NONE;
  278. }
  279. EShortcut result = GH.shortcuts().findShortcut(config.String());
  280. if (result == EShortcut::NONE)
  281. logGlobal->error("Invalid hotkey '%s' in interface configuration!", config.String());
  282. return result;
  283. }
  284. std::shared_ptr<CPicture> InterfaceObjectConfigurable::buildPicture(const JsonNode & config) const
  285. {
  286. logGlobal->debug("Building widget CPicture");
  287. auto image = ImagePath::fromJson(config["image"]);
  288. auto position = readPosition(config["position"]);
  289. auto pic = std::make_shared<CPicture>(image, position.x, position.y);
  290. if ( config["playerColored"].Bool() && LOCPLINT)
  291. pic->setPlayerColor(LOCPLINT->playerID);
  292. return pic;
  293. }
  294. std::shared_ptr<CLabel> InterfaceObjectConfigurable::buildLabel(const JsonNode & config) const
  295. {
  296. logGlobal->debug("Building widget CLabel");
  297. auto font = readFont(config["font"]);
  298. auto alignment = readTextAlignment(config["alignment"]);
  299. auto color = readColor(config["color"]);
  300. auto text = readText(config["text"]);
  301. auto position = readPosition(config["position"]);
  302. auto maxWidth = config["maxWidth"].Integer();
  303. return std::make_shared<CLabel>(position.x, position.y, font, alignment, color, text, maxWidth);
  304. }
  305. std::shared_ptr<CMultiLineLabel> InterfaceObjectConfigurable::buildMultiLineLabel(const JsonNode & config) const
  306. {
  307. logGlobal->debug("Building widget CMultiLineLabel");
  308. auto font = readFont(config["font"]);
  309. auto alignment = readTextAlignment(config["alignment"]);
  310. auto color = readColor(config["color"]);
  311. auto text = readText(config["text"]);
  312. Rect rect = readRect(config["rect"]);
  313. if(!config["adoptHeight"].isNull() && config["adoptHeight"].Bool())
  314. rect.h = graphics->fonts[font]->getLineHeight() * 2;
  315. return std::make_shared<CMultiLineLabel>(rect, font, alignment, color, text);
  316. }
  317. std::shared_ptr<CToggleGroup> InterfaceObjectConfigurable::buildToggleGroup(const JsonNode & config) const
  318. {
  319. logGlobal->debug("Building widget CToggleGroup");
  320. auto position = readPosition(config["position"]);
  321. auto group = std::make_shared<CToggleGroup>(0);
  322. group->pos += position;
  323. if(!config["items"].isNull())
  324. {
  325. OBJECT_CONSTRUCTION_TARGETED(group.get());
  326. int itemIdx = -1;
  327. for(const auto & item : config["items"].Vector())
  328. {
  329. itemIdx = item["index"].isNull() ? itemIdx + 1 : item["index"].Integer();
  330. auto newToggle = std::dynamic_pointer_cast<CToggleButton>(buildWidget(item));
  331. group->addToggle(itemIdx, newToggle);
  332. }
  333. }
  334. if(!config["selected"].isNull())
  335. group->setSelected(config["selected"].Integer());
  336. if(!config["callback"].isNull())
  337. group->addCallback(callbacks_int.at(config["callback"].String()));
  338. return group;
  339. }
  340. std::shared_ptr<CToggleButton> InterfaceObjectConfigurable::buildToggleButton(const JsonNode & config) const
  341. {
  342. logGlobal->debug("Building widget CToggleButton");
  343. auto position = readPosition(config["position"]);
  344. auto image = AnimationPath::fromJson(config["image"]);
  345. auto help = readHintText(config["help"]);
  346. auto button = std::make_shared<CToggleButton>(position, image, help);
  347. if(!config["items"].isNull())
  348. {
  349. for(const auto & item : config["items"].Vector())
  350. {
  351. button->setOverlay(buildWidget(item));
  352. }
  353. }
  354. if(!config["selected"].isNull())
  355. button->setSelected(config["selected"].Bool());
  356. if(!config["imageOrder"].isNull())
  357. {
  358. auto imgOrder = config["imageOrder"].Vector();
  359. assert(imgOrder.size() >= 4);
  360. button->setImageOrder(imgOrder[0].Integer(), imgOrder[1].Integer(), imgOrder[2].Integer(), imgOrder[3].Integer());
  361. }
  362. loadToggleButtonCallback(button, config["callback"]);
  363. return button;
  364. }
  365. std::shared_ptr<CButton> InterfaceObjectConfigurable::buildButton(const JsonNode & config) const
  366. {
  367. logGlobal->debug("Building widget CButton");
  368. auto position = readPosition(config["position"]);
  369. auto image = AnimationPath::fromJson(config["image"]);
  370. auto help = readHintText(config["help"]);
  371. auto button = std::make_shared<CButton>(position, image, help);
  372. if(!config["items"].isNull())
  373. {
  374. for(const auto & item : config["items"].Vector())
  375. {
  376. button->setOverlay(buildWidget(item));
  377. }
  378. }
  379. if(!config["imageOrder"].isNull())
  380. {
  381. auto imgOrder = config["imageOrder"].Vector();
  382. assert(imgOrder.size() >= 4);
  383. button->setImageOrder(imgOrder[0].Integer(), imgOrder[1].Integer(), imgOrder[2].Integer(), imgOrder[3].Integer());
  384. }
  385. loadButtonBorderColor(button, config["borderColor"]);
  386. loadButtonCallback(button, config["callback"]);
  387. loadButtonHotkey(button, config["hotkey"]);
  388. return button;
  389. }
  390. void InterfaceObjectConfigurable::loadButtonBorderColor(std::shared_ptr<CButton> button, const JsonNode & config) const
  391. {
  392. if (config.isNull())
  393. return;
  394. auto color = readColor(config);
  395. button->setBorderColor(color);
  396. }
  397. void InterfaceObjectConfigurable::loadToggleButtonCallback(std::shared_ptr<CToggleButton> button, const JsonNode & config) const
  398. {
  399. if(config.isNull())
  400. return;
  401. std::string callbackName = config.String();
  402. if (callbacks_int.count(callbackName) > 0)
  403. button->addCallback(callbacks_int.at(callbackName));
  404. else
  405. logGlobal->error("Invalid callback '%s' in widget", callbackName );
  406. }
  407. void InterfaceObjectConfigurable::loadButtonCallback(std::shared_ptr<CButton> button, const JsonNode & config) const
  408. {
  409. if(config.isNull())
  410. return;
  411. std::string callbackName = config.String();
  412. if (callbacks_int.count(callbackName) > 0)
  413. button->addCallback(std::bind(callbacks_int.at(callbackName), 0));
  414. else
  415. logGlobal->error("Invalid callback '%s' in widget", callbackName );
  416. }
  417. void InterfaceObjectConfigurable::loadButtonHotkey(std::shared_ptr<CButton> button, const JsonNode & config) const
  418. {
  419. if(config.isNull())
  420. return;
  421. if(config.getType() != JsonNode::JsonType::DATA_STRING)
  422. {
  423. logGlobal->error("Invalid shortcut format - string expected!");
  424. return;
  425. }
  426. button->assignedKey = readHotkey(config);
  427. auto target = shortcuts.find(button->assignedKey);
  428. if (target == shortcuts.end())
  429. return;
  430. button->addCallback(target->second.callback);
  431. target->second.assignedButtons.push_back(button);
  432. }
  433. std::shared_ptr<CLabelGroup> InterfaceObjectConfigurable::buildLabelGroup(const JsonNode & config) const
  434. {
  435. logGlobal->debug("Building widget CLabelGroup");
  436. auto font = readFont(config["font"]);
  437. auto alignment = readTextAlignment(config["alignment"]);
  438. auto color = readColor(config["color"]);
  439. auto group = std::make_shared<CLabelGroup>(font, alignment, color);
  440. if(!config["items"].isNull())
  441. {
  442. for(const auto & item : config["items"].Vector())
  443. {
  444. auto position = readPosition(item["position"]);
  445. auto text = readText(item["text"]);
  446. group->add(position.x, position.y, text);
  447. }
  448. }
  449. return group;
  450. }
  451. std::shared_ptr<CSlider> InterfaceObjectConfigurable::buildSlider(const JsonNode & config) const
  452. {
  453. logGlobal->debug("Building widget CSlider");
  454. auto position = readPosition(config["position"]);
  455. int length = config["size"].Integer();
  456. auto style = config["style"].String() == "brown" ? CSlider::BROWN : CSlider::BLUE;
  457. auto value = config["selected"].Integer();
  458. bool horizontal = config["orientation"].String() == "horizontal";
  459. auto orientation = horizontal ? Orientation::HORIZONTAL : Orientation::VERTICAL;
  460. std::shared_ptr<CSlider> result;
  461. if (config["items"].isNull())
  462. {
  463. auto itemsVisible = config["itemsVisible"].Integer();
  464. auto itemsTotal = config["itemsTotal"].Integer();
  465. result = std::make_shared<CSlider>(position, length, callbacks_int.at(config["callback"].String()), itemsVisible, itemsTotal, value, orientation, style);
  466. }
  467. else
  468. {
  469. auto items = config["items"].convertTo<std::vector<int>>();
  470. result = std::make_shared<SliderNonlinear>(position, length, callbacks_int.at(config["callback"].String()), items, value, orientation, style);
  471. }
  472. if(!config["scrollBounds"].isNull())
  473. {
  474. Rect bounds = readRect(config["scrollBounds"]);
  475. result->setScrollBounds(bounds);
  476. }
  477. if(!config["panningStep"].isNull())
  478. result->setPanningStep(config["panningStep"].Integer());
  479. return result;
  480. }
  481. std::shared_ptr<CAnimImage> InterfaceObjectConfigurable::buildImage(const JsonNode & config) const
  482. {
  483. logGlobal->debug("Building widget CAnimImage");
  484. auto position = readPosition(config["position"]);
  485. auto image = AnimationPath::fromJson(config["image"]);
  486. int group = config["group"].isNull() ? 0 : config["group"].Integer();
  487. int frame = config["frame"].isNull() ? 0 : config["frame"].Integer();
  488. return std::make_shared<CAnimImage>(image, frame, group, position.x, position.y);
  489. }
  490. std::shared_ptr<CFilledTexture> InterfaceObjectConfigurable::buildTexture(const JsonNode & config) const
  491. {
  492. logGlobal->debug("Building widget CFilledTexture");
  493. auto image = ImagePath::fromJson(config["image"]);
  494. auto rect = readRect(config["rect"]);
  495. auto playerColor = readPlayerColor(config["color"]);
  496. if(playerColor.isValidPlayer())
  497. {
  498. auto result = std::make_shared<FilledTexturePlayerColored>(image, rect);
  499. result->setPlayerColor(playerColor);
  500. return result;
  501. }
  502. return std::make_shared<CFilledTexture>(image, rect);
  503. }
  504. std::shared_ptr<ComboBox> InterfaceObjectConfigurable::buildComboBox(const JsonNode & config)
  505. {
  506. logGlobal->debug("Building widget ComboBox");
  507. auto position = readPosition(config["position"]);
  508. auto dropDownPosition = readPosition(config["dropDownPosition"]);
  509. auto image = AnimationPath::fromJson(config["image"]);
  510. auto help = readHintText(config["help"]);
  511. auto result = std::make_shared<ComboBox>(position, image, help, config["dropDown"], dropDownPosition);
  512. if(!config["items"].isNull())
  513. {
  514. for(const auto & item : config["items"].Vector())
  515. {
  516. result->setOverlay(buildWidget(item));
  517. }
  518. }
  519. if(!config["imageOrder"].isNull())
  520. {
  521. auto imgOrder = config["imageOrder"].Vector();
  522. assert(imgOrder.size() >= 4);
  523. result->setImageOrder(imgOrder[0].Integer(), imgOrder[1].Integer(), imgOrder[2].Integer(), imgOrder[3].Integer());
  524. }
  525. loadButtonBorderColor(result, config["borderColor"]);
  526. loadButtonHotkey(result, config["hotkey"]);
  527. return result;
  528. }
  529. std::shared_ptr<CTextInput> InterfaceObjectConfigurable::buildTextInput(const JsonNode & config) const
  530. {
  531. logGlobal->debug("Building widget CTextInput");
  532. auto rect = readRect(config["rect"]);
  533. auto offset = readPosition(config["backgroundOffset"]);
  534. auto bgName = ImagePath::fromJson(config["background"]);
  535. auto result = std::make_shared<CTextInput>(rect, offset, bgName);
  536. if(!config["alignment"].isNull())
  537. result->setAlignment(readTextAlignment(config["alignment"]));
  538. if(!config["font"].isNull())
  539. result->setFont(readFont(config["font"]));
  540. if(!config["color"].isNull())
  541. result->setColor(readColor(config["color"]));
  542. if(!config["text"].isNull() && config["text"].isString())
  543. result->setText(config["text"].String()); //for input field raw string is taken
  544. if(!config["callback"].isNull())
  545. result->setCallback(callbacks_string.at(config["callback"].String()));
  546. return result;
  547. }
  548. /// Small helper class that provides ownership for shared_ptr's of child elements
  549. class InterfaceLayoutWidget : public CIntObject
  550. {
  551. public:
  552. std::vector<std::shared_ptr<CIntObject>> ownedChildren;
  553. InterfaceLayoutWidget();
  554. };
  555. InterfaceLayoutWidget::InterfaceLayoutWidget()
  556. :CIntObject()
  557. {
  558. setRedrawParent(true);
  559. }
  560. std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildLayout(const JsonNode & config)
  561. {
  562. logGlobal->debug("Building widget Layout");
  563. bool vertical = config["vertical"].Bool();
  564. bool horizontal = config["horizontal"].Bool();
  565. bool dynamic = config["dynamic"].Bool();
  566. int distance = config["distance"].Integer();
  567. std::string customType = config["customType"].String();
  568. auto position = readPosition(config["position"]);
  569. auto result = std::make_shared<InterfaceLayoutWidget>();
  570. result->moveBy(position);
  571. Point layoutPosition;
  572. for(auto item : config["items"].Vector())
  573. {
  574. if (item["type"].String().empty())
  575. item["type"].String() = customType;
  576. if (!item["created"].isNull())
  577. {
  578. std::string name = item["created"].String();
  579. if (conditionals.count(name) != 0)
  580. {
  581. if (!conditionals.at(name))
  582. continue;
  583. }
  584. else
  585. {
  586. logMod->warn("Unknown condition %s in widget!", name);
  587. }
  588. }
  589. auto widget = buildWidget(item);
  590. addWidget(item["name"].String(), widget);
  591. result->ownedChildren.push_back(widget);
  592. result->addChild(widget.get(), false);
  593. widget->moveBy(position + layoutPosition);
  594. if (dynamic && vertical)
  595. layoutPosition.y += widget->pos.h;
  596. if (dynamic && horizontal)
  597. layoutPosition.x += widget->pos.w;
  598. if (vertical)
  599. layoutPosition.y += distance;
  600. if (horizontal)
  601. layoutPosition.x += distance;
  602. }
  603. return result;
  604. }
  605. std::shared_ptr<CShowableAnim> InterfaceObjectConfigurable::buildAnimation(const JsonNode & config) const
  606. {
  607. logGlobal->debug("Building widget CShowableAnim");
  608. auto position = readPosition(config["position"]);
  609. auto image = AnimationPath::fromJson(config["image"]);
  610. ui8 flags = 0;
  611. if(!config["repeat"].Bool())
  612. flags |= CShowableAnim::EFlags::PLAY_ONCE;
  613. int group = config["group"].isNull() ? 0 : config["group"].Integer();
  614. auto anim = std::make_shared<CShowableAnim>(position.x, position.y, image, flags, 4, group);
  615. if(!config["alpha"].isNull())
  616. anim->setAlpha(config["alpha"].Integer());
  617. if(!config["callback"].isNull())
  618. anim->callback = std::bind(callbacks_int.at(config["callback"].String()), 0);
  619. if(!config["frames"].isNull())
  620. {
  621. auto b = config["frames"]["start"].Integer();
  622. auto e = config["frames"]["end"].Integer();
  623. anim->set(group, b, e);
  624. }
  625. return anim;
  626. }
  627. std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildGraphicalPrimitive(const JsonNode & config) const
  628. {
  629. logGlobal->debug("Building widget GraphicalPrimitiveCanvas");
  630. auto rect = readRect(config["rect"]);
  631. auto widget = std::make_shared<GraphicalPrimitiveCanvas>(rect);
  632. for (auto const & entry : config["primitives"].Vector())
  633. {
  634. auto color = readColor(entry["color"]);
  635. auto typeString = entry["type"].String();
  636. auto pointA = readPosition(entry["a"]);
  637. auto pointB = readPosition(entry["b"]);
  638. if (typeString == "line")
  639. widget->addLine(pointA, pointB, color);
  640. if (typeString == "filledBox")
  641. widget->addBox(pointA, pointB, color);
  642. if (typeString == "rectangle")
  643. widget->addRectangle(pointA, pointB, color);
  644. }
  645. return widget;
  646. }
  647. std::shared_ptr<TransparentFilledRectangle> InterfaceObjectConfigurable::buildTransparentFilledRectangle(const JsonNode & config) const
  648. {
  649. logGlobal->debug("Building widget TransparentFilledRectangle");
  650. auto rect = readRect(config["rect"]);
  651. auto color = readColor(config["color"]);
  652. if(!config["colorLine"].isNull())
  653. {
  654. auto colorLine = readColor(config["colorLine"]);
  655. return std::make_shared<TransparentFilledRectangle>(rect, color, colorLine);
  656. }
  657. return std::make_shared<TransparentFilledRectangle>(rect, color);
  658. }
  659. std::shared_ptr<CTextBox> InterfaceObjectConfigurable::buildTextBox(const JsonNode & config) const
  660. {
  661. logGlobal->debug("Building widget CTextBox");
  662. auto rect = readRect(config["rect"]);
  663. auto font = readFont(config["font"]);
  664. auto alignment = readTextAlignment(config["alignment"]);
  665. auto color = readColor(config["color"]);
  666. auto text = readText(config["text"]);
  667. auto blueTheme = config["blueTheme"].Bool();
  668. return std::make_shared<CTextBox>(text, rect, blueTheme ? 1 : 0, font, alignment, color);
  669. }
  670. std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildWidget(JsonNode config) const
  671. {
  672. assert(!config.isNull());
  673. logGlobal->debug("Building widget from config");
  674. //overrides from variables
  675. for(auto & item : config["overrides"].Struct())
  676. {
  677. logGlobal->debug("Config attribute %s was overridden by variable %s", item.first, item.second.String());
  678. config[item.first] = variables[item.second.String()];
  679. }
  680. auto type = config["type"].String();
  681. auto buildIterator = builders.find(type);
  682. if(buildIterator != builders.end())
  683. return (buildIterator->second)(config);
  684. logGlobal->error("Builder with type %s is not registered", type);
  685. return nullptr;
  686. }
  687. void InterfaceObjectConfigurable::setShortcutBlocked(EShortcut shortcut, bool isBlocked)
  688. {
  689. auto target = shortcuts.find(shortcut);
  690. if (target == shortcuts.end())
  691. return;
  692. target->second.blocked = isBlocked;
  693. for (auto & entry : widgets)
  694. {
  695. auto button = std::dynamic_pointer_cast<CButton>(entry.second);
  696. if (button && button->assignedKey == shortcut)
  697. button->block(isBlocked);
  698. }
  699. }
  700. void InterfaceObjectConfigurable::addShortcut(EShortcut shortcut, std::function<void()> callback)
  701. {
  702. assert(shortcuts.count(shortcut) == 0);
  703. shortcuts[shortcut].callback = callback;
  704. }
  705. void InterfaceObjectConfigurable::keyPressed(EShortcut key)
  706. {
  707. auto target = shortcuts.find(key);
  708. if (target == shortcuts.end())
  709. return;
  710. for (auto const & button :target->second.assignedButtons)
  711. if (button->isActive())
  712. return; // will be handled by button instance
  713. if (target->second.blocked)
  714. return;
  715. target->second.callback();
  716. }