InterfaceObjectConfigurable.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * InterfaceBuilder.h, 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. #pragma once
  11. #include "CIntObject.h"
  12. #include "TextAlignment.h"
  13. #include "../render/EFont.h"
  14. #include "../../lib/JsonNode.h"
  15. class CPicture;
  16. class CLabel;
  17. class CMultiLineLabel;
  18. class CToggleGroup;
  19. class CToggleButton;
  20. class CButton;
  21. class CLabelGroup;
  22. class CSlider;
  23. class CAnimImage;
  24. class CShowableAnim;
  25. class CFilledTexture;
  26. class ComboBox;
  27. class CTextInput;
  28. #define REGISTER_BUILDER(type, method) registerBuilder(type, std::bind(method, this, std::placeholders::_1))
  29. class InterfaceObjectConfigurable: public CIntObject
  30. {
  31. public:
  32. InterfaceObjectConfigurable(int used=0, Point offset=Point());
  33. InterfaceObjectConfigurable(const JsonNode & config, int used=0, Point offset=Point());
  34. protected:
  35. /// Set blocked status for all buttons assotiated with provided shortcut
  36. void setShortcutBlocked(EShortcut shortcut, bool isBlocked);
  37. /// Registers provided callback to be called whenever specified shortcut is triggered
  38. void addShortcut(EShortcut shortcut, std::function<void()> callback);
  39. void keyPressed(EShortcut key) override;
  40. using BuilderFunction = std::function<std::shared_ptr<CIntObject>(const JsonNode &)>;
  41. void registerBuilder(const std::string &, BuilderFunction);
  42. void loadCustomBuilders(const JsonNode & config);
  43. //must be called after adding callbacks
  44. void build(const JsonNode & config);
  45. void addConditional(const std::string & name, bool active);
  46. void addWidget(const std::string & name, std::shared_ptr<CIntObject> widget);
  47. void addCallback(const std::string & callbackName, std::function<void(int)> callback);
  48. void addCallback(const std::string & callbackName, std::function<void(std::string)> callback);
  49. JsonNode variables;
  50. template<class T>
  51. const std::shared_ptr<T> widget(const std::string & name) const
  52. {
  53. auto iter = widgets.find(name);
  54. if(iter == widgets.end())
  55. return nullptr;
  56. return std::dynamic_pointer_cast<T>(iter->second);
  57. }
  58. void deleteWidget(const std::string & name);
  59. //basic serializers
  60. Point readPosition(const JsonNode &) const;
  61. Rect readRect(const JsonNode &) const;
  62. ETextAlignment readTextAlignment(const JsonNode &) const;
  63. ColorRGBA readColor(const JsonNode &) const;
  64. EFonts readFont(const JsonNode &) const;
  65. std::string readText(const JsonNode &) const;
  66. std::pair<std::string, std::string> readHintText(const JsonNode &) const;
  67. EShortcut readHotkey(const JsonNode &) const;
  68. PlayerColor readPlayerColor(const JsonNode &) const;
  69. void loadToggleButtonCallback(std::shared_ptr<CToggleButton> button, const JsonNode & config) const;
  70. void loadButtonCallback(std::shared_ptr<CButton> button, const JsonNode & config) const;
  71. void loadButtonHotkey(std::shared_ptr<CButton> button, const JsonNode & config) const;
  72. void loadButtonBorderColor(std::shared_ptr<CButton> button, const JsonNode & config) const;
  73. //basic widgets
  74. std::shared_ptr<CPicture> buildPicture(const JsonNode &) const;
  75. std::shared_ptr<CLabel> buildLabel(const JsonNode &) const;
  76. std::shared_ptr<CMultiLineLabel> buildMultiLineLabel(const JsonNode &) const;
  77. std::shared_ptr<CToggleGroup> buildToggleGroup(const JsonNode &) const;
  78. std::shared_ptr<CToggleButton> buildToggleButton(const JsonNode &) const;
  79. std::shared_ptr<CButton> buildButton(const JsonNode &) const;
  80. std::shared_ptr<CLabelGroup> buildLabelGroup(const JsonNode &) const;
  81. std::shared_ptr<CSlider> buildSlider(const JsonNode &) const;
  82. std::shared_ptr<CAnimImage> buildImage(const JsonNode &) const;
  83. std::shared_ptr<CShowableAnim> buildAnimation(const JsonNode &) const;
  84. std::shared_ptr<CFilledTexture> buildTexture(const JsonNode &) const;
  85. std::shared_ptr<CIntObject> buildLayout(const JsonNode &);
  86. std::shared_ptr<ComboBox> buildComboBox(const JsonNode &);
  87. std::shared_ptr<CTextInput> buildTextInput(const JsonNode &) const;
  88. //composite widgets
  89. std::shared_ptr<CIntObject> buildWidget(JsonNode config) const;
  90. private:
  91. struct ShortcutState
  92. {
  93. std::function<void()> callback;
  94. mutable bool assignedToButton = false;
  95. bool blocked = false;
  96. };
  97. int unnamedObjectId = 0;
  98. std::map<std::string, BuilderFunction> builders;
  99. std::map<std::string, std::shared_ptr<CIntObject>> widgets;
  100. std::map<std::string, std::function<void(int)>> callbacks_int;
  101. std::map<std::string, std::function<void(std::string)>> callbacks_string;
  102. std::map<std::string, bool> conditionals;
  103. std::map<EShortcut, ShortcutState> shortcuts;
  104. };