2022-07-25 14:36:05 +08:00
|
|
|
#include <SFML/Graphics/RenderWindow.hpp>
|
|
|
|
|
2023-03-10 08:38:14 +08:00
|
|
|
// Other 1st party headers
|
|
|
|
#include <SFML/Graphics/Image.hpp>
|
|
|
|
#include <SFML/Graphics/Texture.hpp>
|
2023-04-24 20:13:52 +08:00
|
|
|
|
2023-03-10 08:38:14 +08:00
|
|
|
#include <SFML/Window/VideoMode.hpp>
|
|
|
|
|
2023-04-24 20:13:52 +08:00
|
|
|
#include <SFML/System/String.hpp>
|
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2023-03-10 08:38:14 +08:00
|
|
|
|
|
|
|
#include <GraphicsUtil.hpp>
|
2022-07-25 14:36:05 +08:00
|
|
|
#include <type_traits>
|
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
TEST_CASE("[Graphics] sf::RenderWindow", runDisplayTests())
|
2023-03-10 08:38:14 +08:00
|
|
|
{
|
2023-01-18 12:51:08 +08:00
|
|
|
SECTION("Type traits")
|
|
|
|
{
|
|
|
|
STATIC_CHECK(!std::is_copy_constructible_v<sf::RenderWindow>);
|
|
|
|
STATIC_CHECK(!std::is_copy_assignable_v<sf::RenderWindow>);
|
|
|
|
STATIC_CHECK(!std::is_nothrow_move_constructible_v<sf::RenderWindow>);
|
|
|
|
STATIC_CHECK(!std::is_nothrow_move_assignable_v<sf::RenderWindow>);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Construction")
|
2023-03-10 08:38:14 +08:00
|
|
|
{
|
|
|
|
const sf::RenderWindow window(sf::VideoMode(sf::Vector2u(256, 256), 24),
|
|
|
|
"Window Title",
|
|
|
|
sf::Style::Default,
|
|
|
|
sf::ContextSettings());
|
|
|
|
CHECK(window.getSize() == sf::Vector2u(256, 256));
|
|
|
|
}
|
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
SECTION("Clear")
|
2023-03-10 08:38:14 +08:00
|
|
|
{
|
|
|
|
sf::RenderWindow window(sf::VideoMode(sf::Vector2u(256, 256), 24),
|
|
|
|
"Window Title",
|
|
|
|
sf::Style::Default,
|
|
|
|
sf::ContextSettings());
|
|
|
|
REQUIRE(window.getSize() == sf::Vector2u(256, 256));
|
|
|
|
|
|
|
|
sf::Texture texture;
|
|
|
|
REQUIRE(texture.create(window.getSize()));
|
|
|
|
|
|
|
|
window.clear(sf::Color::Red);
|
|
|
|
texture.update(window);
|
|
|
|
CHECK(texture.copyToImage().getPixel(sf::Vector2u(64, 64)) == sf::Color::Red);
|
|
|
|
|
|
|
|
window.clear(sf::Color::Green);
|
|
|
|
texture.update(window);
|
|
|
|
CHECK(texture.copyToImage().getPixel(sf::Vector2u(128, 128)) == sf::Color::Green);
|
|
|
|
|
|
|
|
window.clear(sf::Color::Blue);
|
|
|
|
texture.update(window);
|
|
|
|
CHECK(texture.copyToImage().getPixel(sf::Vector2u(196, 196)) == sf::Color::Blue);
|
|
|
|
}
|
|
|
|
}
|