2014-12-17 11:08:14 +05:30
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 05:47:46 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 23:15:50 +05:30
|
|
|
#pragma once
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2015-05-14 19:46:15 +05:30
|
|
|
#include <cstdlib>
|
2014-11-14 00:55:39 +05:30
|
|
|
#include <type_traits>
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2019-02-27 09:17:49 +05:30
|
|
|
namespace Common {
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2018-11-21 12:26:14 +05:30
|
|
|
constexpr float PI = 3.14159265f;
|
2016-12-12 02:57:30 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
template <class T>
|
|
|
|
struct Rectangle {
|
2018-08-02 20:17:31 +05:30
|
|
|
T left{};
|
|
|
|
T top{};
|
|
|
|
T right{};
|
|
|
|
T bottom{};
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2018-11-21 12:27:32 +05:30
|
|
|
constexpr Rectangle() = default;
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2018-11-21 12:27:32 +05:30
|
|
|
constexpr Rectangle(T left, T top, T right, T bottom)
|
2016-09-19 06:31:46 +05:30
|
|
|
: left(left), top(top), right(right), bottom(bottom) {}
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2023-04-21 12:44:55 +05:30
|
|
|
[[nodiscard]] constexpr bool operator==(const Rectangle<T>& rhs) const {
|
|
|
|
return (left == rhs.left) && (top == rhs.top) && (right == rhs.right) &&
|
|
|
|
(bottom == rhs.bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr bool operator!=(const Rectangle<T>& rhs) const {
|
|
|
|
return !operator==(rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr Rectangle<T> operator*(const T value) const {
|
|
|
|
return Rectangle{left * value, top * value, right * value, bottom * value};
|
|
|
|
}
|
|
|
|
[[nodiscard]] constexpr Rectangle<T> operator/(const T value) const {
|
|
|
|
return Rectangle{left / value, top / value, right / value, bottom / value};
|
|
|
|
}
|
|
|
|
|
2020-09-01 00:36:16 +05:30
|
|
|
[[nodiscard]] T GetWidth() const {
|
2018-11-21 12:29:27 +05:30
|
|
|
return std::abs(static_cast<std::make_signed_t<T>>(right - left));
|
2016-09-18 06:08:01 +05:30
|
|
|
}
|
2020-09-01 00:36:16 +05:30
|
|
|
[[nodiscard]] T GetHeight() const {
|
2018-11-21 12:29:27 +05:30
|
|
|
return std::abs(static_cast<std::make_signed_t<T>>(bottom - top));
|
2016-09-18 06:08:01 +05:30
|
|
|
}
|
2020-09-01 00:36:16 +05:30
|
|
|
[[nodiscard]] Rectangle<T> TranslateX(const T x) const {
|
2016-11-05 13:17:05 +05:30
|
|
|
return Rectangle{left + x, top, right + x, bottom};
|
|
|
|
}
|
2020-09-01 00:36:16 +05:30
|
|
|
[[nodiscard]] Rectangle<T> TranslateY(const T y) const {
|
2016-11-05 13:17:05 +05:30
|
|
|
return Rectangle{left, top + y, right, bottom + y};
|
|
|
|
}
|
2020-09-01 00:36:16 +05:30
|
|
|
[[nodiscard]] Rectangle<T> Scale(const float s) const {
|
2016-11-10 13:06:07 +05:30
|
|
|
return Rectangle{left, top, static_cast<T>(left + GetWidth() * s),
|
|
|
|
static_cast<T>(top + GetHeight() * s)};
|
2016-11-05 13:17:05 +05:30
|
|
|
}
|
2013-09-05 05:47:46 +05:30
|
|
|
};
|
|
|
|
|
2019-05-29 12:17:01 +05:30
|
|
|
template <typename T>
|
2020-09-01 00:36:16 +05:30
|
|
|
Rectangle(T, T, T, T) -> Rectangle<T>;
|
2019-05-29 12:17:01 +05:30
|
|
|
|
2019-02-27 09:17:49 +05:30
|
|
|
} // namespace Common
|