mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
44 lines
806 B
C++
44 lines
806 B
C++
#pragma once
|
|
|
|
#ifdef NNSDK
|
|
#include <nn/os.h>
|
|
#endif
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <time/seadTickSpan.h>
|
|
|
|
namespace sead
|
|
{
|
|
/// A TickTime represents an instant in time.
|
|
class TickTime
|
|
{
|
|
public:
|
|
TickTime() { setNow(); }
|
|
|
|
u64 toTicks() const { return mTick; }
|
|
|
|
#ifdef NNSDK
|
|
void setNow() { mTick = nn::os::GetSystemTick(); }
|
|
#else
|
|
void setNow();
|
|
#endif
|
|
|
|
TickSpan diff(const TickTime& other) const { return s64(mTick - other.mTick); }
|
|
TickSpan diffToNow() const { return TickTime().diff(*this); }
|
|
|
|
TickTime& operator+=(const TickSpan& span)
|
|
{
|
|
mTick += span.toTicks();
|
|
return *this;
|
|
}
|
|
|
|
TickTime& operator-=(const TickSpan& span)
|
|
{
|
|
mTick -= span.toTicks();
|
|
return *this;
|
|
}
|
|
|
|
private:
|
|
u64 mTick;
|
|
};
|
|
} // namespace sead
|