// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team // SPDX-License-Identifier: GPL-3.0+ #pragma once #include "Pcsx2Defs.h" #include // From https://github.com/nicolausYes/easing-functions/blob/master/src/easing.cpp namespace Easing { static constexpr float pi = 3.1415926545f; template __ri static T InSine(T t) { return std::sin(1.5707963f * t); } template __ri static T OutSine(T t) { return 1 + std::sin(1.5707963f * (--t)); } template __ri static T InOutSine(T t) { return 0.5f * (1 + std::sin(3.1415926f * (t - 0.5f))); } template __ri static T InQuad(T t) { return t * t; } template __ri static T OutQuad(T t) { return t * (2 - t); } template __ri static T InOutQuad(T t) { return t < 0.5f ? 2 * t * t : t * (4 - 2 * t) - 1; } template __ri static T InCubic(T t) { return t * t * t; } template __ri static T OutCubic(T t) { return 1 + (--t) * t * t; } template __ri static T InOutCubic(T t) { return t < 0.5f ? 4 * t * t * t : 1 + (--t) * (2 * (--t)) * (2 * t); } template __ri static T InQuart(T t) { t *= t; return t * t; } template __ri static T OutQuart(T t) { t = (--t) * t; return 1 - t * t; } template __ri static T InOutQuart(T t) { if (t < 0.5) { t *= t; return 8 * t * t; } else { t = (--t) * t; return 1 - 8 * t * t; } } template __ri static T InQuint(T t) { T t2 = t * t; return t * t2 * t2; } template __ri static T OutQuint(T t) { T t2 = (--t) * t; return 1 + t * t2 * t2; } template __ri static T InOutQuint(T t) { T t2; if (t < 0.5) { t2 = t * t; return 16 * t * t2 * t2; } else { t2 = (--t) * t; return 1 + 16 * t * t2 * t2; } } template __ri static T InExpo(T t) { return (std::pow(2, 8 * t) - 1) / 255; } template __ri static T OutExpo(T t) { return 1 - std::pow(2, -8 * t); } template __ri static T InOutExpo(T t) { if (t < 0.5f) { return (std::pow(2, 16 * t) - 1) / 510; } else { return 1 - 0.5f * std::pow(2, -16 * (t - 0.5f)); } } template __ri static T InCirc(T t) { return 1 - std::sqrt(1 - t); } template __ri static T OutCirc(T t) { return std::sqrt(t); } template __ri static T InOutCirc(T t) { if (t < 0.5f) { return (1 - std::sqrt(1 - 2 * t)) * 0.5f; } else { return (1 + std::sqrt(2 * t - 1)) * 0.5f; } } template __ri static T InBack(T t) { return t * t * (2.70158f * t - 1.70158f); } template static T OutBack(T t) { t -= 1; return 1 + t * t * (2.70158f * t + 1.70158f); } template __ri static T InOutBack(T t) { if (t < 0.5f) { return t * t * (7 * t - 2.5f) * 2; } else { return 1 + (--t) * t * 2 * (7 * t + 2.5f); } } template __ri static T InElastic(T t) { T t2 = t * t; return t2 * t2 * std::sin(t * pi * 4.5f); } template __ri static T OutElastic(T t) { T t2 = (t - 1) * (t - 1); return 1 - t2 * t2 * std::cos(t * pi * 4.5f); } template __ri static T InOutElastic(T t) { T t2; if (t < 0.45f) { t2 = t * t; return 8 * t2 * t2 * std::sin(t * pi * 9); } else if (t < 0.55f) { return 0.5f + 0.75f * std::sin(t * pi * 4); } else { t2 = (t - 1) * (t - 1); return 1 - 8 * t2 * t2 * std::sin(t * pi * 9); } } template __ri static T InBounce(T t) { return std::pow(2, 6 * (t - 1)) * std::abs(sin(t * pi * 3.5f)); } template __ri static T OutBounce(T t) { return 1 - std::pow(2, -6 * t) * std::abs(std::cos(t * pi * 3.5f)); } template __ri static T InOutBounce(T t) { if (t < 0.5f) { return 8 * std::pow(2, 8 * (t - 1)) * std::abs(std::sin(t * pi * 7)); } else { return 1 - 8 * std::pow(2, -8 * t) * std::abs(std::sin(t * pi * 7)); } } } // namespace Easing