2022-06-26 10:41:32 +08:00
|
|
|
#include <GraphicsUtil.hpp>
|
2022-05-03 06:38:33 +08:00
|
|
|
|
2022-01-12 05:40:51 +08:00
|
|
|
#include <SFML/Graphics/BlendMode.hpp>
|
2018-08-19 07:30:53 +08:00
|
|
|
#include <SFML/Graphics/Color.hpp>
|
2021-12-24 08:18:33 +08:00
|
|
|
#include <SFML/Graphics/Transform.hpp>
|
|
|
|
|
2021-12-29 13:03:15 +08:00
|
|
|
#include <ostream>
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2022-01-12 05:40:51 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const sf::BlendMode& blendMode)
|
|
|
|
{
|
|
|
|
os << "( " << blendMode.colorSrcFactor << ", " << blendMode.colorDstFactor << ", "
|
|
|
|
<< blendMode.colorEquation << ", " << blendMode.alphaSrcFactor << ", "
|
|
|
|
<< blendMode.alphaDstFactor << ", " << blendMode.alphaEquation << " )";
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2021-12-29 13:03:15 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const sf::Color& color)
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-29 13:03:15 +08:00
|
|
|
os << "0x" << std::hex << color.toInteger() << std::dec
|
|
|
|
<< " (r=" << static_cast<int>(color.r)
|
|
|
|
<< ", g=" << static_cast<int>(color.g)
|
|
|
|
<< ", b=" << static_cast<int>(color.b)
|
|
|
|
<< ", a=" << static_cast<int>(color.a) << ")";
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2021-12-29 13:03:15 +08:00
|
|
|
return os;
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
2021-12-24 08:18:33 +08:00
|
|
|
|
|
|
|
std::ostream& operator <<(std::ostream& os, const sf::Transform& transform)
|
|
|
|
{
|
|
|
|
const auto& matrix = transform.getMatrix();
|
|
|
|
os << matrix[0] << ", " << matrix[4] << ", " << matrix[12] << ", ";
|
|
|
|
os << matrix[1] << ", " << matrix[5] << ", " << matrix[13] << ", ";
|
|
|
|
os << matrix[3] << ", " << matrix[7] << ", " << matrix[15];
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
2022-05-03 06:38:33 +08:00
|
|
|
|
|
|
|
bool operator==(const sf::Transform& lhs, const Approx<sf::Transform>& rhs)
|
|
|
|
{
|
|
|
|
return lhs.getMatrix()[0] == Approx(rhs.value.getMatrix()[0])
|
|
|
|
&& lhs.getMatrix()[4] == Approx(rhs.value.getMatrix()[4])
|
|
|
|
&& lhs.getMatrix()[12] == Approx(rhs.value.getMatrix()[12])
|
|
|
|
&& lhs.getMatrix()[1] == Approx(rhs.value.getMatrix()[1])
|
|
|
|
&& lhs.getMatrix()[5] == Approx(rhs.value.getMatrix()[5])
|
|
|
|
&& lhs.getMatrix()[13] == Approx(rhs.value.getMatrix()[13])
|
|
|
|
&& lhs.getMatrix()[3] == Approx(rhs.value.getMatrix()[3])
|
|
|
|
&& lhs.getMatrix()[7] == Approx(rhs.value.getMatrix()[7])
|
|
|
|
&& lhs.getMatrix()[15] == Approx(rhs.value.getMatrix()[15]);
|
|
|
|
}
|