2015-04-29 03:37:01 +08:00
|
|
|
// Header for SFML unit tests.
|
|
|
|
//
|
2021-12-29 13:03:15 +08:00
|
|
|
// For a new system module test case, include this header.
|
2023-01-18 12:51:08 +08:00
|
|
|
// This ensures that string conversions are visible and can be used by Catch2 for debug output.
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2022-12-21 12:17:38 +08:00
|
|
|
#pragma once
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2024-04-12 08:13:19 +08:00
|
|
|
#include <filesystem>
|
2023-04-13 21:50:19 +08:00
|
|
|
#include <iosfwd>
|
2024-04-12 08:13:19 +08:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <cstddef>
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
// String conversions for Catch2
|
2015-04-29 03:37:01 +08:00
|
|
|
namespace sf
|
|
|
|
{
|
2022-07-05 00:20:58 +08:00
|
|
|
class Angle;
|
|
|
|
class String;
|
|
|
|
class Time;
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2023-04-13 21:50:19 +08:00
|
|
|
template <typename>
|
|
|
|
class Vector2;
|
|
|
|
|
|
|
|
template <typename>
|
|
|
|
class Vector3;
|
|
|
|
|
|
|
|
void setStreamPrecision(std::ostream& os, int maxDigits10);
|
|
|
|
|
2022-07-05 13:46:34 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Angle& angle);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const String& string);
|
|
|
|
std::ostream& operator<<(std::ostream& os, Time time);
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
template <typename T>
|
2024-07-29 07:34:30 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, Vector2<T> vector);
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
template <typename T>
|
2023-04-13 21:50:19 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Vector3<T>& vector);
|
2022-07-05 00:20:58 +08:00
|
|
|
} // namespace sf
|
2015-04-29 03:37:01 +08:00
|
|
|
|
2022-05-03 06:38:33 +08:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
/// Class template for creating custom approximate comparisons.
|
|
|
|
/// To register a new type, simply implement a custom operator==
|
|
|
|
/// overload for that type.
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
|
|
|
struct Approx
|
2022-02-18 00:22:00 +08:00
|
|
|
{
|
2022-07-05 00:20:58 +08:00
|
|
|
explicit Approx(const T& t) : value(t)
|
|
|
|
{
|
|
|
|
}
|
2023-04-13 21:50:19 +08:00
|
|
|
|
2022-05-03 06:38:33 +08:00
|
|
|
const T& value;
|
2022-02-18 00:22:00 +08:00
|
|
|
};
|
|
|
|
|
2022-05-03 06:38:33 +08:00
|
|
|
bool operator==(const float& lhs, const Approx<float>& rhs);
|
2024-07-29 07:34:30 +08:00
|
|
|
bool operator==(sf::Vector2<float> lhs, const Approx<sf::Vector2<float>>& rhs);
|
2023-04-13 21:50:19 +08:00
|
|
|
bool operator==(const sf::Vector3<float>& lhs, const Approx<sf::Vector3<float>>& rhs);
|
2022-05-03 06:38:33 +08:00
|
|
|
bool operator==(const sf::Angle& lhs, const Approx<sf::Angle>& rhs);
|
2022-05-05 01:03:26 +08:00
|
|
|
|
2022-05-03 06:38:33 +08:00
|
|
|
template <typename T>
|
2023-09-28 12:27:20 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Approx<T>& approx)
|
|
|
|
{
|
|
|
|
return os << approx.value;
|
|
|
|
}
|
2024-04-12 08:13:19 +08:00
|
|
|
|
|
|
|
[[nodiscard]] std::vector<std::byte> loadIntoMemory(const std::filesystem::path& path);
|