mirror of https://github.com/AxioDL/metaforce.git
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
|
|
|
#undef min
|
|
#undef max
|
|
|
|
namespace metaforce {
|
|
|
|
class CCharAnimTime {
|
|
public:
|
|
enum class EType { NonZero, ZeroIncreasing, ZeroSteady, ZeroDecreasing, Infinity };
|
|
|
|
private:
|
|
float x0_time = 0.f;
|
|
EType x4_type = EType::ZeroSteady;
|
|
|
|
public:
|
|
constexpr CCharAnimTime() = default;
|
|
constexpr CCharAnimTime(float time) : x0_time(time), x4_type(x0_time != 0.f ? EType::NonZero : EType::ZeroSteady) {}
|
|
constexpr CCharAnimTime(EType type, float t) : x0_time(t), x4_type(type) {}
|
|
explicit CCharAnimTime(CInputStream& in) : x0_time(in.ReadFloat()), x4_type(EType(in.ReadLong())) {}
|
|
|
|
static constexpr CCharAnimTime Infinity() { return {EType::Infinity, 1.0f}; }
|
|
float GetSeconds() const { return x0_time; }
|
|
|
|
bool EqualsZero() const;
|
|
bool EpsilonZero() const;
|
|
bool GreaterThanZero() const;
|
|
bool operator==(const CCharAnimTime& other) const;
|
|
bool operator!=(const CCharAnimTime& other) const;
|
|
bool operator>=(const CCharAnimTime& other) const;
|
|
bool operator<=(const CCharAnimTime& other) const;
|
|
bool operator>(const CCharAnimTime& other) const;
|
|
bool operator<(const CCharAnimTime& other) const;
|
|
CCharAnimTime& operator*=(const CCharAnimTime& other);
|
|
CCharAnimTime& operator+=(const CCharAnimTime& other);
|
|
CCharAnimTime operator+(const CCharAnimTime& other) const;
|
|
CCharAnimTime& operator-=(const CCharAnimTime& other);
|
|
CCharAnimTime operator-(const CCharAnimTime& other) const;
|
|
CCharAnimTime operator*(const CCharAnimTime& other) const;
|
|
CCharAnimTime operator*(const float& other) const;
|
|
float operator/(const CCharAnimTime& other) const;
|
|
};
|
|
} // namespace metaforce
|