-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItem.cpp
More file actions
135 lines (95 loc) · 2.58 KB
/
Item.cpp
File metadata and controls
135 lines (95 loc) · 2.58 KB
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
//
// Created by Kristal Hong on 11/16/23.
//
#include "Item.h"
Item::Item () : highlighted(false)
{
setPosition({200, 200});
name.setString("Notes");
name.setFont(Fonts::getFont(OPEN_SANS));
name.setCharacterSize(24);
name.setFillColor(sf::Color::Black);
shape.setOutlineColor(sf::Color::Black);
shape.setOutlineThickness(2.0f);
shape.setSize({155, 70});
}
Item::Item(const std::string& itemName)
{
setPosition({100, 100});
name.setString(itemName);
name.setFont(Fonts::getFont(OPEN_SANS));
name.setCharacterSize(24);
name.setFillColor(sf::Color::Black);
shape.setOutlineColor(sf::Color::Black);
shape.setOutlineThickness(2.0f);
shape.setFillColor(sf::Color::White);
shape.setSize({180, 60});
}
void Item::draw(sf::RenderTarget& window, sf::RenderStates states) const {
window.draw(shape, states);
window.draw(name, states);
}
void Item::highlight(bool isHighlighted) {
highlighted = isHighlighted;
if (isHighlighted) {
shape.setFillColor(sf::Color::Blue);
} else {
shape.setFillColor(sf::Color::White);
}
}
sf::Text Item::getName() const {
return name;
}
sf::FloatRect Item::getGlobalBounds() const {
return shape.getGlobalBounds();
}
void Item::setPosition(sf::Vector2f position) {
shape.setPosition(position);
Position::centerText(shape, name);
}
float Item::getHeight() const {
return shape.getSize().y;
}
void Item::update() {
}
void Item::setText(const std::string& itemName) {
name.setString(itemName);
name.setFont(Fonts::getFont(OPEN_SANS));
name.setCharacterSize(24);
name.setFillColor(sf::Color::Black);
Position::centerText(shape, name);
}
const sf::Text& Item::getText() const {
return name;
}
std::string Item::getTextString() {
return name.getString();
}
void Item::setItemName(const std::string string) {
name.setString(string);
Position::centerText(shape, name);
}
void Item::setSize(sf::Vector2f size) {
shape.setSize(size);
Position::centerText(shape, name);
}
const sf::Vector2f Item::getPosition() const {
return shape.getPosition();
}
const sf::RectangleShape& Item::getShape() {
return shape;
}
sf::Vector2f Item::getSize() const {
return shape.getSize();
}
void Item::addEventHandler(sf::RenderWindow &window, sf::Event event) {
if(MouseEvents::isHovered(shape, window))
{
shape.setFillColor(sf::Color::Blue);
} else {
shape.setFillColor(sf::Color::White);
}
}
void Item::setCallback(std::function<void(std::string)> cb) {
callback = std::move(cb);
}