-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLetter.cpp
More file actions
45 lines (34 loc) · 877 Bytes
/
Letter.cpp
File metadata and controls
45 lines (34 loc) · 877 Bytes
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
//
// Created by Kristal Hong on 11/1/23.
//
#include "Letter.h"
Letter::Letter() : Letter('\0')
{
}
Letter::Letter (char letter) : sf::Text(), character(letter)
{
setFont(Fonts::getFont(OPEN_SANS));
setPosition({300.f, 300.f});
setString(std::string(1, letter)); // (std::string(1, letter) - char to string
setCharacterSize(24);
}
unsigned char Letter::getChar() const {
return character;
}
void Letter::enableState(statesEnum state) {
letterStates.enableState(state);
}
// Add a method to check the state in the letter
bool Letter::checkState(statesEnum state) const {
return letterStates.checkState(state);
}
void Letter::disableState(statesEnum state) {
letterStates.disableState(state);
}
sf::Color Letter::getColor() const {
return color;
}
void Letter::setColor(sf::Color col) {
color = col;
setFillColor(color);
}