-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTooltip.cpp
100 lines (87 loc) · 2.78 KB
/
Tooltip.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
#include "../include/Tooltip.hpp"
using namespace geode::prelude;
using namespace mouse;
bool Tooltip::init(std::string const& text) {
if (!CCNode::init())
return false;
auto label = CCLabelBMFont::create(text.c_str(), "goldFont.fnt");
auto bg = CCScale9Sprite::create("square02b_small-uhd.png", { 0, 0, 40, 40 });
bg->setColor({ 0, 0, 0 });
bg->setOpacity(155);
bg->setScale(.4f);
bg->setContentSize(label->getScaledContentSize() + CCSize { 12.f, 12.f });
bg->setPosition(bg->getScaledContentSize() / 2);
this->addChild(bg);
label->setPosition(bg->getContentSize() / 2);
bg->addChild(label);
this->setContentSize(bg->getScaledContentSize());
this->setAnchorPoint({ 0.f, 1.f });
this->setID("tooltip"_spr);
return true;
}
Tooltip* Tooltip::create(std::string const& text) {
auto ret = new Tooltip;
if (ret && ret->init(text)) {
ret->autorelease();
return ret;
}
CC_SAFE_DELETE(ret);
return nullptr;
}
void Tooltip::move(CCPoint const& pos) {
if (m_pParent) {
this->setPosition(m_pParent->convertToNodeSpace(pos));
}
else {
this->setPosition(pos);
}
}
void Tooltip::show(CCPoint const& pos) {
this->setVisible(true);
if (!m_pParent) {
CCScene::get()->addChild(this);
}
this->move(pos);
}
void Tooltip::show(CCNode* node) {
if (node->getParent()) {
this->show(node->getParent()->convertToWorldSpace(node->getPosition()));
}
else {
this->show(node->getPosition());
}
}
void Tooltip::hide() {
this->removeFromParent();
}
$execute {
new EventListener<AttributeSetFilter>(
+[](AttributeSetEvent* event) {
auto node = event->node;
if (node->getEventListener("tooltip"_spr)) {
return;
}
node->template addEventListener<MouseEventFilter>(
"tooltip"_spr,
[=](MouseEvent* event) {
auto tip = static_cast<Tooltip*>(CCScene::get()->getChildByID("tooltip"_spr));
if (MouseAttributes::from(node)->isHovered()) {
if (tip) {
tip->move(event->getPosition() + ccp(5.f, 0.));
}
else {
if (auto value = node->template getAttribute<std::string>("tooltip"_spr)) {
Tooltip::create(value.value())->show(event->getPosition() + ccp(5.f, 0.));
}
}
}
else if (tip) {
tip->hide();
}
return MouseResult::Eat;
}
);
},
AttributeSetFilter("tooltip"_spr)
);
}