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>
|
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;
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
template <class T>
|
2015-09-12 03:43:17 +00:00
|
|
|
constexpr T Clamp(const T val, const T& min, const T& max)
|
2014-02-05 01:43:07 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return std::max(min, std::min(max, val));
|
2014-07-14 12:42:33 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
template <class T>
|
2009-07-15 00:51:24 +00:00
|
|
|
struct Rectangle
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
T left{};
|
|
|
|
T top{};
|
|
|
|
T right{};
|
|
|
|
T bottom{};
|
|
|
|
|
|
|
|
constexpr Rectangle() = default;
|
|
|
|
|
|
|
|
constexpr Rectangle(T theLeft, T theTop, T theRight, T theBottom)
|
|
|
|
: left(theLeft), top(theTop), right(theRight), bottom(theBottom)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator==(const Rectangle& r) const
|
|
|
|
{
|
|
|
|
return left == r.left && top == r.top && right == r.right && bottom == r.bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
T GetWidth() const { return abs(right - left); }
|
|
|
|
T GetHeight() const { return abs(bottom - top); }
|
|
|
|
// 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)
|
|
|
|
{
|
|
|
|
left = Clamp(left, x1, x2);
|
|
|
|
right = Clamp(right, x1, x2);
|
|
|
|
top = Clamp(top, y2, y1);
|
|
|
|
bottom = Clamp(bottom, y2, y1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the rectangle is in a coordinate system with an upper-left origin,
|
|
|
|
// use this Clamp.
|
|
|
|
void ClampUL(T x1, T y1, T x2, T y2)
|
|
|
|
{
|
|
|
|
left = Clamp(left, x1, x2);
|
|
|
|
right = Clamp(right, x1, x2);
|
|
|
|
top = Clamp(top, y1, y2);
|
|
|
|
bottom = Clamp(bottom, y1, y2);
|
|
|
|
}
|
2009-07-15 00:51:24 +00:00
|
|
|
};
|
|
|
|
|
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__)
|
2016-06-24 08:43:46 +00:00
|
|
|
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;
|
2016-06-24 08:43:46 +00:00
|
|
|
_BitScanReverse64(&result, val);
|
|
|
|
return result;
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2013-03-05 09:12:17 +00:00
|
|
|
#else
|
2016-06-24 08:43:46 +00:00
|
|
|
int result = -1;
|
|
|
|
while (val != 0)
|
|
|
|
{
|
|
|
|
val >>= 1;
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
return result;
|
2013-03-05 09:12:17 +00:00
|
|
|
#endif
|
|
|
|
}
|