Make 'Time' a 'constexpr' class

This commit is contained in:
Vittorio Romeo 2021-12-24 15:12:50 +01:00
parent dafdacfa20
commit 5ba6580568
5 changed files with 301 additions and 261 deletions

View File

@ -37,7 +37,7 @@ namespace sf
/// \brief Represents a time value /// \brief Represents a time value
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
class SFML_SYSTEM_API Time class Time
{ {
public: public:
@ -47,7 +47,7 @@ public:
/// Sets the time value to zero. /// Sets the time value to zero.
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Time(); constexpr Time();
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Return the time value as a number of seconds /// \brief Return the time value as a number of seconds
@ -57,7 +57,7 @@ public:
/// \see asMilliseconds, asMicroseconds /// \see asMilliseconds, asMicroseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
float asSeconds() const; constexpr float asSeconds() const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Return the time value as a number of milliseconds /// \brief Return the time value as a number of milliseconds
@ -67,7 +67,7 @@ public:
/// \see asSeconds, asMicroseconds /// \see asSeconds, asMicroseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Int32 asMilliseconds() const; constexpr Int32 asMilliseconds() const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Return the time value as a number of microseconds /// \brief Return the time value as a number of microseconds
@ -77,18 +77,18 @@ public:
/// \see asSeconds, asMilliseconds /// \see asSeconds, asMilliseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Int64 asMicroseconds() const; constexpr Int64 asMicroseconds() const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
// Static member data // Static member data
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
static const Time Zero; //!< Predefined "zero" time value SFML_SYSTEM_API static const Time Zero; //!< Predefined "zero" time value
private: private:
friend SFML_SYSTEM_API Time seconds(float); friend constexpr Time seconds(float);
friend SFML_SYSTEM_API Time milliseconds(Int32); friend constexpr Time milliseconds(Int32);
friend SFML_SYSTEM_API Time microseconds(Int64); friend constexpr Time microseconds(Int64);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Construct from a number of microseconds /// \brief Construct from a number of microseconds
@ -99,7 +99,7 @@ private:
/// \param microseconds Number of microseconds /// \param microseconds Number of microseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
explicit Time(Int64 microseconds); constexpr explicit Time(Int64 microseconds);
private: private:
@ -120,7 +120,7 @@ private:
/// \see milliseconds, microseconds /// \see milliseconds, microseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time seconds(float amount); constexpr Time seconds(float amount);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -133,7 +133,7 @@ SFML_SYSTEM_API Time seconds(float amount);
/// \see seconds, microseconds /// \see seconds, microseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time milliseconds(Int32 amount); constexpr Time milliseconds(Int32 amount);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -146,7 +146,7 @@ SFML_SYSTEM_API Time milliseconds(Int32 amount);
/// \see seconds, milliseconds /// \see seconds, milliseconds
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time microseconds(Int64 amount); constexpr Time microseconds(Int64 amount);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -158,7 +158,7 @@ SFML_SYSTEM_API Time microseconds(Int64 amount);
/// \return True if both time values are equal /// \return True if both time values are equal
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator ==(Time left, Time right); [[nodiscard]] constexpr bool operator ==(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -170,7 +170,7 @@ SFML_SYSTEM_API bool operator ==(Time left, Time right);
/// \return True if both time values are different /// \return True if both time values are different
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator !=(Time left, Time right); [[nodiscard]] constexpr bool operator !=(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -182,7 +182,7 @@ SFML_SYSTEM_API bool operator !=(Time left, Time right);
/// \return True if \a left is lesser than \a right /// \return True if \a left is lesser than \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator <(Time left, Time right); [[nodiscard]] constexpr bool operator <(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -194,7 +194,7 @@ SFML_SYSTEM_API bool operator <(Time left, Time right);
/// \return True if \a left is greater than \a right /// \return True if \a left is greater than \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator >(Time left, Time right); [[nodiscard]] constexpr bool operator >(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -206,7 +206,7 @@ SFML_SYSTEM_API bool operator >(Time left, Time right);
/// \return True if \a left is lesser or equal than \a right /// \return True if \a left is lesser or equal than \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator <=(Time left, Time right); [[nodiscard]] constexpr bool operator <=(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -218,7 +218,7 @@ SFML_SYSTEM_API bool operator <=(Time left, Time right);
/// \return True if \a left is greater or equal than \a right /// \return True if \a left is greater or equal than \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API bool operator >=(Time left, Time right); [[nodiscard]] constexpr bool operator >=(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -229,7 +229,7 @@ SFML_SYSTEM_API bool operator >=(Time left, Time right);
/// \return Opposite of the time value /// \return Opposite of the time value
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator -(Time right); [[nodiscard]] constexpr Time operator -(Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -241,7 +241,7 @@ SFML_SYSTEM_API Time operator -(Time right);
/// \return Sum of the two times values /// \return Sum of the two times values
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator +(Time left, Time right); [[nodiscard]] constexpr Time operator +(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -253,7 +253,7 @@ SFML_SYSTEM_API Time operator +(Time left, Time right);
/// \return Sum of the two times values /// \return Sum of the two times values
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator +=(Time& left, Time right); constexpr Time& operator +=(Time& left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -265,7 +265,7 @@ SFML_SYSTEM_API Time& operator +=(Time& left, Time right);
/// \return Difference of the two times values /// \return Difference of the two times values
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator -(Time left, Time right); [[nodiscard]] constexpr Time operator -(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -277,7 +277,7 @@ SFML_SYSTEM_API Time operator -(Time left, Time right);
/// \return Difference of the two times values /// \return Difference of the two times values
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator -=(Time& left, Time right); constexpr Time& operator -=(Time& left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -289,7 +289,7 @@ SFML_SYSTEM_API Time& operator -=(Time& left, Time right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator *(Time left, float right); [[nodiscard]] constexpr Time operator *(Time left, float right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -301,7 +301,7 @@ SFML_SYSTEM_API Time operator *(Time left, float right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator *(Time left, Int64 right); [[nodiscard]] constexpr Time operator *(Time left, Int64 right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -313,7 +313,7 @@ SFML_SYSTEM_API Time operator *(Time left, Int64 right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator *(float left, Time right); [[nodiscard]] constexpr Time operator *(float left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -325,7 +325,7 @@ SFML_SYSTEM_API Time operator *(float left, Time right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator *(Int64 left, Time right); [[nodiscard]] constexpr Time operator *(Int64 left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -337,7 +337,7 @@ SFML_SYSTEM_API Time operator *(Int64 left, Time right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator *=(Time& left, float right); constexpr Time& operator *=(Time& left, float right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -349,7 +349,7 @@ SFML_SYSTEM_API Time& operator *=(Time& left, float right);
/// \return \a left multiplied by \a right /// \return \a left multiplied by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator *=(Time& left, Int64 right); constexpr Time& operator *=(Time& left, Int64 right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -361,7 +361,7 @@ SFML_SYSTEM_API Time& operator *=(Time& left, Int64 right);
/// \return \a left divided by \a right /// \return \a left divided by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator /(Time left, float right); [[nodiscard]] constexpr Time operator /(Time left, float right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -373,7 +373,7 @@ SFML_SYSTEM_API Time operator /(Time left, float right);
/// \return \a left divided by \a right /// \return \a left divided by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator /(Time left, Int64 right); [[nodiscard]] constexpr Time operator /(Time left, Int64 right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -385,7 +385,7 @@ SFML_SYSTEM_API Time operator /(Time left, Int64 right);
/// \return \a left divided by \a right /// \return \a left divided by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator /=(Time& left, float right); constexpr Time& operator /=(Time& left, float right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -397,7 +397,7 @@ SFML_SYSTEM_API Time& operator /=(Time& left, float right);
/// \return \a left divided by \a right /// \return \a left divided by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator /=(Time& left, Int64 right); constexpr Time& operator /=(Time& left, Int64 right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -409,7 +409,7 @@ SFML_SYSTEM_API Time& operator /=(Time& left, Int64 right);
/// \return \a left divided by \a right /// \return \a left divided by \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API float operator /(Time left, Time right); [[nodiscard]] constexpr float operator /(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -421,7 +421,7 @@ SFML_SYSTEM_API float operator /(Time left, Time right);
/// \return \a left modulo \a right /// \return \a left modulo \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time operator %(Time left, Time right); [[nodiscard]] constexpr Time operator %(Time left, Time right);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \relates Time /// \relates Time
@ -433,7 +433,9 @@ SFML_SYSTEM_API Time operator %(Time left, Time right);
/// \return \a left modulo \a right /// \return \a left modulo \a right
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
SFML_SYSTEM_API Time& operator %=(Time& left, Time right); constexpr Time& operator %=(Time& left, Time right);
#include <SFML/System/Time.inl>
} // namespace sf } // namespace sf

View File

@ -0,0 +1,247 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
// Copyright (C) 2007-2021 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it freely,
// subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented;
// you must not claim that you wrote the original software.
// If you use this software in a product, an acknowledgment
// in the product documentation would be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such,
// and must not be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
constexpr Time::Time() :
m_microseconds(0)
{
}
////////////////////////////////////////////////////////////
constexpr float Time::asSeconds() const
{
return static_cast<float>(static_cast<double>(m_microseconds) / 1000000.0);
}
////////////////////////////////////////////////////////////
constexpr Int32 Time::asMilliseconds() const
{
return static_cast<Int32>(m_microseconds / 1000);
}
////////////////////////////////////////////////////////////
constexpr Int64 Time::asMicroseconds() const
{
return m_microseconds;
}
////////////////////////////////////////////////////////////
constexpr Time::Time(Int64 microseconds) :
m_microseconds(microseconds)
{
}
////////////////////////////////////////////////////////////
constexpr Time seconds(float amount)
{
return Time(static_cast<Int64>(amount * 1000000));
}
////////////////////////////////////////////////////////////
constexpr Time milliseconds(Int32 amount)
{
return Time(static_cast<Int64>(amount) * 1000);
}
////////////////////////////////////////////////////////////
constexpr Time microseconds(Int64 amount)
{
return Time(amount);
}
////////////////////////////////////////////////////////////
constexpr bool operator ==(Time left, Time right)
{
return left.asMicroseconds() == right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr bool operator !=(Time left, Time right)
{
return left.asMicroseconds() != right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr bool operator <(Time left, Time right)
{
return left.asMicroseconds() < right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr bool operator >(Time left, Time right)
{
return left.asMicroseconds() > right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr bool operator <=(Time left, Time right)
{
return left.asMicroseconds() <= right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr bool operator >=(Time left, Time right)
{
return left.asMicroseconds() >= right.asMicroseconds();
}
////////////////////////////////////////////////////////////
constexpr Time operator -(Time right)
{
return microseconds(-right.asMicroseconds());
}
////////////////////////////////////////////////////////////
constexpr Time operator +(Time left, Time right)
{
return microseconds(left.asMicroseconds() + right.asMicroseconds());
}
////////////////////////////////////////////////////////////
constexpr Time& operator +=(Time& left, Time right)
{
return left = left + right;
}
////////////////////////////////////////////////////////////
constexpr Time operator -(Time left, Time right)
{
return microseconds(left.asMicroseconds() - right.asMicroseconds());
}
////////////////////////////////////////////////////////////
constexpr Time& operator -=(Time& left, Time right)
{
return left = left - right;
}
////////////////////////////////////////////////////////////
constexpr Time operator *(Time left, float right)
{
return seconds(left.asSeconds() * right);
}
////////////////////////////////////////////////////////////
constexpr Time operator *(Time left, Int64 right)
{
return microseconds(left.asMicroseconds() * right);
}
////////////////////////////////////////////////////////////
constexpr Time operator *(float left, Time right)
{
return right * left;
}
////////////////////////////////////////////////////////////
constexpr Time operator *(Int64 left, Time right)
{
return right * left;
}
////////////////////////////////////////////////////////////
constexpr Time& operator *=(Time& left, float right)
{
return left = left * right;
}
////////////////////////////////////////////////////////////
constexpr Time& operator *=(Time& left, Int64 right)
{
return left = left * right;
}
////////////////////////////////////////////////////////////
constexpr Time operator /(Time left, float right)
{
return seconds(left.asSeconds() / right);
}
////////////////////////////////////////////////////////////
constexpr Time operator /(Time left, Int64 right)
{
return microseconds(left.asMicroseconds() / right);
}
////////////////////////////////////////////////////////////
constexpr Time& operator /=(Time& left, float right)
{
return left = left / right;
}
////////////////////////////////////////////////////////////
constexpr Time& operator /=(Time& left, Int64 right)
{
return left = left / right;
}
////////////////////////////////////////////////////////////
constexpr float operator /(Time left, Time right)
{
return left.asSeconds() / right.asSeconds();
}
////////////////////////////////////////////////////////////
constexpr Time operator %(Time left, Time right)
{
return microseconds(left.asMicroseconds() % right.asMicroseconds());
}
////////////////////////////////////////////////////////////
constexpr Time& operator %=(Time& left, Time right)
{
return left = left % right;
}

View File

@ -18,6 +18,7 @@ set(SRC
${INCROOT}/String.inl ${INCROOT}/String.inl
${SRCROOT}/Time.cpp ${SRCROOT}/Time.cpp
${INCROOT}/Time.hpp ${INCROOT}/Time.hpp
${INCROOT}/Time.inl
${INCROOT}/Utf.hpp ${INCROOT}/Utf.hpp
${INCROOT}/Utf.inl ${INCROOT}/Utf.inl
${INCROOT}/Vector2.hpp ${INCROOT}/Vector2.hpp

View File

@ -31,230 +31,8 @@
namespace sf namespace sf
{ {
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
// Static member data
////////////////////////////////////////////////////////////
const Time Time::Zero; const Time Time::Zero;
////////////////////////////////////////////////////////////
Time::Time() :
m_microseconds(0)
{
}
////////////////////////////////////////////////////////////
float Time::asSeconds() const
{
return static_cast<float>(static_cast<double>(m_microseconds) / 1000000.0);
}
////////////////////////////////////////////////////////////
Int32 Time::asMilliseconds() const
{
return static_cast<Int32>(m_microseconds / 1000);
}
////////////////////////////////////////////////////////////
Int64 Time::asMicroseconds() const
{
return m_microseconds;
}
////////////////////////////////////////////////////////////
Time::Time(Int64 microseconds) :
m_microseconds(microseconds)
{
}
////////////////////////////////////////////////////////////
Time seconds(float amount)
{
return Time(static_cast<Int64>(amount * 1000000));
}
////////////////////////////////////////////////////////////
Time milliseconds(Int32 amount)
{
return Time(static_cast<Int64>(amount) * 1000);
}
////////////////////////////////////////////////////////////
Time microseconds(Int64 amount)
{
return Time(amount);
}
////////////////////////////////////////////////////////////
bool operator ==(Time left, Time right)
{
return left.asMicroseconds() == right.asMicroseconds();
}
////////////////////////////////////////////////////////////
bool operator !=(Time left, Time right)
{
return left.asMicroseconds() != right.asMicroseconds();
}
////////////////////////////////////////////////////////////
bool operator <(Time left, Time right)
{
return left.asMicroseconds() < right.asMicroseconds();
}
////////////////////////////////////////////////////////////
bool operator >(Time left, Time right)
{
return left.asMicroseconds() > right.asMicroseconds();
}
////////////////////////////////////////////////////////////
bool operator <=(Time left, Time right)
{
return left.asMicroseconds() <= right.asMicroseconds();
}
////////////////////////////////////////////////////////////
bool operator >=(Time left, Time right)
{
return left.asMicroseconds() >= right.asMicroseconds();
}
////////////////////////////////////////////////////////////
Time operator -(Time right)
{
return microseconds(-right.asMicroseconds());
}
////////////////////////////////////////////////////////////
Time operator +(Time left, Time right)
{
return microseconds(left.asMicroseconds() + right.asMicroseconds());
}
////////////////////////////////////////////////////////////
Time& operator +=(Time& left, Time right)
{
return left = left + right;
}
////////////////////////////////////////////////////////////
Time operator -(Time left, Time right)
{
return microseconds(left.asMicroseconds() - right.asMicroseconds());
}
////////////////////////////////////////////////////////////
Time& operator -=(Time& left, Time right)
{
return left = left - right;
}
////////////////////////////////////////////////////////////
Time operator *(Time left, float right)
{
return seconds(left.asSeconds() * right);
}
////////////////////////////////////////////////////////////
Time operator *(Time left, Int64 right)
{
return microseconds(left.asMicroseconds() * right);
}
////////////////////////////////////////////////////////////
Time operator *(float left, Time right)
{
return right * left;
}
////////////////////////////////////////////////////////////
Time operator *(Int64 left, Time right)
{
return right * left;
}
////////////////////////////////////////////////////////////
Time& operator *=(Time& left, float right)
{
return left = left * right;
}
////////////////////////////////////////////////////////////
Time& operator *=(Time& left, Int64 right)
{
return left = left * right;
}
////////////////////////////////////////////////////////////
Time operator /(Time left, float right)
{
return seconds(left.asSeconds() / right);
}
////////////////////////////////////////////////////////////
Time operator /(Time left, Int64 right)
{
return microseconds(left.asMicroseconds() / right);
}
////////////////////////////////////////////////////////////
Time& operator /=(Time& left, float right)
{
return left = left / right;
}
////////////////////////////////////////////////////////////
Time& operator /=(Time& left, Int64 right)
{
return left = left / right;
}
////////////////////////////////////////////////////////////
float operator /(Time left, Time right)
{
return left.asSeconds() / right.asSeconds();
}
////////////////////////////////////////////////////////////
Time operator %(Time left, Time right)
{
return microseconds(left.asMicroseconds() % right.asMicroseconds());
}
////////////////////////////////////////////////////////////
Time& operator %=(Time& left, Time right)
{
return left = left % right;
}
} // namespace sf } // namespace sf

View File

@ -201,4 +201,16 @@ TEST_CASE("sf::Time class - [system]")
CHECK(time == sf::milliseconds(1)); CHECK(time == sf::milliseconds(1));
} }
} }
SUBCASE("Constexpr support")
{
constexpr auto result = []
{
sf::Time time = sf::milliseconds(100);
time %= sf::milliseconds(99);
return time;
}();
static_assert(result == sf::milliseconds(1));
}
} }