mirror of
https://github.com/virtcode/hypr-dynamic-cursors
synced 2025-09-19 16:13:21 +02:00
64 lines
1.9 KiB
C++
64 lines
1.9 KiB
C++
#include "globals.hpp"
|
|
|
|
#define private public
|
|
#include <hyprland/src/managers/PointerManager.hpp>
|
|
#undef private
|
|
#include <hyprutils/math/Vector2D.hpp>
|
|
#include <hyprland/src/managers/eventLoop/EventLoopManager.hpp>
|
|
|
|
#include "mode/ModeRotate.hpp"
|
|
#include "mode/ModeTilt.hpp"
|
|
#include "mode/ModeStretch.hpp"
|
|
#include "other/Shake.hpp"
|
|
|
|
class CDynamicCursors {
|
|
public:
|
|
CDynamicCursors();
|
|
~CDynamicCursors();
|
|
|
|
/* hook on onCursorMoved */
|
|
void onCursorMoved(CPointerManager* pointers);
|
|
/* called on tick */
|
|
void onTick(CPointerManager* pointers);
|
|
|
|
/* hook on renderSoftwareCursorsFor */
|
|
void renderSoftware(CPointerManager* pointers, SP<CMonitor> pMonitor, timespec* now, CRegion& damage, std::optional<Vector2D> overridePos);
|
|
/* hook on damageIfSoftware*/
|
|
void damageSoftware(CPointerManager* pointers);
|
|
/* hook on renderHWCursorBuffer */
|
|
wlr_buffer* renderHardware(CPointerManager* pointers, SP<CPointerManager::SMonitorPointerState> state, SP<CTexture> texture);
|
|
/* hook on setHWCursorBuffer */
|
|
bool setHardware(CPointerManager* pointers, SP<CPointerManager::SMonitorPointerState> state, wlr_buffer* buf);
|
|
|
|
/* hook on setCursorFromName */
|
|
void setShape(const std::string& name);
|
|
/* hook on setCursorSoftware */
|
|
void unsetShape();
|
|
|
|
private:
|
|
SP<CEventLoopTimer> tick;
|
|
|
|
// current state of the cursor
|
|
SModeResult resultMode;
|
|
double resultShake;
|
|
|
|
SModeResult resultShown;
|
|
|
|
// whether we have already locked software for cursor zoom
|
|
bool zoomSoftware = false;
|
|
|
|
// modes
|
|
CModeRotate rotate;
|
|
CModeTilt tilt;
|
|
CModeStretch stretch;
|
|
/* returns the current mode, nullptr if none is selected */
|
|
IMode* currentMode();
|
|
|
|
// shake
|
|
CShake shake;
|
|
|
|
// calculates the current angle of the cursor, and changes the cursor shape
|
|
void calculate(EModeUpdate type);
|
|
};
|
|
|
|
inline std::unique_ptr<CDynamicCursors> g_pDynamicCursors;
|