InterfaceObjectConfigurable.h 4.2 KB

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