-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.cpp
165 lines (141 loc) · 5.36 KB
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include <Geode/modify/MenuLayer.hpp>
#include "../include/API.hpp"
#include "../include/ContextMenu.hpp"
using namespace geode::prelude;
using namespace mouse;
// #define MOUSEAPI_TEST
#ifdef MOUSEAPI_TEST
class HoveredNode : public CCNode {
protected:
CCLabelBMFont* m_label;
bool init() {
if (!CCNode::init())
return false;
this->setContentSize({ 100.f, 50.f });
m_label = CCLabelBMFont::create("Hi", "bigFont.fnt");
m_label->setPosition(m_obContentSize / 2);
this->addChild(m_label);
this->template addEventListener<MouseEventFilter>([=](MouseEvent* event) {
if (MouseAttributes::from(this)->isHeld(MouseButton::Right)) {
m_label->setString("Right-clicked!");
}
else if (MouseAttributes::from(this)->isHovered()) {
m_label->setString("Hovered!");
}
else {
m_label->setString("Hi");
}
return MouseResult::Swallow;
});
return true;
}
public:
static HoveredNode* create() {
auto ret = new HoveredNode();
if (ret && ret->init()) {
ret->autorelease();
return ret;
}
CC_SAFE_DELETE(ret);
return nullptr;
}
};
$execute {
new EventListener<ContextMenuFilter>(+[](CCNode*) {
FLAlertLayer::create("Hiii", "Yay it works", "OK")->show();
return ListenerResult::Propagate;
}, ContextMenuFilter("my-event-id"_spr));
new EventListener<ContextMenuFilter>(+[](CCNode* target) {
target->runAction(CCSequence::create(
CCEaseElasticOut::create(CCScaleBy::create(.25f, 1.25f), 2.f),
CCEaseElasticIn::create(CCScaleBy::create(.25f, 1 / 1.25f), 2.f),
nullptr
));
return ListenerResult::Propagate;
}, ContextMenuFilter("my-bounce"_spr));
new EventListener<ContextMenuFilter>(+[](CCNode*) {
AppDelegate::get()->trySaveGame();
exit(0);
return ListenerResult::Propagate;
}, ContextMenuFilter("quit-game"_spr));
new EventListener<ContextMenuDragFilter>(+[](CCNode* target, float value) {
target->setPositionY(value);
return ListenerResult::Propagate;
}, ContextMenuDragFilter("node-y"_spr));
new EventListener<ContextMenuDragInitFilter>(+[](CCNode* target, float* value) {
*value = target->getPositionY();
return ListenerResult::Stop;
}, ContextMenuDragInitFilter("node-y"_spr));
new EventListener<ContextMenuDragFilter>(+[](CCNode* target, float value) {
target->setPositionX(value);
return ListenerResult::Propagate;
}, ContextMenuDragFilter("node-x"_spr));
new EventListener<ContextMenuDragInitFilter>(+[](CCNode* target, float* value) {
*value = target->getPositionX();
return ListenerResult::Stop;
}, ContextMenuDragInitFilter("node-x"_spr));
};
struct $modify(MenuLayer) {
bool init() {
if (!MenuLayer::init())
return false;
this->getChildByID("main-title")
->setAttribute("geode.mouse-api/tooltip", "Omg tooltips");
this->getChildByID("profile-menu")
->setAttribute("geode.mouse-api/context-menu",
buildContextMenu()
.addItem("Hiii", "my-event-id"_spr)
.addItem("Ba", "my-event-id"_spr, .5f)
.addItem("Bo", "my-event-id"_spr, .5f)
.addSubMenu("Test", buildContextMenu()
.addItem("Yahoo!", "my-bounce"_spr)
.addItem("Fantastic", "__invalid")
)
);
this->getChildByID("main-menu")
->setAttribute("geode.mouse-api/context-menu",
json::Array {
json::Object {
{ "text", "Click to Work?" },
{ "frame", "GJ_infoIcon_001.png" },
{ "click", "my-event-id"_spr },
},
json::Object {
{ "text", "Bounce Animation!" },
{ "click", "my-bounce"_spr },
},
json::Object {
{ "text", "X" },
{ "precision", 1.0 },
{ "drag", "node-x"_spr },
{ "ratio", .5 },
},
json::Object {
{ "text", "Y" },
{ "precision", 1.0 },
{ "drag", "node-y"_spr },
{ "ratio", .5 },
},
json::Object {
{ "text", "Sub menu" },
{ "sub-menu", json::Array {
json::Object {
{ "text", "Sub menu!!" },
{ "click", "my-event-id"_spr },
}
} },
},
json::Object {
{ "text", "Quit Game" },
{ "click", "quit-game"_spr },
},
}
);
auto node = HoveredNode::create();
node->setPosition(60, 80);
node->setZOrder(15);
this->addChild(node);
return true;
}
};
#endif