2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-09-12 03:43:17 +00:00
|
|
|
#include <algorithm>
|
2020-02-13 01:15:02 +00:00
|
|
|
#include <cmath>
|
2020-04-28 22:48:13 +00:00
|
|
|
#include <type_traits>
|
2009-07-12 21:58:32 +00:00
|
|
|
#include <vector>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-07-12 21:58:32 +00:00
|
|
|
|
2017-03-08 05:38:05 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <intrin.h>
|
|
|
|
#endif
|
|
|
|
|
2009-06-14 10:59:06 +00:00
|
|
|
namespace MathUtil
|
|
|
|
{
|
2018-12-19 02:06:16 +00:00
|
|
|
constexpr double TAU = 6.2831853071795865;
|
|
|
|
constexpr double PI = TAU / 2;
|
2019-11-09 00:23:22 +00:00
|
|
|
constexpr double GRAVITY_ACCELERATION = 9.80665;
|
2018-12-19 02:06:16 +00:00
|
|
|
|
2019-04-07 12:57:04 +00:00
|
|
|
template <typename T>
|
|
|
|
constexpr auto Sign(const T& val) -> decltype((T{} < val) - (val < T{}))
|
|
|
|
{
|
|
|
|
return (T{} < val) - (val < T{});
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename F>
|
|
|
|
constexpr auto Lerp(const T& x, const T& y, const F& a) -> decltype(x + (y - x) * a)
|
|
|
|
{
|
|
|
|
return x + (y - x) * a;
|
|
|
|
}
|
|
|
|
|
2018-03-23 13:50:09 +00:00
|
|
|
template <typename T>
|
|
|
|
constexpr bool IsPow2(T imm)
|
2015-09-12 04:22:48 +00:00
|
|
|
{
|
2018-03-23 13:50:09 +00:00
|
|
|
return imm > 0 && (imm & (imm - 1)) == 0;
|
2015-09-12 04:22:48 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 23:06:19 +00:00
|
|
|
constexpr u32 NextPowerOf2(u32 value)
|
|
|
|
{
|
|
|
|
--value;
|
|
|
|
value |= value >> 1;
|
|
|
|
value |= value >> 2;
|
|
|
|
value |= value >> 4;
|
|
|
|
value |= value >> 8;
|
|
|
|
value |= value >> 16;
|
|
|
|
++value;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2009-07-15 00:51:24 +00:00
|
|
|
template <class T>
|
|
|
|
struct Rectangle
|
|
|
|
{
|
2015-10-21 00:11:25 +00:00
|
|
|
T left{};
|
|
|
|
T top{};
|
|
|
|
T right{};
|
|
|
|
T bottom{};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-10-21 00:24:11 +00:00
|
|
|
constexpr Rectangle() = default;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-10-21 00:24:11 +00:00
|
|
|
constexpr Rectangle(T theLeft, T theTop, T theRight, T theBottom)
|
2011-03-08 07:39:36 +00:00
|
|
|
: left(theLeft), top(theTop), right(theRight), bottom(theBottom)
|
2015-10-21 00:24:11 +00:00
|
|
|
{
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-10-21 00:24:11 +00:00
|
|
|
constexpr bool operator==(const Rectangle& r) const
|
|
|
|
{
|
|
|
|
return left == r.left && top == r.top && right == r.right && bottom == r.bottom;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2020-04-28 22:48:13 +00:00
|
|
|
constexpr T GetWidth() const { return GetDistance(left, right); }
|
|
|
|
constexpr T GetHeight() const { return GetDistance(top, bottom); }
|
2009-07-15 00:51:24 +00:00
|
|
|
// If the rectangle is in a coordinate system with a lower-left origin, use
|
|
|
|
// this Clamp.
|
|
|
|
void ClampLL(T x1, T y1, T x2, T y2)
|
|
|
|
{
|
2017-12-25 23:38:44 +00:00
|
|
|
left = std::clamp(left, x1, x2);
|
|
|
|
right = std::clamp(right, x1, x2);
|
|
|
|
top = std::clamp(top, y2, y1);
|
|
|
|
bottom = std::clamp(bottom, y2, y1);
|
2009-07-15 00:51:24 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2011-03-08 07:39:36 +00:00
|
|
|
// If the rectangle is in a coordinate system with an upper-left origin,
|
2009-07-15 00:51:24 +00:00
|
|
|
// use this Clamp.
|
2013-10-29 05:23:17 +00:00
|
|
|
void ClampUL(T x1, T y1, T x2, T y2)
|
2009-07-15 00:51:24 +00:00
|
|
|
{
|
2017-12-25 23:38:44 +00:00
|
|
|
left = std::clamp(left, x1, x2);
|
|
|
|
right = std::clamp(right, x1, x2);
|
|
|
|
top = std::clamp(top, y1, y2);
|
|
|
|
bottom = std::clamp(bottom, y1, y2);
|
2009-07-15 00:51:24 +00:00
|
|
|
}
|
2020-04-28 22:48:13 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
constexpr T GetDistance(T a, T b) const
|
|
|
|
{
|
|
|
|
if constexpr (std::is_unsigned<T>())
|
|
|
|
return b > a ? b - a : a - b;
|
|
|
|
else
|
|
|
|
return std::abs(b - a);
|
|
|
|
}
|
2009-07-15 00:51:24 +00:00
|
|
|
};
|
|
|
|
|
2020-02-13 01:15:02 +00:00
|
|
|
template <typename T>
|
|
|
|
class RunningMean
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr void Clear() { *this = {}; }
|
|
|
|
|
|
|
|
constexpr void Push(T x) { m_mean = m_mean + (x - m_mean) / ++m_count; }
|
|
|
|
|
|
|
|
constexpr size_t Count() const { return m_count; }
|
|
|
|
constexpr T Mean() const { return m_mean; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
size_t m_count = 0;
|
|
|
|
T m_mean{};
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class RunningVariance
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr void Clear() { *this = {}; }
|
|
|
|
|
|
|
|
constexpr void Push(T x)
|
|
|
|
{
|
|
|
|
const auto old_mean = m_running_mean.Mean();
|
|
|
|
m_running_mean.Push(x);
|
|
|
|
m_variance += (x - old_mean) * (x - m_running_mean.Mean());
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr size_t Count() const { return m_running_mean.Count(); }
|
|
|
|
constexpr T Mean() const { return m_running_mean.Mean(); }
|
|
|
|
constexpr T Variance() const { return m_variance / (Count() - 1); }
|
|
|
|
constexpr T StandardDeviation() const { return std::sqrt(Variance()); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
RunningMean<T> m_running_mean;
|
|
|
|
T m_variance{};
|
|
|
|
};
|
|
|
|
|
2009-06-14 11:30:33 +00:00
|
|
|
} // namespace MathUtil
|
2009-06-14 10:59:06 +00:00
|
|
|
|
2009-07-28 07:40:18 +00:00
|
|
|
float MathFloatVectorSum(const std::vector<float>&);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2013-03-05 21:48:57 +00:00
|
|
|
// Rounds down. 0 -> undefined
|
2014-08-24 18:03:07 +00:00
|
|
|
inline int IntLog2(u64 val)
|
2013-03-05 09:12:17 +00:00
|
|
|
{
|
2013-03-05 21:48:57 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
return 63 - __builtin_clzll(val);
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2014-09-03 17:04:48 +00:00
|
|
|
#elif defined(_MSC_VER)
|
2017-06-07 11:16:02 +00:00
|
|
|
unsigned long result = ULONG_MAX;
|
2013-03-05 21:48:57 +00:00
|
|
|
_BitScanReverse64(&result, val);
|
2013-03-05 09:12:17 +00:00
|
|
|
return result;
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2013-03-05 09:12:17 +00:00
|
|
|
#else
|
2014-02-24 09:20:53 +00:00
|
|
|
int result = -1;
|
2013-03-05 09:12:17 +00:00
|
|
|
while (val != 0)
|
|
|
|
{
|
|
|
|
val >>= 1;
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
#endif
|
|
|
|
}
|