CGuiHandler.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * CGuiHandler.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. VCMI_LIB_NAMESPACE_BEGIN
  12. template <typename T> struct CondSh;
  13. class Point;
  14. class Rect;
  15. VCMI_LIB_NAMESPACE_END
  16. enum class MouseButton;
  17. class ShortcutHandler;
  18. class FramerateManager;
  19. class IStatusBar;
  20. class CIntObject;
  21. class IUpdateable;
  22. class IShowActivatable;
  23. class IRenderHandler;
  24. class IScreenHandler;
  25. class WindowHandler;
  26. class EventDispatcher;
  27. class InputHandler;
  28. // Handles GUI logic and drawing
  29. class CGuiHandler
  30. {
  31. private:
  32. /// Fake no-op version status bar, for use in windows that have no status bar
  33. std::shared_ptr<IStatusBar> fakeStatusBar;
  34. /// Status bar of current window, if any. Uses weak_ptr to allow potential hanging reference after owned window has been deleted
  35. std::weak_ptr<IStatusBar> currentStatusBar;
  36. std::unique_ptr<ShortcutHandler> shortcutsHandlerInstance;
  37. std::unique_ptr<WindowHandler> windowHandlerInstance;
  38. std::unique_ptr<IScreenHandler> screenHandlerInstance;
  39. std::unique_ptr<IRenderHandler> renderHandlerInstance;
  40. std::unique_ptr<FramerateManager> framerateManagerInstance;
  41. std::unique_ptr<EventDispatcher> eventDispatcherInstance;
  42. std::unique_ptr<InputHandler> inputHandlerInstance;
  43. public:
  44. boost::mutex interfaceMutex;
  45. /// returns current position of mouse cursor, relative to vcmi window
  46. const Point & getCursorPosition() const;
  47. ShortcutHandler & shortcuts();
  48. FramerateManager & framerate();
  49. EventDispatcher & events();
  50. InputHandler & input();
  51. /// Returns current logical screen dimensions
  52. /// May not match size of window if user has UI scaling different from 100%
  53. Point screenDimensions() const;
  54. /// returns true if Alt is currently pressed down
  55. bool isKeyboardAltDown() const;
  56. /// returns true if Ctrl is currently pressed down
  57. /// on Apple system, this also tests for Cmd key
  58. /// For use with keyboard-based events
  59. bool isKeyboardCtrlDown() const;
  60. /// on Apple systems, returns true if Cmd key is pressed
  61. /// on other systems, returns true if Ctrl is pressed
  62. /// /// For use with mouse-based events
  63. bool isKeyboardCmdDown() const;
  64. /// returns true if Shift is currently pressed down
  65. bool isKeyboardShiftDown() const;
  66. void startTextInput(const Rect & where);
  67. void stopTextInput();
  68. IScreenHandler & screenHandler();
  69. IRenderHandler & renderHandler();
  70. WindowHandler & windows();
  71. /// Returns currently active status bar. Guaranteed to be non-null
  72. std::shared_ptr<IStatusBar> statusbar();
  73. /// Set currently active status bar
  74. void setStatusbar(std::shared_ptr<IStatusBar>);
  75. IUpdateable *curInt;
  76. ui8 defActionsDef; //default auto actions
  77. bool captureChildren; //all newly created objects will get their parents from stack and will be added to parents children list
  78. std::list<CIntObject *> createdObj; //stack of objs being created
  79. CGuiHandler();
  80. ~CGuiHandler();
  81. void init();
  82. void renderFrame();
  83. /// called whenever SDL_WINDOWEVENT_RESTORED is reported or the user selects a different resolution, requiring to center/resize all windows
  84. void onScreenResize(bool resolutionChanged);
  85. void handleEvents(); //takes events from queue and calls interested objects
  86. void fakeMouseMove();
  87. void drawFPSCounter(); // draws the FPS to the upper left corner of the screen
  88. bool amIGuiThread();
  89. /// Calls provided functor in main thread on next execution frame
  90. void dispatchMainThread(const std::function<void()> & functor);
  91. };
  92. extern CGuiHandler GH; //global gui handler
  93. struct SObjectConstruction
  94. {
  95. CIntObject *myObj;
  96. SObjectConstruction(CIntObject *obj);
  97. ~SObjectConstruction();
  98. };
  99. struct SSetCaptureState
  100. {
  101. bool previousCapture;
  102. ui8 prevActions;
  103. SSetCaptureState(bool allow, ui8 actions);
  104. ~SSetCaptureState();
  105. };
  106. #define OBJ_CONSTRUCTION SObjectConstruction obj__i(this)
  107. #define OBJ_CONSTRUCTION_TARGETED(obj) SObjectConstruction obj__i(obj)
  108. #define OBJECT_CONSTRUCTION_CAPTURING(actions) defActions = actions; SSetCaptureState obj__i1(true, actions); SObjectConstruction obj__i(this)
  109. #define OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(actions) SSetCaptureState obj__i1(true, actions); SObjectConstruction obj__i(this)
  110. #define OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE defActions = 255 - DISPOSE; SSetCaptureState obj__i1(true, 255 - DISPOSE); SObjectConstruction obj__i(this)