| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- /*
- * This source file is part of RmlUi, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://github.com/mikke89/RmlUi
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- * Copyright (c) 2019-2023 The RmlUi Team, and contributors
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #include "../../Include/RmlUi/Core/Math.h"
- #include "../../Include/RmlUi/Core/Types.h"
- #include <cmath>
- #include <cstdlib>
- namespace Rml {
- namespace Math {
- static constexpr float FZERO = 0.0001f;
- RMLUICORE_API bool IsCloseToZero(float value)
- {
- return Absolute(value) < FZERO;
- }
- RMLUICORE_API float Absolute(float value)
- {
- return std::abs(value);
- }
- RMLUICORE_API int Absolute(int value)
- {
- return std::abs(value);
- }
- RMLUICORE_API Vector2f Absolute(Vector2f value)
- {
- return {std::abs(value.x), std::abs(value.y)};
- }
- RMLUICORE_API float Cos(float angle)
- {
- return std::cos(angle);
- }
- RMLUICORE_API float ACos(float value)
- {
- return std::acos(value);
- }
- RMLUICORE_API float Sin(float angle)
- {
- return std::sin(angle);
- }
- RMLUICORE_API float ASin(float value)
- {
- return std::asin(value);
- }
- RMLUICORE_API float Tan(float angle)
- {
- return std::tan(angle);
- }
- RMLUICORE_API float ATan2(float y, float x)
- {
- return std::atan2(y, x);
- }
- RMLUICORE_API float Exp(float value)
- {
- return std::exp(value);
- }
- RMLUICORE_API int Log2(int value)
- {
- int result = 0;
- while (value > 1)
- {
- value >>= 1;
- result++;
- }
- return result;
- }
- RMLUICORE_API float RadiansToDegrees(float angle)
- {
- return angle * (180.0f / RMLUI_PI);
- }
- RMLUICORE_API float DegreesToRadians(float angle)
- {
- return angle * (RMLUI_PI / 180.0f);
- }
- RMLUICORE_API float NormaliseAngle(float angle)
- {
- float result = std::fmod(angle, RMLUI_PI * 2.0f);
- if (result < 0.f)
- result += RMLUI_PI * 2.0f;
- return result;
- }
- RMLUICORE_API float SquareRoot(float value)
- {
- return std::sqrt(value);
- }
- RMLUICORE_API float Round(float value)
- {
- return std::floor(value + 0.5f);
- }
- RMLUICORE_API double Round(double value)
- {
- return std::floor(value + 0.5);
- }
- RMLUICORE_API float RoundUp(float value)
- {
- return std::ceil(value);
- }
- RMLUICORE_API float RoundDown(float value)
- {
- return std::floor(value);
- }
- RMLUICORE_API int RoundToInteger(float value)
- {
- if (value > 0.0f)
- return int(value + 0.5f);
- return int(value - 0.5f);
- }
- RMLUICORE_API int RoundUpToInteger(float value)
- {
- return int(std::ceil(value));
- }
- RMLUICORE_API int RoundDownToInteger(float value)
- {
- return int(std::floor(value));
- }
- RMLUICORE_API float DecomposeFractionalIntegral(float value, float* integral)
- {
- return std::modf(value, integral);
- }
- RMLUICORE_API void SnapToPixelGrid(float& offset, float& width)
- {
- const float right_edge = offset + width;
- offset = Math::Round(offset);
- width = Math::Round(right_edge) - offset;
- }
- RMLUICORE_API void SnapToPixelGrid(Vector2f& position, Vector2f& size)
- {
- const Vector2f bottom_right = position + size;
- position = position.Round();
- size = bottom_right.Round() - position;
- }
- RMLUICORE_API void SnapToPixelGrid(Rectanglef& rectangle)
- {
- rectangle = Rectanglef::FromCorners(rectangle.TopLeft().Round(), rectangle.BottomRight().Round());
- }
- RMLUICORE_API void ExpandToPixelGrid(Vector2f& position, Vector2f& size)
- {
- const Vector2f bottom_right = position + size;
- position = Vector2f(std::floor(position.x), std::floor(position.y));
- size = Vector2f(std::ceil(bottom_right.x), std::ceil(bottom_right.y)) - position;
- }
- RMLUICORE_API void ExpandToPixelGrid(Rectanglef& rectangle)
- {
- const Vector2f top_left = {std::floor(rectangle.Left()), std::floor(rectangle.Top())};
- const Vector2f bottom_right = {std::ceil(rectangle.Right()), std::ceil(rectangle.Bottom())};
- rectangle = Rectanglef::FromCorners(top_left, bottom_right);
- }
- RMLUICORE_API int ToPowerOfTwo(int number)
- {
- // Check if the number is already a power of two.
- if ((number & (number - 1)) == 0)
- return number;
- // Assuming 31 useful bits in an int here ... !
- for (int i = 31; i >= 0; i--)
- {
- if (number & (1 << i))
- {
- if (i == 31)
- return 1 << 31;
- else
- return 1 << (i + 1);
- }
- }
- return 0;
- }
- RMLUICORE_API int HexToDecimal(char hex_digit)
- {
- if (hex_digit >= '0' && hex_digit <= '9')
- return hex_digit - '0';
- else if (hex_digit >= 'a' && hex_digit <= 'f')
- return 10 + (hex_digit - 'a');
- else if (hex_digit >= 'A' && hex_digit <= 'F')
- return 10 + (hex_digit - 'A');
- return -1;
- }
- RMLUICORE_API float RandomReal(float max_value)
- {
- return (std::rand() / (float)RAND_MAX) * max_value;
- }
- RMLUICORE_API int RandomInteger(int max_value)
- {
- return (std::rand() % max_value);
- }
- RMLUICORE_API bool RandomBool()
- {
- return RandomInteger(2) == 1;
- }
- template <>
- Vector2f Max<Vector2f>(Vector2f a, Vector2f b)
- {
- return Vector2f(Max(a.x, b.x), Max(a.y, b.y));
- }
- template <>
- Vector2i Max<Vector2i>(Vector2i a, Vector2i b)
- {
- return Vector2i(Max(a.x, b.x), Max(a.y, b.y));
- }
- template <>
- Vector2f Min<Vector2f>(Vector2f a, Vector2f b)
- {
- return Vector2f(Min(a.x, b.x), Min(a.y, b.y));
- }
- template <>
- Vector2i Min<Vector2i>(Vector2i a, Vector2i b)
- {
- return Vector2i(Min(a.x, b.x), Min(a.y, b.y));
- }
- template <>
- Vector2f Clamp(Vector2f value, Vector2f min, Vector2f max)
- {
- return Vector2f(Clamp(value.x, min.x, max.x), Clamp(value.y, min.y, max.y));
- }
- template <>
- Vector2i Clamp(Vector2i value, Vector2i min, Vector2i max)
- {
- return Vector2i(Clamp(value.x, min.x, max.x), Clamp(value.y, min.y, max.y));
- }
- ColourbPremultiplied RoundedLerp(float t, ColourbPremultiplied v0, ColourbPremultiplied v1)
- {
- return ColourbPremultiplied{
- static_cast<unsigned char>(RoundToInteger(Lerp(t, static_cast<float>(v0[0]), static_cast<float>(v1[0])))),
- static_cast<unsigned char>(RoundToInteger(Lerp(t, static_cast<float>(v0[1]), static_cast<float>(v1[1])))),
- static_cast<unsigned char>(RoundToInteger(Lerp(t, static_cast<float>(v0[2]), static_cast<float>(v1[2])))),
- static_cast<unsigned char>(RoundToInteger(Lerp(t, static_cast<float>(v0[3]), static_cast<float>(v1[3])))),
- };
- }
- } // namespace Math
- } // namespace Rml
|