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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
#include <SFML/Graphics/Text.hpp>
// Other 1st party headers
#include <SFML/Graphics/Font.hpp>
#include <catch2/catch_test_macros.hpp>
#include <GraphicsUtil.hpp>
#include <WindowUtil.hpp>
#include <type_traits>
TEST_CASE("[Graphics] sf::Text", runDisplayTests())
{
SECTION("Type traits")
{
STATIC_CHECK(!std::is_constructible_v<sf::Text, sf::Font&&, sf::String, unsigned int>);
STATIC_CHECK(!std::is_constructible_v<sf::Text, const sf::Font&&, sf::String, unsigned int>);
STATIC_CHECK(std::is_copy_constructible_v<sf::Text>);
STATIC_CHECK(std::is_copy_assignable_v<sf::Text>);
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Text>);
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Text>);
}
const sf::Font font("Graphics/tuffy.ttf");
SECTION("Construction")
{
SECTION("Font constructor")
{
const sf::Text text(font);
CHECK(text.getString() == "");
CHECK(&text.getFont() == &font);
CHECK(text.getCharacterSize() == 30);
CHECK(text.getLetterSpacing() == 1.f);
CHECK(text.getLineSpacing() == 1.f);
CHECK(text.getStyle() == sf::Text::Regular);
CHECK(text.getFillColor() == sf::Color::White);
CHECK(text.getOutlineColor() == sf::Color::Black);
CHECK(text.getOutlineThickness() == 0);
CHECK(text.findCharacterPos(0) == sf::Vector2f());
CHECK(text.getLocalBounds() == sf::FloatRect());
CHECK(text.getGlobalBounds() == sf::FloatRect());
}
SECTION("Font and string constructor")
{
const sf::Text text(font, "abcdefghijklmnopqrstuvwxyz");
CHECK(text.getString() == "abcdefghijklmnopqrstuvwxyz");
CHECK(&text.getFont() == &font);
CHECK(text.getCharacterSize() == 30);
CHECK(text.getLetterSpacing() == 1.f);
CHECK(text.getLineSpacing() == 1.f);
CHECK(text.getStyle() == sf::Text::Regular);
CHECK(text.getFillColor() == sf::Color::White);
CHECK(text.getOutlineColor() == sf::Color::Black);
CHECK(text.getOutlineThickness() == 0);
CHECK(text.findCharacterPos(0) == sf::Vector2f());
CHECK(text.getLocalBounds() == sf::FloatRect({1, 8}, {357, 28}));
CHECK(text.getGlobalBounds() == sf::FloatRect({1, 8}, {357, 28}));
}
SECTION("Font, string, and character size constructor")
{
const sf::Text text(font, "abcdefghijklmnopqrstuvwxyz", 24);
CHECK(text.getString() == "abcdefghijklmnopqrstuvwxyz");
CHECK(&text.getFont() == &font);
CHECK(text.getCharacterSize() == 24);
CHECK(text.getLetterSpacing() == 1.f);
CHECK(text.getLineSpacing() == 1.f);
CHECK(text.getStyle() == sf::Text::Regular);
CHECK(text.getFillColor() == sf::Color::White);
CHECK(text.getOutlineColor() == sf::Color::Black);
CHECK(text.getOutlineThickness() == 0);
CHECK(text.findCharacterPos(0) == sf::Vector2f());
CHECK(text.getLocalBounds() == sf::FloatRect({1, 7}, {290, 22}));
CHECK(text.getGlobalBounds() == sf::FloatRect({1, 7}, {290, 22}));
}
}
SECTION("Set/get string")
{
sf::Text text(font);
text.setString("abcdefghijklmnopqrstuvwxyz");
CHECK(text.getString() == "abcdefghijklmnopqrstuvwxyz");
}
SECTION("Set/get font")
{
sf::Text text(font);
const sf::Font otherFont("Graphics/tuffy.ttf");
text.setFont(otherFont);
CHECK(&text.getFont() == &otherFont);
}
SECTION("Set/get character size")
{
sf::Text text(font);
text.setCharacterSize(48);
CHECK(text.getCharacterSize() == 48);
}
SECTION("Set/get line spacing")
{
sf::Text text(font);
text.setLineSpacing(42);
CHECK(text.getLineSpacing() == 42);
}
SECTION("Set/get letter spacing")
{
sf::Text text(font);
text.setLetterSpacing(15);
CHECK(text.getLetterSpacing() == 15);
}
SECTION("Set/get style")
{
sf::Text text(font);
text.setStyle(sf::Text::Bold | sf::Text::Italic);
CHECK(text.getStyle() == (sf::Text::Bold | sf::Text::Italic));
}
SECTION("Set/get fill color")
{
sf::Text text(font, "Fill color");
text.setFillColor(sf::Color::Red);
CHECK(text.getFillColor() == sf::Color::Red);
}
SECTION("Set/get outline color")
{
sf::Text text(font, "Outline color");
text.setOutlineColor(sf::Color::Green);
CHECK(text.getOutlineColor() == sf::Color::Green);
}
SECTION("Set/get outline thickness")
{
sf::Text text(font);
text.setOutlineThickness(3.14f);
CHECK(text.getOutlineThickness() == 3.14f);
}
SECTION("findCharacterPos()")
{
sf::Text text(font, "\tabcdefghijklmnopqrstuvwxyz \n");
text.setPosition({120, 240});
CHECK(text.findCharacterPos(0) == sf::Vector2f(120, 240));
CHECK(text.findCharacterPos(1) == sf::Vector2f(156, 240));
CHECK(text.findCharacterPos(2) == sf::Vector2f(170, 240));
CHECK(text.findCharacterPos(3) == sf::Vector2f(185, 240));
CHECK(text.findCharacterPos(4) == sf::Vector2f(198, 240));
// Indices that are too large are capped at maximum valid index
CHECK(text.findCharacterPos(1'000) == sf::Vector2f(120, 277));
}
SECTION("Get bounds")
{
sf::Text text(font, "Test", 18);
text.setPosition({100, 200});
CHECK(text.getLocalBounds() == sf::FloatRect({1, 5}, {33, 13}));
CHECK(text.getGlobalBounds() == sf::FloatRect({101, 205}, {33, 13}));
SECTION("Add underline")
{
text.setStyle(sf::Text::Underlined);
CHECK(text.getLocalBounds() == sf::FloatRect({1, 5}, {33, 13}));
CHECK(text.getGlobalBounds() == sf::FloatRect({101, 205}, {33, 13}));
}
SECTION("Add strikethrough")
{
text.setStyle(sf::Text::StrikeThrough);
CHECK(text.getLocalBounds() == sf::FloatRect({1, 5}, {33, 13}));
CHECK(text.getGlobalBounds() == sf::FloatRect({101, 205}, {33, 13}));
}
SECTION("Change rotation")
{
text.setRotation(sf::degrees(180));
CHECK(text.getLocalBounds() == sf::FloatRect({1, 5}, {33, 13}));
CHECK(text.getGlobalBounds() == Approx(sf::FloatRect({66, 182}, {33, 13})));
}
}
}
|