1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/openmw/mwworld/timestamp.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.3 KiB
C++
Raw Normal View History

2012-05-18 22:04:22 +02:00
#ifndef GAME_MWWORLD_TIMESTAMP_H
#define GAME_MWWORLD_TIMESTAMP_H
2014-05-12 21:04:02 +02:00
namespace ESM
{
struct TimeStamp;
2014-05-12 21:04:02 +02:00
}
2012-05-18 22:04:22 +02:00
namespace MWWorld
{
/// \brief In-game time stamp
///
/// This class is based on the global variables GameHour and DaysPassed.
class TimeStamp
{
float mHour;
int mDay;
public:
explicit TimeStamp(float hour = 0, int day = 0);
2014-05-12 21:04:02 +02:00
///< \param hour [0, 23)
2012-05-18 22:04:22 +02:00
/// \param day >=0
explicit TimeStamp(const ESM::TimeStamp& esm);
2014-05-12 21:04:02 +02:00
ESM::TimeStamp toEsm() const;
2012-05-18 22:04:22 +02:00
2014-05-12 21:04:02 +02:00
float getHour() const;
2012-05-18 22:04:22 +02:00
int getDay() const;
TimeStamp& operator+=(double hours);
///< \param hours >=0
};
bool operator==(const TimeStamp& left, const TimeStamp& right);
bool operator!=(const TimeStamp& left, const TimeStamp& right);
bool operator<(const TimeStamp& left, const TimeStamp& right);
bool operator<=(const TimeStamp& left, const TimeStamp& right);
bool operator>(const TimeStamp& left, const TimeStamp& right);
bool operator>=(const TimeStamp& left, const TimeStamp& right);
TimeStamp operator+(const TimeStamp& stamp, double hours);
TimeStamp operator+(double hours, const TimeStamp& stamp);
double operator-(const TimeStamp& left, const TimeStamp& right);
///< Returns the difference between \a left and \a right in in-game hours.
}
#endif